{ "cells": [ { "cell_type": "code", "execution_count": 2, "metadata": { "scrolled": true }, "outputs": [], "source": [ "using Plots, ComplexPhasePortrait, ApproxFun, SingularIntegralEquations, DifferentialEquations\n", "gr();" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# M3M6: Methods of Mathematical Physics\n", "\n", "$$\n", "\\def\\dashint{{\\int\\!\\!\\!\\!\\!\\!-\\,}}\n", "\\def\\infdashint{\\dashint_{\\!\\!\\!-\\infty}^{\\,\\infty}}\n", "\\def\\D{\\,{\\rm d}}\n", "\\def\\E{{\\rm e}}\n", "\\def\\dx{\\D x}\n", "\\def\\dt{\\D t}\n", "\\def\\dz{\\D z}\n", "\\def\\C{{\\mathbb C}}\n", "\\def\\R{{\\mathbb R}}\n", "\\def\\CC{{\\cal C}}\n", "\\def\\HH{{\\cal H}}\n", "\\def\\I{{\\rm i}}\n", "\\def\\qqqquad{\\qquad\\qquad}\n", "\\def\\qqand{\\qquad\\hbox{for}\\qquad}\n", "\\def\\qqfor{\\qquad\\hbox{for}\\qquad}\n", "\\def\\qqwhere{\\qquad\\hbox{where}\\qquad}\n", "\\def\\Res_#1{\\underset{#1}{\\rm Res}}\\,\n", "\\def\\sech{{\\rm sech}\\,}\n", "\\def\\acos{\\,{\\rm acos}\\,}\n", "\\def\\vc#1{{\\mathbf #1}}\n", "\\def\\ip<#1,#2>{\\left\\langle#1,#2\\right\\rangle}\n", "\\def\\norm#1{\\left\\|#1\\right\\|}\n", "\\def\\half{{1 \\over 2}}\n", "$$\n", "\n", "Dr. Sheehan Olver\n", "<br>\n", "s.olver@imperial.ac.uk\n", "\n", "<br>\n", "Website: https://github.com/dlfivefifty/M3M6LectureNotes\n", "\n", "\n", "# Lecture 17: Differential equations satisfied by orthogonal polynomials\n", "\n", "\n", "This lecture we do the following:\n", "\n", "1. Differential equations for orthogonal polynomials\n", " - Sturm–Liouville equations\n", " - Weighted differentiation for ultraspherical polynomials\n", " - Differential equation for ultraspherical polynomials\n", "2. Application: Eigenstates of Schrödinger operators with quadratic potentials\n", "2. Rodriguez formulae\n", " \n" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "The three classical weights are (Hermite) $w(x) = \\E^{-x^2}$, (Laguerre) $w_\\alpha(x) = x^\\alpha \\E^{-x}$ and (Jacobi) $w_{\\alpha,\\beta}(x) = (1-x)^\\alpha (1+x)^\\beta$. Note all weights form a simple hierarchy: when differentiated, they give a linear polynomial times the previous weight in the hierarchy. For Hermite,\n", "$$\n", "{\\D \\over \\dx} w(x) = -2x w(x)\n", "$$\n", "for Laguerre,\n", "$$\n", "{\\D \\over \\dx} w^{(\\alpha)}(x) = (\\alpha - x) w^{(\\alpha-1)}(x)\n", "$$\n", "and for Jacobi\n", "$$\n", "{\\D \\over \\dx} w^{(\\alpha,\\beta)}(x) = (\\beta(1-x) - \\alpha(1+x)) w^{(\\alpha-1,\\beta-1)}(x)\n", "$$\n", "These relationships lead to simple differential equations that have the classical orthogonal polynomials as eigenfunctions.\n", " \n", "### Sturm–Liouville operator\n", "We first consider a simple class of operators that are self-adjoint:\n", "\n", "**Proposition (Sturm–Liouville self-adjointness)** Consider the weighted inner product\n", "$$\n", "\\ip<f,g>_w = \\int_a^b f(x) g(x) w(x) \\dx\n", "$$\n", "then for any continuously differentiable function $q(x)$ satisfying $q(a) = q(b) = 0$, the operator\n", "$$\n", "Lu = {1 \\over w(x)} {\\D \\over \\dx}\\left[ q(x) {\\D u\\over \\dx} \\right]\n", "$$\n", "is self-adjoint in the sense \n", "$$\n", "\\ip<L f,g>_w = \\ip<f, Lg>_w\n", "$$\n", "\n", "**Proof** Simple integration by parts argument:\n", "$$\n", "\\ip<L f,g>_w = \\int_a^b {\\D \\over \\dx}\\left[ q(x) {\\D u\\over \\dx}\\right] g(x)\\dx = -\\int_a^b q(x) {\\D u\\over \\dx} {\\D g\\over \\dx} \\dx = \\int_a^b u(x) {\\D \\over \\dx} q(x) {\\D g\\over \\dx} \\dx = \\int_a^b u(x) {1 \\over w(x)} {\\D \\over \\dx}\\left[q(x) {\\D g\\over \\dx}\\right] w(x) \\dx = \\ip<f, Lg>_w\n", "$$\n", "\n", "⬛️\n", "\n", "We claim that the classical orthogonal polynomials are eigenfunctions of a Sturm–Liouville problem, that is, in each case there exists a $q(x)$ so that \n", "$$\n", "L p_n(x) = \\lambda_n p_n(x)\n", "$$\n", "where $\\lambda_n$ is the (real) eigenvalue. We will derive this for the ultraspherical polynomials.\n", "\n", "\n", "### Weighted differentiation for ultraspherical polynomials\n", "\n", "We have already seen that Chebyshev and ultraspherical polynomials have simple expressions for derivatives where we decrement the degree and increment the parameter:\n", "\\begin{align*}\n", "{\\D \\over \\dx } T_n(x) = n U_{n-1}(x) = n C_{n-1}^{(1)}(x) \\\\\n", "{\\D \\over \\dx } C_n^{(\\lambda)}(x) = 2 \\lambda C_{n-1}^{(\\lambda+1)}(x)\n", "\\end{align*}\n", "In this section, we see that differentiating the weighted polynomials actually decrements the parameter and increments the degree:\n", "\n", "**Proposition (weighted differentiation)**\n", "\\begin{align*}\n", "{\\D \\over \\dx }[\\sqrt{1-x^2} U_n(x)] = - {n+1 \\over \\sqrt{1-x^2}} T_{n+1}(x) \\\\\n", "{\\D \\over \\dx }[(1-x^2)^{\\lambda-\\half} C_n^{(\\lambda)}(x)] = -{(n+1) (n+2 \\lambda-1) \\over 2 (\\lambda-1) } (1-x^2)^{\\lambda - {3 \\over 2}} C_{n+1}^{(\\lambda-1)}(x)\n", "\\end{align*}\n", "\n", "**Proof** We show the first result by showing that the left-hand side is orthogonal to all polynomials of degree less than $n+1$ by integration by parts:\n", "$$\n", "\\ip< \\sqrt{1-x^2} {\\D \\over \\dx }[\\sqrt{1-x^2} U_n(x)], p_m(x)>_{\\rm T} = -\\int_{-1}^1 \\sqrt{1-x^2} U_n(x) p_m' \\dx =0\n", "$$\n", "Note that\n", "$$\n", "\\sqrt{1-x^2} {\\D \\over \\dx } \\sqrt{1-x^2} f(x) = (1-x^2) f'(x) - x f(x)\n", "$$\n", "Thus we just have to verify the constant in front:\n", "$$\n", "\\sqrt{1-x^2} {\\D \\over \\dx }[\\sqrt{1-x^2} U_n(x) = (-n -1) 2^n x^{n+1}\n", "$$\n", "\n", "The other ultraspherical polynomial follow similarly.\n", "⬛️\n", "\n", "\n", "### Eigenvalue equation for Ultraspherical polynomials\n", "\n", "Note that differentiating increments the parameter and decrements the degree while weight differentiation decements the parameter and increments the degree. Therefore combining them brings us back to where we started.\n", "\n", "In the case of Chebyshev polynomials, this gives us a Sturm–Liouville equation:\n", "$$\n", "\\sqrt{1-x^2} {\\D \\over \\dx} \\sqrt{1-x^2} {\\D T_n \\over \\dx} = \n", "n \\sqrt{1-x^2} {\\D \\over \\dx} \\sqrt{1-x^2} U_{n-1}(x) = -n^2 T_n(x)\n", "$$\n", "\n", "Note that the chain rule gives us a simple expression as\n", "$$\n", "(1-x^2) {\\D^2 T_n \\over \\dx^2} -x {\\D T_n \\over \\dx} = -n^2 T_n(x)\n", "$$\n", "\n", "Similarly,\n", "$$\n", "(1-x^2)^{\\half - \\lambda} {\\D \\over \\dx}(1-x^2)^{\\lambda + \\half} {\\D C_n^{(\\lambda)} \\over \\dx} = -n (n+2 \\lambda) C_n^{(\\lambda)}(x)\n", "$$\n", "or in other words,\n", "$$\n", "(1-x^2) {\\D^2 C_n^{(\\lambda)} \\over \\dx^2} - (2\\lambda+1) x {\\D C_n^{(\\lambda)} \\over \\dx} = -{n (n+2 \\lambda) \\over 2\\lambda}C_n^{(\\lambda)}(x)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Rodriguez formula\n", "\n", "Because of the special structure of our weights, we have special Rodriguez formulae of the form\n", "$$\n", " p_n(x) = {1 \\over \\kappa_n w(x)} {\\D^n \\over \\dx^n} w(x) F(x)^n\n", "$$\n", "where $w(x)$ is the weight and $F(x) = (1-x^2)$ (Jacobi), $x$ (Laguerre) or $1$ (Hermite) and $\\kappa_n$ is a normalization constant.\n", "\n", "**Proposition (Hermite Rodriguez)** \n", "$$\n", "H_n(x)= (-1)^n \\E^{x^2} {\\D^n \\over \\dx^n} \\E^{-x^2}\n", "$$\n", "\n", "**Proof**\n", "We first show that it's a degree $n$ polynomial. This proceeds by induction:\n", "$$\n", " H_0(x) = \\E^{x^2} {\\D^0 \\over \\dx^0}\\E^{-x^2} = 1\n", "$$\n", "$$\n", " H_{n+1}(x) = -\\E^{x^2}{\\D \\over \\dx}\\left[\\E^{-x^2} H_{n}(x)\\right] = 2x H_{n}(x) + H_n'(x)\n", "$$\n", "and then we have\n", "$$\n", " {\\D^n \\over \\dx^n}[p_m(x) \\E^{-x^2}]= {\\D^{n-1} \\over \\dx^{n-1}} (p_m'(x)-2x p_m(x)) \\E^{-x^2}\n", "$$\n", "Orthogonality follows from integration by parts:\n", "$$\n", "\\ip<H_n, p_m>_{\\rm H} = (-1)^n \\int {\\D^n \\E^{-x^2} \\over \\dx^n} p_m \\dx = \\int \\E^{-x^2} {\\D^n p_m \\over \\dx^n} \\dx = 0 \n", "$$\n", "if $m < n$.\n", "\n", "Now we just need to show we have the right constant. But we have \n", "$$\n", " {\\D^n \\over \\dx^n}[\\E^{-x^2}] = {\\D^{n-1} \\over \\dx^{n-1}}[-2x \\E^{-x^2}] = {\\D^{n-2} \\over \\dx^{n-2}}[(4x^2 + O(x)) \\E^{-x^2}] = \\cdots = (-1)^n 2^n x^n\n", " $$\n", " \n", "⬛️\n", "\n", "Note this tells us the Hermite recurrence: Here we have the simple expressions\n", "$$\n", "H_n'(x) = 2n H_{n-1}(x) \\qqand {\\D \\over \\dx}[\\E^{-x^2} H_n(x)] = -\\E^{-x^2} H_{n+1}(x)\n", "$$\n", "These follow from the same arguments as before since $w'(x) = -2x w(x)$. But using the Rodriguez formula, we get\n", "\n", "$$\n", "2n H_{n-1}(x) = H_{n}'(x) = (-1)^{n} 2 x \\E^{x^2} {\\D^{n} \\over \\dx^{n}} \\E^{-x^2} + (-1)^n \\E^{x^2} {\\D^{n+1} \\over \\dx^{n+1}} \\E^{-x^2} = 2x H_n(x) - H_{n+1}(x)\n", "$$\n", "which means\n", "$$\n", "x H_n(x) = nH_{n-1}(x) +{H_{n+1}(x) \\over 2}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "## Application: Eigenstates of Schrödinger operators with quadratic potentials\n", "\n", "Using the derivative formulae tells us a Sturm–Liouville operator for Hermite polynomials:\n", "$$\n", "\\E^{x^2} {\\D \\over \\dx} \\E^{-x^2} {\\D H_n \\over \\dx} = 2n \\E^{x^2} {\\D \\over \\dx} \\E^{-x^2} H_{n-1}(x) = -2nH_n(x)\n", "$$\n", "or rewritten, this gives us\n", "$$\n", "{\\D^2 H_n \\over \\dx^2} -2x {\\D H_n \\over \\dx} = -2nH_n(x)\n", "$$\n", "\n", "\n", "W therefore have\n", "$$\n", "{\\D^2 \\over \\dx^2}[\\E^{-{x^2 \\over 2}} H_n(x)] = \\E^{-{x^2 \\over 2}} (H_n''(x) -2x H_n'(x) + (x^2-1) H_n(x)) = \\E^{-{x^2 \\over 2}} (x^2-1-2n) H_n(x)\n", "$$\n", "In other words, for the Hermite function $\\psi_n(x)$ we have\n", "$$\n", "{\\D^2 \\psi_n \\over \\dx^2} -x^2 \\psi_n = -(2n+1) \\psi_n\n", "$$\n", "and therefore $\\psi_n$ are the eigenfunctions.\n", "\n", "Wait, we want to normalize 😩. In Schrödinger equations the square of the wave $\\psi(x)^2$ represents a probability distribution, which should integrate to 1. Here's a trick: we know that \n", "$$\n", "x \\begin{pmatrix} H_0(x) \\\\ H_1(x) \\\\ H_2(x) \\\\ \\vdots \\end{pmatrix} = \\underbrace{\\begin{pmatrix} 0 & {1 \\over 2} \\\\ \n", "1 & 0 & \\half \\\\\n", "& 2 & 0 & \\half \\\\\n", "&& 3 & 0 & \\ddots \\\\\n", "&&& \\ddots & \\ddots\n", "\\end{pmatrix}}_J\\begin{pmatrix} H_0(x) \\\\ H_1(x) \\\\ H_2(x) \\\\ \\vdots \\end{pmatrix}\n", "$$\n", "We want to conjugate by a diagonal matrix so that\n", "$$\n", "\\begin{pmatrix}1 \\\\ & d_1 \\\\ &&d_2 \\\\&&&\\ddots \\end{pmatrix} J \\begin{pmatrix}1 \\\\ & d_1^{-1} \\\\ &&d_2^{-1} \\\\&&&\\ddots \\end{pmatrix} = \\begin{pmatrix} 0 & {1 \\over 2d_1} \\\\ \n", "d_1 & 0 & {d_1 \\over 2 d_2} \\\\\n", "& {2d_2 \\over d_1} & 0 & {d_2 \\over 2 d_3} \\\\\n", "&& {3d_3 \\over d_2} & 0 & \\ddots \\\\\n", "&&& \\ddots & \\ddots\n", "\\end{pmatrix}\n", "$$\n", "becomes symmetric. This becomes a sequence of equations:\n", "\\begin{align*}\n", "d_1 &= {1 \\over 2 d_1} \\Rightarrow d_1^2 = {1 \\over 2} \\\\\n", "2d_2d_1^{-1} &= {d_1 \\over 2 d_2} \\Rightarrow d_2^2 = {d_1^2 \\over 4} = {1 \\over 8} = {1 \\over 2^2 2!} \\\\\n", "3d_3d_2^{-1} &= {d_2 \\over 2 d_3} \\Rightarrow d_3^2 = {d_2^2 \\over 3\\times 2} = {1 \\over 2^3 3!} \\\\\n", "&\\vdots \\\\\n", "d_n^2 = {1 \\over 2^n n!} \n", "\\end{align*}\n", "\n", "Thus by Lecture 16 the norm of $d_n H_n(x)$ is constant. If we also normalize using\n", "$$\n", " \\int_{-\\infty}^\\infty \\E^{-x^2} \\dx = \\sqrt{\\pi}\n", "$$\n", "we get the normalized eigenfunctions\n", "$$\n", " \\psi_n(x) = {H_n(x)\\E^{-x^2/2} \\over \\sqrt{\\sqrt{\\pi} 2^n n!} }\n", "$$" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip7200\">\n", " <rect x=\"0\" y=\"0\" width=\"2000\" height=\"2000\"/>\n", " </clipPath>\n", "</defs>\n", "<defs>\n", " <clipPath id=\"clip7201\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<polygon clip-path=\"url(#clip7201)\" points=\"\n", "0,1600 2400,1600 2400,0 0,0 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip7202\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<polygon clip-path=\"url(#clip7201)\" points=\"\n", "189.504,1503.47 2321.26,1503.47 2321.26,47.2441 189.504,47.2441 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip7203\">\n", " <rect x=\"189\" y=\"47\" width=\"2133\" height=\"1457\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 249.83,1503.47 249.83,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 752.606,1503.47 752.606,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1255.38,1503.47 1255.38,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1758.16,1503.47 1758.16,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2260.93,1503.47 2260.93,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,1419.06 2321.26,1419.06 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,1222.1 2321.26,1222.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,1025.14 2321.26,1025.14 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,828.177 2321.26,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,631.214 2321.26,631.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,434.251 2321.26,434.251 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 189.504,237.289 2321.26,237.289 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,1503.47 2321.26,1503.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,1503.47 189.504,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.83,1503.47 249.83,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 752.606,1503.47 752.606,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1255.38,1503.47 1255.38,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1758.16,1503.47 1758.16,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.93,1503.47 2260.93,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,1419.06 221.48,1419.06 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,1222.1 221.48,1222.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,1025.14 221.48,1025.14 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,828.177 221.48,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,631.214 221.48,631.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,434.251 221.48,434.251 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 189.504,237.289 221.48,237.289 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 249.83, 1557.47)\" x=\"249.83\" y=\"1557.47\">-10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 752.606, 1557.47)\" x=\"752.606\" y=\"1557.47\">-5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1255.38, 1557.47)\" x=\"1255.38\" y=\"1557.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1758.16, 1557.47)\" x=\"1758.16\" y=\"1557.47\">5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2260.93, 1557.47)\" x=\"2260.93\" y=\"1557.47\">10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 1436.56)\" x=\"165.504\" y=\"1436.56\">-0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 1239.6)\" x=\"165.504\" y=\"1239.6\">-0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 1042.64)\" x=\"165.504\" y=\"1042.64\">-0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 845.677)\" x=\"165.504\" y=\"845.677\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 648.714)\" x=\"165.504\" y=\"648.714\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 451.751)\" x=\"165.504\" y=\"451.751\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 165.504, 254.789)\" x=\"165.504\" y=\"254.789\">0.6</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.92,828.177 2260.83,828.177 2260.65,828.177 2260.37,828.177 2260.01,828.177 2259.55,828.177 2259,828.177 2258.36,828.177 2257.62,828.177 2256.8,828.177 \n", " 2255.88,828.177 2254.88,828.177 2253.78,828.177 2252.59,828.177 2251.31,828.177 2249.94,828.177 2248.48,828.177 2246.93,828.177 2245.28,828.177 2243.55,828.177 \n", " 2241.73,828.177 2239.82,828.177 2237.81,828.177 2235.72,828.177 2233.54,828.177 2231.27,828.177 2228.91,828.177 2226.46,828.177 2223.93,828.177 2221.3,828.177 \n", " 2218.59,828.177 2215.79,828.177 2212.9,828.177 2209.92,828.177 2206.86,828.177 2203.71,828.177 2200.47,828.177 2197.15,828.177 2193.74,828.177 2190.25,828.177 \n", " 2186.67,828.177 2183.01,828.177 2179.26,828.177 2175.43,828.177 2171.51,828.177 2167.51,828.177 2163.43,828.177 2159.26,828.177 2155.01,828.177 2150.68,828.177 \n", " 2146.27,828.177 2141.77,828.177 2137.2,828.177 2132.55,828.177 2127.81,828.177 2123,828.177 2118.1,828.177 2113.13,828.177 2108.08,828.177 2102.95,828.177 \n", " 2097.75,828.177 2092.47,828.177 2087.11,828.177 2081.67,828.177 2076.16,828.177 2070.58,828.177 2064.92,828.177 2059.19,828.177 2053.38,828.177 2047.5,828.177 \n", " 2041.55,828.177 2035.53,828.177 2029.44,828.177 2023.27,828.177 2017.04,828.177 2010.74,828.177 2004.36,828.177 1997.92,828.177 1991.41,828.177 1984.84,828.177 \n", " 1978.2,828.177 1971.49,828.177 1964.72,828.177 1957.88,828.177 1950.97,828.177 1944.01,828.177 1936.98,828.177 1929.89,828.177 1922.74,828.177 1915.53,828.177 \n", " 1908.25,828.177 1900.92,828.177 1893.53,828.177 1886.08,828.177 1878.57,828.177 1871.01,828.177 1863.39,828.177 1855.71,828.177 1847.98,828.177 1840.2,828.177 \n", " 1832.36,828.177 1824.47,828.176 1816.53,828.176 1808.54,828.176 1800.49,828.176 1792.4,828.176 1784.26,828.176 1776.07,828.175 1767.83,828.175 1759.54,828.174 \n", " 1751.21,828.173 1742.84,828.171 1734.42,828.168 1725.95,828.164 1717.45,828.157 1708.9,828.148 1700.31,828.135 1691.67,828.116 1683,828.089 1674.29,828.051 \n", " 1665.55,827.996 1656.76,827.92 1647.94,827.814 1639.08,827.667 1630.19,827.465 1621.26,827.19 1612.3,826.817 1603.31,826.317 1594.28,825.65 1585.23,824.768 \n", " 1576.14,823.611 1567.03,822.105 1557.88,820.162 1548.71,817.676 1539.52,814.522 1530.29,810.556 1521.04,805.614 1511.77,799.511 1502.48,792.046 1493.16,783.001 \n", " 1483.82,772.147 1474.46,759.25 1465.07,744.082 1455.67,726.427 1446.26,706.094 1436.82,682.932 1427.37,656.843 1417.9,627.794 1408.42,595.838 1398.92,561.117 \n", " 1389.41,523.881 1379.89,484.489 1370.35,443.413 1360.81,401.236 1351.26,358.641 1341.69,316.398 1332.12,275.344 1322.55,236.354 1312.96,200.314 1303.37,168.085 \n", " 1293.78,140.472 1284.18,118.188 1274.58,101.824 1264.98,91.8228 1255.38,88.4582 1245.78,91.8228 1236.18,101.824 1226.58,118.188 1216.98,140.472 1207.39,168.085 \n", " 1197.8,200.314 1188.22,236.354 1178.64,275.344 1169.07,316.398 1159.51,358.641 1149.95,401.236 1140.41,443.413 1130.88,484.489 1121.36,523.881 1111.85,561.117 \n", " 1102.35,595.838 1092.87,627.794 1083.4,656.843 1073.94,682.932 1064.51,706.094 1055.09,726.427 1045.69,744.082 1036.31,759.25 1026.95,772.147 1017.61,783.001 \n", " 1008.29,792.046 998.993,799.511 989.72,805.614 980.471,810.556 971.248,814.522 962.05,817.676 952.88,820.162 943.736,822.105 934.622,823.611 925.536,824.768 \n", " 916.481,825.65 907.456,826.317 898.463,826.817 889.503,827.19 880.576,827.465 871.683,827.667 862.825,827.814 854.003,827.92 845.218,827.996 836.47,828.051 \n", " 827.76,828.089 819.089,828.116 810.458,828.135 801.868,828.148 793.319,828.157 784.812,828.164 776.348,828.168 767.927,828.171 759.552,828.173 751.221,828.174 \n", " 742.936,828.175 734.698,828.175 726.508,828.176 718.365,828.176 710.272,828.176 702.228,828.176 694.235,828.176 686.293,828.176 678.403,828.177 670.565,828.177 \n", " 662.781,828.177 655.051,828.177 647.375,828.177 639.755,828.177 632.191,828.177 624.684,828.177 617.235,828.177 609.843,828.177 602.511,828.177 595.238,828.177 \n", " 588.025,828.177 580.873,828.177 573.783,828.177 566.755,828.177 559.789,828.177 552.887,828.177 546.049,828.177 539.276,828.177 532.568,828.177 525.925,828.177 \n", " 519.35,828.177 512.841,828.177 506.401,828.177 500.028,828.177 493.724,828.177 487.49,828.177 481.326,828.177 475.232,828.177 469.21,828.177 463.259,828.177 \n", " 457.381,828.177 451.575,828.177 445.842,828.177 440.184,828.177 434.599,828.177 429.09,828.177 423.656,828.177 418.297,828.177 413.015,828.177 407.81,828.177 \n", " 402.682,828.177 397.632,828.177 392.66,828.177 387.767,828.177 382.953,828.177 378.218,828.177 373.563,828.177 368.989,828.177 364.496,828.177 360.084,828.177 \n", " 355.753,828.177 351.505,828.177 347.338,828.177 343.255,828.177 339.255,828.177 335.338,828.177 331.506,828.177 327.757,828.177 324.093,828.177 320.514,828.177 \n", " 317.021,828.177 313.612,828.177 310.29,828.177 307.054,828.177 303.904,828.177 300.841,828.177 297.866,828.177 294.977,828.177 292.176,828.177 289.463,828.177 \n", " 286.838,828.177 284.301,828.177 281.853,828.177 279.493,828.177 277.223,828.177 275.042,828.177 272.95,828.177 270.947,828.177 269.035,828.177 267.212,828.177 \n", " 265.48,828.177 263.837,828.177 262.285,828.177 260.824,828.177 259.454,828.177 258.174,828.177 256.985,828.177 255.887,828.177 254.88,828.177 253.965,828.177 \n", " 253.141,828.177 252.408,828.177 251.767,828.177 251.217,828.177 250.758,828.177 250.392,828.177 250.117,828.177 249.933,828.177 249.842,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.92,828.177 2260.84,828.177 2260.66,828.177 2260.4,828.177 2260.05,828.177 2259.62,828.177 2259.1,828.177 2258.49,828.177 2257.8,828.177 2257.02,828.177 \n", " 2256.15,828.177 2255.19,828.177 2254.15,828.177 2253.03,828.177 2251.82,828.177 2250.52,828.177 2249.13,828.177 2247.66,828.177 2246.1,828.177 2244.46,828.177 \n", " 2242.74,828.177 2240.92,828.177 2239.02,828.177 2237.04,828.177 2234.97,828.177 2232.82,828.177 2230.59,828.177 2228.26,828.177 2225.86,828.177 2223.37,828.177 \n", " 2220.8,828.177 2218.14,828.177 2215.4,828.177 2212.58,828.177 2209.68,828.177 2206.69,828.177 2203.62,828.177 2200.47,828.177 2197.24,828.177 2193.92,828.177 \n", " 2190.53,828.177 2187.05,828.177 2183.49,828.177 2179.86,828.177 2176.14,828.177 2172.34,828.177 2168.47,828.177 2164.51,828.177 2160.48,828.177 2156.37,828.177 \n", " 2152.18,828.177 2147.92,828.177 2143.57,828.177 2139.15,828.177 2134.66,828.177 2130.08,828.177 2125.44,828.177 2120.71,828.177 2115.91,828.177 2111.04,828.177 \n", " 2106.1,828.177 2101.08,828.177 2095.98,828.177 2090.82,828.177 2085.58,828.177 2080.27,828.177 2074.89,828.177 2069.44,828.177 2063.92,828.177 2058.33,828.177 \n", " 2052.67,828.177 2046.94,828.177 2041.14,828.177 2035.27,828.177 2029.34,828.177 2023.34,828.177 2017.27,828.177 2011.14,828.177 2004.94,828.177 1998.68,828.177 \n", " 1992.35,828.177 1985.96,828.177 1979.51,828.177 1972.99,828.177 1966.41,828.177 1959.78,828.177 1953.07,828.177 1946.31,828.177 1939.49,828.177 1932.61,828.177 \n", " 1925.68,828.177 1918.68,828.177 1911.63,828.177 1904.52,828.177 1897.35,828.177 1890.13,828.177 1882.86,828.177 1875.52,828.177 1868.14,828.177 1860.7,828.176 \n", " 1853.21,828.176 1845.67,828.176 1838.08,828.176 1830.44,828.176 1822.75,828.176 1815.01,828.175 1807.22,828.175 1799.38,828.174 1791.5,828.173 1783.57,828.171 \n", " 1775.59,828.168 1767.57,828.164 1759.51,828.158 1751.4,828.15 1743.25,828.137 1735.05,828.119 1726.82,828.094 1718.54,828.057 1710.23,828.006 1701.87,827.933 \n", " 1693.48,827.832 1685.05,827.692 1676.58,827.498 1668.07,827.232 1659.53,826.871 1650.96,826.382 1642.35,825.727 1633.7,824.855 1625.03,823.704 1616.32,822.195 \n", " 1607.58,820.233 1598.81,817.703 1590.01,814.47 1581.19,810.372 1572.33,805.225 1563.45,798.82 1554.54,790.925 1545.6,781.287 1536.64,769.639 1527.65,755.709 \n", " 1518.65,739.228 1509.61,719.946 1500.56,697.649 1491.49,672.179 1482.39,643.457 1473.28,611.505 1464.14,576.471 1454.99,538.653 1445.82,498.517 1436.64,456.713 \n", " 1427.44,414.078 1418.22,371.64 1408.99,330.6 1399.75,292.311 1390.49,258.234 1381.23,229.893 1371.95,208.811 1362.66,196.442 1353.36,194.092 1344.06,202.847 \n", " 1334.74,223.496 1325.42,256.47 1316.1,301.794 1306.76,359.05 1297.43,427.37 1288.09,505.451 1278.75,591.588 1269.4,683.742 1260.06,779.613 1250.71,876.741 \n", " 1241.36,972.611 1232.02,1064.76 1222.68,1150.9 1213.34,1228.98 1204,1297.3 1194.67,1354.56 1185.34,1399.88 1176.02,1432.86 1166.71,1453.51 1157.4,1462.26 \n", " 1148.1,1459.91 1138.82,1447.54 1129.54,1426.46 1120.27,1398.12 1111.02,1364.04 1101.77,1325.75 1092.54,1284.71 1083.33,1242.28 1074.13,1199.64 1064.94,1157.84 \n", " 1055.77,1117.7 1046.62,1079.88 1037.49,1044.85 1028.37,1012.9 1019.28,984.174 1010.2,958.704 1001.15,936.407 992.118,917.125 983.109,900.644 974.124,886.714 \n", " 965.163,875.066 956.227,865.428 947.317,857.533 938.434,851.128 929.578,845.981 920.75,841.883 911.951,838.65 903.182,836.12 894.443,834.158 885.735,832.649 \n", " 877.059,831.498 868.416,830.626 859.807,829.971 851.231,829.483 842.691,829.121 834.186,828.855 825.717,828.661 817.286,828.521 808.892,828.42 800.537,828.347 \n", " 792.222,828.296 783.946,828.259 775.711,828.234 767.518,828.216 759.366,828.203 751.258,828.195 743.193,828.189 735.172,828.185 727.196,828.182 719.266,828.18 \n", " 711.382,828.179 703.546,828.178 695.756,828.178 688.016,828.177 680.324,828.177 672.682,828.177 665.09,828.177 657.549,828.177 650.06,828.177 642.623,828.177 \n", " 635.239,828.177 627.909,828.177 620.633,828.177 613.412,828.177 606.246,828.177 599.136,828.177 592.083,828.177 585.087,828.177 578.149,828.177 571.27,828.177 \n", " 564.45,828.177 557.689,828.177 550.989,828.177 544.35,828.177 537.772,828.177 531.256,828.177 524.802,828.177 518.412,828.177 512.085,828.177 505.823,828.177 \n", " 499.625,828.177 493.493,828.177 487.426,828.177 481.426,828.177 475.492,828.177 469.626,828.177 463.828,828.177 458.099,828.177 452.438,828.177 446.846,828.177 \n", " 441.325,828.177 435.873,828.177 430.493,828.177 425.183,828.177 419.946,828.177 414.781,828.177 409.688,828.177 404.668,828.177 399.722,828.177 394.85,828.177 \n", " 390.052,828.177 385.329,828.177 380.681,828.177 376.108,828.177 371.612,828.177 367.191,828.177 362.848,828.177 358.582,828.177 354.393,828.177 350.282,828.177 \n", " 346.249,828.177 342.295,828.177 338.42,828.177 334.623,828.177 330.907,828.177 327.27,828.177 323.713,828.177 320.237,828.177 316.842,828.177 313.528,828.177 \n", " 310.295,828.177 307.144,828.177 304.074,828.177 301.087,828.177 298.183,828.177 295.361,828.177 292.622,828.177 289.966,828.177 287.393,828.177 284.905,828.177 \n", " 282.5,828.177 280.179,828.177 277.942,828.177 275.79,828.177 273.722,828.177 271.739,828.177 269.841,828.177 268.029,828.177 266.301,828.177 264.659,828.177 \n", " 263.103,828.177 261.632,828.177 260.247,828.177 258.949,828.177 257.736,828.177 256.609,828.177 255.569,828.177 254.615,828.177 253.748,828.177 252.967,828.177 \n", " 252.272,828.177 251.665,828.177 251.144,828.177 250.71,828.177 250.362,828.177 250.102,828.177 249.928,828.177 249.841,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.92,828.177 2260.84,828.177 2260.68,828.177 2260.43,828.177 2260.1,828.177 2259.69,828.177 2259.19,828.177 2258.62,828.177 2257.96,828.177 2257.22,828.177 \n", " 2256.39,828.177 2255.49,828.177 2254.5,828.177 2253.43,828.177 2252.28,828.177 2251.05,828.177 2249.73,828.177 2248.34,828.177 2246.86,828.177 2245.3,828.177 \n", " 2243.66,828.177 2241.94,828.177 2240.14,828.177 2238.26,828.177 2236.3,828.177 2234.25,828.177 2232.13,828.177 2229.93,828.177 2227.65,828.177 2225.28,828.177 \n", " 2222.84,828.177 2220.32,828.177 2217.72,828.177 2215.04,828.177 2212.28,828.177 2209.44,828.177 2206.53,828.177 2203.54,828.177 2200.46,828.177 2197.32,828.177 \n", " 2194.09,828.177 2190.79,828.177 2187.41,828.177 2183.95,828.177 2180.42,828.177 2176.82,828.177 2173.13,828.177 2169.38,828.177 2165.54,828.177 2161.63,828.177 \n", " 2157.65,828.177 2153.6,828.177 2149.47,828.177 2145.27,828.177 2140.99,828.177 2136.64,828.177 2132.22,828.177 2127.73,828.177 2123.16,828.177 2118.53,828.177 \n", " 2113.82,828.177 2109.05,828.177 2104.2,828.177 2099.29,828.177 2094.3,828.177 2089.25,828.177 2084.13,828.177 2078.94,828.177 2073.68,828.177 2068.35,828.177 \n", " 2062.96,828.177 2057.51,828.177 2051.98,828.177 2046.4,828.177 2040.74,828.177 2035.02,828.177 2029.24,828.177 2023.4,828.177 2017.49,828.177 2011.52,828.177 \n", " 2005.49,828.177 1999.39,828.177 1993.24,828.177 1987.03,828.177 1980.75,828.177 1974.42,828.177 1968.02,828.177 1961.57,828.177 1955.06,828.177 1948.49,828.177 \n", " 1941.87,828.177 1935.19,828.177 1928.45,828.177 1921.66,828.177 1914.82,828.177 1907.92,828.177 1900.96,828.177 1893.96,828.176 1886.9,828.176 1879.79,828.176 \n", " 1872.63,828.176 1865.41,828.176 1858.15,828.176 1850.84,828.176 1843.48,828.175 1836.07,828.175 1828.62,828.174 1821.11,828.172 1813.56,828.17 1805.97,828.167 \n", " 1798.33,828.163 1790.64,828.156 1782.91,828.147 1775.14,828.133 1767.33,828.114 1759.47,828.087 1751.57,828.048 1743.63,827.993 1735.66,827.917 1727.64,827.811 \n", " 1719.58,827.663 1711.49,827.461 1703.36,827.185 1695.19,826.809 1686.98,826.304 1678.74,825.626 1670.47,824.725 1662.16,823.537 1653.82,821.979 1645.44,819.955 \n", " 1637.03,817.346 1628.6,814.008 1620.13,809.776 1611.63,804.456 1603.1,797.83 1594.54,789.654 1585.96,779.664 1577.35,767.578 1568.71,753.11 1560.05,735.982 \n", " 1551.36,715.935 1542.65,692.754 1533.91,666.292 1525.15,636.492 1516.37,603.421 1507.57,567.298 1498.75,528.519 1489.9,487.686 1481.04,445.623 1472.16,403.383 \n", " 1463.26,362.247 1454.34,323.704 1445.41,289.414 1436.47,261.157 1427.5,240.757 1418.53,229.995 1409.54,230.507 1400.53,243.674 1391.52,270.508 1382.49,311.549 \n", " 1373.46,366.767 1364.41,435.502 1355.36,516.42 1346.3,607.511 1337.23,706.139 1328.15,809.116 1319.07,912.835 1309.98,1013.43 1300.89,1106.96 1291.79,1189.62 \n", " 1282.69,1257.94 1273.59,1308.99 1264.49,1340.56 1255.38,1351.24 1246.28,1340.56 1237.18,1308.99 1228.07,1257.94 1218.97,1189.62 1209.88,1106.96 1200.79,1013.43 \n", " 1191.7,912.835 1182.61,809.116 1173.54,706.139 1164.47,607.511 1155.41,516.42 1146.35,435.502 1137.31,366.767 1128.27,311.549 1119.24,270.508 1110.23,243.674 \n", " 1101.23,230.507 1092.24,229.995 1083.26,240.757 1074.3,261.157 1065.35,289.414 1056.42,323.704 1047.5,362.247 1038.6,403.383 1029.72,445.623 1020.86,487.686 \n", " 1012.02,528.519 1003.2,567.298 994.393,603.421 985.612,636.492 976.853,666.292 968.117,692.754 959.405,715.935 950.716,735.982 942.053,753.11 933.415,767.578 \n", " 924.804,779.664 916.22,789.654 907.664,797.83 899.136,804.456 890.637,809.776 882.168,814.008 873.73,817.346 865.323,819.955 856.948,821.979 848.606,823.537 \n", " 840.297,824.725 832.022,825.626 823.782,826.304 815.577,826.809 807.409,827.185 799.277,827.461 791.182,827.663 783.125,827.811 775.108,827.917 767.129,827.993 \n", " 759.19,828.048 751.293,828.087 743.436,828.114 735.622,828.133 727.85,828.147 720.121,828.156 712.436,828.163 704.796,828.167 697.201,828.17 689.651,828.172 \n", " 682.148,828.174 674.692,828.175 667.283,828.175 659.923,828.176 652.612,828.176 645.35,828.176 638.138,828.176 630.976,828.176 623.866,828.176 616.807,828.176 \n", " 609.801,828.177 602.848,828.177 595.948,828.177 589.102,828.177 582.311,828.177 575.575,828.177 568.895,828.177 562.271,828.177 555.704,828.177 549.194,828.177 \n", " 542.742,828.177 536.348,828.177 530.014,828.177 523.739,828.177 517.524,828.177 511.369,828.177 505.275,828.177 499.243,828.177 493.273,828.177 487.365,828.177 \n", " 481.52,828.177 475.739,828.177 470.022,828.177 464.368,828.177 458.78,828.177 453.257,828.177 447.8,828.177 442.409,828.177 437.085,828.177 431.827,828.177 \n", " 426.637,828.177 421.516,828.177 416.462,828.177 411.477,828.177 406.562,828.177 401.716,828.177 396.94,828.177 392.234,828.177 387.599,828.177 383.035,828.177 \n", " 378.543,828.177 374.123,828.177 369.774,828.177 365.499,828.177 361.296,828.177 357.167,828.177 353.111,828.177 349.129,828.177 345.222,828.177 341.389,828.177 \n", " 337.631,828.177 333.948,828.177 330.341,828.177 326.809,828.177 323.354,828.177 319.975,828.177 316.673,828.177 313.448,828.177 310.3,828.177 307.229,828.177 \n", " 304.236,828.177 301.321,828.177 298.484,828.177 295.726,828.177 293.046,828.177 290.446,828.177 287.924,828.177 285.482,828.177 283.119,828.177 280.836,828.177 \n", " 278.632,828.177 276.509,828.177 274.466,828.177 272.503,828.177 270.621,828.177 268.82,828.177 267.1,828.177 265.46,828.177 263.902,828.177 262.425,828.177 \n", " 261.029,828.177 259.715,828.177 258.482,828.177 257.332,828.177 256.263,828.177 255.276,828.177 254.37,828.177 253.547,828.177 252.806,828.177 252.147,828.177 \n", " 251.571,828.177 251.077,828.177 250.665,828.177 250.335,828.177 250.088,828.177 249.923,828.177 249.841,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.92,828.177 2260.85,828.177 2260.69,828.177 2260.45,828.177 2260.14,828.177 2259.75,828.177 2259.28,828.177 2258.73,828.177 2258.11,828.177 2257.4,828.177 \n", " 2256.62,828.177 2255.76,828.177 2254.82,828.177 2253.81,828.177 2252.71,828.177 2251.54,828.177 2250.29,828.177 2248.97,828.177 2247.56,828.177 2246.08,828.177 \n", " 2244.52,828.177 2242.89,828.177 2241.18,828.177 2239.39,828.177 2237.52,828.177 2235.58,828.177 2233.56,828.177 2231.47,828.177 2229.3,828.177 2227.05,828.177 \n", " 2224.73,828.177 2222.33,828.177 2219.86,828.177 2217.31,828.177 2214.69,828.177 2211.99,828.177 2209.22,828.177 2206.37,828.177 2203.45,828.177 2200.46,828.177 \n", " 2197.39,828.177 2194.25,828.177 2191.04,828.177 2187.75,828.177 2184.39,828.177 2180.96,828.177 2177.45,828.177 2173.88,828.177 2170.23,828.177 2166.51,828.177 \n", " 2162.72,828.177 2158.86,828.177 2154.93,828.177 2150.93,828.177 2146.86,828.177 2142.72,828.177 2138.51,828.177 2134.24,828.177 2129.89,828.177 2125.47,828.177 \n", " 2120.99,828.177 2116.44,828.177 2111.83,828.177 2107.14,828.177 2102.39,828.177 2097.58,828.177 2092.7,828.177 2087.75,828.177 2082.74,828.177 2077.67,828.177 \n", " 2072.53,828.177 2067.32,828.177 2062.06,828.177 2056.73,828.177 2051.34,828.177 2045.88,828.177 2040.37,828.177 2034.79,828.177 2029.15,828.177 2023.46,828.177 \n", " 2017.7,828.177 2011.88,828.177 2006.01,828.177 2000.07,828.177 1994.08,828.177 1988.03,828.177 1981.93,828.177 1975.76,828.177 1969.54,828.177 1963.27,828.177 \n", " 1956.94,828.177 1950.56,828.177 1944.12,828.177 1937.63,828.177 1931.08,828.177 1924.48,828.177 1917.83,828.176 1911.13,828.176 1904.38,828.176 1897.57,828.176 \n", " 1890.72,828.176 1883.82,828.176 1876.87,828.176 1869.87,828.175 1862.82,828.174 1855.72,828.173 1848.58,828.172 1841.39,828.17 1834.16,828.167 1826.88,828.162 \n", " 1819.56,828.156 1812.19,828.146 1804.78,828.133 1797.33,828.114 1789.83,828.087 1782.29,828.05 1774.72,827.997 1767.1,827.924 1759.44,827.823 1751.74,827.683 \n", " 1744,827.492 1736.23,827.232 1728.42,826.879 1720.57,826.405 1712.68,825.771 1704.76,824.93 1696.81,823.821 1688.82,822.369 1680.79,820.482 1672.74,818.048 \n", " 1664.65,814.933 1656.53,810.979 1648.37,806.003 1640.19,799.792 1631.98,792.113 1623.73,782.704 1615.46,771.291 1607.16,757.587 1598.84,741.308 1590.48,722.187 \n", " 1582.1,699.993 1573.7,674.559 1565.27,645.803 1556.82,613.763 1548.34,578.626 1539.84,540.763 1531.32,500.753 1522.77,459.411 1514.21,417.798 1505.62,377.226 \n", " 1497.02,339.239 1488.4,305.582 1479.76,278.144 1471.1,258.882 1462.42,249.721 1453.73,252.44 1445.02,268.537 1436.3,299.101 1427.57,344.672 1418.82,405.13 \n", " 1410.06,479.596 1401.28,566.388 1392.5,663.002 1383.7,766.173 1374.89,871.973 1366.08,975.982 1357.25,1073.51 1348.42,1159.84 1339.58,1230.56 1330.74,1281.79 \n", " 1321.89,1310.53 1313.03,1314.84 1304.17,1294.05 1295.3,1248.89 1286.43,1181.43 1277.56,1095.07 1268.69,994.326 1259.82,884.58 1250.95,771.773 1242.07,662.027 \n", " 1233.2,561.281 1224.33,474.921 1215.46,407.464 1206.6,362.299 1197.73,341.518 1188.88,345.825 1180.03,374.56 1171.18,425.793 1162.34,496.509 1153.51,582.845 \n", " 1144.69,680.371 1135.87,784.38 1127.06,890.18 1118.27,993.351 1109.48,1089.97 1100.71,1176.76 1091.95,1251.22 1083.2,1311.68 1074.46,1357.25 1065.74,1387.82 \n", " 1057.03,1403.91 1048.34,1406.63 1039.67,1397.47 1031.01,1378.21 1022.37,1350.77 1013.74,1317.11 1005.14,1279.13 996.555,1238.55 987.99,1196.94 979.447,1155.6 \n", " 970.924,1115.59 962.424,1077.73 953.947,1042.59 945.493,1010.55 937.064,981.794 928.659,956.36 920.28,934.167 911.926,915.045 903.6,898.766 895.301,885.062 \n", " 887.03,873.649 878.787,864.241 870.574,856.561 862.391,850.35 854.238,845.374 846.117,841.42 838.028,838.305 829.971,835.871 821.947,833.984 813.957,832.532 \n", " 806.001,831.423 798.081,830.582 790.196,829.948 782.347,829.474 774.535,829.122 766.76,828.861 759.024,828.67 751.326,828.53 743.667,828.429 736.049,828.356 \n", " 728.47,828.303 720.933,828.266 713.437,828.239 705.984,828.22 698.573,828.207 691.206,828.198 683.883,828.191 676.604,828.187 669.37,828.183 662.182,828.181 \n", " 655.04,828.18 647.945,828.179 640.897,828.178 633.897,828.178 626.945,828.177 620.042,828.177 613.189,828.177 606.386,828.177 599.633,828.177 592.932,828.177 \n", " 586.282,828.177 579.684,828.177 573.139,828.177 566.646,828.177 560.208,828.177 553.824,828.177 547.494,828.177 541.219,828.177 535,828.177 528.837,828.177 \n", " 522.731,828.177 516.682,828.177 510.69,828.177 504.756,828.177 498.881,828.177 493.064,828.177 487.307,828.177 481.61,828.177 475.973,828.177 470.397,828.177 \n", " 464.882,828.177 459.428,828.177 454.037,828.177 448.707,828.177 443.441,828.177 438.238,828.177 433.099,828.177 428.023,828.177 423.012,828.177 418.066,828.177 \n", " 413.185,828.177 408.369,828.177 403.62,828.177 398.937,828.177 394.32,828.177 389.771,828.177 385.289,828.177 380.875,828.177 376.529,828.177 372.251,828.177 \n", " 368.042,828.177 363.902,828.177 359.832,828.177 355.831,828.177 351.901,828.177 348.041,828.177 344.251,828.177 340.532,828.177 336.885,828.177 333.309,828.177 \n", " 329.805,828.177 326.373,828.177 323.014,828.177 319.727,828.177 316.513,828.177 313.372,828.177 310.304,828.177 307.31,828.177 304.39,828.177 301.543,828.177 \n", " 298.772,828.177 296.074,828.177 293.452,828.177 290.904,828.177 288.431,828.177 286.034,828.177 283.712,828.177 281.466,828.177 279.295,828.177 277.201,828.177 \n", " 275.183,828.177 273.241,828.177 271.376,828.177 269.587,828.177 267.875,828.177 266.24,828.177 264.682,828.177 263.201,828.177 261.797,828.177 260.471,828.177 \n", " 259.222,828.177 258.051,828.177 256.958,828.177 255.942,828.177 255.004,828.177 254.144,828.177 253.362,828.177 252.658,828.177 252.032,828.177 251.484,828.177 \n", " 251.014,828.177 250.623,828.177 250.31,828.177 250.075,828.177 249.918,828.177 249.84,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.93,828.177 2260.87,828.177 2260.77,828.177 2260.61,828.177 2260.4,828.177 2260.14,828.177 2259.82,828.177 2259.45,828.177 2259.03,828.177 2258.56,828.177 \n", " 2258.03,828.177 2257.45,828.177 2256.82,828.177 2256.14,828.177 2255.4,828.177 2254.61,828.177 2253.77,828.177 2252.88,828.177 2251.93,828.177 2250.93,828.177 \n", " 2249.88,828.177 2248.78,828.177 2247.63,828.177 2246.42,828.177 2245.16,828.177 2243.85,828.177 2242.49,828.177 2241.08,828.177 2239.61,828.177 2238.09,828.177 \n", " 2236.53,828.177 2234.91,828.177 2233.24,828.177 2231.51,828.177 2229.74,828.177 2227.92,828.177 2226.04,828.177 2224.11,828.177 2222.14,828.177 2220.11,828.177 \n", " 2218.03,828.177 2215.9,828.177 2213.72,828.177 2211.49,828.177 2209.21,828.177 2206.88,828.177 2204.51,828.177 2202.08,828.177 2199.6,828.177 2197.07,828.177 \n", " 2194.49,828.177 2191.87,828.177 2189.19,828.177 2186.47,828.177 2183.69,828.177 2180.87,828.177 2178,828.177 2175.08,828.177 2172.11,828.177 2169.1,828.177 \n", " 2166.04,828.177 2162.93,828.177 2159.77,828.177 2156.56,828.177 2153.31,828.177 2150.01,828.177 2146.66,828.177 2143.27,828.177 2139.83,828.177 2136.34,828.177 \n", " 2132.81,828.177 2129.23,828.177 2125.61,828.177 2121.94,828.177 2118.22,828.177 2114.46,828.177 2110.66,828.177 2106.81,828.177 2102.91,828.177 2098.97,828.177 \n", " 2094.99,828.177 2090.96,828.177 2086.89,828.177 2082.78,828.177 2078.62,828.177 2074.42,828.177 2070.17,828.177 2065.89,828.177 2061.56,828.177 2057.18,828.177 \n", " 2052.77,828.177 2048.31,828.177 2043.82,828.177 2039.28,828.177 2034.7,828.177 2030.08,828.177 2025.42,828.177 2020.72,828.177 2015.98,828.177 2011.2,828.177 \n", " 2006.38,828.177 2001.52,828.177 1996.62,828.177 1991.68,828.177 1986.7,828.177 1981.69,828.177 1976.63,828.177 1971.54,828.177 1966.41,828.177 1961.25,828.177 \n", " 1956.05,828.177 1950.81,828.177 1945.53,828.176 1940.22,828.176 1934.87,828.176 1929.49,828.176 1924.07,828.176 1918.62,828.176 1913.13,828.176 1907.6,828.176 \n", " 1902.05,828.176 1896.46,828.175 1890.83,828.175 1885.17,828.174 1879.48,828.173 1873.76,828.172 1868,828.17 1862.22,828.167 1856.4,828.164 1850.54,828.16 \n", " 1844.66,828.154 1838.75,828.146 1832.81,828.135 1826.83,828.121 1820.83,828.102 1814.79,828.077 1808.73,828.044 1802.64,828 1796.52,827.943 1790.37,827.868 \n", " 1784.19,827.769 1777.99,827.642 1771.75,827.477 1765.49,827.263 1759.21,826.99 1752.9,826.639 1746.56,826.192 1740.19,825.626 1733.8,824.91 1727.39,824.009 \n", " 1720.95,822.883 1714.49,821.479 1708,819.74 1701.49,817.597 1694.95,814.968 1688.39,811.761 1681.81,807.873 1675.21,803.186 1668.58,797.569 1661.94,790.879 \n", " 1655.27,782.965 1648.58,773.664 1641.87,762.811 1635.14,750.237 1628.39,735.782 1621.62,719.296 1614.83,700.653 1608.03,679.756 1601.2,656.555 1594.36,631.052 \n", " 1587.49,603.324 1580.62,573.528 1573.72,541.918 1566.81,508.861 1559.88,474.84 1552.93,440.466 1545.97,406.477 1539,373.738 1532.01,343.231 1525,316.033 \n", " 1517.98,293.297 1510.95,276.216 1503.9,265.977 1496.84,263.715 1489.77,270.457 1482.69,287.056 1475.59,314.133 1468.48,352.016 1461.36,400.677 1454.23,459.693 \n", " 1447.09,528.208 1439.94,604.914 1432.78,688.059 1425.61,775.473 1418.43,864.618 1411.25,952.669 1404.05,1036.61 1396.85,1113.37 1389.64,1179.94 1382.42,1233.53 \n", " 1375.2,1271.73 1367.97,1292.64 1360.73,1295.01 1353.49,1278.32 1346.24,1242.89 1338.99,1189.86 1331.74,1121.21 1324.48,1039.73 1317.21,948.835 1309.95,852.498 \n", " 1302.68,755.029 1295.41,660.876 1288.13,574.411 1280.86,499.697 1273.58,440.282 1266.3,399.008 1259.02,377.861 1251.74,377.861 1244.46,399.008 1237.19,440.282 \n", " 1229.91,499.697 1222.63,574.411 1215.36,660.876 1208.09,755.029 1200.82,852.498 1193.55,948.835 1186.29,1039.73 1179.03,1121.21 1171.77,1189.86 1164.52,1242.89 \n", " 1157.27,1278.32 1150.03,1295.01 1142.8,1292.64 1135.57,1271.73 1128.34,1233.53 1121.12,1179.94 1113.91,1113.37 1106.71,1036.61 1099.52,952.669 1092.33,864.618 \n", " 1085.15,775.473 1077.98,688.059 1070.82,604.914 1063.67,528.208 1056.53,459.693 1049.4,400.677 1042.28,352.016 1035.18,314.133 1028.08,287.056 1020.99,270.457 \n", " 1013.92,263.715 1006.86,265.977 999.816,276.216 992.783,293.297 985.764,316.033 978.759,343.231 971.768,373.738 964.792,406.477 957.831,440.466 950.886,474.84 \n", " 943.957,508.861 937.044,541.918 930.148,573.528 923.269,603.324 916.408,631.052 909.564,656.555 902.738,679.756 895.931,700.653 889.142,719.296 882.373,735.782 \n", " 875.623,750.237 868.893,762.811 862.184,773.664 855.495,782.965 848.827,790.879 842.18,797.569 835.555,803.186 828.952,807.873 822.371,811.761 815.813,814.968 \n", " 809.278,817.597 802.767,819.74 796.279,821.479 789.815,822.883 783.375,824.009 776.961,824.91 770.571,825.626 764.207,826.192 757.868,826.639 751.556,826.99 \n", " 745.27,827.263 739.011,827.477 732.778,827.642 726.573,827.769 720.396,827.868 714.247,827.943 708.126,828 702.034,828.044 695.971,828.077 689.937,828.102 \n", " 683.933,828.121 677.959,828.135 672.015,828.146 666.102,828.154 660.219,828.16 654.368,828.164 648.548,828.167 642.76,828.17 637.004,828.172 631.28,828.173 \n", " 625.589,828.174 619.932,828.175 614.307,828.175 608.716,828.176 603.159,828.176 597.636,828.176 592.148,828.176 586.694,828.176 581.275,828.176 575.892,828.176 \n", " 570.544,828.176 565.232,828.176 559.957,828.177 554.718,828.177 549.515,828.177 544.35,828.177 539.221,828.177 534.131,828.177 529.078,828.177 524.063,828.177 \n", " 519.086,828.177 514.148,828.177 509.249,828.177 504.389,828.177 499.568,828.177 494.787,828.177 490.046,828.177 485.345,828.177 480.684,828.177 476.064,828.177 \n", " 471.484,828.177 466.946,828.177 462.449,828.177 457.994,828.177 453.58,828.177 449.208,828.177 444.879,828.177 440.592,828.177 436.348,828.177 432.146,828.177 \n", " 427.988,828.177 423.873,828.177 419.802,828.177 415.775,828.177 411.791,828.177 407.852,828.177 403.957,828.177 400.107,828.177 396.301,828.177 392.541,828.177 \n", " 388.826,828.177 385.156,828.177 381.532,828.177 377.953,828.177 374.421,828.177 370.934,828.177 367.495,828.177 364.101,828.177 360.754,828.177 357.455,828.177 \n", " 354.202,828.177 350.996,828.177 347.838,828.177 344.727,828.177 341.664,828.177 338.649,828.177 335.682,828.177 332.764,828.177 329.893,828.177 327.071,828.177 \n", " 324.298,828.177 321.573,828.177 318.898,828.177 316.271,828.177 313.694,828.177 311.166,828.177 308.687,828.177 306.258,828.177 303.879,828.177 301.55,828.177 \n", " 299.271,828.177 297.041,828.177 294.862,828.177 292.734,828.177 290.655,828.177 288.628,828.177 286.651,828.177 284.724,828.177 282.849,828.177 281.024,828.177 \n", " 279.251,828.177 277.529,828.177 275.858,828.177 274.238,828.177 272.67,828.177 271.153,828.177 269.688,828.177 268.274,828.177 266.912,828.177 265.602,828.177 \n", " 264.344,828.177 263.138,828.177 261.984,828.177 260.881,828.177 259.831,828.177 258.833,828.177 257.888,828.177 256.994,828.177 256.153,828.177 255.364,828.177 \n", " 254.628,828.177 253.944,828.177 253.312,828.177 252.733,828.177 252.207,828.177 251.733,828.177 251.312,828.177 250.943,828.177 250.627,828.177 250.364,828.177 \n", " 250.153,828.177 249.995,828.177 249.89,828.177 249.837,828.177 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7203)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2260.93,828.177 2260.87,828.177 2260.77,828.177 2260.61,828.177 2260.4,828.177 2260.14,828.177 2259.82,828.177 2259.45,828.177 2259.03,828.177 2258.56,828.177 \n", " 2258.03,828.177 2257.45,828.177 2256.82,828.177 2256.14,828.177 2255.4,828.177 2254.61,828.177 2253.77,828.177 2252.88,828.177 2251.93,828.177 2250.93,828.177 \n", " 2249.88,828.177 2248.78,828.177 2247.63,828.177 2246.42,828.177 2245.16,828.177 2243.85,828.177 2242.49,828.177 2241.08,828.177 2239.61,828.177 2238.09,828.177 \n", " 2236.53,828.177 2234.91,828.177 2233.24,828.177 2231.51,828.177 2229.74,828.177 2227.92,828.177 2226.04,828.177 2224.11,828.177 2222.14,828.177 2220.11,828.177 \n", " 2218.03,828.177 2215.9,828.177 2213.72,828.177 2211.49,828.177 2209.21,828.177 2206.88,828.177 2204.51,828.177 2202.08,828.177 2199.6,828.177 2197.07,828.177 \n", " 2194.49,828.177 2191.87,828.177 2189.19,828.177 2186.47,828.177 2183.69,828.177 2180.87,828.177 2178,828.177 2175.08,828.177 2172.11,828.177 2169.1,828.177 \n", " 2166.04,828.177 2162.93,828.177 2159.77,828.177 2156.56,828.177 2153.31,828.177 2150.01,828.177 2146.66,828.177 2143.27,828.177 2139.83,828.177 2136.34,828.177 \n", " 2132.81,828.177 2129.23,828.177 2125.61,828.177 2121.94,828.177 2118.22,828.177 2114.46,828.177 2110.66,828.177 2106.81,828.177 2102.91,828.177 2098.97,828.177 \n", " 2094.99,828.177 2090.96,828.177 2086.89,828.177 2082.78,828.177 2078.62,828.177 2074.42,828.177 2070.17,828.177 2065.89,828.177 2061.56,828.177 2057.18,828.177 \n", " 2052.77,828.177 2048.31,828.177 2043.82,828.177 2039.28,828.177 2034.7,828.177 2030.08,828.177 2025.42,828.177 2020.72,828.177 2015.98,828.177 2011.2,828.177 \n", " 2006.38,828.177 2001.52,828.177 1996.62,828.177 1991.68,828.177 1986.7,828.177 1981.69,828.177 1976.63,828.177 1971.54,828.177 1966.41,828.176 1961.25,828.176 \n", " 1956.05,828.176 1950.81,828.176 1945.53,828.176 1940.22,828.176 1934.87,828.176 1929.49,828.176 1924.07,828.175 1918.62,828.175 1913.13,828.174 1907.6,828.174 \n", " 1902.05,828.173 1896.46,828.171 1890.83,828.169 1885.17,828.167 1879.48,828.163 1873.76,828.159 1868,828.152 1862.22,828.144 1856.4,828.133 1850.54,828.118 \n", " 1844.66,828.098 1838.75,828.071 1832.81,828.036 1826.83,827.99 1820.83,827.929 1814.79,827.85 1808.73,827.747 1802.64,827.613 1796.52,827.439 1790.37,827.214 \n", " 1784.19,826.926 1777.99,826.557 1771.75,826.086 1765.49,825.489 1759.21,824.735 1752.9,823.785 1746.56,822.597 1740.19,821.116 1733.8,819.279 1727.39,817.014 \n", " 1720.95,814.235 1714.49,810.845 1708,806.732 1701.49,801.771 1694.95,795.825 1688.39,788.744 1681.81,780.365 1675.21,770.521 1668.58,759.036 1661.94,745.74 \n", " 1655.27,730.468 1648.58,713.071 1641.87,693.429 1635.14,671.458 1628.39,647.127 1621.62,620.471 1614.83,591.605 1608.03,560.743 1601.2,528.21 1594.36,494.452 \n", " 1587.49,460.054 1580.62,425.738 1573.72,392.366 1566.81,360.935 1559.88,332.557 1552.93,308.441 1545.97,289.854 1539,278.077 1532.01,274.354 1525,279.824 \n", " 1517.98,295.457 1510.95,321.976 1503.9,359.791 1496.84,408.92 1489.77,468.942 1482.69,538.943 1475.59,617.498 1468.48,702.665 1461.36,792.023 1454.23,882.725 \n", " 1447.09,971.595 1439.94,1055.25 1432.78,1130.24 1425.61,1193.26 1418.43,1241.27 1411.25,1271.74 1404.05,1282.81 1396.85,1273.41 1389.64,1243.45 1382.42,1193.84 \n", " 1375.2,1126.53 1367.97,1044.47 1360.73,951.481 1353.49,852.137 1346.24,751.492 1338.99,654.834 1331.74,567.387 1324.48,494.001 1317.21,438.851 1309.95,405.17 \n", " 1302.68,395.029 1295.41,409.181 1288.13,446.99 1280.86,506.439 1273.58,584.233 1266.3,675.982 1259.02,776.455 1251.74,879.898 1244.46,980.372 1237.19,1072.12 \n", " 1229.91,1149.91 1222.63,1209.36 1215.36,1247.17 1208.09,1261.32 1200.82,1251.18 1193.55,1217.5 1186.29,1162.35 1179.03,1088.97 1171.77,1001.52 1164.52,904.862 \n", " 1157.27,804.216 1150.03,704.872 1142.8,611.888 1135.57,529.822 1128.34,462.511 1121.12,412.901 1113.91,382.942 1106.71,373.547 1099.52,384.61 1092.33,415.082 \n", " 1085.15,463.093 1077.98,526.109 1070.82,601.105 1063.67,684.758 1056.53,773.628 1049.4,864.33 1042.28,953.688 1035.18,1038.86 1028.08,1117.41 1020.99,1187.41 \n", " 1013.92,1247.43 1006.86,1296.56 999.816,1334.38 992.783,1360.9 985.764,1376.53 978.759,1382 971.768,1378.28 964.792,1366.5 957.831,1347.91 950.886,1323.8 \n", " 943.957,1295.42 937.044,1263.99 930.148,1230.61 923.269,1196.3 916.408,1161.9 909.564,1128.14 902.738,1095.61 895.931,1064.75 889.142,1035.88 882.373,1009.23 \n", " 875.623,984.895 868.893,962.924 862.184,943.282 855.495,925.885 848.827,910.613 842.18,897.317 835.555,885.832 828.952,875.988 822.371,867.609 815.813,860.528 \n", " 809.278,854.582 802.767,849.621 796.279,845.508 789.815,842.118 783.375,839.339 776.961,837.074 770.571,835.238 764.207,833.756 757.868,832.568 751.556,831.619 \n", " 745.27,830.864 739.011,830.267 732.778,829.796 726.573,829.427 720.396,829.139 714.247,828.914 708.126,828.74 702.034,828.606 695.971,828.503 689.937,828.424 \n", " 683.933,828.363 677.959,828.317 672.015,828.282 666.102,828.256 660.219,828.236 654.368,828.221 648.548,828.209 642.76,828.201 637.004,828.195 631.28,828.19 \n", " 625.589,828.186 619.932,828.184 614.307,828.182 608.716,828.18 603.159,828.179 597.636,828.179 592.148,828.178 586.694,828.178 581.275,828.177 575.892,828.177 \n", " 570.544,828.177 565.232,828.177 559.957,828.177 554.718,828.177 549.515,828.177 544.35,828.177 539.221,828.177 534.131,828.177 529.078,828.177 524.063,828.177 \n", " 519.086,828.177 514.148,828.177 509.249,828.177 504.389,828.177 499.568,828.177 494.787,828.177 490.046,828.177 485.345,828.177 480.684,828.177 476.064,828.177 \n", " 471.484,828.177 466.946,828.177 462.449,828.177 457.994,828.177 453.58,828.177 449.208,828.177 444.879,828.177 440.592,828.177 436.348,828.177 432.146,828.177 \n", " 427.988,828.177 423.873,828.177 419.802,828.177 415.775,828.177 411.791,828.177 407.852,828.177 403.957,828.177 400.107,828.177 396.301,828.177 392.541,828.177 \n", " 388.826,828.177 385.156,828.177 381.532,828.177 377.953,828.177 374.421,828.177 370.934,828.177 367.495,828.177 364.101,828.177 360.754,828.177 357.455,828.177 \n", " 354.202,828.177 350.996,828.177 347.838,828.177 344.727,828.177 341.664,828.177 338.649,828.177 335.682,828.177 332.764,828.177 329.893,828.177 327.071,828.177 \n", " 324.298,828.177 321.573,828.177 318.898,828.177 316.271,828.177 313.694,828.177 311.166,828.177 308.687,828.177 306.258,828.177 303.879,828.177 301.55,828.177 \n", " 299.271,828.177 297.041,828.177 294.862,828.177 292.734,828.177 290.655,828.177 288.628,828.177 286.651,828.177 284.724,828.177 282.849,828.177 281.024,828.177 \n", " 279.251,828.177 277.529,828.177 275.858,828.177 274.238,828.177 272.67,828.177 271.153,828.177 269.688,828.177 268.274,828.177 266.912,828.177 265.602,828.177 \n", " 264.344,828.177 263.138,828.177 261.984,828.177 260.881,828.177 259.831,828.177 258.833,828.177 257.888,828.177 256.994,828.177 256.153,828.177 255.364,828.177 \n", " 254.628,828.177 253.944,828.177 253.312,828.177 252.733,828.177 252.207,828.177 251.733,828.177 251.312,828.177 250.943,828.177 250.627,828.177 250.364,828.177 \n", " 250.153,828.177 249.995,828.177 249.89,828.177 249.837,828.177 \n", " \"/>\n", "<polygon clip-path=\"url(#clip7201)\" points=\"\n", "1900.86,554.124 2249.26,554.124 2249.26,130.764 1900.86,130.764 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1900.86,554.124 2249.26,554.124 2249.26,130.764 1900.86,130.764 1900.86,554.124 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,191.244 2068.86,191.244 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 208.744)\" x=\"2092.86\" y=\"208.744\">n = 0</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,251.724 2068.86,251.724 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 269.224)\" x=\"2092.86\" y=\"269.224\">n = 1</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,312.204 2068.86,312.204 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 329.704)\" x=\"2092.86\" y=\"329.704\">n = 2</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,372.684 2068.86,372.684 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 390.184)\" x=\"2092.86\" y=\"390.184\">n = 3</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,433.164 2068.86,433.164 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 450.664)\" x=\"2092.86\" y=\"450.664\">n = 4</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7201)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1924.86,493.644 2068.86,493.644 \n", " \"/>\n", "<g clip-path=\"url(#clip7201)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2092.86, 511.144)\" x=\"2092.86\" y=\"511.144\">n = 5</text>\n", "</g>\n", "</svg>\n" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p = plot()\n", "for n = 0:5\n", " H = Fun(Hermite(), [zeros(n);1])\n", " ψ = Fun(x -> H(x)exp(-x^2/2), -10.0 .. 10.0)/sqrt(sqrt(π)*2^n*factorial(1.0n))\n", " plot!(ψ; label=\"n = $n\")\n", "end\n", "p" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It's convention to shift them by the eigenvalue:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "image/svg+xml": [ "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n", "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n", "<defs>\n", " <clipPath id=\"clip7400\">\n", " <rect x=\"0\" y=\"0\" width=\"2000\" height=\"2000\"/>\n", " </clipPath>\n", "</defs>\n", "<defs>\n", " <clipPath id=\"clip7401\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<polygon clip-path=\"url(#clip7401)\" points=\"\n", "0,1600 2400,1600 2400,0 0,0 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip7402\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<polygon clip-path=\"url(#clip7401)\" points=\"\n", "148.013,1503.47 2321.26,1503.47 2321.26,47.2441 148.013,47.2441 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip7403\">\n", " <rect x=\"148\" y=\"47\" width=\"2174\" height=\"1457\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 209.513,1503.47 209.513,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 722.075,1503.47 722.075,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1234.64,1503.47 1234.64,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1747.2,1503.47 1747.2,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2259.76,1503.47 2259.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,1503.47 2321.26,1503.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,1212.23 2321.26,1212.23 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,920.982 2321.26,920.982 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,629.736 2321.26,629.736 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,338.49 2321.26,338.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 148.013,47.2441 2321.26,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,1503.47 2321.26,1503.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,1503.47 148.013,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 209.513,1503.47 209.513,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 722.075,1503.47 722.075,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1234.64,1503.47 1234.64,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1747.2,1503.47 1747.2,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.76,1503.47 2259.76,1481.63 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,1503.47 180.612,1503.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,1212.23 180.612,1212.23 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,920.982 180.612,920.982 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,629.736 180.612,629.736 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,338.49 180.612,338.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 148.013,47.2441 180.612,47.2441 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 209.513, 1557.47)\" x=\"209.513\" y=\"1557.47\">-10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 722.075, 1557.47)\" x=\"722.075\" y=\"1557.47\">-5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1234.64, 1557.47)\" x=\"1234.64\" y=\"1557.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1747.2, 1557.47)\" x=\"1747.2\" y=\"1557.47\">5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2259.76, 1557.47)\" x=\"2259.76\" y=\"1557.47\">10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 1520.97)\" x=\"124.013\" y=\"1520.97\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 1229.73)\" x=\"124.013\" y=\"1229.73\">5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 938.482)\" x=\"124.013\" y=\"938.482\">10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 647.236)\" x=\"124.013\" y=\"647.236\">15</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 355.99)\" x=\"124.013\" y=\"355.99\">20</text>\n", "</g>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 124.013, 64.7441)\" x=\"124.013\" y=\"64.7441\">25</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,-4321.33 2259.67,-4320.39 2259.5,-4318.52 2259.25,-4315.7 2258.92,-4311.95 2258.51,-4307.26 2258.02,-4301.64 2257.44,-4295.09 2256.78,-4287.61 2256.03,-4279.2 \n", " 2255.21,-4269.86 2254.3,-4259.6 2253.31,-4248.43 2252.24,-4236.34 2251.09,-4223.33 2249.85,-4209.42 2248.54,-4194.61 2247.14,-4178.9 2245.66,-4162.3 2244.1,-4144.81 \n", " 2242.45,-4126.44 2240.73,-4107.19 2238.92,-4087.08 2237.04,-4066.1 2235.07,-4044.26 2233.02,-4021.58 2230.9,-3998.05 2228.69,-3973.69 2226.4,-3948.5 2224.03,-3922.49 \n", " 2221.58,-3895.68 2219.06,-3868.06 2216.45,-3839.65 2213.76,-3810.46 2211,-3780.49 2208.15,-3749.76 2205.23,-3718.27 2202.23,-3686.04 2199.16,-3653.08 2196,-3619.39 \n", " 2192.77,-3584.99 2189.46,-3549.89 2186.07,-3514.1 2182.6,-3477.63 2179.06,-3440.49 2175.45,-3402.7 2171.76,-3364.27 2167.99,-3325.21 2164.15,-3285.53 2160.23,-3245.24 \n", " 2156.23,-3204.36 2152.17,-3162.91 2148.03,-3120.89 2143.81,-3078.32 2139.53,-3035.21 2135.17,-2991.57 2130.73,-2947.43 2126.23,-2902.79 2121.65,-2857.66 2117,-2812.08 \n", " 2112.28,-2766.03 2107.49,-2719.56 2102.63,-2672.66 2097.7,-2625.35 2092.7,-2577.65 2087.63,-2529.57 2082.5,-2481.14 2077.29,-2432.35 2072.02,-2383.24 2066.67,-2333.81 \n", " 2061.27,-2284.09 2055.79,-2234.08 2050.25,-2183.81 2044.64,-2133.29 2038.97,-2082.53 2033.23,-2031.56 2027.43,-1980.38 2021.57,-1929.03 2015.64,-1877.5 2009.65,-1825.83 \n", " 2003.59,-1774.01 1997.48,-1722.09 1991.3,-1670.06 1985.06,-1617.94 1978.76,-1565.76 1972.4,-1513.53 1965.99,-1461.27 1959.51,-1408.99 1952.97,-1356.7 1946.38,-1304.44 \n", " 1939.73,-1252.21 1933.02,-1200.03 1926.26,-1147.92 1919.44,-1095.89 1912.56,-1043.96 1905.63,-992.148 1898.65,-940.472 1891.61,-888.946 1884.52,-837.589 1877.38,-786.415 \n", " 1870.19,-735.443 1862.94,-684.687 1855.65,-634.165 1848.3,-583.892 1840.9,-533.885 1833.46,-484.16 1825.97,-434.734 1818.43,-385.621 1810.84,-336.838 1803.21,-288.401 \n", " 1795.53,-240.324 1787.8,-192.625 1780.03,-145.317 1772.22,-98.4165 1764.37,-51.9384 1756.47,-5.89762 1748.53,39.691 1740.54,84.8127 1732.52,129.453 1724.46,173.598 \n", " 1716.35,217.232 1708.21,260.343 1700.03,302.915 1691.82,344.936 1683.56,386.392 1675.27,427.269 1666.95,467.554 1658.58,507.235 1650.19,546.298 1641.76,584.73 \n", " 1633.3,622.521 1624.81,659.656 1616.28,696.126 1607.73,731.916 1599.14,767.017 1590.53,801.416 1581.88,835.103 1573.21,868.067 1564.51,900.297 1555.79,931.783 \n", " 1547.04,962.515 1538.26,992.482 1529.46,1021.68 1520.64,1050.09 1511.79,1077.7 1502.92,1104.52 1494.03,1130.53 1485.12,1155.71 1476.18,1180.08 1467.23,1203.6 \n", " 1458.26,1226.29 1449.27,1248.12 1440.27,1269.1 1431.24,1289.22 1422.2,1308.47 1413.15,1326.84 1404.08,1344.33 1395,1360.93 1385.91,1376.64 1376.8,1391.45 \n", " 1367.68,1405.36 1358.55,1418.36 1349.41,1430.45 1340.27,1441.63 1331.11,1451.89 1321.94,1461.22 1312.77,1469.63 1303.6,1477.12 1294.41,1483.67 1285.22,1489.29 \n", " 1276.03,1493.98 1266.84,1497.73 1257.64,1500.54 1248.44,1502.42 1239.24,1503.36 1230.04,1503.36 1220.83,1502.42 1211.63,1500.54 1202.44,1497.73 1193.24,1493.98 \n", " 1184.05,1489.29 1174.86,1483.67 1165.68,1477.12 1156.5,1469.63 1147.33,1461.22 1138.16,1451.89 1129.01,1441.63 1119.86,1430.45 1110.72,1418.36 1101.59,1405.36 \n", " 1092.47,1391.45 1083.37,1376.64 1074.27,1360.93 1065.19,1344.33 1056.12,1326.84 1047.07,1308.47 1038.03,1289.22 1029.01,1269.1 1020,1248.12 1011.01,1226.29 \n", " 1002.04,1203.6 993.09,1180.08 984.157,1155.71 975.245,1130.53 966.353,1104.52 957.484,1077.7 948.636,1050.09 939.812,1021.68 931.011,992.482 922.235,962.515 \n", " 913.484,931.783 904.758,900.297 896.06,868.067 887.388,835.103 878.745,801.416 870.13,767.017 861.545,731.916 852.989,696.126 844.465,659.656 835.972,622.521 \n", " 827.511,584.73 819.083,546.298 810.688,507.235 802.327,467.554 794.002,427.269 785.711,386.392 777.457,344.936 769.24,302.915 761.06,260.343 752.919,217.232 \n", " 744.816,173.598 736.753,129.453 728.73,84.8127 720.747,39.691 712.806,-5.89762 704.907,-51.9384 697.051,-98.4165 689.238,-145.317 681.469,-192.625 673.744,-240.324 \n", " 666.065,-288.401 658.432,-336.838 650.845,-385.621 643.305,-434.734 635.812,-484.16 628.368,-533.885 620.973,-583.892 613.627,-634.165 606.331,-684.687 599.086,-735.443 \n", " 591.892,-786.415 584.75,-837.589 577.66,-888.946 570.623,-940.472 563.64,-992.148 556.71,-1043.96 549.835,-1095.89 543.016,-1147.92 536.252,-1200.03 529.545,-1252.21 \n", " 522.894,-1304.44 516.3,-1356.7 509.765,-1408.99 503.288,-1461.27 496.869,-1513.53 490.511,-1565.76 484.212,-1617.94 477.973,-1670.06 471.796,-1722.09 465.68,-1774.01 \n", " 459.626,-1825.83 453.635,-1877.5 447.706,-1929.03 441.841,-1980.38 436.039,-2031.56 430.302,-2082.53 424.63,-2133.29 419.023,-2183.81 413.482,-2234.08 408.007,-2284.09 \n", " 402.598,-2333.81 397.257,-2383.24 391.983,-2432.35 386.777,-2481.14 381.639,-2529.57 376.57,-2577.65 371.57,-2625.35 366.64,-2672.66 361.779,-2719.56 356.989,-2766.03 \n", " 352.27,-2812.08 347.621,-2857.66 343.045,-2902.79 338.54,-2947.43 334.107,-2991.57 329.746,-3035.21 325.459,-3078.32 321.245,-3120.89 317.104,-3162.91 313.038,-3204.36 \n", " 309.045,-3245.24 305.128,-3285.53 301.285,-3325.21 297.517,-3364.27 293.825,-3402.7 290.208,-3440.49 286.668,-3477.63 283.204,-3514.1 279.817,-3549.89 276.507,-3584.99 \n", " 273.273,-3619.39 270.118,-3653.08 267.04,-3686.04 264.04,-3718.27 261.118,-3749.76 258.274,-3780.49 255.51,-3810.46 252.824,-3839.65 250.217,-3868.06 247.69,-3895.68 \n", " 245.242,-3922.49 242.873,-3948.5 240.585,-3973.69 238.377,-3998.05 236.249,-4021.58 234.201,-4044.26 232.235,-4066.1 230.348,-4087.08 228.543,-4107.19 226.819,-4126.44 \n", " 225.176,-4144.81 223.614,-4162.3 222.134,-4178.9 220.735,-4194.61 219.419,-4209.42 218.183,-4223.33 217.03,-4236.34 215.959,-4248.43 214.97,-4259.6 214.063,-4269.86 \n", " 213.238,-4279.2 212.495,-4287.61 211.835,-4295.09 211.257,-4301.64 210.762,-4307.26 210.349,-4311.95 210.019,-4315.7 209.771,-4318.52 209.606,-4320.39 209.523,-4321.33 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,1445.23 2259.65,1445.23 2259.47,1445.23 2259.19,1445.23 2258.81,1445.23 2258.35,1445.23 2257.79,1445.23 2257.13,1445.23 2256.38,1445.23 2255.54,1445.23 \n", " 2254.61,1445.23 2253.58,1445.23 2252.47,1445.23 2251.25,1445.23 2249.95,1445.23 2248.55,1445.23 2247.06,1445.23 2245.48,1445.23 2243.81,1445.23 2242.04,1445.23 \n", " 2240.18,1445.23 2238.23,1445.23 2236.19,1445.23 2234.06,1445.23 2231.83,1445.23 2229.52,1445.23 2227.11,1445.23 2224.62,1445.23 2222.03,1445.23 2219.36,1445.23 \n", " 2216.59,1445.23 2213.73,1445.23 2210.79,1445.23 2207.76,1445.23 2204.63,1445.23 2201.42,1445.23 2198.12,1445.23 2194.74,1445.23 2191.26,1445.23 2187.7,1445.23 \n", " 2184.05,1445.23 2180.32,1445.23 2176.49,1445.23 2172.59,1445.23 2168.59,1445.23 2164.52,1445.23 2160.35,1445.23 2156.11,1445.23 2151.78,1445.23 2147.36,1445.23 \n", " 2142.86,1445.23 2138.28,1445.23 2133.62,1445.23 2128.87,1445.23 2124.05,1445.23 2119.14,1445.23 2114.15,1445.23 2109.08,1445.23 2103.93,1445.23 2098.7,1445.23 \n", " 2093.4,1445.23 2088.01,1445.23 2082.55,1445.23 2077.01,1445.23 2071.39,1445.23 2065.7,1445.23 2059.93,1445.23 2054.09,1445.23 2048.17,1445.23 2042.18,1445.23 \n", " 2036.11,1445.23 2029.97,1445.23 2023.76,1445.23 2017.47,1445.23 2011.12,1445.23 2004.69,1445.23 1998.2,1445.23 1991.63,1445.23 1984.99,1445.23 1978.29,1445.23 \n", " 1971.52,1445.23 1964.68,1445.23 1957.78,1445.23 1950.8,1445.23 1943.77,1445.23 1936.67,1445.23 1929.5,1445.23 1922.27,1445.23 1914.98,1445.23 1907.63,1445.23 \n", " 1900.21,1445.23 1892.74,1445.23 1885.2,1445.23 1877.61,1445.23 1869.96,1445.23 1862.25,1445.23 1854.48,1445.23 1846.65,1445.23 1838.77,1445.23 1830.84,1445.23 \n", " 1822.85,1445.23 1814.8,1445.23 1806.71,1445.23 1798.56,1445.23 1790.36,1445.23 1782.11,1445.23 1773.8,1445.23 1765.45,1445.23 1757.06,1445.23 1748.61,1445.23 \n", " 1740.12,1445.23 1731.58,1445.23 1722.99,1445.22 1714.37,1445.22 1705.69,1445.22 1696.98,1445.22 1688.22,1445.22 1679.42,1445.22 1670.58,1445.22 1661.7,1445.22 \n", " 1652.78,1445.21 1643.83,1445.21 1634.83,1445.2 1625.8,1445.2 1616.74,1445.18 1607.64,1445.17 1598.5,1445.15 1589.33,1445.12 1580.13,1445.08 1570.9,1445.02 \n", " 1561.64,1444.96 1552.35,1444.87 1543.03,1444.75 1533.68,1444.6 1524.3,1444.42 1514.9,1444.18 1505.47,1443.89 1496.02,1443.53 1486.54,1443.09 1477.04,1442.55 \n", " 1467.52,1441.91 1457.97,1441.15 1448.41,1440.25 1438.83,1439.21 1429.22,1438 1419.61,1436.63 1409.97,1435.09 1400.32,1433.37 1390.65,1431.48 1380.97,1429.43 \n", " 1371.27,1427.23 1361.56,1424.9 1351.85,1422.47 1342.12,1419.97 1332.38,1417.45 1322.63,1414.96 1312.87,1412.53 1303.11,1410.22 1293.34,1408.09 1283.56,1406.18 \n", " 1273.78,1404.55 1264,1403.23 1254.21,1402.26 1244.43,1401.67 1234.64,1401.47 1224.85,1401.67 1215.06,1402.26 1205.27,1403.23 1195.49,1404.55 1185.71,1406.18 \n", " 1175.94,1408.09 1166.17,1410.22 1156.4,1412.53 1146.65,1414.96 1136.9,1417.45 1127.16,1419.97 1117.43,1422.47 1107.71,1424.9 1098,1427.23 1088.31,1429.43 \n", " 1078.62,1431.48 1068.96,1433.37 1059.3,1435.09 1049.67,1436.63 1040.05,1438 1030.45,1439.21 1020.86,1440.25 1011.3,1441.15 1001.76,1441.91 992.234,1442.55 \n", " 982.734,1443.09 973.257,1443.53 963.804,1443.89 954.375,1444.18 944.972,1444.42 935.595,1444.6 926.246,1444.75 916.925,1444.87 907.633,1444.96 898.37,1445.02 \n", " 889.139,1445.08 879.939,1445.12 870.771,1445.15 861.636,1445.17 852.535,1445.18 843.469,1445.2 834.439,1445.2 825.446,1445.21 816.489,1445.21 807.571,1445.22 \n", " 798.692,1445.22 789.852,1445.22 781.053,1445.22 772.295,1445.22 763.58,1445.22 754.907,1445.22 746.279,1445.22 737.694,1445.23 729.155,1445.23 720.663,1445.23 \n", " 712.217,1445.23 703.818,1445.23 695.468,1445.23 687.167,1445.23 678.916,1445.23 670.716,1445.23 662.567,1445.23 654.471,1445.23 646.427,1445.23 638.437,1445.23 \n", " 630.501,1445.23 622.621,1445.23 614.796,1445.23 607.027,1445.23 599.316,1445.23 591.663,1445.23 584.069,1445.23 576.533,1445.23 569.058,1445.23 561.644,1445.23 \n", " 554.29,1445.23 546.999,1445.23 539.771,1445.23 532.606,1445.23 525.505,1445.23 518.468,1445.23 511.497,1445.23 504.592,1445.23 497.754,1445.23 490.982,1445.23 \n", " 484.278,1445.23 477.643,1445.23 471.077,1445.23 464.581,1445.23 458.154,1445.23 451.799,1445.23 445.515,1445.23 439.302,1445.23 433.163,1445.23 427.096,1445.23 \n", " 421.103,1445.23 415.184,1445.23 409.34,1445.23 403.572,1445.23 397.879,1445.23 392.262,1445.23 386.722,1445.23 381.259,1445.23 375.874,1445.23 370.568,1445.23 \n", " 365.34,1445.23 360.192,1445.23 355.123,1445.23 350.135,1445.23 345.227,1445.23 340.4,1445.23 335.655,1445.23 330.991,1445.23 326.41,1445.23 321.912,1445.23 \n", " 317.498,1445.23 313.166,1445.23 308.919,1445.23 304.756,1445.23 300.678,1445.23 296.686,1445.23 292.778,1445.23 288.957,1445.23 285.222,1445.23 281.573,1445.23 \n", " 278.011,1445.23 274.537,1445.23 271.15,1445.23 267.851,1445.23 264.64,1445.23 261.517,1445.23 258.483,1445.23 255.539,1445.23 252.683,1445.23 249.917,1445.23 \n", " 247.241,1445.23 244.655,1445.23 242.159,1445.23 239.754,1445.23 237.439,1445.23 235.215,1445.23 233.083,1445.23 231.041,1445.23 229.091,1445.23 227.233,1445.23 \n", " 225.467,1445.23 223.793,1445.23 222.211,1445.23 220.721,1445.23 219.324,1445.23 218.019,1445.23 216.807,1445.23 215.688,1445.23 214.662,1445.23 213.728,1445.23 \n", " 212.888,1445.23 212.141,1445.23 211.487,1445.23 210.927,1445.23 210.459,1445.23 210.086,1445.23 209.805,1445.23 209.618,1445.23 209.525,1445.23 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,1328.73 2259.66,1328.73 2259.48,1328.73 2259.22,1328.73 2258.86,1328.73 2258.42,1328.73 2257.89,1328.73 2257.27,1328.73 2256.56,1328.73 2255.77,1328.73 \n", " 2254.88,1328.73 2253.91,1328.73 2252.85,1328.73 2251.7,1328.73 2250.46,1328.73 2249.14,1328.73 2247.73,1328.73 2246.23,1328.73 2244.64,1328.73 2242.97,1328.73 \n", " 2241.21,1328.73 2239.36,1328.73 2237.42,1328.73 2235.4,1328.73 2233.29,1328.73 2231.1,1328.73 2228.82,1328.73 2226.45,1328.73 2224,1328.73 2221.47,1328.73 \n", " 2218.84,1328.73 2216.14,1328.73 2213.34,1328.73 2210.47,1328.73 2207.5,1328.73 2204.46,1328.73 2201.33,1328.73 2198.12,1328.73 2194.82,1328.73 2191.44,1328.73 \n", " 2187.98,1328.73 2184.44,1328.73 2180.81,1328.73 2177.11,1328.73 2173.32,1328.73 2169.45,1328.73 2165.5,1328.73 2161.46,1328.73 2157.35,1328.73 2153.16,1328.73 \n", " 2148.89,1328.73 2144.54,1328.73 2140.11,1328.73 2135.61,1328.73 2131.02,1328.73 2126.36,1328.73 2121.62,1328.73 2116.81,1328.73 2111.92,1328.73 2106.95,1328.73 \n", " 2101.91,1328.73 2096.79,1328.73 2091.6,1328.73 2086.33,1328.73 2080.99,1328.73 2075.58,1328.73 2070.1,1328.73 2064.54,1328.73 2058.91,1328.73 2053.21,1328.73 \n", " 2047.44,1328.73 2041.6,1328.73 2035.69,1328.73 2029.71,1328.73 2023.66,1328.73 2017.54,1328.73 2011.35,1328.73 2005.1,1328.73 1998.78,1328.73 1992.4,1328.73 \n", " 1985.95,1328.73 1979.44,1328.73 1972.86,1328.73 1966.21,1328.73 1959.51,1328.73 1952.74,1328.73 1945.91,1328.73 1939.02,1328.73 1932.06,1328.73 1925.05,1328.73 \n", " 1917.98,1328.73 1910.85,1328.73 1903.66,1328.73 1896.41,1328.73 1889.1,1328.73 1881.74,1328.73 1874.32,1328.73 1866.85,1328.73 1859.32,1328.73 1851.74,1328.73 \n", " 1844.11,1328.73 1836.42,1328.73 1828.68,1328.73 1820.89,1328.73 1813.05,1328.73 1805.15,1328.73 1797.21,1328.73 1789.22,1328.73 1781.19,1328.73 1773.1,1328.73 \n", " 1764.97,1328.73 1756.79,1328.73 1748.57,1328.73 1740.31,1328.73 1732,1328.72 1723.64,1328.72 1715.25,1328.72 1706.81,1328.72 1698.33,1328.72 1689.82,1328.71 \n", " 1681.26,1328.71 1672.66,1328.7 1664.03,1328.69 1655.36,1328.67 1646.65,1328.65 1637.91,1328.62 1629.13,1328.58 1620.32,1328.53 1611.48,1328.46 1602.6,1328.37 \n", " 1593.69,1328.26 1584.75,1328.11 1575.78,1327.92 1566.78,1327.67 1557.75,1327.37 1548.7,1326.99 1539.61,1326.52 1530.5,1325.95 1521.37,1325.26 1512.21,1324.44 \n", " 1503.02,1323.47 1493.82,1322.33 1484.59,1321.01 1475.34,1319.5 1466.06,1317.8 1456.77,1315.91 1447.46,1313.84 1438.13,1311.6 1428.78,1309.23 1419.42,1306.76 \n", " 1410.04,1304.23 1400.64,1301.72 1391.24,1299.3 1381.81,1297.03 1372.38,1295.02 1362.93,1293.34 1353.47,1292.09 1344,1291.36 1334.52,1291.22 1325.04,1291.74 \n", " 1315.54,1292.96 1306.04,1294.91 1296.53,1297.59 1287.02,1300.98 1277.5,1305.02 1267.98,1309.64 1258.45,1314.73 1248.93,1320.18 1239.4,1325.85 1229.87,1331.6 \n", " 1220.34,1337.27 1210.82,1342.72 1201.29,1347.82 1191.77,1352.43 1182.25,1356.47 1172.74,1359.86 1163.23,1362.54 1153.73,1364.49 1144.24,1365.71 1134.75,1366.23 \n", " 1125.27,1366.09 1115.8,1365.36 1106.34,1364.11 1096.9,1362.44 1087.46,1360.42 1078.04,1358.16 1068.63,1355.73 1059.23,1353.22 1049.85,1350.7 1040.49,1348.23 \n", " 1031.14,1345.85 1021.81,1343.61 1012.5,1341.54 1003.21,1339.65 993.937,1337.95 984.685,1336.45 975.456,1335.13 966.248,1333.99 957.064,1333.01 947.904,1332.19 \n", " 938.769,1331.5 929.659,1330.93 920.576,1330.46 911.519,1330.08 902.491,1329.78 893.491,1329.54 884.521,1329.35 875.581,1329.2 866.672,1329.08 857.795,1328.99 \n", " 848.95,1328.92 840.139,1328.87 831.362,1328.83 822.619,1328.8 813.913,1328.78 805.242,1328.77 796.609,1328.76 788.013,1328.75 779.456,1328.74 770.939,1328.74 \n", " 762.461,1328.73 754.025,1328.73 745.629,1328.73 737.276,1328.73 728.966,1328.73 720.7,1328.73 712.478,1328.73 704.301,1328.73 696.17,1328.73 688.086,1328.73 \n", " 680.049,1328.73 672.059,1328.73 664.119,1328.73 656.227,1328.73 648.386,1328.73 640.595,1328.73 632.855,1328.73 625.168,1328.73 617.533,1328.73 609.951,1328.73 \n", " 602.424,1328.73 594.951,1328.73 587.533,1328.73 580.171,1328.73 572.866,1328.73 565.618,1328.73 558.427,1328.73 551.295,1328.73 544.222,1328.73 537.209,1328.73 \n", " 530.256,1328.73 523.364,1328.73 516.533,1328.73 509.765,1328.73 503.059,1328.73 496.416,1328.73 489.837,1328.73 483.322,1328.73 476.872,1328.73 470.488,1328.73 \n", " 464.17,1328.73 457.918,1328.73 451.733,1328.73 445.616,1328.73 439.567,1328.73 433.587,1328.73 427.676,1328.73 421.835,1328.73 416.064,1328.73 410.364,1328.73 \n", " 404.735,1328.73 399.177,1328.73 393.692,1328.73 388.279,1328.73 382.94,1328.73 377.674,1328.73 372.482,1328.73 367.365,1328.73 362.322,1328.73 357.355,1328.73 \n", " 352.464,1328.73 347.649,1328.73 342.91,1328.73 338.249,1328.73 333.665,1328.73 329.159,1328.73 324.731,1328.73 320.381,1328.73 316.111,1328.73 311.92,1328.73 \n", " 307.809,1328.73 303.777,1328.73 299.827,1328.73 295.957,1328.73 292.168,1328.73 288.46,1328.73 284.834,1328.73 281.291,1328.73 277.829,1328.73 274.45,1328.73 \n", " 271.155,1328.73 267.942,1328.73 264.813,1328.73 261.768,1328.73 258.807,1328.73 255.93,1328.73 253.137,1328.73 250.43,1328.73 247.807,1328.73 245.27,1328.73 \n", " 242.818,1328.73 240.452,1328.73 238.172,1328.73 235.978,1328.73 233.87,1328.73 231.849,1328.73 229.914,1328.73 228.066,1328.73 226.305,1328.73 224.631,1328.73 \n", " 223.044,1328.73 221.545,1328.73 220.133,1328.73 218.809,1328.73 217.573,1328.73 216.424,1328.73 215.364,1328.73 214.391,1328.73 213.507,1328.73 212.711,1328.73 \n", " 212.003,1328.73 211.383,1328.73 210.852,1328.73 210.41,1328.73 210.056,1328.73 209.79,1328.73 209.613,1328.73 209.524,1328.73 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,1212.23 2259.67,1212.23 2259.5,1212.23 2259.24,1212.23 2258.91,1212.23 2258.49,1212.23 2257.99,1212.23 2257.4,1212.23 2256.73,1212.23 2255.97,1212.23 \n", " 2255.13,1212.23 2254.21,1212.23 2253.2,1212.23 2252.11,1212.23 2250.94,1212.23 2249.68,1212.23 2248.34,1212.23 2246.92,1212.23 2245.41,1212.23 2243.83,1212.23 \n", " 2242.15,1212.23 2240.4,1212.23 2238.56,1212.23 2236.65,1212.23 2234.64,1212.23 2232.56,1212.23 2230.4,1212.23 2228.15,1212.23 2225.82,1212.23 2223.41,1212.23 \n", " 2220.92,1212.23 2218.35,1212.23 2215.7,1212.23 2212.97,1212.23 2210.16,1212.23 2207.27,1212.23 2204.29,1212.23 2201.24,1212.23 2198.11,1212.23 2194.9,1212.23 \n", " 2191.62,1212.23 2188.25,1212.23 2184.8,1212.23 2181.28,1212.23 2177.68,1212.23 2174,1212.23 2170.25,1212.23 2166.42,1212.23 2162.51,1212.23 2158.53,1212.23 \n", " 2154.47,1212.23 2150.33,1212.23 2146.12,1212.23 2141.84,1212.23 2137.48,1212.23 2133.05,1212.23 2128.54,1212.23 2123.96,1212.23 2119.31,1212.23 2114.58,1212.23 \n", " 2109.79,1212.23 2104.92,1212.23 2099.98,1212.23 2094.97,1212.23 2089.88,1212.23 2084.73,1212.23 2079.51,1212.23 2074.22,1212.23 2068.86,1212.23 2063.43,1212.23 \n", " 2057.94,1212.23 2052.37,1212.23 2046.74,1212.23 2041.05,1212.23 2035.28,1212.23 2029.45,1212.23 2023.56,1212.23 2017.6,1212.23 2011.58,1212.23 2005.49,1212.23 \n", " 1999.34,1212.23 1993.13,1212.23 1986.86,1212.23 1980.52,1212.23 1974.12,1212.23 1967.66,1212.23 1961.15,1212.23 1954.57,1212.23 1947.93,1212.23 1941.24,1212.23 \n", " 1934.48,1212.23 1927.67,1212.23 1920.81,1212.23 1913.88,1212.23 1906.91,1212.23 1899.87,1212.23 1892.78,1212.23 1885.64,1212.23 1878.44,1212.23 1871.2,1212.23 \n", " 1863.89,1212.23 1856.54,1212.23 1849.14,1212.23 1841.68,1212.23 1834.18,1212.23 1826.63,1212.23 1819.03,1212.23 1811.38,1212.23 1803.68,1212.23 1795.94,1212.23 \n", " 1788.15,1212.23 1780.32,1212.23 1772.44,1212.23 1764.51,1212.23 1756.55,1212.22 1748.54,1212.22 1740.49,1212.22 1732.39,1212.22 1724.26,1212.21 1716.08,1212.21 \n", " 1707.87,1212.2 1699.62,1212.19 1691.33,1212.17 1683,1212.15 1674.64,1212.12 1666.24,1212.08 1657.8,1212.02 1649.33,1211.95 1640.82,1211.86 1632.29,1211.74 \n", " 1623.72,1211.59 1615.11,1211.39 1606.48,1211.14 1597.82,1210.83 1589.12,1210.43 1580.4,1209.95 1571.65,1209.36 1562.87,1208.64 1554.06,1207.79 1545.23,1206.78 \n", " 1536.37,1205.59 1527.49,1204.22 1518.59,1202.65 1509.66,1200.89 1500.7,1198.93 1491.73,1196.8 1482.74,1194.5 1473.72,1192.09 1464.69,1189.6 1455.63,1187.1 \n", " 1446.56,1184.67 1437.47,1182.39 1428.37,1180.36 1419.24,1178.69 1410.11,1177.48 1400.96,1176.85 1391.79,1176.88 1382.61,1177.66 1373.42,1179.24 1364.22,1181.67 \n", " 1355.01,1184.94 1345.79,1189 1336.56,1193.79 1327.32,1199.18 1318.07,1205.01 1308.82,1211.1 1299.56,1217.24 1290.3,1223.19 1281.03,1228.72 1271.75,1233.61 \n", " 1262.48,1237.65 1253.2,1240.67 1243.92,1242.53 1234.64,1243.17 1225.36,1242.53 1216.08,1240.67 1206.8,1237.65 1197.52,1233.61 1188.25,1228.72 1178.98,1223.19 \n", " 1169.71,1217.24 1160.45,1211.1 1151.2,1205.01 1141.95,1199.18 1132.71,1193.79 1123.48,1189 1114.26,1184.94 1105.05,1181.67 1095.85,1179.24 1086.66,1177.66 \n", " 1077.48,1176.88 1068.32,1176.85 1059.17,1177.48 1050.03,1178.69 1040.91,1180.36 1031.8,1182.39 1022.71,1184.67 1013.64,1187.1 1004.59,1189.6 995.552,1192.09 \n", " 986.537,1194.5 977.542,1196.8 968.568,1198.93 959.616,1200.89 950.687,1202.65 941.78,1204.22 932.898,1205.59 924.041,1206.78 915.209,1207.79 906.403,1208.64 \n", " 897.624,1209.36 888.873,1209.95 880.15,1210.43 871.456,1210.83 862.792,1211.14 854.159,1211.39 845.556,1211.59 836.986,1211.74 828.448,1211.86 819.943,1211.95 \n", " 811.473,1212.02 803.037,1212.08 794.636,1212.12 786.272,1212.15 777.944,1212.17 769.654,1212.19 761.401,1212.2 753.188,1212.21 745.014,1212.21 736.88,1212.22 \n", " 728.787,1212.22 720.736,1212.22 712.726,1212.22 704.76,1212.23 696.836,1212.23 688.957,1212.23 681.123,1212.23 673.334,1212.23 665.591,1212.23 657.894,1212.23 \n", " 650.245,1212.23 642.644,1212.23 635.091,1212.23 627.588,1212.23 620.134,1212.23 612.731,1212.23 605.378,1212.23 598.077,1212.23 590.829,1212.23 583.633,1212.23 \n", " 576.49,1212.23 569.402,1212.23 562.367,1212.23 555.388,1212.23 548.465,1212.23 541.598,1212.23 534.788,1212.23 528.035,1212.23 521.34,1212.23 514.703,1212.23 \n", " 508.126,1212.23 501.608,1212.23 495.15,1212.23 488.753,1212.23 482.417,1212.23 476.142,1212.23 469.93,1212.23 463.78,1212.23 457.694,1212.23 451.671,1212.23 \n", " 445.713,1212.23 439.819,1212.23 433.99,1212.23 428.227,1212.23 422.53,1212.23 416.899,1212.23 411.336,1212.23 405.84,1212.23 400.412,1212.23 395.052,1212.23 \n", " 389.762,1212.23 384.54,1212.23 379.388,1212.23 374.306,1212.23 369.295,1212.23 364.355,1212.23 359.486,1212.23 354.689,1212.23 349.963,1212.23 345.311,1212.23 \n", " 340.731,1212.23 336.225,1212.23 331.792,1212.23 327.433,1212.23 323.149,1212.23 318.939,1212.23 314.804,1212.23 310.745,1212.23 306.761,1212.23 302.854,1212.23 \n", " 299.023,1212.23 295.268,1212.23 291.591,1212.23 287.991,1212.23 284.468,1212.23 281.023,1212.23 277.657,1212.23 274.369,1212.23 271.159,1212.23 268.029,1212.23 \n", " 264.978,1212.23 262.006,1212.23 259.114,1212.23 256.302,1212.23 253.57,1212.23 250.919,1212.23 248.348,1212.23 245.858,1212.23 243.45,1212.23 241.122,1212.23 \n", " 238.876,1212.23 236.711,1212.23 234.628,1212.23 232.628,1212.23 230.709,1212.23 228.873,1212.23 227.119,1212.23 225.447,1212.23 223.859,1212.23 222.353,1212.23 \n", " 220.93,1212.23 219.59,1212.23 218.334,1212.23 217.161,1212.23 216.071,1212.23 215.064,1212.23 214.142,1212.23 213.303,1212.23 212.547,1212.23 211.875,1212.23 \n", " 211.288,1212.23 210.784,1212.23 210.364,1212.23 210.028,1212.23 209.776,1212.23 209.608,1212.23 209.524,1212.23 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,1095.73 2259.67,1095.73 2259.51,1095.73 2259.27,1095.73 2258.95,1095.73 2258.55,1095.73 2258.07,1095.73 2257.52,1095.73 2256.88,1095.73 2256.16,1095.73 \n", " 2255.36,1095.73 2254.49,1095.73 2253.53,1095.73 2252.49,1095.73 2251.38,1095.73 2250.18,1095.73 2248.91,1095.73 2247.56,1095.73 2246.13,1095.73 2244.62,1095.73 \n", " 2243.03,1095.73 2241.36,1095.73 2239.62,1095.73 2237.79,1095.73 2235.89,1095.73 2233.91,1095.73 2231.86,1095.73 2229.72,1095.73 2227.51,1095.73 2225.22,1095.73 \n", " 2222.85,1095.73 2220.41,1095.73 2217.89,1095.73 2215.29,1095.73 2212.62,1095.73 2209.87,1095.73 2207.04,1095.73 2204.14,1095.73 2201.16,1095.73 2198.11,1095.73 \n", " 2194.98,1095.73 2191.78,1095.73 2188.5,1095.73 2185.15,1095.73 2181.73,1095.73 2178.23,1095.73 2174.66,1095.73 2171.01,1095.73 2167.29,1095.73 2163.5,1095.73 \n", " 2159.64,1095.73 2155.7,1095.73 2151.7,1095.73 2147.62,1095.73 2143.47,1095.73 2139.25,1095.73 2134.96,1095.73 2130.6,1095.73 2126.16,1095.73 2121.66,1095.73 \n", " 2117.1,1095.73 2112.46,1095.73 2107.75,1095.73 2102.98,1095.73 2098.13,1095.73 2093.23,1095.73 2088.25,1095.73 2083.21,1095.73 2078.1,1095.73 2072.92,1095.73 \n", " 2067.68,1095.73 2062.38,1095.73 2057.01,1095.73 2051.58,1095.73 2046.08,1095.73 2040.52,1095.73 2034.9,1095.73 2029.22,1095.73 2023.47,1095.73 2017.66,1095.73 \n", " 2011.79,1095.73 2005.86,1095.73 1999.87,1095.73 1993.82,1095.73 1987.71,1095.73 1981.55,1095.73 1975.32,1095.73 1969.04,1095.73 1962.7,1095.73 1956.3,1095.73 \n", " 1949.85,1095.73 1943.34,1095.73 1936.78,1095.73 1930.16,1095.73 1923.49,1095.73 1916.76,1095.73 1909.98,1095.73 1903.15,1095.73 1896.26,1095.73 1889.33,1095.73 \n", " 1882.34,1095.73 1875.3,1095.73 1868.22,1095.73 1861.08,1095.73 1853.9,1095.73 1846.66,1095.73 1839.38,1095.73 1832.05,1095.73 1824.68,1095.73 1817.26,1095.73 \n", " 1809.79,1095.73 1802.28,1095.73 1794.73,1095.73 1787.13,1095.73 1779.49,1095.72 1771.8,1095.72 1764.08,1095.72 1756.31,1095.72 1748.5,1095.71 1740.66,1095.7 \n", " 1732.77,1095.69 1724.84,1095.67 1716.88,1095.65 1708.88,1095.63 1700.84,1095.59 1692.76,1095.54 1684.65,1095.47 1676.51,1095.39 1668.33,1095.28 1660.11,1095.13 \n", " 1651.87,1094.95 1643.59,1094.71 1635.28,1094.42 1626.93,1094.05 1618.56,1093.6 1610.16,1093.04 1601.73,1092.37 1593.27,1091.55 1584.78,1090.59 1576.26,1089.46 \n", " 1567.72,1088.15 1559.15,1086.64 1550.56,1084.94 1541.94,1083.05 1533.3,1080.97 1524.63,1078.73 1515.94,1076.36 1507.23,1073.92 1498.5,1071.46 1489.75,1069.06 \n", " 1480.98,1066.81 1472.19,1064.82 1463.38,1063.2 1454.55,1062.06 1445.71,1061.52 1436.85,1061.68 1427.97,1062.63 1419.08,1064.44 1410.17,1067.13 1401.25,1070.71 \n", " 1392.32,1075.11 1383.38,1080.25 1374.42,1085.96 1365.45,1092.06 1356.47,1098.32 1347.49,1104.47 1338.49,1110.24 1329.49,1115.35 1320.48,1119.53 1311.46,1122.56 \n", " 1302.43,1124.26 1293.41,1124.51 1284.37,1123.29 1275.33,1120.61 1266.29,1116.62 1257.25,1111.52 1248.21,1105.56 1239.16,1099.07 1230.11,1092.39 1221.07,1085.9 \n", " 1212.02,1079.94 1202.98,1074.84 1193.94,1070.85 1184.9,1068.17 1175.87,1066.95 1166.84,1067.2 1157.81,1068.9 1148.8,1071.93 1139.78,1076.11 1130.78,1081.22 \n", " 1121.79,1086.99 1112.8,1093.14 1103.82,1099.4 1094.85,1105.5 1085.9,1111.21 1076.95,1116.35 1068.02,1120.75 1059.1,1124.33 1050.19,1127.02 1041.3,1128.83 \n", " 1032.43,1129.78 1023.57,1129.94 1014.72,1129.4 1005.9,1128.26 997.086,1126.64 988.295,1124.65 979.523,1122.4 970.772,1120 962.04,1117.54 953.33,1115.1 \n", " 944.642,1112.73 935.977,1110.49 927.335,1108.41 918.716,1106.52 910.123,1104.82 901.554,1103.31 893.012,1102 884.496,1100.87 876.007,1099.91 867.547,1099.09 \n", " 859.114,1098.42 850.712,1097.86 842.339,1097.41 833.996,1097.04 825.685,1096.75 817.406,1096.51 809.159,1096.33 800.945,1096.19 792.765,1096.07 784.62,1095.99 \n", " 776.509,1095.92 768.434,1095.87 760.396,1095.83 752.394,1095.81 744.43,1095.79 736.504,1095.77 728.617,1095.76 720.77,1095.75 712.962,1095.75 705.195,1095.74 \n", " 697.469,1095.74 689.785,1095.74 682.144,1095.73 674.545,1095.73 666.99,1095.73 659.48,1095.73 652.014,1095.73 644.593,1095.73 637.219,1095.73 629.891,1095.73 \n", " 622.61,1095.73 615.376,1095.73 608.191,1095.73 601.055,1095.73 593.968,1095.73 586.931,1095.73 579.944,1095.73 573.009,1095.73 566.125,1095.73 559.293,1095.73 \n", " 552.513,1095.73 545.787,1095.73 539.114,1095.73 532.496,1095.73 525.932,1095.73 519.423,1095.73 512.97,1095.73 506.573,1095.73 500.233,1095.73 493.951,1095.73 \n", " 487.725,1095.73 481.558,1095.73 475.45,1095.73 469.401,1095.73 463.411,1095.73 457.481,1095.73 451.612,1095.73 445.804,1095.73 440.058,1095.73 434.373,1095.73 \n", " 428.75,1095.73 423.191,1095.73 417.694,1095.73 412.261,1095.73 406.892,1095.73 401.588,1095.73 396.348,1095.73 391.174,1095.73 386.066,1095.73 381.023,1095.73 \n", " 376.047,1095.73 371.138,1095.73 366.296,1095.73 361.522,1095.73 356.816,1095.73 352.178,1095.73 347.608,1095.73 343.108,1095.73 338.678,1095.73 334.317,1095.73 \n", " 330.026,1095.73 325.806,1095.73 321.656,1095.73 317.577,1095.73 313.57,1095.73 309.635,1095.73 305.772,1095.73 301.981,1095.73 298.262,1095.73 294.617,1095.73 \n", " 291.045,1095.73 287.546,1095.73 284.121,1095.73 280.77,1095.73 277.493,1095.73 274.291,1095.73 271.164,1095.73 268.112,1095.73 265.134,1095.73 262.233,1095.73 \n", " 259.407,1095.73 256.657,1095.73 253.983,1095.73 251.386,1095.73 248.865,1095.73 246.421,1095.73 244.054,1095.73 241.764,1095.73 239.552,1095.73 237.417,1095.73 \n", " 235.359,1095.73 233.379,1095.73 231.478,1095.73 229.654,1095.73 227.909,1095.73 226.242,1095.73 224.654,1095.73 223.144,1095.73 221.713,1095.73 220.361,1095.73 \n", " 219.088,1095.73 217.894,1095.73 216.779,1095.73 215.744,1095.73 214.787,1095.73 213.911,1095.73 213.113,1095.73 212.396,1095.73 211.758,1095.73 211.199,1095.73 \n", " 210.72,1095.73 210.321,1095.73 210.002,1095.73 209.763,1095.73 209.603,1095.73 209.523,1095.73 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,979.232 2259.7,979.232 2259.59,979.232 2259.43,979.232 2259.22,979.232 2258.95,979.232 2258.63,979.232 2258.25,979.232 2257.82,979.232 2257.34,979.232 \n", " 2256.8,979.232 2256.21,979.232 2255.57,979.232 2254.87,979.232 2254.12,979.232 2253.31,979.232 2252.46,979.232 2251.55,979.232 2250.58,979.232 2249.56,979.232 \n", " 2248.49,979.232 2247.37,979.232 2246.19,979.232 2244.96,979.232 2243.68,979.232 2242.34,979.232 2240.96,979.232 2239.52,979.232 2238.02,979.232 2236.48,979.232 \n", " 2234.88,979.232 2233.23,979.232 2231.52,979.232 2229.77,979.232 2227.96,979.232 2226.1,979.232 2224.19,979.232 2222.22,979.232 2220.21,979.232 2218.14,979.232 \n", " 2216.02,979.232 2213.85,979.232 2211.63,979.232 2209.36,979.232 2207.03,979.232 2204.66,979.232 2202.23,979.232 2199.76,979.232 2197.23,979.232 2194.65,979.232 \n", " 2192.03,979.232 2189.35,979.232 2186.62,979.232 2183.84,979.232 2181.02,979.232 2178.14,979.232 2175.21,979.232 2172.24,979.232 2169.21,979.232 2166.14,979.232 \n", " 2163.02,979.232 2159.84,979.232 2156.62,979.232 2153.36,979.232 2150.04,979.232 2146.68,979.232 2143.26,979.232 2139.81,979.232 2136.3,979.232 2132.74,979.232 \n", " 2129.14,979.232 2125.49,979.232 2121.8,979.232 2118.06,979.232 2114.27,979.232 2110.44,979.232 2106.56,979.232 2102.63,979.232 2098.66,979.232 2094.65,979.232 \n", " 2090.59,979.232 2086.48,979.232 2082.33,979.232 2078.13,979.232 2073.89,979.232 2069.61,979.232 2065.29,979.232 2060.91,979.232 2056.5,979.232 2052.04,979.232 \n", " 2047.54,979.232 2043,979.232 2038.42,979.232 2033.79,979.232 2029.12,979.232 2024.41,979.232 2019.66,979.232 2014.87,979.232 2010.04,979.232 2005.16,979.232 \n", " 2000.25,979.232 1995.29,979.232 1990.3,979.232 1985.26,979.232 1980.19,979.232 1975.08,979.232 1969.93,979.232 1964.74,979.232 1959.51,979.232 1954.24,979.232 \n", " 1948.94,979.232 1943.6,979.232 1938.22,979.232 1932.8,979.232 1927.35,979.232 1921.86,979.232 1916.34,979.232 1910.78,979.232 1905.18,979.232 1899.55,979.232 \n", " 1893.89,979.232 1888.19,979.232 1882.45,979.232 1876.69,979.232 1870.89,979.231 1865.05,979.231 1859.18,979.231 1853.28,979.231 1847.35,979.231 1841.38,979.231 \n", " 1835.39,979.23 1829.36,979.23 1823.3,979.229 1817.21,979.228 1811.09,979.227 1804.94,979.226 1798.75,979.224 1792.54,979.221 1786.3,979.218 1780.03,979.213 \n", " 1773.74,979.208 1767.41,979.2 1761.06,979.19 1754.68,979.178 1748.27,979.161 1741.83,979.141 1735.37,979.114 1728.88,979.081 1722.37,979.038 1715.83,978.985 \n", " 1709.26,978.919 1702.68,978.836 1696.06,978.733 1689.42,978.606 1682.76,978.45 1676.07,978.261 1669.37,978.031 1662.63,977.754 1655.88,977.421 1649.1,977.026 \n", " 1642.31,976.558 1635.49,976.007 1628.65,975.365 1621.79,974.622 1614.91,973.767 1608,972.792 1601.08,971.689 1594.14,970.453 1587.19,969.081 1580.21,967.572 \n", " 1573.21,965.932 1566.2,964.17 1559.17,962.3 1552.12,960.345 1545.06,958.333 1537.98,956.3 1530.88,954.289 1523.77,952.353 1516.64,950.548 1509.5,948.94 \n", " 1502.35,947.595 1495.18,946.585 1487.99,945.979 1480.8,945.845 1473.59,946.244 1466.36,947.226 1459.13,948.827 1451.88,951.068 1444.63,953.946 1437.36,957.437 \n", " 1430.08,961.489 1422.79,966.026 1415.49,970.944 1408.18,976.114 1400.86,981.387 1393.53,986.595 1386.2,991.56 1378.86,996.1 1371.51,1000.04 1364.15,1003.21 \n", " 1356.78,1005.47 1349.41,1006.7 1342.04,1006.84 1334.65,1005.86 1327.27,1003.76 1319.87,1000.62 1312.48,996.564 1305.08,991.744 1297.67,986.368 1290.26,980.67 \n", " 1282.85,974.905 1275.44,969.336 1268.02,964.222 1260.61,959.803 1253.19,956.289 1245.77,953.847 1238.35,952.597 1230.93,952.597 1223.51,953.847 1216.09,956.289 \n", " 1208.67,959.803 1201.25,964.222 1193.83,969.336 1186.42,974.905 1179.01,980.67 1171.6,986.368 1164.2,991.744 1156.8,996.564 1149.4,1000.62 1142.01,1003.76 \n", " 1134.62,1005.86 1127.24,1006.84 1119.86,1006.7 1112.49,1005.47 1105.12,1003.21 1097.77,1000.04 1090.42,996.1 1083.07,991.56 1075.74,986.595 1068.41,981.387 \n", " 1061.09,976.114 1053.78,970.944 1046.48,966.026 1039.2,961.489 1031.92,957.437 1024.65,953.946 1017.39,951.068 1010.14,948.827 1002.91,947.226 995.687,946.244 \n", " 988.477,945.845 981.28,945.979 974.096,946.585 966.926,947.595 959.771,948.94 952.629,950.548 945.502,952.353 938.391,954.289 931.294,956.3 924.214,958.333 \n", " 917.15,960.345 910.103,962.3 903.073,964.17 896.06,965.932 889.064,967.572 882.087,969.081 875.129,970.453 868.189,971.689 861.268,972.792 854.367,973.767 \n", " 847.486,974.622 840.625,975.365 833.785,976.007 826.966,976.558 820.168,977.026 813.392,977.421 806.638,977.754 799.907,978.031 793.198,978.261 786.512,978.45 \n", " 779.85,978.606 773.212,978.733 766.597,978.836 760.008,978.919 753.443,978.985 746.903,979.038 740.389,979.081 733.901,979.114 727.439,979.141 721.004,979.161 \n", " 714.596,979.178 708.215,979.19 701.861,979.2 695.535,979.208 689.238,979.213 682.969,979.218 676.729,979.221 670.519,979.224 664.337,979.226 658.186,979.227 \n", " 652.065,979.228 645.975,979.229 639.915,979.23 633.886,979.23 627.889,979.231 621.924,979.231 615.991,979.231 610.09,979.231 604.222,979.231 598.387,979.231 \n", " 592.586,979.232 586.818,979.232 581.084,979.232 575.384,979.232 569.719,979.232 564.088,979.232 558.493,979.232 552.933,979.232 547.409,979.232 541.921,979.232 \n", " 536.469,979.232 531.054,979.232 525.676,979.232 520.335,979.232 515.031,979.232 509.765,979.232 504.537,979.232 499.347,979.232 494.196,979.232 489.083,979.232 \n", " 484.01,979.232 478.976,979.232 473.981,979.232 469.026,979.232 464.112,979.232 459.238,979.232 454.404,979.232 449.611,979.232 444.86,979.232 440.15,979.232 \n", " 435.481,979.232 430.855,979.232 426.27,979.232 421.728,979.232 417.228,979.232 412.772,979.232 408.358,979.232 403.988,979.232 399.661,979.232 395.378,979.232 \n", " 391.139,979.232 386.944,979.232 382.793,979.232 378.687,979.232 374.626,979.232 370.61,979.232 366.64,979.232 362.715,979.232 358.835,979.232 355.001,979.232 \n", " 351.214,979.232 347.473,979.232 343.778,979.232 340.13,979.232 336.529,979.232 332.974,979.232 329.468,979.232 326.008,979.232 322.596,979.232 319.232,979.232 \n", " 315.916,979.232 312.648,979.232 309.428,979.232 306.257,979.232 303.135,979.232 300.061,979.232 297.036,979.232 294.061,979.232 291.134,979.232 288.257,979.232 \n", " 285.43,979.232 282.653,979.232 279.925,979.232 277.247,979.232 274.62,979.232 272.043,979.232 269.516,979.232 267.04,979.232 264.614,979.232 262.24,979.232 \n", " 259.916,979.232 257.643,979.232 255.422,979.232 253.252,979.232 251.133,979.232 249.066,979.232 247.05,979.232 245.086,979.232 243.175,979.232 241.315,979.232 \n", " 239.507,979.232 237.751,979.232 236.047,979.232 234.396,979.232 232.797,979.232 231.251,979.232 229.757,979.232 228.316,979.232 226.928,979.232 225.592,979.232 \n", " 224.309,979.232 223.08,979.232 221.903,979.232 220.779,979.232 219.709,979.232 218.691,979.232 217.727,979.232 216.816,979.232 215.959,979.232 215.155,979.232 \n", " 214.404,979.232 213.707,979.232 213.063,979.232 212.473,979.232 211.936,979.232 211.453,979.232 211.024,979.232 210.648,979.232 210.325,979.232 210.057,979.232 \n", " 209.842,979.232 209.681,979.232 209.574,979.232 209.52,979.232 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,862.733 2259.7,862.733 2259.59,862.733 2259.43,862.733 2259.22,862.733 2258.95,862.733 2258.63,862.733 2258.25,862.733 2257.82,862.733 2257.34,862.733 \n", " 2256.8,862.733 2256.21,862.733 2255.57,862.733 2254.87,862.733 2254.12,862.733 2253.31,862.733 2252.46,862.733 2251.55,862.733 2250.58,862.733 2249.56,862.733 \n", " 2248.49,862.733 2247.37,862.733 2246.19,862.733 2244.96,862.733 2243.68,862.733 2242.34,862.733 2240.96,862.733 2239.52,862.733 2238.02,862.733 2236.48,862.733 \n", " 2234.88,862.733 2233.23,862.733 2231.52,862.733 2229.77,862.733 2227.96,862.733 2226.1,862.733 2224.19,862.733 2222.22,862.733 2220.21,862.733 2218.14,862.733 \n", " 2216.02,862.733 2213.85,862.733 2211.63,862.733 2209.36,862.733 2207.03,862.733 2204.66,862.733 2202.23,862.733 2199.76,862.733 2197.23,862.733 2194.65,862.733 \n", " 2192.03,862.733 2189.35,862.733 2186.62,862.733 2183.84,862.733 2181.02,862.733 2178.14,862.733 2175.21,862.733 2172.24,862.733 2169.21,862.733 2166.14,862.733 \n", " 2163.02,862.733 2159.84,862.733 2156.62,862.733 2153.36,862.733 2150.04,862.733 2146.68,862.733 2143.26,862.733 2139.81,862.733 2136.3,862.733 2132.74,862.733 \n", " 2129.14,862.733 2125.49,862.733 2121.8,862.733 2118.06,862.733 2114.27,862.733 2110.44,862.733 2106.56,862.733 2102.63,862.733 2098.66,862.733 2094.65,862.733 \n", " 2090.59,862.733 2086.48,862.733 2082.33,862.733 2078.13,862.733 2073.89,862.733 2069.61,862.733 2065.29,862.733 2060.91,862.733 2056.5,862.733 2052.04,862.733 \n", " 2047.54,862.733 2043,862.733 2038.42,862.733 2033.79,862.733 2029.12,862.733 2024.41,862.733 2019.66,862.733 2014.87,862.733 2010.04,862.733 2005.16,862.733 \n", " 2000.25,862.733 1995.29,862.733 1990.3,862.733 1985.26,862.733 1980.19,862.733 1975.08,862.733 1969.93,862.733 1964.74,862.733 1959.51,862.733 1954.24,862.733 \n", " 1948.94,862.733 1943.6,862.733 1938.22,862.733 1932.8,862.733 1927.35,862.733 1921.86,862.733 1916.34,862.733 1910.78,862.733 1905.18,862.733 1899.55,862.733 \n", " 1893.89,862.733 1888.19,862.733 1882.45,862.733 1876.69,862.733 1870.89,862.732 1865.05,862.732 1859.18,862.732 1853.28,862.731 1847.35,862.731 1841.38,862.73 \n", " 1835.39,862.729 1829.36,862.727 1823.3,862.725 1817.21,862.722 1811.09,862.719 1804.94,862.714 1798.75,862.708 1792.54,862.7 1786.3,862.69 1780.03,862.676 \n", " 1773.74,862.659 1767.41,862.637 1761.06,862.61 1754.68,862.574 1748.27,862.53 1741.83,862.474 1735.37,862.403 1728.88,862.316 1722.37,862.207 1715.83,862.073 \n", " 1709.26,861.909 1702.68,861.708 1696.06,861.465 1689.42,861.171 1682.76,860.82 1676.07,860.401 1669.37,859.905 1662.63,859.323 1655.88,858.644 1649.1,857.857 \n", " 1642.31,856.954 1635.49,855.925 1628.65,854.763 1621.79,853.464 1614.91,852.025 1608,850.448 1601.08,848.741 1594.14,846.915 1587.19,844.991 1580.21,842.994 \n", " 1573.21,840.96 1566.2,838.93 1559.17,836.956 1552.12,835.097 1545.06,833.419 1537.98,831.992 1530.88,830.893 1523.77,830.196 1516.64,829.976 1509.5,830.3 \n", " 1502.35,831.224 1495.18,832.793 1487.99,835.029 1480.8,837.935 1473.59,841.485 1466.36,845.626 1459.13,850.272 1451.88,855.31 1444.63,860.595 1437.36,865.96 \n", " 1430.08,871.216 1422.79,876.164 1415.49,880.6 1408.18,884.327 1400.86,887.167 1393.53,888.969 1386.2,889.623 1378.86,889.068 1371.51,887.296 1364.15,884.361 \n", " 1356.78,880.38 1349.41,875.526 1342.04,870.026 1334.65,864.15 1327.27,858.198 1319.87,852.48 1312.48,847.308 1305.08,842.968 1297.67,839.706 1290.26,837.713 \n", " 1282.85,837.114 1275.44,837.951 1268.02,840.187 1260.61,843.703 1253.19,848.305 1245.77,853.731 1238.35,859.674 1230.93,865.792 1223.51,871.735 1216.09,877.162 \n", " 1208.67,881.763 1201.25,885.279 1193.83,887.516 1186.42,888.353 1179.01,887.753 1171.6,885.761 1164.2,882.499 1156.8,878.158 1149.4,872.986 1142.01,867.269 \n", " 1134.62,861.316 1127.24,855.44 1119.86,849.94 1112.49,845.086 1105.12,841.105 1097.77,838.171 1090.42,836.399 1083.07,835.843 1075.74,836.497 1068.41,838.3 \n", " 1061.09,841.139 1053.78,844.867 1046.48,849.303 1039.2,854.25 1031.92,859.507 1024.65,864.872 1017.39,870.157 1010.14,875.194 1002.91,879.841 995.687,883.981 \n", " 988.477,887.531 981.28,890.437 974.096,892.674 966.926,894.242 959.771,895.167 952.629,895.49 945.502,895.27 938.391,894.574 931.294,893.474 924.214,892.048 \n", " 917.15,890.369 910.103,888.51 903.073,886.536 896.06,884.507 889.064,882.472 882.087,880.476 875.129,878.551 868.189,876.726 861.268,875.019 854.367,873.442 \n", " 847.486,872.003 840.625,870.703 833.785,869.541 826.966,868.512 820.168,867.609 813.392,866.823 806.638,866.143 799.907,865.561 793.198,865.066 786.512,864.647 \n", " 779.85,864.295 773.212,864.002 766.597,863.758 760.008,863.558 753.443,863.393 746.903,863.26 740.389,863.151 733.901,863.063 727.439,862.993 721.004,862.937 \n", " 714.596,862.892 708.215,862.857 701.861,862.829 695.535,862.807 689.238,862.79 682.969,862.777 676.729,862.767 670.519,862.759 664.337,862.753 658.186,862.748 \n", " 652.065,862.744 645.975,862.742 639.915,862.739 633.886,862.738 627.889,862.737 621.924,862.736 615.991,862.735 610.09,862.735 604.222,862.734 598.387,862.734 \n", " 592.586,862.734 586.818,862.734 581.084,862.734 575.384,862.733 569.719,862.733 564.088,862.733 558.493,862.733 552.933,862.733 547.409,862.733 541.921,862.733 \n", " 536.469,862.733 531.054,862.733 525.676,862.733 520.335,862.733 515.031,862.733 509.765,862.733 504.537,862.733 499.347,862.733 494.196,862.733 489.083,862.733 \n", " 484.01,862.733 478.976,862.733 473.981,862.733 469.026,862.733 464.112,862.733 459.238,862.733 454.404,862.733 449.611,862.733 444.86,862.733 440.15,862.733 \n", " 435.481,862.733 430.855,862.733 426.27,862.733 421.728,862.733 417.228,862.733 412.772,862.733 408.358,862.733 403.988,862.733 399.661,862.733 395.378,862.733 \n", " 391.139,862.733 386.944,862.733 382.793,862.733 378.687,862.733 374.626,862.733 370.61,862.733 366.64,862.733 362.715,862.733 358.835,862.733 355.001,862.733 \n", " 351.214,862.733 347.473,862.733 343.778,862.733 340.13,862.733 336.529,862.733 332.974,862.733 329.468,862.733 326.008,862.733 322.596,862.733 319.232,862.733 \n", " 315.916,862.733 312.648,862.733 309.428,862.733 306.257,862.733 303.135,862.733 300.061,862.733 297.036,862.733 294.061,862.733 291.134,862.733 288.257,862.733 \n", " 285.43,862.733 282.653,862.733 279.925,862.733 277.247,862.733 274.62,862.733 272.043,862.733 269.516,862.733 267.04,862.733 264.614,862.733 262.24,862.733 \n", " 259.916,862.733 257.643,862.733 255.422,862.733 253.252,862.733 251.133,862.733 249.066,862.733 247.05,862.733 245.086,862.733 243.175,862.733 241.315,862.733 \n", " 239.507,862.733 237.751,862.733 236.047,862.733 234.396,862.733 232.797,862.733 231.251,862.733 229.757,862.733 228.316,862.733 226.928,862.733 225.592,862.733 \n", " 224.309,862.733 223.08,862.733 221.903,862.733 220.779,862.733 219.709,862.733 218.691,862.733 217.727,862.733 216.816,862.733 215.959,862.733 215.155,862.733 \n", " 214.404,862.733 213.707,862.733 213.063,862.733 212.473,862.733 211.936,862.733 211.453,862.733 211.024,862.733 210.648,862.733 210.325,862.733 210.057,862.733 \n", " 209.842,862.733 209.681,862.733 209.574,862.733 209.52,862.733 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,746.235 2259.7,746.235 2259.59,746.235 2259.43,746.235 2259.22,746.235 2258.95,746.235 2258.63,746.235 2258.25,746.235 2257.82,746.235 2257.34,746.235 \n", " 2256.8,746.235 2256.21,746.235 2255.57,746.235 2254.87,746.235 2254.12,746.235 2253.31,746.235 2252.46,746.235 2251.55,746.235 2250.58,746.235 2249.56,746.235 \n", " 2248.49,746.235 2247.37,746.235 2246.19,746.235 2244.96,746.235 2243.68,746.235 2242.34,746.235 2240.96,746.235 2239.52,746.235 2238.02,746.235 2236.48,746.235 \n", " 2234.88,746.235 2233.23,746.235 2231.52,746.235 2229.77,746.235 2227.96,746.235 2226.1,746.235 2224.19,746.235 2222.22,746.235 2220.21,746.235 2218.14,746.235 \n", " 2216.02,746.235 2213.85,746.235 2211.63,746.235 2209.36,746.235 2207.03,746.235 2204.66,746.235 2202.23,746.235 2199.76,746.235 2197.23,746.235 2194.65,746.235 \n", " 2192.03,746.235 2189.35,746.235 2186.62,746.235 2183.84,746.235 2181.02,746.235 2178.14,746.235 2175.21,746.235 2172.24,746.235 2169.21,746.235 2166.14,746.235 \n", " 2163.02,746.235 2159.84,746.235 2156.62,746.235 2153.36,746.235 2150.04,746.235 2146.68,746.235 2143.26,746.235 2139.81,746.235 2136.3,746.235 2132.74,746.235 \n", " 2129.14,746.235 2125.49,746.235 2121.8,746.235 2118.06,746.235 2114.27,746.235 2110.44,746.235 2106.56,746.235 2102.63,746.235 2098.66,746.235 2094.65,746.235 \n", " 2090.59,746.235 2086.48,746.235 2082.33,746.235 2078.13,746.235 2073.89,746.235 2069.61,746.235 2065.29,746.235 2060.91,746.235 2056.5,746.235 2052.04,746.235 \n", " 2047.54,746.235 2043,746.235 2038.42,746.235 2033.79,746.235 2029.12,746.235 2024.41,746.235 2019.66,746.235 2014.87,746.235 2010.04,746.235 2005.16,746.235 \n", " 2000.25,746.235 1995.29,746.235 1990.3,746.235 1985.26,746.235 1980.19,746.235 1975.08,746.235 1969.93,746.235 1964.74,746.235 1959.51,746.235 1954.24,746.235 \n", " 1948.94,746.235 1943.6,746.235 1938.22,746.235 1932.8,746.235 1927.35,746.235 1921.86,746.235 1916.34,746.235 1910.78,746.234 1905.18,746.234 1899.55,746.234 \n", " 1893.89,746.234 1888.19,746.234 1882.45,746.233 1876.69,746.233 1870.89,746.232 1865.05,746.231 1859.18,746.23 1853.28,746.229 1847.35,746.226 1841.38,746.224 \n", " 1835.39,746.22 1829.36,746.216 1823.3,746.209 1817.21,746.202 1811.09,746.191 1804.94,746.178 1798.75,746.161 1792.54,746.14 1786.3,746.112 1780.03,746.077 \n", " 1773.74,746.032 1767.41,745.976 1761.06,745.906 1754.68,745.819 1748.27,745.71 1741.83,745.576 1735.37,745.411 1728.88,745.21 1722.37,744.966 1715.83,744.671 \n", " 1709.26,744.316 1702.68,743.894 1696.06,743.394 1689.42,742.806 1682.76,742.119 1676.07,741.322 1669.37,740.407 1662.63,739.364 1655.88,738.185 1649.1,736.867 \n", " 1642.31,735.407 1635.49,733.808 1628.65,732.078 1621.79,730.232 1614.91,728.289 1608,726.28 1601.08,724.242 1594.14,722.221 1587.19,720.273 1580.21,718.461 \n", " 1573.21,716.856 1566.2,715.535 1559.17,714.576 1552.12,714.06 1545.06,714.062 1537.98,714.65 1530.88,715.88 1523.77,717.788 1516.64,720.392 1509.5,723.679 \n", " 1502.35,727.607 1495.18,732.104 1487.99,737.059 1480.8,742.333 1473.59,747.754 1466.36,753.125 1459.13,758.235 1451.88,762.862 1444.63,766.788 1437.36,769.814 \n", " 1430.08,771.769 1422.79,772.522 1415.49,771.998 1408.18,770.186 1400.86,767.141 1393.53,762.992 1386.2,757.934 1378.86,752.226 1371.51,746.176 1364.15,740.124 \n", " 1356.78,734.426 1349.41,729.426 1342.04,725.44 1334.65,722.728 1327.27,721.477 1319.87,721.784 1312.48,723.65 1305.08,726.971 1297.67,731.545 1290.26,737.083 \n", " 1282.85,743.227 1275.44,749.573 1268.02,755.697 1260.61,761.187 1253.19,765.671 1245.77,768.843 1238.35,770.485 1230.93,770.485 1223.51,768.843 1216.09,765.671 \n", " 1208.67,761.187 1201.25,755.697 1193.83,749.573 1186.42,743.227 1179.01,737.083 1171.6,731.545 1164.2,726.971 1156.8,723.65 1149.4,721.784 1142.01,721.477 \n", " 1134.62,722.728 1127.24,725.44 1119.86,729.426 1112.49,734.426 1105.12,740.124 1097.77,746.176 1090.42,752.226 1083.07,757.934 1075.74,762.992 1068.41,767.141 \n", " 1061.09,770.186 1053.78,771.998 1046.48,772.522 1039.2,771.769 1031.92,769.814 1024.65,766.788 1017.39,762.862 1010.14,758.235 1002.91,753.125 995.687,747.754 \n", " 988.477,742.333 981.28,737.059 974.096,732.104 966.926,727.607 959.771,723.679 952.629,720.392 945.502,717.788 938.391,715.88 931.294,714.65 924.214,714.062 \n", " 917.15,714.06 910.103,714.576 903.073,715.535 896.06,716.856 889.064,718.461 882.087,720.273 875.129,722.221 868.189,724.242 861.268,726.28 854.367,728.289 \n", " 847.486,730.232 840.625,732.078 833.785,733.808 826.966,735.407 820.168,736.867 813.392,738.185 806.638,739.364 799.907,740.407 793.198,741.322 786.512,742.119 \n", " 779.85,742.806 773.212,743.394 766.597,743.894 760.008,744.316 753.443,744.671 746.903,744.966 740.389,745.21 733.901,745.411 727.439,745.576 721.004,745.71 \n", " 714.596,745.819 708.215,745.906 701.861,745.976 695.535,746.032 689.238,746.077 682.969,746.112 676.729,746.14 670.519,746.161 664.337,746.178 658.186,746.191 \n", " 652.065,746.202 645.975,746.209 639.915,746.216 633.886,746.22 627.889,746.224 621.924,746.226 615.991,746.229 610.09,746.23 604.222,746.231 598.387,746.232 \n", " 592.586,746.233 586.818,746.233 581.084,746.234 575.384,746.234 569.719,746.234 564.088,746.234 558.493,746.234 552.933,746.235 547.409,746.235 541.921,746.235 \n", " 536.469,746.235 531.054,746.235 525.676,746.235 520.335,746.235 515.031,746.235 509.765,746.235 504.537,746.235 499.347,746.235 494.196,746.235 489.083,746.235 \n", " 484.01,746.235 478.976,746.235 473.981,746.235 469.026,746.235 464.112,746.235 459.238,746.235 454.404,746.235 449.611,746.235 444.86,746.235 440.15,746.235 \n", " 435.481,746.235 430.855,746.235 426.27,746.235 421.728,746.235 417.228,746.235 412.772,746.235 408.358,746.235 403.988,746.235 399.661,746.235 395.378,746.235 \n", " 391.139,746.235 386.944,746.235 382.793,746.235 378.687,746.235 374.626,746.235 370.61,746.235 366.64,746.235 362.715,746.235 358.835,746.235 355.001,746.235 \n", " 351.214,746.235 347.473,746.235 343.778,746.235 340.13,746.235 336.529,746.235 332.974,746.235 329.468,746.235 326.008,746.235 322.596,746.235 319.232,746.235 \n", " 315.916,746.235 312.648,746.235 309.428,746.235 306.257,746.235 303.135,746.235 300.061,746.235 297.036,746.235 294.061,746.235 291.134,746.235 288.257,746.235 \n", " 285.43,746.235 282.653,746.235 279.925,746.235 277.247,746.235 274.62,746.235 272.043,746.235 269.516,746.235 267.04,746.235 264.614,746.235 262.24,746.235 \n", " 259.916,746.235 257.643,746.235 255.422,746.235 253.252,746.235 251.133,746.235 249.066,746.235 247.05,746.235 245.086,746.235 243.175,746.235 241.315,746.235 \n", " 239.507,746.235 237.751,746.235 236.047,746.235 234.396,746.235 232.797,746.235 231.251,746.235 229.757,746.235 228.316,746.235 226.928,746.235 225.592,746.235 \n", " 224.309,746.235 223.08,746.235 221.903,746.235 220.779,746.235 219.709,746.235 218.691,746.235 217.727,746.235 216.816,746.235 215.959,746.235 215.155,746.235 \n", " 214.404,746.235 213.707,746.235 213.063,746.235 212.473,746.235 211.936,746.235 211.453,746.235 211.024,746.235 210.648,746.235 210.325,746.235 210.057,746.235 \n", " 209.842,746.235 209.681,746.235 209.574,746.235 209.52,746.235 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,629.736 2259.7,629.736 2259.59,629.736 2259.43,629.736 2259.22,629.736 2258.95,629.736 2258.63,629.736 2258.25,629.736 2257.82,629.736 2257.34,629.736 \n", " 2256.8,629.736 2256.21,629.736 2255.57,629.736 2254.87,629.736 2254.12,629.736 2253.31,629.736 2252.46,629.736 2251.55,629.736 2250.58,629.736 2249.56,629.736 \n", " 2248.49,629.736 2247.37,629.736 2246.19,629.736 2244.96,629.736 2243.68,629.736 2242.34,629.736 2240.96,629.736 2239.52,629.736 2238.02,629.736 2236.48,629.736 \n", " 2234.88,629.736 2233.23,629.736 2231.52,629.736 2229.77,629.736 2227.96,629.736 2226.1,629.736 2224.19,629.736 2222.22,629.736 2220.21,629.736 2218.14,629.736 \n", " 2216.02,629.736 2213.85,629.736 2211.63,629.736 2209.36,629.736 2207.03,629.736 2204.66,629.736 2202.23,629.736 2199.76,629.736 2197.23,629.736 2194.65,629.736 \n", " 2192.03,629.736 2189.35,629.736 2186.62,629.736 2183.84,629.736 2181.02,629.736 2178.14,629.736 2175.21,629.736 2172.24,629.736 2169.21,629.736 2166.14,629.736 \n", " 2163.02,629.736 2159.84,629.736 2156.62,629.736 2153.36,629.736 2150.04,629.736 2146.68,629.736 2143.26,629.736 2139.81,629.736 2136.3,629.736 2132.74,629.736 \n", " 2129.14,629.736 2125.49,629.736 2121.8,629.736 2118.06,629.736 2114.27,629.736 2110.44,629.736 2106.56,629.736 2102.63,629.736 2098.66,629.736 2094.65,629.736 \n", " 2090.59,629.736 2086.48,629.736 2082.33,629.736 2078.13,629.736 2073.89,629.736 2069.61,629.736 2065.29,629.736 2060.91,629.736 2056.5,629.736 2052.04,629.736 \n", " 2047.54,629.736 2043,629.736 2038.42,629.736 2033.79,629.736 2029.12,629.736 2024.41,629.736 2019.66,629.736 2014.87,629.736 2010.04,629.736 2005.16,629.736 \n", " 2000.25,629.736 1995.29,629.736 1990.3,629.736 1985.26,629.736 1980.19,629.736 1975.08,629.736 1969.93,629.736 1964.74,629.736 1959.51,629.736 1954.24,629.736 \n", " 1948.94,629.736 1943.6,629.736 1938.22,629.736 1932.8,629.736 1927.35,629.736 1921.86,629.736 1916.34,629.736 1910.78,629.735 1905.18,629.735 1899.55,629.734 \n", " 1893.89,629.734 1888.19,629.733 1882.45,629.732 1876.69,629.73 1870.89,629.728 1865.05,629.726 1859.18,629.722 1853.28,629.718 1847.35,629.712 1841.38,629.705 \n", " 1835.39,629.695 1829.36,629.682 1823.3,629.666 1817.21,629.646 1811.09,629.619 1804.94,629.586 1798.75,629.543 1792.54,629.49 1786.3,629.423 1780.03,629.339 \n", " 1773.74,629.235 1767.41,629.107 1761.06,628.948 1754.68,628.755 1748.27,628.519 1741.83,628.234 1735.37,627.891 1728.88,627.482 1722.37,626.996 1715.83,626.423 \n", " 1709.26,625.752 1702.68,624.973 1696.06,624.076 1689.42,623.051 1682.76,621.89 1676.07,620.589 1669.37,619.145 1662.63,617.56 1655.88,615.842 1649.1,614.005 \n", " 1642.31,612.07 1635.49,610.066 1628.65,608.031 1621.79,606.013 1614.91,604.068 1608,602.262 1601.08,600.668 1594.14,599.366 1587.19,598.438 1580.21,597.966 \n", " 1573.21,598.029 1566.2,598.698 1559.17,600.029 1552.12,602.059 1545.06,604.801 1537.98,608.24 1530.88,612.325 1523.77,616.973 1516.64,622.063 1509.5,627.436 \n", " 1502.35,632.906 1495.18,638.259 1487.99,643.264 1480.8,647.687 1473.59,651.301 1466.36,653.9 1459.13,655.32 1451.88,655.444 1444.63,654.221 1437.36,651.674 \n", " 1430.08,647.904 1422.79,643.091 1415.49,637.49 1408.18,631.418 1400.86,625.236 1393.53,619.33 1386.2,614.087 1378.86,609.861 1371.51,606.954 1364.15,605.586 \n", " 1356.78,605.877 1349.41,607.833 1342.04,611.339 1334.65,616.165 1327.27,621.977 1319.87,628.362 1312.48,634.85 1305.08,640.96 1297.67,646.228 1290.26,650.246 \n", " 1282.85,652.699 1275.44,653.391 1268.02,652.257 1260.61,649.379 1253.19,644.975 1245.77,639.383 1238.35,633.038 1230.93,626.435 1223.51,620.09 1216.09,614.498 \n", " 1208.67,610.093 1201.25,607.215 1193.83,606.082 1186.42,606.773 1179.01,609.227 1171.6,613.245 1164.2,618.512 1156.8,624.622 1149.4,631.111 1142.01,637.495 \n", " 1134.62,643.308 1127.24,648.134 1119.86,651.64 1112.49,653.596 1105.12,653.887 1097.77,652.519 1090.42,649.612 1083.07,645.386 1075.74,640.142 1068.41,634.237 \n", " 1061.09,628.055 1053.78,621.982 1046.48,616.382 1039.2,611.569 1031.92,607.799 1024.65,605.252 1017.39,604.029 1010.14,604.153 1002.91,605.572 995.687,608.172 \n", " 988.477,611.786 981.28,616.209 974.096,621.214 966.926,626.566 959.771,632.036 952.629,637.41 945.502,642.499 938.391,647.147 931.294,651.233 924.214,654.671 \n", " 917.15,657.414 910.103,659.444 903.073,660.774 896.06,661.443 889.064,661.507 882.087,661.035 875.129,660.107 868.189,658.804 861.268,657.211 854.367,655.405 \n", " 847.486,653.46 840.625,651.442 833.785,649.407 826.966,647.403 820.168,645.467 813.392,643.63 806.638,641.913 799.907,640.328 793.198,638.884 786.512,637.583 \n", " 779.85,636.422 773.212,635.397 766.597,634.499 760.008,633.721 753.443,633.05 746.903,632.477 740.389,631.991 733.901,631.581 727.439,631.238 721.004,630.953 \n", " 714.596,630.718 708.215,630.524 701.861,630.366 695.535,630.237 689.238,630.133 682.969,630.05 676.729,629.983 670.519,629.929 664.337,629.887 658.186,629.853 \n", " 652.065,629.827 645.975,629.806 639.915,629.79 633.886,629.778 627.889,629.768 621.924,629.76 615.991,629.755 610.09,629.75 604.222,629.747 598.387,629.744 \n", " 592.586,629.742 586.818,629.741 581.084,629.74 575.384,629.739 569.719,629.738 564.088,629.738 558.493,629.737 552.933,629.737 547.409,629.737 541.921,629.737 \n", " 536.469,629.737 531.054,629.737 525.676,629.737 520.335,629.736 515.031,629.736 509.765,629.736 504.537,629.736 499.347,629.736 494.196,629.736 489.083,629.736 \n", " 484.01,629.736 478.976,629.736 473.981,629.736 469.026,629.736 464.112,629.736 459.238,629.736 454.404,629.736 449.611,629.736 444.86,629.736 440.15,629.736 \n", " 435.481,629.736 430.855,629.736 426.27,629.736 421.728,629.736 417.228,629.736 412.772,629.736 408.358,629.736 403.988,629.736 399.661,629.736 395.378,629.736 \n", " 391.139,629.736 386.944,629.736 382.793,629.736 378.687,629.736 374.626,629.736 370.61,629.736 366.64,629.736 362.715,629.736 358.835,629.736 355.001,629.736 \n", " 351.214,629.736 347.473,629.736 343.778,629.736 340.13,629.736 336.529,629.736 332.974,629.736 329.468,629.736 326.008,629.736 322.596,629.736 319.232,629.736 \n", " 315.916,629.736 312.648,629.736 309.428,629.736 306.257,629.736 303.135,629.736 300.061,629.736 297.036,629.736 294.061,629.736 291.134,629.736 288.257,629.736 \n", " 285.43,629.736 282.653,629.736 279.925,629.736 277.247,629.736 274.62,629.736 272.043,629.736 269.516,629.736 267.04,629.736 264.614,629.736 262.24,629.736 \n", " 259.916,629.736 257.643,629.736 255.422,629.736 253.252,629.736 251.133,629.736 249.066,629.736 247.05,629.736 245.086,629.736 243.175,629.736 241.315,629.736 \n", " 239.507,629.736 237.751,629.736 236.047,629.736 234.396,629.736 232.797,629.736 231.251,629.736 229.757,629.736 228.316,629.736 226.928,629.736 225.592,629.736 \n", " 224.309,629.736 223.08,629.736 221.903,629.736 220.779,629.736 219.709,629.736 218.691,629.736 217.727,629.736 216.816,629.736 215.959,629.736 215.155,629.736 \n", " 214.404,629.736 213.707,629.736 213.063,629.736 212.473,629.736 211.936,629.736 211.453,629.736 211.024,629.736 210.648,629.736 210.325,629.736 210.057,629.736 \n", " 209.842,629.736 209.681,629.736 209.574,629.736 209.52,629.736 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,513.238 2259.7,513.238 2259.59,513.238 2259.43,513.238 2259.22,513.238 2258.95,513.238 2258.63,513.238 2258.25,513.238 2257.82,513.238 2257.34,513.238 \n", " 2256.8,513.238 2256.21,513.238 2255.57,513.238 2254.87,513.238 2254.12,513.238 2253.31,513.238 2252.46,513.238 2251.55,513.238 2250.58,513.238 2249.56,513.238 \n", " 2248.49,513.238 2247.37,513.238 2246.19,513.238 2244.96,513.238 2243.68,513.238 2242.34,513.238 2240.96,513.238 2239.52,513.238 2238.02,513.238 2236.48,513.238 \n", " 2234.88,513.238 2233.23,513.238 2231.52,513.238 2229.77,513.238 2227.96,513.238 2226.1,513.238 2224.19,513.238 2222.22,513.238 2220.21,513.238 2218.14,513.238 \n", " 2216.02,513.238 2213.85,513.238 2211.63,513.238 2209.36,513.238 2207.03,513.238 2204.66,513.238 2202.23,513.238 2199.76,513.238 2197.23,513.238 2194.65,513.238 \n", " 2192.03,513.238 2189.35,513.238 2186.62,513.238 2183.84,513.238 2181.02,513.238 2178.14,513.238 2175.21,513.238 2172.24,513.238 2169.21,513.238 2166.14,513.238 \n", " 2163.02,513.238 2159.84,513.238 2156.62,513.238 2153.36,513.238 2150.04,513.238 2146.68,513.238 2143.26,513.238 2139.81,513.238 2136.3,513.238 2132.74,513.238 \n", " 2129.14,513.238 2125.49,513.238 2121.8,513.238 2118.06,513.238 2114.27,513.238 2110.44,513.238 2106.56,513.238 2102.63,513.238 2098.66,513.238 2094.65,513.238 \n", " 2090.59,513.238 2086.48,513.238 2082.33,513.238 2078.13,513.238 2073.89,513.238 2069.61,513.238 2065.29,513.238 2060.91,513.238 2056.5,513.238 2052.04,513.238 \n", " 2047.54,513.238 2043,513.238 2038.42,513.238 2033.79,513.238 2029.12,513.238 2024.41,513.238 2019.66,513.238 2014.87,513.238 2010.04,513.238 2005.16,513.238 \n", " 2000.25,513.238 1995.29,513.238 1990.3,513.238 1985.26,513.238 1980.19,513.238 1975.08,513.238 1969.93,513.238 1964.74,513.238 1959.51,513.238 1954.24,513.238 \n", " 1948.94,513.237 1943.6,513.237 1938.22,513.237 1932.8,513.237 1927.35,513.237 1921.86,513.236 1916.34,513.236 1910.78,513.235 1905.18,513.234 1899.55,513.232 \n", " 1893.89,513.231 1888.19,513.228 1882.45,513.225 1876.69,513.221 1870.89,513.216 1865.05,513.209 1859.18,513.2 1853.28,513.188 1847.35,513.174 1841.38,513.155 \n", " 1835.39,513.13 1829.36,513.1 1823.3,513.061 1817.21,513.011 1811.09,512.95 1804.94,512.872 1798.75,512.776 1792.54,512.657 1786.3,512.51 1780.03,512.33 \n", " 1773.74,512.11 1767.41,511.844 1761.06,511.522 1754.68,511.138 1748.27,510.68 1741.83,510.138 1735.37,509.503 1728.88,508.762 1722.37,507.906 1715.83,506.924 \n", " 1709.26,505.809 1702.68,504.554 1696.06,503.156 1689.42,501.615 1682.76,499.938 1676.07,498.137 1669.37,496.231 1662.63,494.246 1655.88,492.221 1649.1,490.2 \n", " 1642.31,488.239 1635.49,486.404 1628.65,484.767 1621.79,483.41 1614.91,482.416 1608,481.87 1601.08,481.856 1594.14,482.447 1587.19,483.703 1580.21,485.668 \n", " 1573.21,488.358 1566.2,491.761 1559.17,495.828 1552.12,500.475 1545.06,505.579 1537.98,510.978 1530.88,516.475 1523.77,521.848 1516.64,526.857 1509.5,531.254 \n", " 1502.35,534.801 1495.18,537.286 1487.99,538.537 1480.8,538.44 1473.59,536.949 1466.36,534.104 1459.13,530.026 1451.88,524.925 1444.63,519.089 1437.36,512.872 \n", " 1430.08,506.671 1422.79,500.904 1415.49,495.978 1408.18,492.257 1400.86,490.033 1393.53,489.498 1386.2,490.725 1378.86,493.652 1371.51,498.084 1364.15,503.698 \n", " 1356.78,510.07 1349.41,516.699 1342.04,523.052 1334.65,528.606 1327.27,532.892 1319.87,535.538 1312.48,536.306 1305.08,535.114 1297.67,532.049 1290.26,527.363 \n", " 1282.85,521.451 1275.44,514.823 1268.02,508.054 1260.61,501.739 1253.19,496.435 1245.77,492.614 1238.35,490.613 1230.93,490.613 1223.51,492.614 1216.09,496.435 \n", " 1208.67,501.739 1201.25,508.054 1193.83,514.823 1186.42,521.451 1179.01,527.363 1171.6,532.049 1164.2,535.114 1156.8,536.306 1149.4,535.538 1142.01,532.892 \n", " 1134.62,528.606 1127.24,523.052 1119.86,516.699 1112.49,510.07 1105.12,503.698 1097.77,498.084 1090.42,493.652 1083.07,490.725 1075.74,489.498 1068.41,490.033 \n", " 1061.09,492.257 1053.78,495.978 1046.48,500.904 1039.2,506.671 1031.92,512.872 1024.65,519.089 1017.39,524.925 1010.14,530.026 1002.91,534.104 995.687,536.949 \n", " 988.477,538.44 981.28,538.537 974.096,537.286 966.926,534.801 959.771,531.254 952.629,526.857 945.502,521.848 938.391,516.475 931.294,510.978 924.214,505.579 \n", " 917.15,500.475 910.103,495.828 903.073,491.761 896.06,488.358 889.064,485.668 882.087,483.703 875.129,482.447 868.189,481.856 861.268,481.87 854.367,482.416 \n", " 847.486,483.41 840.625,484.767 833.785,486.404 826.966,488.239 820.168,490.2 813.392,492.221 806.638,494.246 799.907,496.231 793.198,498.137 786.512,499.938 \n", " 779.85,501.615 773.212,503.156 766.597,504.554 760.008,505.809 753.443,506.924 746.903,507.906 740.389,508.762 733.901,509.503 727.439,510.138 721.004,510.68 \n", " 714.596,511.138 708.215,511.522 701.861,511.844 695.535,512.11 689.238,512.33 682.969,512.51 676.729,512.657 670.519,512.776 664.337,512.872 658.186,512.95 \n", " 652.065,513.011 645.975,513.061 639.915,513.1 633.886,513.13 627.889,513.155 621.924,513.174 615.991,513.188 610.09,513.2 604.222,513.209 598.387,513.216 \n", " 592.586,513.221 586.818,513.225 581.084,513.228 575.384,513.231 569.719,513.232 564.088,513.234 558.493,513.235 552.933,513.236 547.409,513.236 541.921,513.237 \n", " 536.469,513.237 531.054,513.237 525.676,513.237 520.335,513.237 515.031,513.238 509.765,513.238 504.537,513.238 499.347,513.238 494.196,513.238 489.083,513.238 \n", " 484.01,513.238 478.976,513.238 473.981,513.238 469.026,513.238 464.112,513.238 459.238,513.238 454.404,513.238 449.611,513.238 444.86,513.238 440.15,513.238 \n", " 435.481,513.238 430.855,513.238 426.27,513.238 421.728,513.238 417.228,513.238 412.772,513.238 408.358,513.238 403.988,513.238 399.661,513.238 395.378,513.238 \n", " 391.139,513.238 386.944,513.238 382.793,513.238 378.687,513.238 374.626,513.238 370.61,513.238 366.64,513.238 362.715,513.238 358.835,513.238 355.001,513.238 \n", " 351.214,513.238 347.473,513.238 343.778,513.238 340.13,513.238 336.529,513.238 332.974,513.238 329.468,513.238 326.008,513.238 322.596,513.238 319.232,513.238 \n", " 315.916,513.238 312.648,513.238 309.428,513.238 306.257,513.238 303.135,513.238 300.061,513.238 297.036,513.238 294.061,513.238 291.134,513.238 288.257,513.238 \n", " 285.43,513.238 282.653,513.238 279.925,513.238 277.247,513.238 274.62,513.238 272.043,513.238 269.516,513.238 267.04,513.238 264.614,513.238 262.24,513.238 \n", " 259.916,513.238 257.643,513.238 255.422,513.238 253.252,513.238 251.133,513.238 249.066,513.238 247.05,513.238 245.086,513.238 243.175,513.238 241.315,513.238 \n", " 239.507,513.238 237.751,513.238 236.047,513.238 234.396,513.238 232.797,513.238 231.251,513.238 229.757,513.238 228.316,513.238 226.928,513.238 225.592,513.238 \n", " 224.309,513.238 223.08,513.238 221.903,513.238 220.779,513.238 219.709,513.238 218.691,513.238 217.727,513.238 216.816,513.238 215.959,513.238 215.155,513.238 \n", " 214.404,513.238 213.707,513.238 213.063,513.238 212.473,513.238 211.936,513.238 211.453,513.238 211.024,513.238 210.648,513.238 210.325,513.238 210.057,513.238 \n", " 209.842,513.238 209.681,513.238 209.574,513.238 209.52,513.238 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,396.739 2259.7,396.739 2259.59,396.739 2259.43,396.739 2259.22,396.739 2258.95,396.739 2258.63,396.739 2258.25,396.739 2257.82,396.739 2257.34,396.739 \n", " 2256.8,396.739 2256.21,396.739 2255.57,396.739 2254.87,396.739 2254.12,396.739 2253.31,396.739 2252.46,396.739 2251.55,396.739 2250.58,396.739 2249.56,396.739 \n", " 2248.49,396.739 2247.37,396.739 2246.19,396.739 2244.96,396.739 2243.68,396.739 2242.34,396.739 2240.96,396.739 2239.52,396.739 2238.02,396.739 2236.48,396.739 \n", " 2234.88,396.739 2233.23,396.739 2231.52,396.739 2229.77,396.739 2227.96,396.739 2226.1,396.739 2224.19,396.739 2222.22,396.739 2220.21,396.739 2218.14,396.739 \n", " 2216.02,396.739 2213.85,396.739 2211.63,396.739 2209.36,396.739 2207.03,396.739 2204.66,396.739 2202.23,396.739 2199.76,396.739 2197.23,396.739 2194.65,396.739 \n", " 2192.03,396.739 2189.35,396.739 2186.62,396.739 2183.84,396.739 2181.02,396.739 2178.14,396.739 2175.21,396.739 2172.24,396.739 2169.21,396.739 2166.14,396.739 \n", " 2163.02,396.739 2159.84,396.739 2156.62,396.739 2153.36,396.739 2150.04,396.739 2146.68,396.739 2143.26,396.739 2139.81,396.739 2136.3,396.739 2132.74,396.739 \n", " 2129.14,396.739 2125.49,396.739 2121.8,396.739 2118.06,396.739 2114.27,396.739 2110.44,396.739 2106.56,396.739 2102.63,396.739 2098.66,396.739 2094.65,396.739 \n", " 2090.59,396.739 2086.48,396.739 2082.33,396.739 2078.13,396.739 2073.89,396.739 2069.61,396.739 2065.29,396.739 2060.91,396.739 2056.5,396.739 2052.04,396.739 \n", " 2047.54,396.739 2043,396.739 2038.42,396.739 2033.79,396.739 2029.12,396.739 2024.41,396.739 2019.66,396.739 2014.87,396.739 2010.04,396.739 2005.16,396.739 \n", " 2000.25,396.739 1995.29,396.739 1990.3,396.739 1985.26,396.739 1980.19,396.739 1975.08,396.739 1969.93,396.739 1964.74,396.739 1959.51,396.739 1954.24,396.739 \n", " 1948.94,396.738 1943.6,396.738 1938.22,396.737 1932.8,396.737 1927.35,396.736 1921.86,396.734 1916.34,396.733 1910.78,396.731 1905.18,396.728 1899.55,396.724 \n", " 1893.89,396.719 1888.19,396.713 1882.45,396.705 1876.69,396.695 1870.89,396.682 1865.05,396.665 1859.18,396.643 1853.28,396.616 1847.35,396.581 1841.38,396.537 \n", " 1835.39,396.481 1829.36,396.412 1823.3,396.325 1817.21,396.218 1811.09,396.085 1804.94,395.922 1798.75,395.723 1792.54,395.481 1786.3,395.188 1780.03,394.836 \n", " 1773.74,394.416 1767.41,393.917 1761.06,393.33 1754.68,392.642 1748.27,391.845 1741.83,390.926 1735.37,389.878 1728.88,388.692 1722.37,387.364 1715.83,385.893 \n", " 1709.26,384.282 1702.68,382.54 1696.06,380.683 1689.42,378.736 1682.76,376.731 1676.07,374.71 1669.37,372.726 1662.63,370.841 1655.88,369.126 1649.1,367.661 \n", " 1642.31,366.53 1635.49,365.821 1628.65,365.619 1621.79,366.003 1614.91,367.042 1608,368.787 1601.08,371.263 1594.14,374.469 1587.19,378.367 1580.21,382.882 \n", " 1573.21,387.897 1566.2,393.256 1559.17,398.766 1552.12,404.201 1545.06,409.316 1537.98,413.854 1530.88,417.565 1523.77,420.221 1516.64,421.636 1509.5,421.679 \n", " 1502.35,420.297 1495.18,417.517 1487.99,413.461 1480.8,408.343 1473.59,402.463 1466.36,396.192 1459.13,389.95 1451.88,384.178 1444.63,379.305 1437.36,375.716 \n", " 1430.08,373.71 1422.79,373.477 1415.49,375.075 1408.18,378.41 1400.86,383.245 1393.53,389.204 1386.2,395.803 1378.86,402.489 1371.51,408.681 1364.15,413.827 \n", " 1356.78,417.454 1349.41,419.217 1342.04,418.932 1334.65,416.603 1327.27,412.426 1319.87,406.776 1312.48,400.175 1305.08,393.243 1297.67,386.644 1290.26,381.016 \n", " 1282.85,376.911 1275.44,374.735 1268.02,374.711 1260.61,376.847 1253.19,380.939 1245.77,386.589 1238.35,393.241 1230.93,400.238 1223.51,406.89 1216.09,412.54 \n", " 1208.67,416.632 1201.25,418.768 1193.83,418.744 1186.42,416.568 1179.01,412.463 1171.6,406.835 1164.2,400.236 1156.8,393.304 1149.4,386.702 1142.01,381.053 \n", " 1134.62,376.876 1127.24,374.547 1119.86,374.262 1112.49,376.024 1105.12,379.652 1097.77,384.798 1090.42,390.99 1083.07,397.675 1075.74,404.275 1068.41,410.234 \n", " 1061.09,415.069 1053.78,418.404 1046.48,420.002 1039.2,419.769 1031.92,417.763 1024.65,414.173 1017.39,409.301 1010.14,403.529 1002.91,397.287 995.687,391.016 \n", " 988.477,385.136 981.28,380.018 974.096,375.962 966.926,373.182 959.771,371.799 952.629,371.843 945.502,373.258 938.391,375.914 931.294,379.625 924.214,384.163 \n", " 917.15,389.278 910.103,394.713 903.073,400.223 896.06,405.582 889.064,410.597 882.087,415.112 875.129,419.01 868.189,422.216 861.268,424.692 854.367,426.437 \n", " 847.486,427.476 840.625,427.86 833.785,427.658 826.966,426.949 820.168,425.818 813.392,424.353 806.638,422.638 799.907,420.753 793.198,418.769 786.512,416.748 \n", " 779.85,414.743 773.212,412.796 766.597,410.939 760.008,409.197 753.443,407.586 746.903,406.115 740.389,404.787 733.901,403.601 727.439,402.553 721.004,401.634 \n", " 714.596,400.837 708.215,400.149 701.861,399.562 695.535,399.063 689.238,398.643 682.969,398.291 676.729,397.998 670.519,397.756 664.337,397.556 658.186,397.393 \n", " 652.065,397.261 645.975,397.153 639.915,397.067 633.886,396.997 627.889,396.942 621.924,396.898 615.991,396.863 610.09,396.836 604.222,396.814 598.387,396.797 \n", " 592.586,396.784 586.818,396.774 581.084,396.766 575.384,396.759 569.719,396.755 564.088,396.751 558.493,396.748 552.933,396.746 547.409,396.744 541.921,396.743 \n", " 536.469,396.742 531.054,396.742 525.676,396.741 520.335,396.741 515.031,396.74 509.765,396.74 504.537,396.74 499.347,396.74 494.196,396.74 489.083,396.74 \n", " 484.01,396.74 478.976,396.74 473.981,396.74 469.026,396.74 464.112,396.739 459.238,396.739 454.404,396.739 449.611,396.739 444.86,396.739 440.15,396.739 \n", " 435.481,396.739 430.855,396.739 426.27,396.739 421.728,396.739 417.228,396.739 412.772,396.739 408.358,396.739 403.988,396.739 399.661,396.739 395.378,396.739 \n", " 391.139,396.739 386.944,396.739 382.793,396.739 378.687,396.739 374.626,396.739 370.61,396.739 366.64,396.739 362.715,396.739 358.835,396.739 355.001,396.739 \n", " 351.214,396.739 347.473,396.739 343.778,396.739 340.13,396.739 336.529,396.739 332.974,396.739 329.468,396.739 326.008,396.739 322.596,396.739 319.232,396.739 \n", " 315.916,396.739 312.648,396.739 309.428,396.739 306.257,396.739 303.135,396.739 300.061,396.739 297.036,396.739 294.061,396.739 291.134,396.739 288.257,396.739 \n", " 285.43,396.739 282.653,396.739 279.925,396.739 277.247,396.739 274.62,396.739 272.043,396.739 269.516,396.739 267.04,396.739 264.614,396.739 262.24,396.739 \n", " 259.916,396.739 257.643,396.739 255.422,396.739 253.252,396.739 251.133,396.739 249.066,396.739 247.05,396.739 245.086,396.739 243.175,396.739 241.315,396.739 \n", " 239.507,396.739 237.751,396.739 236.047,396.739 234.396,396.739 232.797,396.739 231.251,396.739 229.757,396.739 228.316,396.739 226.928,396.739 225.592,396.739 \n", " 224.309,396.739 223.08,396.739 221.903,396.739 220.779,396.739 219.709,396.739 218.691,396.739 217.727,396.739 216.816,396.739 215.959,396.739 215.155,396.739 \n", " 214.404,396.739 213.707,396.739 213.063,396.739 212.473,396.739 211.936,396.739 211.453,396.739 211.024,396.739 210.648,396.739 210.325,396.739 210.057,396.739 \n", " 209.842,396.739 209.681,396.739 209.574,396.739 209.52,396.739 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7403)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.75,280.241 2259.7,280.241 2259.59,280.241 2259.43,280.241 2259.22,280.241 2258.95,280.241 2258.63,280.241 2258.25,280.241 2257.82,280.241 2257.34,280.241 \n", " 2256.8,280.241 2256.21,280.241 2255.57,280.241 2254.87,280.241 2254.12,280.241 2253.31,280.241 2252.46,280.241 2251.55,280.241 2250.58,280.241 2249.56,280.241 \n", " 2248.49,280.241 2247.37,280.241 2246.19,280.241 2244.96,280.241 2243.68,280.241 2242.34,280.241 2240.96,280.241 2239.52,280.241 2238.02,280.241 2236.48,280.241 \n", " 2234.88,280.241 2233.23,280.241 2231.52,280.241 2229.77,280.241 2227.96,280.241 2226.1,280.241 2224.19,280.241 2222.22,280.241 2220.21,280.241 2218.14,280.241 \n", " 2216.02,280.241 2213.85,280.241 2211.63,280.241 2209.36,280.241 2207.03,280.241 2204.66,280.241 2202.23,280.241 2199.76,280.241 2197.23,280.241 2194.65,280.241 \n", " 2192.03,280.241 2189.35,280.241 2186.62,280.241 2183.84,280.241 2181.02,280.241 2178.14,280.241 2175.21,280.241 2172.24,280.241 2169.21,280.241 2166.14,280.241 \n", " 2163.02,280.241 2159.84,280.241 2156.62,280.241 2153.36,280.241 2150.04,280.241 2146.68,280.241 2143.26,280.241 2139.81,280.241 2136.3,280.241 2132.74,280.241 \n", " 2129.14,280.241 2125.49,280.241 2121.8,280.241 2118.06,280.241 2114.27,280.241 2110.44,280.241 2106.56,280.241 2102.63,280.241 2098.66,280.241 2094.65,280.241 \n", " 2090.59,280.241 2086.48,280.241 2082.33,280.241 2078.13,280.241 2073.89,280.241 2069.61,280.241 2065.29,280.241 2060.91,280.241 2056.5,280.241 2052.04,280.241 \n", " 2047.54,280.241 2043,280.241 2038.42,280.241 2033.79,280.241 2029.12,280.241 2024.41,280.241 2019.66,280.241 2014.87,280.241 2010.04,280.241 2005.16,280.241 \n", " 2000.25,280.241 1995.29,280.241 1990.3,280.241 1985.26,280.241 1980.19,280.24 1975.08,280.24 1969.93,280.24 1964.74,280.24 1959.51,280.239 1954.24,280.238 \n", " 1948.94,280.238 1943.6,280.236 1938.22,280.235 1932.8,280.233 1927.35,280.231 1921.86,280.228 1916.34,280.223 1910.78,280.218 1905.18,280.211 1899.55,280.202 \n", " 1893.89,280.191 1888.19,280.176 1882.45,280.157 1876.69,280.133 1870.89,280.102 1865.05,280.064 1859.18,280.015 1853.28,279.954 1847.35,279.878 1841.38,279.784 \n", " 1835.39,279.667 1829.36,279.523 1823.3,279.346 1817.21,279.131 1811.09,278.87 1804.94,278.555 1798.75,278.178 1792.54,277.729 1786.3,277.198 1780.03,276.574 \n", " 1773.74,275.846 1767.41,275.004 1761.06,274.038 1754.68,272.938 1748.27,271.7 1741.83,270.319 1735.37,268.795 1728.88,267.135 1722.37,265.351 1715.83,263.461 \n", " 1709.26,261.494 1702.68,259.486 1696.06,257.485 1689.42,255.548 1682.76,253.742 1676.07,252.143 1669.37,250.833 1662.63,249.901 1655.88,249.435 1649.1,249.52 \n", " 1642.31,250.231 1635.49,251.63 1628.65,253.757 1621.79,256.626 1614.91,260.216 1608,264.468 1601.08,269.285 1594.14,274.524 1587.19,280.003 1580.21,285.504 \n", " 1573.21,290.783 1566.2,295.577 1559.17,299.626 1552.12,302.683 1545.06,304.538 1537.98,305.033 1530.88,304.084 1523.77,301.691 1516.64,297.95 1509.5,293.056 \n", " 1502.35,287.297 1495.18,281.042 1487.99,274.722 1480.8,268.793 1473.59,263.713 1466.36,259.892 1459.13,257.665 1451.88,257.249 1444.63,258.719 1437.36,261.995 \n", " 1430.08,266.835 1422.79,272.848 1415.49,279.522 1408.18,286.269 1400.86,292.47 1393.53,297.539 1386.2,300.979 1378.86,302.439 1371.51,301.748 1364.15,298.946 \n", " 1356.78,294.285 1349.41,288.213 1342.04,281.328 1334.65,274.329 1327.27,267.935 1319.87,262.818 1312.48,259.524 1305.08,258.413 1297.67,259.619 1290.26,263.025 \n", " 1282.85,268.278 1275.44,274.821 1268.02,281.95 1260.61,288.896 1253.19,294.903 1245.77,299.314 1238.35,301.648 1230.93,301.648 1223.51,299.314 1216.09,294.903 \n", " 1208.67,288.896 1201.25,281.95 1193.83,274.821 1186.42,268.278 1179.01,263.025 1171.6,259.619 1164.2,258.413 1156.8,259.524 1149.4,262.818 1142.01,267.935 \n", " 1134.62,274.329 1127.24,281.328 1119.86,288.213 1112.49,294.285 1105.12,298.946 1097.77,301.748 1090.42,302.439 1083.07,300.979 1075.74,297.539 1068.41,292.47 \n", " 1061.09,286.269 1053.78,279.522 1046.48,272.848 1039.2,266.835 1031.92,261.995 1024.65,258.719 1017.39,257.249 1010.14,257.665 1002.91,259.892 995.687,263.713 \n", " 988.477,268.793 981.28,274.722 974.096,281.042 966.926,287.297 959.771,293.056 952.629,297.95 945.502,301.691 938.391,304.084 931.294,305.033 924.214,304.538 \n", " 917.15,302.683 910.103,299.626 903.073,295.577 896.06,290.783 889.064,285.504 882.087,280.003 875.129,274.524 868.189,269.285 861.268,264.468 854.367,260.216 \n", " 847.486,256.626 840.625,253.757 833.785,251.63 826.966,250.231 820.168,249.52 813.392,249.435 806.638,249.901 799.907,250.833 793.198,252.143 786.512,253.742 \n", " 779.85,255.548 773.212,257.485 766.597,259.486 760.008,261.494 753.443,263.461 746.903,265.351 740.389,267.135 733.901,268.795 727.439,270.319 721.004,271.7 \n", " 714.596,272.938 708.215,274.038 701.861,275.004 695.535,275.846 689.238,276.574 682.969,277.198 676.729,277.729 670.519,278.178 664.337,278.555 658.186,278.87 \n", " 652.065,279.131 645.975,279.346 639.915,279.523 633.886,279.667 627.889,279.784 621.924,279.878 615.991,279.954 610.09,280.015 604.222,280.064 598.387,280.102 \n", " 592.586,280.133 586.818,280.157 581.084,280.176 575.384,280.191 569.719,280.202 564.088,280.211 558.493,280.218 552.933,280.223 547.409,280.228 541.921,280.231 \n", " 536.469,280.233 531.054,280.235 525.676,280.236 520.335,280.238 515.031,280.238 509.765,280.239 504.537,280.24 499.347,280.24 494.196,280.24 489.083,280.24 \n", " 484.01,280.241 478.976,280.241 473.981,280.241 469.026,280.241 464.112,280.241 459.238,280.241 454.404,280.241 449.611,280.241 444.86,280.241 440.15,280.241 \n", " 435.481,280.241 430.855,280.241 426.27,280.241 421.728,280.241 417.228,280.241 412.772,280.241 408.358,280.241 403.988,280.241 399.661,280.241 395.378,280.241 \n", " 391.139,280.241 386.944,280.241 382.793,280.241 378.687,280.241 374.626,280.241 370.61,280.241 366.64,280.241 362.715,280.241 358.835,280.241 355.001,280.241 \n", " 351.214,280.241 347.473,280.241 343.778,280.241 340.13,280.241 336.529,280.241 332.974,280.241 329.468,280.241 326.008,280.241 322.596,280.241 319.232,280.241 \n", " 315.916,280.241 312.648,280.241 309.428,280.241 306.257,280.241 303.135,280.241 300.061,280.241 297.036,280.241 294.061,280.241 291.134,280.241 288.257,280.241 \n", " 285.43,280.241 282.653,280.241 279.925,280.241 277.247,280.241 274.62,280.241 272.043,280.241 269.516,280.241 267.04,280.241 264.614,280.241 262.24,280.241 \n", " 259.916,280.241 257.643,280.241 255.422,280.241 253.252,280.241 251.133,280.241 249.066,280.241 247.05,280.241 245.086,280.241 243.175,280.241 241.315,280.241 \n", " 239.507,280.241 237.751,280.241 236.047,280.241 234.396,280.241 232.797,280.241 231.251,280.241 229.757,280.241 228.316,280.241 226.928,280.241 225.592,280.241 \n", " 224.309,280.241 223.08,280.241 221.903,280.241 220.779,280.241 219.709,280.241 218.691,280.241 217.727,280.241 216.816,280.241 215.959,280.241 215.155,280.241 \n", " 214.404,280.241 213.707,280.241 213.063,280.241 212.473,280.241 211.936,280.241 211.453,280.241 211.024,280.241 210.648,280.241 210.325,280.241 210.057,280.241 \n", " 209.842,280.241 209.681,280.241 209.574,280.241 209.52,280.241 \n", " \"/>\n", "<polygon clip-path=\"url(#clip7401)\" points=\"\n", "1874.1,917.004 2249.26,917.004 2249.26,130.764 1874.1,130.764 \n", " \" fill=\"#ffffff\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1874.1,917.004 2249.26,917.004 2249.26,130.764 1874.1,130.764 1874.1,917.004 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,191.244 2042.1,191.244 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 208.744)\" x=\"2066.1\" y=\"208.744\">y1</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,251.724 2042.1,251.724 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 269.224)\" x=\"2066.1\" y=\"269.224\">n = 0</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,312.204 2042.1,312.204 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 329.704)\" x=\"2066.1\" y=\"329.704\">n = 1</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,372.684 2042.1,372.684 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 390.184)\" x=\"2066.1\" y=\"390.184\">n = 2</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,433.164 2042.1,433.164 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 450.664)\" x=\"2066.1\" y=\"450.664\">n = 3</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,493.644 2042.1,493.644 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 511.144)\" x=\"2066.1\" y=\"511.144\">n = 4</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,554.124 2042.1,554.124 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 571.624)\" x=\"2066.1\" y=\"571.624\">n = 5</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,614.604 2042.1,614.604 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 632.104)\" x=\"2066.1\" y=\"632.104\">n = 6</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,675.084 2042.1,675.084 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 692.584)\" x=\"2066.1\" y=\"692.584\">n = 7</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,735.564 2042.1,735.564 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 753.064)\" x=\"2066.1\" y=\"753.064\">n = 8</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,796.044 2042.1,796.044 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 813.544)\" x=\"2066.1\" y=\"813.544\">n = 9</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7401)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1898.1,856.524 2042.1,856.524 \n", " \"/>\n", "<g clip-path=\"url(#clip7401)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2066.1, 874.024)\" x=\"2066.1\" y=\"874.024\">n = 10</text>\n", "</g>\n", "</svg>\n" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p = plot(pad(Fun(x -> x^2, -10 .. 10), 100); ylims=(0,25))\n", "for n = 0:10\n", " H = Fun(Hermite(), [zeros(n);1])\n", " ψ = Fun(x -> H(x)exp(-x^2/2), -10.0 .. 10.0)/sqrt(sqrt(π)*2^n*factorial(1.0n))\n", " plot!(ψ + 2n+1; label=\"n = $n\")\n", "end\n", "p" ] } ], "metadata": { "kernelspec": { "display_name": "Julia 1.0.2", "language": "julia", "name": "julia-1.0" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.0.2" } }, "nbformat": 4, "nbformat_minor": 2 }