-
-
Save XerxesZorgon/6b056a34ee85fb4322053b8265f3b301 to your computer and use it in GitHub Desktop.
| { | |
| "cells": [ | |
| { | |
| "cell_type": "markdown", | |
| "id": "aea6a10e-28c9-4a56-9685-d3fc96154d95", | |
| "metadata": {}, | |
| "source": [ | |
| "# The Stefan-Boltzmann Law Revisited\n", | |
| "\n", | |
| "This worksheet calculates the blackbody radiation and Earth temperature due to human industrial activities. See the Wild Peaches article [here](https://wildpeaches.xyz/blog/economics-and-the-stefan-boltzmann-law/).\n", | |
| "\n", | |
| "You will be able to calculate:\n", | |
| "* The average Earth temperature based on incoming solar radiation\n", | |
| "* The temperature increase from radiating away heat caused by human activities\n", | |
| "* The temperature rise assuming constant economic growth over several centuries.\n", | |
| "\n", | |
| "The key physical law needed is the [Stefan-Boltzmann Law](https://en.wikipedia.org/wiki/Stefan%E2%80%93Boltzmann_law):\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "J = \\sigma T^4\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "where \n", | |
| "\n", | |
| "* $J = $ radiant emittance in units of $\\frac{W}{m^2}$\n", | |
| "* $\\sigma = 5.67 \\times 10^{-8} \\; \\frac{W}{m^2 \\cdot T^4}$ is the Stefan-Boltzmann constant\n", | |
| "* $T = $ temperature of the blackbody radiator in degrees Kelvin\n", | |
| "\n", | |
| "Most objects are not blackbodies, or perfect radiators, so the equation is modified to\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "J = \\epsilon \\sigma T^4\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "for some [emissivity](https://en.wikipedia.org/wiki/Emissivity) $\\epsilon \\in [0,1]$.\n", | |
| "\n", | |
| "For details, see [*Energy and Human Ambitions on a Finite Planet*](https://escholarship.org/uc/item/9js5291m#page=2) by Tom Murphy, $\\S 1.3$ [**Thermodynamic Consequences**](https://escholarship.org/uc/item/9js5291m#section.1.3), which uses \n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "P = A_{surf} \\sigma (T_{hot}^4 - T_{cold}^4)\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "for the radiated power $P$ from an object with surface area $A_{surf}$ and temperature $T_{hot}$ radiating into a region with temperature $T_{cold}$. Since space is near absolute zero, we can omit $T_{cold}$. \n", | |
| "\n" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "2fc86772-febe-4932-94e8-20491fd3a4df", | |
| "metadata": {}, | |
| "source": [ | |
| "## Earth temperature from solar radiation\n", | |
| "\n", | |
| "The Earth receives about $F = 1360 \\frac{W}{m^2}$ of solar energy at the top of the atmosphere, but only $960 \\frac{W}{m^2}$ reaches the ground due to the albedo $\\alpha = 0.293$. The area of the disk facing the sun with Earth radius is\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "A_{disk} = \\pi R_{\\oplus}^2\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "where $R_{\\oplus}$ is the Earth radius in meters. The absorbed energy is radiated away from the entire surface\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "A_{surf} = 4 \\pi R_{\\oplus}^2\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "so the power input from the sun can be related to the emitted power output,\n", | |
| "\n", | |
| "Solving for $T$, \n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "\\begin{aligned}\n", | |
| "P_{in} &= 960 \\frac{W}{m^2} \\times \\pi R_{\\oplus}^2 \\\\\n", | |
| "&= 4 \\pi R_{\\oplus}^2 \\sigma T^4 = P_{out}. \\\\\n", | |
| "T &= \\left( \\frac{960}{4 \\sigma} \\right)^{1/4}\n", | |
| "\\end{aligned}\n", | |
| "\\end{equation}" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 4, | |
| "id": "72fe5527-232d-4d4d-904d-2d58184e6a7c", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "1360" | |
| ] | |
| }, | |
| "execution_count": 4, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "F = 1360 # Solar power at the top of the atmosphere, W/m^2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 5, | |
| "id": "cd320025-7882-47b0-a169-36df73d9bcb5", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.293" | |
| ] | |
| }, | |
| "execution_count": 5, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "α = 0.293 # Earth albedo" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 6, | |
| "id": "54a08dc8-edb1-4601-8bf5-d887ba813cc2", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "5.670374419e-8" | |
| ] | |
| }, | |
| "execution_count": 6, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "σ = 5.670374419e-8 # Stefan-Boltzmann constant" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 7, | |
| "id": "8eca0180-0cee-427b-8499-5937c6f2dab6", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "255.16532016222948" | |
| ] | |
| }, | |
| "execution_count": 7, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "T = (F*(1-α)/(4σ))^(1/4) # Temperature derived from Stefan-Boltzmann Law" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "aaa7bae1-060e-4e8a-9675-3d91bf4922b9", | |
| "metadata": {}, | |
| "source": [ | |
| "This temperature $T = 255 \\degree K$ is colder than the observed average temperature of $288 \\degree K$ because it doesn't include the effects of greenhouse gases. See [*CO2 v. CH4*](https://wildpeaches.xyz/blog/co2-v-ch4/) for how to include the greenhouse effect. Let $\\Delta T_{GHG} = 33 \\degree K$ to get the Earth temperature, " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 8, | |
| "id": "f1118b2e-88e3-4e01-8804-3b0a6f02a899", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "288.1653201622295" | |
| ] | |
| }, | |
| "execution_count": 8, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "T_GHG = 33 # Temperature correction due to greenhouse gases\n", | |
| "T_Earth = T + T_GHG" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "d0c16c4c-27e7-4417-a97b-3eeb61f397b5", | |
| "metadata": {}, | |
| "source": [ | |
| "## Temperature increases from energy use\n", | |
| "\n", | |
| "[Energy consumption](https://ourworldindata.org/grapher/global-energy-substitution?facet=none) from primary sources (fossil fuels, nuclear, hydro, renewables, biomass) is $E = 178,889 \\; TWh$ per year (in 2022). To calculate the increase in the Earth's surface temperature, we'll need the power in watts per meter of area of the Earth's disk. \n", | |
| "\n", | |
| "TWh are units of energy (terawatt-hours) where $1 \\; TWh = 1e12 \\; Wh$ so 178,889 TWh = 178.889e15 Wh. Divide this by the number of hours per year to get power, $P_0 = E/H$.\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "H = 365 \\frac{days}{year} \\times 24 \\frac{hours}{day}.\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "Next, divide by the surface area of the disk,\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "A_{disk} = \\pi R_{\\oplus}^2.\n", | |
| "\\end{equation}\n", | |
| "\n", | |
| "to find the power per square meter, $p_0 = P_0/A_{disk}$.\n", | |
| "\n", | |
| "The radius of the Earth is $R_{\\oplus} = 6.371e6 \\;m$." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 9, | |
| "id": "25a9b6e4-2a27-4a1a-b9c6-22abdc129c43", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "8760" | |
| ] | |
| }, | |
| "execution_count": 9, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "H = 365 * 24 # Number of hours in a year" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 10, | |
| "id": "54e6009c-2746-43fd-ab5e-ecd188044e6c", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "2.0421118721461188e13" | |
| ] | |
| }, | |
| "execution_count": 10, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "E = 178889e12 # Primary energy consumption, Wh\n", | |
| "P0 = E/H # Power in watts" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 12, | |
| "id": "c2f8c44e-1214-48b9-8447-8672d6485139", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "6.371e6" | |
| ] | |
| }, | |
| "execution_count": 12, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "R_Earth = 6.371e6 # Earth radius in meters" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 14, | |
| "id": "b6b9599b-116d-413f-ae0f-d0dc499059fe", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "1.2751611797744706e14" | |
| ] | |
| }, | |
| "execution_count": 14, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "A_disk = π * R_Earth^2 # Area of Earth disk, m^2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 17, | |
| "id": "d8d593bc-8198-4afb-9665-4eb47edb5014", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.16014539216974075" | |
| ] | |
| }, | |
| "execution_count": 17, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "p0 = P0 / A_disk # Power from energy consumption, W/m^2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "00a18c1a-426b-44a2-8a80-0f5e597d2542", | |
| "metadata": {}, | |
| "source": [ | |
| "Using the Stefan-Boltzmann Law calculate the increase in Earth temperature from energy consumption.\n", | |
| "\n", | |
| "\\begin{equation}\n", | |
| "\\begin{aligned}\n", | |
| "\\Delta T_{Energy} &= \\left( \\frac{F (1 - \\alpha) + p_0}{4 \\sigma} \\right)^{1/4} + \\Delta T_{GHG} - T_{Earth} \\\\\n", | |
| "&= \\left( \\frac{F (1 - \\alpha) + p_0}{4 \\sigma} \\right)^{1/4} - T.\n", | |
| "\\end{aligned}\n", | |
| "\\end{equation}" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 23, | |
| "id": "03ff0a34-7a4d-4c02-9fa8-290513a55358", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.010624063530087824" | |
| ] | |
| }, | |
| "execution_count": 23, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "dT_Energy = ((F*(1-α) + p0)/(4*σ))^(1/4) - T" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "5ca57fe1-2aa3-4433-a338-9f89982e5f2c", | |
| "metadata": {}, | |
| "source": [ | |
| "For convenience, let's turn $\\Delta T_{Energy}$ into a function,\n", | |
| "\n", | |
| "$$\n", | |
| "T_E(E) = \\left( \\frac{F(1-\\alpha) + E/(H \\cdot A_{disk})}{4 \\sigma} \\right)^{1/4} + \\Delta T_{GHG}.\n", | |
| "$$\n", | |
| "\n", | |
| "In this form we can test different values for the annual energy consumption measured in TWh. " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 34, | |
| "id": "3b96cd34-9334-4c15-b93a-a2fd22847ed7", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "TE (generic function with 1 method)" | |
| ] | |
| }, | |
| "execution_count": 34, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "TE(E) = map(e -> ((F*(1-α)+e/(H*A_disk))/(4*σ))^0.25 + T_GHG, E)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "95558bbe-bfdf-4b0f-8abc-ce0b2e8f9e6b", | |
| "metadata": {}, | |
| "source": [ | |
| "Check the solution above with E = 178,889 TWh." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 65, | |
| "id": "6483b108-7f25-4b81-816c-40da40a01dde", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "288.17594422575957" | |
| ] | |
| }, | |
| "execution_count": 65, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "TE(E) # Expected temperature including waste heat" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "910552f4-215a-483a-964a-9fdf8cfb29c8", | |
| "metadata": {}, | |
| "source": [ | |
| "Now we can compare the temperature with no additional energy input, $E = 0$ and the difference." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 36, | |
| "id": "d64412d9-aed0-47e1-a282-727caffdec04", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "288.1653201622295" | |
| ] | |
| }, | |
| "execution_count": 36, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "TE(0)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 37, | |
| "id": "c064f4ba-fe0c-4d30-9efd-b569dc846e0d", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.010624063530087824" | |
| ] | |
| }, | |
| "execution_count": 37, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "TE(E) - TE(0) # Temperature increase due to energy consumption in 2022." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 43, | |
| "id": "fa2d01bf-c56c-4484-80e1-b7a07f2edf0f", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "5.1006447190978825e14" | |
| ] | |
| }, | |
| "execution_count": 43, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "A_surf = 4*A_disk" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 48, | |
| "id": "be259087-65e8-4146-a7d5-4d77471998f7", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "4.468164773929745e18" | |
| ] | |
| }, | |
| "execution_count": 48, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "EEI = 1.0 * H *A_surf # Earth Energy Imbalance in Wh per year" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 49, | |
| "id": "60f4a4f8-a6dd-4636-bdcb-2884c55ae4b6", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.2649640338803465" | |
| ] | |
| }, | |
| "execution_count": 49, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "TE(EEI) - TE(0) # Temperature increase due to greenhouse gases and waste heat" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 50, | |
| "id": "0a9466f4-916c-472b-825b-377c87a80f3e", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.04009624768501781" | |
| ] | |
| }, | |
| "execution_count": 50, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "(TE(E) - TE(0)) / (TE(EEI) - TE(0)) # Ratio of waste heat temperature increase to EEI heating" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 51, | |
| "id": "e210ae0a-a8bc-48a0-a36a-0187aa913435", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.04003634804243519" | |
| ] | |
| }, | |
| "execution_count": 51, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "E/EEI # Ratio of energies" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "70f572b4-5a65-4f14-8e2c-60ca60e7f068", | |
| "metadata": {}, | |
| "source": [ | |
| "## Single Layer Model\n", | |
| "\n", | |
| "The single layer model of the atmosphere used in [CO2 v. CH4](https://wildpeaches.xyz/blog/co2-v-ch4/) lets us calculate the temperature with an emissivity term $\\epsilon = 0.78$. The equation is\n", | |
| "\n", | |
| "$$\n", | |
| "T_e = \\left( \\frac{(1-\\alpha)S}{(1 - \\frac{\\epsilon}{2}) \\sigma} \\right)^{1/4}\n", | |
| "$$\n", | |
| "\n", | |
| "and by including a power term $p$ for greenhouse gas forcings and waste heat we can get a more accurate estimate of the expected changes in Earth's temperature." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 55, | |
| "id": "0ddc465b-74a6-4c22-afc3-ed42e756612f", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "340.0" | |
| ] | |
| }, | |
| "execution_count": 55, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "S = F/4 # Average solar power received over entire surface of Earth" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 56, | |
| "id": "73d782a4-f3a3-4759-9813-bf90f63acb36", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.78" | |
| ] | |
| }, | |
| "execution_count": 56, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "ϵ = 0.78 # Atmosphere emissivity" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 59, | |
| "id": "f4a9e332-e6d0-4f54-9515-a303d480d9ab", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "Te (generic function with 1 method)" | |
| ] | |
| }, | |
| "execution_count": 59, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "Te(p) = map(pe -> ( ((1-α)*S + pe)/((1 - ϵ/2) * σ))^0.25, p)" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 61, | |
| "id": "b8dddf3c-422f-40c9-9d84-3b40f35e4e85", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "288.7281909796797" | |
| ] | |
| }, | |
| "execution_count": 61, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "Te(0) # Earth temperature without additional sources" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 64, | |
| "id": "cbf399f8-368d-4706-8a0c-4231b2f81e90", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.2998157670028263" | |
| ] | |
| }, | |
| "execution_count": 64, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "Te(1) - Te(0) # Increase in temperature from greenhouse gases assuming 1 W/m^2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 66, | |
| "id": "cccdd98a-1af7-40f6-bc2f-fb2de74e073f", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.0120214872536053" | |
| ] | |
| }, | |
| "execution_count": 66, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "Te(P0/A_surf) - Te(0) # Temperature increase due to waste heat" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "f82c2e49-26dc-42d7-a7e1-03f6767ea6f0", | |
| "metadata": {}, | |
| "source": [ | |
| "## Exponential growth\n", | |
| "\n", | |
| "Using the model $T_e(p)$ we can estimate the Earth's temperature over time, assuming a constant exponential growth of the economy, and thus energy. Let $q(t)$ be the instantaneous power at time $t$ measured in Watts and $q_0$ the power at time $t_0$, then\n", | |
| "\n", | |
| "$$\n", | |
| "q(t) = q_0 e^{r (t - t0)}\n", | |
| "$$\n", | |
| "\n", | |
| "where $r$ is the constant growth rate. For convenience, you should input $r$ as a percentage, and the equation will convert it to the correct growth rate." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 67, | |
| "id": "7187892b-ee2a-41ee-9c93-f401c3b8684b", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "2.3" | |
| ] | |
| }, | |
| "execution_count": 67, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "r = 2.3 # Constant growth rate, equivalent to 10 x over a century" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 76, | |
| "id": "1ac6ea30-1f7e-4d57-92c7-efa033356958", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "0.027496076401843934" | |
| ] | |
| }, | |
| "execution_count": 76, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "q0 = 122857e12 / (H * A_surf) # Initial power at time t0 = 2000, W/m^2" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 84, | |
| "id": "b0a1afad-426f-44f5-affd-fcaa61c862c2", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "t0 = 2000; # First year in the sequence" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 92, | |
| "id": "f0f31374-5e1c-4293-98f3-358bd1d69827", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "tf = 3000; # Last year in the sequence" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 93, | |
| "id": "945703ea-b1d0-4914-9e6e-cb3b9a1b3539", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "t = t0:tf;" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 71, | |
| "id": "7fb45a46-0300-4f7f-a34e-39a500a64068", | |
| "metadata": {}, | |
| "outputs": [ | |
| { | |
| "data": { | |
| "text/plain": [ | |
| "q (generic function with 1 method)" | |
| ] | |
| }, | |
| "execution_count": 71, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "q(T) = map(t -> q0*exp(r/100*(t-t0)),T) # Intantaneous power function " | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 94, | |
| "id": "86f67863-fce0-46fe-a922-ae58f396d423", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "Q = q(t); # Power consumption in each year, Watts" | |
| ] | |
| }, | |
| { | |
| "cell_type": "markdown", | |
| "id": "32cc13ab-c2f2-4c6d-8a9f-12c1891d223d", | |
| "metadata": {}, | |
| "source": [ | |
| "The Stefan-Boltzmann Law requires the extra power generated to be balanced by increased temperatures." | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 95, | |
| "id": "601962ae-c6af-4045-82e9-be5375d94adc", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "T_growth = Te(Q); # Increased temperature over the timespan" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 79, | |
| "id": "865eccfa-e595-4abf-b3e0-3d3d09a27d32", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "using Plots" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 99, | |
| "id": "c813e918-3db7-4da7-ad1d-324df5a6fe64", | |
| "metadata": {}, | |
| "outputs": [], | |
| "source": [ | |
| "water = 373.1; # Water boils\n", | |
| "paper = 505.9; # Paper burns\n", | |
| "gold = 1337; # Gold melts\n", | |
| "sun = 5778; # Surface temperature of the Sun" | |
| ] | |
| }, | |
| { | |
| "cell_type": "code", | |
| "execution_count": 100, | |
| "id": "c38717d7-2776-4baf-8ff4-892b22622153", | |
| "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=\"clip350\">\n", | |
| " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", | |
| " </clipPath>\n", | |
| "</defs>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"\n", | |
| "M0 1600 L2400 1600 L2400 0 L0 0 Z\n", | |
| " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", | |
| "<defs>\n", | |
| " <clipPath id=\"clip351\">\n", | |
| " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", | |
| " </clipPath>\n", | |
| "</defs>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"\n", | |
| "M265.445 1423.18 L2352.76 1423.18 L2352.76 47.2441 L265.445 47.2441 Z\n", | |
| " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", | |
| "<defs>\n", | |
| " <clipPath id=\"clip352\">\n", | |
| " <rect x=\"265\" y=\"47\" width=\"2088\" height=\"1377\"/>\n", | |
| " </clipPath>\n", | |
| "</defs>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 324.52,1423.18 324.52,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 816.81,1423.18 816.81,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 1309.1,1423.18 1309.1,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 1801.39,1423.18 1801.39,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 2293.68,1423.18 2293.68,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,1423.18 2352.76,1423.18 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 324.52,1423.18 324.52,1404.28 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 816.81,1423.18 816.81,1404.28 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 1309.1,1423.18 1309.1,1404.28 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 1801.39,1423.18 1801.39,1404.28 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 2293.68,1423.18 2293.68,1404.28 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M273.131 1481.64 L289.45 1481.64 L289.45 1485.58 L267.506 1485.58 L267.506 1481.64 Q270.168 1478.89 274.751 1474.26 Q279.358 1469.61 280.538 1468.27 Q282.784 1465.74 283.663 1464.01 Q284.566 1462.25 284.566 1460.56 Q284.566 1457.8 282.622 1456.07 Q280.7 1454.33 277.599 1454.33 Q275.399 1454.33 272.946 1455.09 Q270.515 1455.86 267.737 1457.41 L267.737 1452.69 Q270.562 1451.55 273.015 1450.97 Q275.469 1450.39 277.506 1450.39 Q282.876 1450.39 286.071 1453.08 Q289.265 1455.77 289.265 1460.26 Q289.265 1462.39 288.455 1464.31 Q287.668 1466.2 285.561 1468.8 Q284.983 1469.47 281.881 1472.69 Q278.779 1475.88 273.131 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M309.265 1454.1 Q305.654 1454.1 303.825 1457.66 Q302.02 1461.2 302.02 1468.33 Q302.02 1475.44 303.825 1479.01 Q305.654 1482.55 309.265 1482.55 Q312.899 1482.55 314.705 1479.01 Q316.534 1475.44 316.534 1468.33 Q316.534 1461.2 314.705 1457.66 Q312.899 1454.1 309.265 1454.1 M309.265 1450.39 Q315.075 1450.39 318.131 1455 Q321.209 1459.58 321.209 1468.33 Q321.209 1477.06 318.131 1481.67 Q315.075 1486.25 309.265 1486.25 Q303.455 1486.25 300.376 1481.67 Q297.321 1477.06 297.321 1468.33 Q297.321 1459.58 300.376 1455 Q303.455 1450.39 309.265 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M339.427 1454.1 Q335.816 1454.1 333.987 1457.66 Q332.182 1461.2 332.182 1468.33 Q332.182 1475.44 333.987 1479.01 Q335.816 1482.55 339.427 1482.55 Q343.061 1482.55 344.867 1479.01 Q346.695 1475.44 346.695 1468.33 Q346.695 1461.2 344.867 1457.66 Q343.061 1454.1 339.427 1454.1 M339.427 1450.39 Q345.237 1450.39 348.293 1455 Q351.371 1459.58 351.371 1468.33 Q351.371 1477.06 348.293 1481.67 Q345.237 1486.25 339.427 1486.25 Q333.617 1486.25 330.538 1481.67 Q327.483 1477.06 327.483 1468.33 Q327.483 1459.58 330.538 1455 Q333.617 1450.39 339.427 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M369.589 1454.1 Q365.978 1454.1 364.149 1457.66 Q362.343 1461.2 362.343 1468.33 Q362.343 1475.44 364.149 1479.01 Q365.978 1482.55 369.589 1482.55 Q373.223 1482.55 375.029 1479.01 Q376.857 1475.44 376.857 1468.33 Q376.857 1461.2 375.029 1457.66 Q373.223 1454.1 369.589 1454.1 M369.589 1450.39 Q375.399 1450.39 378.454 1455 Q381.533 1459.58 381.533 1468.33 Q381.533 1477.06 378.454 1481.67 Q375.399 1486.25 369.589 1486.25 Q363.779 1486.25 360.7 1481.67 Q357.644 1477.06 357.644 1468.33 Q357.644 1459.58 360.7 1455 Q363.779 1450.39 369.589 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M765.421 1481.64 L781.741 1481.64 L781.741 1485.58 L759.796 1485.58 L759.796 1481.64 Q762.458 1478.89 767.042 1474.26 Q771.648 1469.61 772.829 1468.27 Q775.074 1465.74 775.954 1464.01 Q776.856 1462.25 776.856 1460.56 Q776.856 1457.8 774.912 1456.07 Q772.991 1454.33 769.889 1454.33 Q767.69 1454.33 765.236 1455.09 Q762.806 1455.86 760.028 1457.41 L760.028 1452.69 Q762.852 1451.55 765.306 1450.97 Q767.759 1450.39 769.796 1450.39 Q775.167 1450.39 778.361 1453.08 Q781.556 1455.77 781.556 1460.26 Q781.556 1462.39 780.745 1464.31 Q779.958 1466.2 777.852 1468.8 Q777.273 1469.47 774.171 1472.69 Q771.069 1475.88 765.421 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M795.583 1481.64 L811.903 1481.64 L811.903 1485.58 L789.958 1485.58 L789.958 1481.64 Q792.62 1478.89 797.204 1474.26 Q801.81 1469.61 802.991 1468.27 Q805.236 1465.74 806.116 1464.01 Q807.018 1462.25 807.018 1460.56 Q807.018 1457.8 805.074 1456.07 Q803.153 1454.33 800.051 1454.33 Q797.852 1454.33 795.398 1455.09 Q792.967 1455.86 790.19 1457.41 L790.19 1452.69 Q793.014 1451.55 795.467 1450.97 Q797.921 1450.39 799.958 1450.39 Q805.329 1450.39 808.523 1453.08 Q811.717 1455.77 811.717 1460.26 Q811.717 1462.39 810.907 1464.31 Q810.12 1466.2 808.014 1468.8 Q807.435 1469.47 804.333 1472.69 Q801.231 1475.88 795.583 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M821.764 1451.02 L840.12 1451.02 L840.12 1454.96 L826.046 1454.96 L826.046 1463.43 Q827.065 1463.08 828.083 1462.92 Q829.102 1462.73 830.12 1462.73 Q835.907 1462.73 839.287 1465.9 Q842.666 1469.08 842.666 1474.49 Q842.666 1480.07 839.194 1483.17 Q835.722 1486.25 829.402 1486.25 Q827.227 1486.25 824.958 1485.88 Q822.713 1485.51 820.305 1484.77 L820.305 1480.07 Q822.389 1481.2 824.611 1481.76 Q826.833 1482.32 829.31 1482.32 Q833.314 1482.32 835.652 1480.21 Q837.99 1478.1 837.99 1474.49 Q837.99 1470.88 835.652 1468.77 Q833.314 1466.67 829.31 1466.67 Q827.435 1466.67 825.56 1467.08 Q823.708 1467.5 821.764 1468.38 L821.764 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M861.879 1454.1 Q858.268 1454.1 856.439 1457.66 Q854.634 1461.2 854.634 1468.33 Q854.634 1475.44 856.439 1479.01 Q858.268 1482.55 861.879 1482.55 Q865.513 1482.55 867.319 1479.01 Q869.148 1475.44 869.148 1468.33 Q869.148 1461.2 867.319 1457.66 Q865.513 1454.1 861.879 1454.1 M861.879 1450.39 Q867.689 1450.39 870.745 1455 Q873.824 1459.58 873.824 1468.33 Q873.824 1477.06 870.745 1481.67 Q867.689 1486.25 861.879 1486.25 Q856.069 1486.25 852.99 1481.67 Q849.935 1477.06 849.935 1468.33 Q849.935 1459.58 852.99 1455 Q856.069 1450.39 861.879 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1257.71 1481.64 L1274.03 1481.64 L1274.03 1485.58 L1252.09 1485.58 L1252.09 1481.64 Q1254.75 1478.89 1259.33 1474.26 Q1263.94 1469.61 1265.12 1468.27 Q1267.36 1465.74 1268.24 1464.01 Q1269.15 1462.25 1269.15 1460.56 Q1269.15 1457.8 1267.2 1456.07 Q1265.28 1454.33 1262.18 1454.33 Q1259.98 1454.33 1257.53 1455.09 Q1255.1 1455.86 1252.32 1457.41 L1252.32 1452.69 Q1255.14 1451.55 1257.6 1450.97 Q1260.05 1450.39 1262.09 1450.39 Q1267.46 1450.39 1270.65 1453.08 Q1273.85 1455.77 1273.85 1460.26 Q1273.85 1462.39 1273.04 1464.31 Q1272.25 1466.2 1270.14 1468.8 Q1269.56 1469.47 1266.46 1472.69 Q1263.36 1475.88 1257.71 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1283.89 1451.02 L1302.25 1451.02 L1302.25 1454.96 L1288.17 1454.96 L1288.17 1463.43 Q1289.19 1463.08 1290.21 1462.92 Q1291.23 1462.73 1292.25 1462.73 Q1298.04 1462.73 1301.42 1465.9 Q1304.79 1469.08 1304.79 1474.49 Q1304.79 1480.07 1301.32 1483.17 Q1297.85 1486.25 1291.53 1486.25 Q1289.36 1486.25 1287.09 1485.88 Q1284.84 1485.51 1282.43 1484.77 L1282.43 1480.07 Q1284.52 1481.2 1286.74 1481.76 Q1288.96 1482.32 1291.44 1482.32 Q1295.44 1482.32 1297.78 1480.21 Q1300.12 1478.1 1300.12 1474.49 Q1300.12 1470.88 1297.78 1468.77 Q1295.44 1466.67 1291.44 1466.67 Q1289.56 1466.67 1287.69 1467.08 Q1285.84 1467.5 1283.89 1468.38 L1283.89 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1324.01 1454.1 Q1320.4 1454.1 1318.57 1457.66 Q1316.76 1461.2 1316.76 1468.33 Q1316.76 1475.44 1318.57 1479.01 Q1320.4 1482.55 1324.01 1482.55 Q1327.64 1482.55 1329.45 1479.01 Q1331.28 1475.44 1331.28 1468.33 Q1331.28 1461.2 1329.45 1457.66 Q1327.64 1454.1 1324.01 1454.1 M1324.01 1450.39 Q1329.82 1450.39 1332.87 1455 Q1335.95 1459.58 1335.95 1468.33 Q1335.95 1477.06 1332.87 1481.67 Q1329.82 1486.25 1324.01 1486.25 Q1318.2 1486.25 1315.12 1481.67 Q1312.06 1477.06 1312.06 1468.33 Q1312.06 1459.58 1315.12 1455 Q1318.2 1450.39 1324.01 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1354.17 1454.1 Q1350.56 1454.1 1348.73 1457.66 Q1346.92 1461.2 1346.92 1468.33 Q1346.92 1475.44 1348.73 1479.01 Q1350.56 1482.55 1354.17 1482.55 Q1357.8 1482.55 1359.61 1479.01 Q1361.44 1475.44 1361.44 1468.33 Q1361.44 1461.2 1359.61 1457.66 Q1357.8 1454.1 1354.17 1454.1 M1354.17 1450.39 Q1359.98 1450.39 1363.04 1455 Q1366.11 1459.58 1366.11 1468.33 Q1366.11 1477.06 1363.04 1481.67 Q1359.98 1486.25 1354.17 1486.25 Q1348.36 1486.25 1345.28 1481.67 Q1342.23 1477.06 1342.23 1468.33 Q1342.23 1459.58 1345.28 1455 Q1348.36 1450.39 1354.17 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1750 1481.64 L1766.32 1481.64 L1766.32 1485.58 L1744.38 1485.58 L1744.38 1481.64 Q1747.04 1478.89 1751.62 1474.26 Q1756.23 1469.61 1757.41 1468.27 Q1759.65 1465.74 1760.53 1464.01 Q1761.44 1462.25 1761.44 1460.56 Q1761.44 1457.8 1759.49 1456.07 Q1757.57 1454.33 1754.47 1454.33 Q1752.27 1454.33 1749.82 1455.09 Q1747.39 1455.86 1744.61 1457.41 L1744.61 1452.69 Q1747.43 1451.55 1749.89 1450.97 Q1752.34 1450.39 1754.38 1450.39 Q1759.75 1450.39 1762.94 1453.08 Q1766.14 1455.77 1766.14 1460.26 Q1766.14 1462.39 1765.33 1464.31 Q1764.54 1466.2 1762.43 1468.8 Q1761.85 1469.47 1758.75 1472.69 Q1755.65 1475.88 1750 1481.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1774.96 1451.02 L1797.18 1451.02 L1797.18 1453.01 L1784.63 1485.58 L1779.75 1485.58 L1791.55 1454.96 L1774.96 1454.96 L1774.96 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1806.34 1451.02 L1824.7 1451.02 L1824.7 1454.96 L1810.63 1454.96 L1810.63 1463.43 Q1811.65 1463.08 1812.66 1462.92 Q1813.68 1462.73 1814.7 1462.73 Q1820.49 1462.73 1823.87 1465.9 Q1827.25 1469.08 1827.25 1474.49 Q1827.25 1480.07 1823.77 1483.17 Q1820.3 1486.25 1813.98 1486.25 Q1811.81 1486.25 1809.54 1485.88 Q1807.29 1485.51 1804.89 1484.77 L1804.89 1480.07 Q1806.97 1481.2 1809.19 1481.76 Q1811.41 1482.32 1813.89 1482.32 Q1817.9 1482.32 1820.23 1480.21 Q1822.57 1478.1 1822.57 1474.49 Q1822.57 1470.88 1820.23 1468.77 Q1817.9 1466.67 1813.89 1466.67 Q1812.02 1466.67 1810.14 1467.08 Q1808.29 1467.5 1806.34 1468.38 L1806.34 1451.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1846.46 1454.1 Q1842.85 1454.1 1841.02 1457.66 Q1839.21 1461.2 1839.21 1468.33 Q1839.21 1475.44 1841.02 1479.01 Q1842.85 1482.55 1846.46 1482.55 Q1850.09 1482.55 1851.9 1479.01 Q1853.73 1475.44 1853.73 1468.33 Q1853.73 1461.2 1851.9 1457.66 Q1850.09 1454.1 1846.46 1454.1 M1846.46 1450.39 Q1852.27 1450.39 1855.33 1455 Q1858.4 1459.58 1858.4 1468.33 Q1858.4 1477.06 1855.33 1481.67 Q1852.27 1486.25 1846.46 1486.25 Q1840.65 1486.25 1837.57 1481.67 Q1834.52 1477.06 1834.52 1468.33 Q1834.52 1459.58 1837.57 1455 Q1840.65 1450.39 1846.46 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M2252.36 1466.95 Q2255.72 1467.66 2257.59 1469.93 Q2259.49 1472.2 2259.49 1475.53 Q2259.49 1480.65 2255.97 1483.45 Q2252.45 1486.25 2245.97 1486.25 Q2243.8 1486.25 2241.48 1485.81 Q2239.19 1485.39 2236.74 1484.54 L2236.74 1480.02 Q2238.68 1481.16 2241 1481.74 Q2243.31 1482.32 2245.83 1482.32 Q2250.23 1482.32 2252.52 1480.58 Q2254.84 1478.84 2254.84 1475.53 Q2254.84 1472.48 2252.69 1470.77 Q2250.56 1469.03 2246.74 1469.03 L2242.71 1469.03 L2242.71 1465.19 L2246.92 1465.19 Q2250.37 1465.19 2252.2 1463.82 Q2254.03 1462.43 2254.03 1459.84 Q2254.03 1457.18 2252.13 1455.77 Q2250.26 1454.33 2246.74 1454.33 Q2244.82 1454.33 2242.62 1454.75 Q2240.42 1455.16 2237.78 1456.04 L2237.78 1451.88 Q2240.44 1451.14 2242.76 1450.77 Q2245.09 1450.39 2247.15 1450.39 Q2252.48 1450.39 2255.58 1452.83 Q2258.68 1455.23 2258.68 1459.35 Q2258.68 1462.22 2257.04 1464.21 Q2255.39 1466.18 2252.36 1466.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M2278.36 1454.1 Q2274.75 1454.1 2272.92 1457.66 Q2271.11 1461.2 2271.11 1468.33 Q2271.11 1475.44 2272.92 1479.01 Q2274.75 1482.55 2278.36 1482.55 Q2281.99 1482.55 2283.8 1479.01 Q2285.63 1475.44 2285.63 1468.33 Q2285.63 1461.2 2283.8 1457.66 Q2281.99 1454.1 2278.36 1454.1 M2278.36 1450.39 Q2284.17 1450.39 2287.22 1455 Q2290.3 1459.58 2290.3 1468.33 Q2290.3 1477.06 2287.22 1481.67 Q2284.17 1486.25 2278.36 1486.25 Q2272.55 1486.25 2269.47 1481.67 Q2266.41 1477.06 2266.41 1468.33 Q2266.41 1459.58 2269.47 1455 Q2272.55 1450.39 2278.36 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M2308.52 1454.1 Q2304.91 1454.1 2303.08 1457.66 Q2301.27 1461.2 2301.27 1468.33 Q2301.27 1475.44 2303.08 1479.01 Q2304.91 1482.55 2308.52 1482.55 Q2312.15 1482.55 2313.96 1479.01 Q2315.79 1475.44 2315.79 1468.33 Q2315.79 1461.2 2313.96 1457.66 Q2312.15 1454.1 2308.52 1454.1 M2308.52 1450.39 Q2314.33 1450.39 2317.38 1455 Q2320.46 1459.58 2320.46 1468.33 Q2320.46 1477.06 2317.38 1481.67 Q2314.33 1486.25 2308.52 1486.25 Q2302.71 1486.25 2299.63 1481.67 Q2296.57 1477.06 2296.57 1468.33 Q2296.57 1459.58 2299.63 1455 Q2302.71 1450.39 2308.52 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M2338.68 1454.1 Q2335.07 1454.1 2333.24 1457.66 Q2331.44 1461.2 2331.44 1468.33 Q2331.44 1475.44 2333.24 1479.01 Q2335.07 1482.55 2338.68 1482.55 Q2342.32 1482.55 2344.12 1479.01 Q2345.95 1475.44 2345.95 1468.33 Q2345.95 1461.2 2344.12 1457.66 Q2342.32 1454.1 2338.68 1454.1 M2338.68 1450.39 Q2344.49 1450.39 2347.55 1455 Q2350.63 1459.58 2350.63 1468.33 Q2350.63 1477.06 2347.55 1481.67 Q2344.49 1486.25 2338.68 1486.25 Q2332.87 1486.25 2329.79 1481.67 Q2326.74 1477.06 2326.74 1468.33 Q2326.74 1459.58 2329.79 1455 Q2332.87 1450.39 2338.68 1450.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1240.03 1520.52 L1246.94 1520.52 L1260.12 1540.07 L1273.2 1520.52 L1280.1 1520.52 L1263.3 1545.41 L1263.3 1568.04 L1256.84 1568.04 L1256.84 1545.41 L1240.03 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1307.95 1548.76 L1307.95 1551.62 L1281.03 1551.62 Q1281.41 1557.67 1284.66 1560.85 Q1287.93 1564 1293.76 1564 Q1297.13 1564 1300.28 1563.17 Q1303.47 1562.35 1306.59 1560.69 L1306.59 1566.23 Q1303.43 1567.57 1300.12 1568.27 Q1296.81 1568.97 1293.41 1568.97 Q1284.88 1568.97 1279.88 1564 Q1274.92 1559.04 1274.92 1550.57 Q1274.92 1541.82 1279.63 1536.69 Q1284.37 1531.54 1292.39 1531.54 Q1299.58 1531.54 1303.75 1536.18 Q1307.95 1540.8 1307.95 1548.76 M1302.1 1547.04 Q1302.03 1542.23 1299.39 1539.37 Q1296.78 1536.5 1292.45 1536.5 Q1287.55 1536.5 1284.59 1539.27 Q1281.66 1542.04 1281.22 1547.07 L1302.1 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1333.77 1550.12 Q1326.67 1550.12 1323.93 1551.75 Q1321.2 1553.37 1321.2 1557.29 Q1321.2 1560.4 1323.23 1562.25 Q1325.3 1564.07 1328.83 1564.07 Q1333.7 1564.07 1336.63 1560.63 Q1339.59 1557.16 1339.59 1551.43 L1339.59 1550.12 L1333.77 1550.12 M1345.45 1547.71 L1345.45 1568.04 L1339.59 1568.04 L1339.59 1562.63 Q1337.59 1565.88 1334.59 1567.44 Q1331.6 1568.97 1327.27 1568.97 Q1321.8 1568.97 1318.55 1565.91 Q1315.34 1562.82 1315.34 1557.67 Q1315.34 1551.65 1319.35 1548.6 Q1323.39 1545.54 1331.38 1545.54 L1339.59 1545.54 L1339.59 1544.97 Q1339.59 1540.93 1336.92 1538.73 Q1334.28 1536.5 1329.47 1536.5 Q1326.42 1536.5 1323.52 1537.23 Q1320.62 1537.97 1317.95 1539.43 L1317.95 1534.02 Q1321.16 1532.78 1324.19 1532.17 Q1327.21 1531.54 1330.08 1531.54 Q1337.81 1531.54 1341.63 1535.55 Q1345.45 1539.56 1345.45 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M1378.17 1537.87 Q1377.18 1537.3 1376 1537.04 Q1374.86 1536.76 1373.46 1536.76 Q1368.49 1536.76 1365.82 1540 Q1363.18 1543.22 1363.18 1549.27 L1363.18 1568.04 L1357.29 1568.04 L1357.29 1532.4 L1363.18 1532.4 L1363.18 1537.93 Q1365.02 1534.69 1367.98 1533.13 Q1370.94 1531.54 1375.18 1531.54 Q1375.78 1531.54 1376.51 1531.63 Q1377.25 1531.7 1378.14 1531.85 L1378.17 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 265.445,1139.95 2352.76,1139.95 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 265.445,854.435 2352.76,854.435 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 265.445,568.924 2352.76,568.924 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", | |
| " 265.445,283.413 2352.76,283.413 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,1423.18 265.445,47.2441 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,1139.95 284.342,1139.95 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,854.435 284.342,854.435 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,568.924 284.342,568.924 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 265.445,283.413 284.342,283.413 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M121.043 1153.29 L137.362 1153.29 L137.362 1157.23 L115.418 1157.23 L115.418 1153.29 Q118.08 1150.54 122.663 1145.91 Q127.269 1141.25 128.45 1139.91 Q130.695 1137.39 131.575 1135.65 Q132.478 1133.89 132.478 1132.2 Q132.478 1129.45 130.533 1127.71 Q128.612 1125.98 125.51 1125.98 Q123.311 1125.98 120.857 1126.74 Q118.427 1127.5 115.649 1129.05 L115.649 1124.33 Q118.473 1123.2 120.927 1122.62 Q123.38 1122.04 125.418 1122.04 Q130.788 1122.04 133.982 1124.73 Q137.177 1127.41 137.177 1131.9 Q137.177 1134.03 136.367 1135.95 Q135.579 1137.85 133.473 1140.44 Q132.894 1141.11 129.792 1144.33 Q126.691 1147.53 121.043 1153.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M157.177 1125.74 Q153.566 1125.74 151.737 1129.31 Q149.931 1132.85 149.931 1139.98 Q149.931 1147.09 151.737 1150.65 Q153.566 1154.19 157.177 1154.19 Q160.811 1154.19 162.616 1150.65 Q164.445 1147.09 164.445 1139.98 Q164.445 1132.85 162.616 1129.31 Q160.811 1125.74 157.177 1125.74 M157.177 1122.04 Q162.987 1122.04 166.042 1126.65 Q169.121 1131.23 169.121 1139.98 Q169.121 1148.71 166.042 1153.31 Q162.987 1157.9 157.177 1157.9 Q151.366 1157.9 148.288 1153.31 Q145.232 1148.71 145.232 1139.98 Q145.232 1131.23 148.288 1126.65 Q151.366 1122.04 157.177 1122.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M187.338 1125.74 Q183.727 1125.74 181.899 1129.31 Q180.093 1132.85 180.093 1139.98 Q180.093 1147.09 181.899 1150.65 Q183.727 1154.19 187.338 1154.19 Q190.973 1154.19 192.778 1150.65 Q194.607 1147.09 194.607 1139.98 Q194.607 1132.85 192.778 1129.31 Q190.973 1125.74 187.338 1125.74 M187.338 1122.04 Q193.149 1122.04 196.204 1126.65 Q199.283 1131.23 199.283 1139.98 Q199.283 1148.71 196.204 1153.31 Q193.149 1157.9 187.338 1157.9 Q181.528 1157.9 178.45 1153.31 Q175.394 1148.71 175.394 1139.98 Q175.394 1131.23 178.45 1126.65 Q181.528 1122.04 187.338 1122.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M217.5 1125.74 Q213.889 1125.74 212.061 1129.31 Q210.255 1132.85 210.255 1139.98 Q210.255 1147.09 212.061 1150.65 Q213.889 1154.19 217.5 1154.19 Q221.135 1154.19 222.94 1150.65 Q224.769 1147.09 224.769 1139.98 Q224.769 1132.85 222.94 1129.31 Q221.135 1125.74 217.5 1125.74 M217.5 1122.04 Q223.31 1122.04 226.366 1126.65 Q229.445 1131.23 229.445 1139.98 Q229.445 1148.71 226.366 1153.31 Q223.31 1157.9 217.5 1157.9 Q211.69 1157.9 208.612 1153.31 Q205.556 1148.71 205.556 1139.98 Q205.556 1131.23 208.612 1126.65 Q211.69 1122.04 217.5 1122.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M129.862 841.229 L118.056 859.678 L129.862 859.678 L129.862 841.229 M128.635 837.155 L134.515 837.155 L134.515 859.678 L139.445 859.678 L139.445 863.567 L134.515 863.567 L134.515 871.715 L129.862 871.715 L129.862 863.567 L114.26 863.567 L114.26 859.053 L128.635 837.155 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M157.177 840.234 Q153.566 840.234 151.737 843.798 Q149.931 847.34 149.931 854.47 Q149.931 861.576 151.737 865.141 Q153.566 868.683 157.177 868.683 Q160.811 868.683 162.616 865.141 Q164.445 861.576 164.445 854.47 Q164.445 847.34 162.616 843.798 Q160.811 840.234 157.177 840.234 M157.177 836.53 Q162.987 836.53 166.042 841.136 Q169.121 845.72 169.121 854.47 Q169.121 863.196 166.042 867.803 Q162.987 872.386 157.177 872.386 Q151.366 872.386 148.288 867.803 Q145.232 863.196 145.232 854.47 Q145.232 845.72 148.288 841.136 Q151.366 836.53 157.177 836.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M187.338 840.234 Q183.727 840.234 181.899 843.798 Q180.093 847.34 180.093 854.47 Q180.093 861.576 181.899 865.141 Q183.727 868.683 187.338 868.683 Q190.973 868.683 192.778 865.141 Q194.607 861.576 194.607 854.47 Q194.607 847.34 192.778 843.798 Q190.973 840.234 187.338 840.234 M187.338 836.53 Q193.149 836.53 196.204 841.136 Q199.283 845.72 199.283 854.47 Q199.283 863.196 196.204 867.803 Q193.149 872.386 187.338 872.386 Q181.528 872.386 178.45 867.803 Q175.394 863.196 175.394 854.47 Q175.394 845.72 178.45 841.136 Q181.528 836.53 187.338 836.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M217.5 840.234 Q213.889 840.234 212.061 843.798 Q210.255 847.34 210.255 854.47 Q210.255 861.576 212.061 865.141 Q213.889 868.683 217.5 868.683 Q221.135 868.683 222.94 865.141 Q224.769 861.576 224.769 854.47 Q224.769 847.34 222.94 843.798 Q221.135 840.234 217.5 840.234 M217.5 836.53 Q223.31 836.53 226.366 841.136 Q229.445 845.72 229.445 854.47 Q229.445 863.196 226.366 867.803 Q223.31 872.386 217.5 872.386 Q211.69 872.386 208.612 867.803 Q205.556 863.196 205.556 854.47 Q205.556 845.72 208.612 841.136 Q211.69 836.53 217.5 836.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M127.593 567.06 Q124.445 567.06 122.593 569.213 Q120.765 571.366 120.765 575.116 Q120.765 578.843 122.593 581.019 Q124.445 583.171 127.593 583.171 Q130.742 583.171 132.57 581.019 Q134.422 578.843 134.422 575.116 Q134.422 571.366 132.57 569.213 Q130.742 567.06 127.593 567.06 M136.876 552.408 L136.876 556.667 Q135.117 555.834 133.311 555.394 Q131.529 554.954 129.769 554.954 Q125.14 554.954 122.686 558.079 Q120.255 561.204 119.908 567.523 Q121.274 565.51 123.334 564.445 Q125.394 563.357 127.871 563.357 Q133.08 563.357 136.089 566.528 Q139.121 569.676 139.121 575.116 Q139.121 580.44 135.973 583.658 Q132.825 586.875 127.593 586.875 Q121.598 586.875 118.427 582.292 Q115.256 577.685 115.256 568.959 Q115.256 560.764 119.144 555.903 Q123.033 551.019 129.584 551.019 Q131.343 551.019 133.126 551.366 Q134.931 551.713 136.876 552.408 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M157.177 554.723 Q153.566 554.723 151.737 558.287 Q149.931 561.829 149.931 568.959 Q149.931 576.065 151.737 579.63 Q153.566 583.171 157.177 583.171 Q160.811 583.171 162.616 579.63 Q164.445 576.065 164.445 568.959 Q164.445 561.829 162.616 558.287 Q160.811 554.723 157.177 554.723 M157.177 551.019 Q162.987 551.019 166.042 555.625 Q169.121 560.209 169.121 568.959 Q169.121 577.685 166.042 582.292 Q162.987 586.875 157.177 586.875 Q151.366 586.875 148.288 582.292 Q145.232 577.685 145.232 568.959 Q145.232 560.209 148.288 555.625 Q151.366 551.019 157.177 551.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M187.338 554.723 Q183.727 554.723 181.899 558.287 Q180.093 561.829 180.093 568.959 Q180.093 576.065 181.899 579.63 Q183.727 583.171 187.338 583.171 Q190.973 583.171 192.778 579.63 Q194.607 576.065 194.607 568.959 Q194.607 561.829 192.778 558.287 Q190.973 554.723 187.338 554.723 M187.338 551.019 Q193.149 551.019 196.204 555.625 Q199.283 560.209 199.283 568.959 Q199.283 577.685 196.204 582.292 Q193.149 586.875 187.338 586.875 Q181.528 586.875 178.45 582.292 Q175.394 577.685 175.394 568.959 Q175.394 560.209 178.45 555.625 Q181.528 551.019 187.338 551.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M217.5 554.723 Q213.889 554.723 212.061 558.287 Q210.255 561.829 210.255 568.959 Q210.255 576.065 212.061 579.63 Q213.889 583.171 217.5 583.171 Q221.135 583.171 222.94 579.63 Q224.769 576.065 224.769 568.959 Q224.769 561.829 222.94 558.287 Q221.135 554.723 217.5 554.723 M217.5 551.019 Q223.31 551.019 226.366 555.625 Q229.445 560.209 229.445 568.959 Q229.445 577.685 226.366 582.292 Q223.31 586.875 217.5 586.875 Q211.69 586.875 208.612 582.292 Q205.556 577.685 205.556 568.959 Q205.556 560.209 208.612 555.625 Q211.69 551.019 217.5 551.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M127.015 284.281 Q123.681 284.281 121.76 286.063 Q119.862 287.846 119.862 290.971 Q119.862 294.096 121.76 295.878 Q123.681 297.66 127.015 297.66 Q130.348 297.66 132.269 295.878 Q134.191 294.072 134.191 290.971 Q134.191 287.846 132.269 286.063 Q130.371 284.281 127.015 284.281 M122.339 282.29 Q119.33 281.549 117.64 279.489 Q115.973 277.429 115.973 274.466 Q115.973 270.323 118.913 267.915 Q121.876 265.508 127.015 265.508 Q132.177 265.508 135.117 267.915 Q138.056 270.323 138.056 274.466 Q138.056 277.429 136.367 279.489 Q134.7 281.549 131.714 282.29 Q135.093 283.077 136.968 285.369 Q138.867 287.66 138.867 290.971 Q138.867 295.994 135.788 298.679 Q132.732 301.364 127.015 301.364 Q121.297 301.364 118.218 298.679 Q115.163 295.994 115.163 290.971 Q115.163 287.66 117.061 285.369 Q118.959 283.077 122.339 282.29 M120.626 274.906 Q120.626 277.591 122.293 279.096 Q123.982 280.6 127.015 280.6 Q130.024 280.6 131.714 279.096 Q133.427 277.591 133.427 274.906 Q133.427 272.221 131.714 270.716 Q130.024 269.212 127.015 269.212 Q123.982 269.212 122.293 270.716 Q120.626 272.221 120.626 274.906 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M157.177 269.212 Q153.566 269.212 151.737 272.776 Q149.931 276.318 149.931 283.448 Q149.931 290.554 151.737 294.119 Q153.566 297.66 157.177 297.66 Q160.811 297.66 162.616 294.119 Q164.445 290.554 164.445 283.448 Q164.445 276.318 162.616 272.776 Q160.811 269.212 157.177 269.212 M157.177 265.508 Q162.987 265.508 166.042 270.114 Q169.121 274.698 169.121 283.448 Q169.121 292.174 166.042 296.781 Q162.987 301.364 157.177 301.364 Q151.366 301.364 148.288 296.781 Q145.232 292.174 145.232 283.448 Q145.232 274.698 148.288 270.114 Q151.366 265.508 157.177 265.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M187.338 269.212 Q183.727 269.212 181.899 272.776 Q180.093 276.318 180.093 283.448 Q180.093 290.554 181.899 294.119 Q183.727 297.66 187.338 297.66 Q190.973 297.66 192.778 294.119 Q194.607 290.554 194.607 283.448 Q194.607 276.318 192.778 272.776 Q190.973 269.212 187.338 269.212 M187.338 265.508 Q193.149 265.508 196.204 270.114 Q199.283 274.698 199.283 283.448 Q199.283 292.174 196.204 296.781 Q193.149 301.364 187.338 301.364 Q181.528 301.364 178.45 296.781 Q175.394 292.174 175.394 283.448 Q175.394 274.698 178.45 270.114 Q181.528 265.508 187.338 265.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M217.5 269.212 Q213.889 269.212 212.061 272.776 Q210.255 276.318 210.255 283.448 Q210.255 290.554 212.061 294.119 Q213.889 297.66 217.5 297.66 Q221.135 297.66 222.94 294.119 Q224.769 290.554 224.769 283.448 Q224.769 276.318 222.94 272.776 Q221.135 269.212 217.5 269.212 M217.5 265.508 Q223.31 265.508 226.366 270.114 Q229.445 274.698 229.445 283.448 Q229.445 292.174 226.366 296.781 Q223.31 301.364 217.5 301.364 Q211.69 301.364 208.612 296.781 Q205.556 292.174 205.556 283.448 Q205.556 274.698 208.612 270.114 Q211.69 265.508 217.5 265.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M16.4842 1150.8 L16.4842 1120.75 L21.895 1120.75 L21.895 1144.37 L35.9632 1144.37 L35.9632 1121.74 L41.3741 1121.74 L41.3741 1144.37 L58.5933 1144.37 L58.5933 1120.18 L64.0042 1120.18 L64.0042 1150.8 L16.4842 1150.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M46.0847 1093.66 Q46.0847 1100.76 47.7079 1103.5 Q49.3312 1106.24 53.2461 1106.24 Q56.3653 1106.24 58.2114 1104.2 Q60.0256 1102.13 60.0256 1098.6 Q60.0256 1093.73 56.5881 1090.8 Q53.1188 1087.84 47.3897 1087.84 L46.0847 1087.84 L46.0847 1093.66 M43.6657 1081.98 L64.0042 1081.98 L64.0042 1087.84 L58.5933 1087.84 Q61.8398 1089.85 63.3994 1092.84 Q64.9272 1095.83 64.9272 1100.16 Q64.9272 1105.63 61.8716 1108.88 Q58.7843 1112.09 53.6281 1112.09 Q47.6125 1112.09 44.5569 1108.08 Q41.5014 1104.04 41.5014 1096.05 L41.5014 1087.84 L40.9285 1087.84 Q36.8862 1087.84 34.6901 1090.51 Q32.4621 1093.16 32.4621 1097.96 Q32.4621 1101.02 33.1941 1103.91 Q33.9262 1106.81 35.3903 1109.48 L29.9795 1109.48 Q28.7381 1106.27 28.1334 1103.25 Q27.4968 1100.22 27.4968 1097.36 Q27.4968 1089.62 31.5072 1085.8 Q35.5176 1081.98 43.6657 1081.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M33.8307 1049.26 Q33.2578 1050.25 33.0032 1051.43 Q32.7167 1052.57 32.7167 1053.97 Q32.7167 1058.94 35.9632 1061.61 Q39.1779 1064.26 45.2253 1064.26 L64.0042 1064.26 L64.0042 1070.14 L28.3562 1070.14 L28.3562 1064.26 L33.8944 1064.26 Q30.6479 1062.41 29.0883 1059.45 Q27.4968 1056.49 27.4968 1052.26 Q27.4968 1051.65 27.5923 1050.92 Q27.656 1050.19 27.8151 1049.3 L33.8307 1049.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M18.2347 1037.33 L28.3562 1037.33 L28.3562 1025.27 L32.9077 1025.27 L32.9077 1037.33 L52.2594 1037.33 Q56.6199 1037.33 57.8613 1036.15 Q59.1026 1034.94 59.1026 1031.28 L59.1026 1025.27 L64.0042 1025.27 L64.0042 1031.28 Q64.0042 1038.06 61.4897 1040.64 Q58.9434 1043.22 52.2594 1043.22 L32.9077 1043.22 L32.9077 1047.51 L28.3562 1047.51 L28.3562 1043.22 L18.2347 1043.22 L18.2347 1037.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M42.4881 987.931 L64.0042 987.931 L64.0042 993.787 L42.679 993.787 Q37.6183 993.787 35.1038 995.76 Q32.5894 997.734 32.5894 1001.68 Q32.5894 1006.42 35.6131 1009.16 Q38.6368 1011.9 43.8567 1011.9 L64.0042 1011.9 L64.0042 1017.79 L14.479 1017.79 L14.479 1011.9 L33.8944 1011.9 Q30.6797 1009.8 29.0883 1006.96 Q27.4968 1004.1 27.4968 1000.38 Q27.4968 994.233 31.3163 991.082 Q35.1038 987.931 42.4881 987.931 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M16.4842 961.863 L16.4842 921.664 L21.895 921.664 L21.895 938.533 L64.0042 938.533 L64.0042 944.994 L21.895 944.994 L21.895 961.863 L16.4842 961.863 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M44.7161 896.296 L47.5806 896.296 L47.5806 923.223 Q53.6281 922.841 56.8109 919.595 Q59.9619 916.316 59.9619 910.492 Q59.9619 907.118 59.1344 903.967 Q58.3069 900.784 56.6518 897.665 L62.1899 897.665 Q63.5267 900.816 64.227 904.126 Q64.9272 907.436 64.9272 910.842 Q64.9272 919.372 59.9619 924.369 Q54.9967 929.334 46.5303 929.334 Q37.7774 929.334 32.6531 924.624 Q27.4968 919.881 27.4968 911.86 Q27.4968 904.667 32.1438 900.498 Q36.7589 896.296 44.7161 896.296 M42.9973 902.153 Q38.1912 902.216 35.3266 904.858 Q32.4621 907.468 32.4621 911.797 Q32.4621 916.698 35.2312 919.658 Q38.0002 922.587 43.0292 923.032 L42.9973 902.153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M35.1993 858.929 Q31.2526 856.733 29.3747 853.678 Q27.4968 850.622 27.4968 846.485 Q27.4968 840.915 31.4117 837.891 Q35.2948 834.867 42.4881 834.867 L64.0042 834.867 L64.0042 840.755 L42.679 840.755 Q37.5546 840.755 35.072 842.57 Q32.5894 844.384 32.5894 848.108 Q32.5894 852.659 35.6131 855.301 Q38.6368 857.943 43.8567 857.943 L64.0042 857.943 L64.0042 863.831 L42.679 863.831 Q37.5228 863.831 35.072 865.645 Q32.5894 867.46 32.5894 871.247 Q32.5894 875.735 35.6449 878.377 Q38.6686 881.018 43.8567 881.018 L64.0042 881.018 L64.0042 886.907 L28.3562 886.907 L28.3562 881.018 L33.8944 881.018 Q30.616 879.013 29.0564 876.212 Q27.4968 873.411 27.4968 869.56 Q27.4968 865.677 29.4702 862.972 Q31.4436 860.234 35.1993 858.929 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M58.657 817.521 L77.5631 817.521 L77.5631 823.409 L28.3562 823.409 L28.3562 817.521 L33.7671 817.521 Q30.5842 815.675 29.0564 812.874 Q27.4968 810.041 27.4968 806.126 Q27.4968 799.633 32.6531 795.591 Q37.8093 791.517 46.212 791.517 Q54.6147 791.517 59.771 795.591 Q64.9272 799.633 64.9272 806.126 Q64.9272 810.041 63.3994 812.874 Q61.8398 815.675 58.657 817.521 M46.212 797.596 Q39.7508 797.596 36.0905 800.269 Q32.3984 802.911 32.3984 807.558 Q32.3984 812.205 36.0905 814.879 Q39.7508 817.521 46.212 817.521 Q52.6732 817.521 56.3653 814.879 Q60.0256 812.205 60.0256 807.558 Q60.0256 802.911 56.3653 800.269 Q52.6732 797.596 46.212 797.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M44.7161 751.317 L47.5806 751.317 L47.5806 778.244 Q53.6281 777.862 56.8109 774.616 Q59.9619 771.337 59.9619 765.513 Q59.9619 762.139 59.1344 758.988 Q58.3069 755.805 56.6518 752.686 L62.1899 752.686 Q63.5267 755.837 64.227 759.147 Q64.9272 762.457 64.9272 765.863 Q64.9272 774.393 59.9619 779.39 Q54.9967 784.355 46.5303 784.355 Q37.7774 784.355 32.6531 779.645 Q27.4968 774.902 27.4968 766.881 Q27.4968 759.688 32.1438 755.519 Q36.7589 751.317 44.7161 751.317 M42.9973 757.174 Q38.1912 757.237 35.3266 759.879 Q32.4621 762.489 32.4621 766.818 Q32.4621 771.719 35.2312 774.679 Q38.0002 777.608 43.0292 778.053 L42.9973 757.174 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M33.8307 721.048 Q33.2578 722.035 33.0032 723.213 Q32.7167 724.358 32.7167 725.759 Q32.7167 730.724 35.9632 733.398 Q39.1779 736.04 45.2253 736.04 L64.0042 736.04 L64.0042 741.928 L28.3562 741.928 L28.3562 736.04 L33.8944 736.04 Q30.6479 734.193 29.0883 731.233 Q27.4968 728.273 27.4968 724.04 Q27.4968 723.435 27.5923 722.703 Q27.656 721.971 27.8151 721.08 L33.8307 721.048 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M46.0847 698.705 Q46.0847 705.802 47.7079 708.54 Q49.3312 711.277 53.2461 711.277 Q56.3653 711.277 58.2114 709.24 Q60.0256 707.171 60.0256 703.638 Q60.0256 698.768 56.5881 695.84 Q53.1188 692.88 47.3897 692.88 L46.0847 692.88 L46.0847 698.705 M43.6657 687.024 L64.0042 687.024 L64.0042 692.88 L58.5933 692.88 Q61.8398 694.885 63.3994 697.877 Q64.9272 700.869 64.9272 705.198 Q64.9272 710.672 61.8716 713.919 Q58.7843 717.133 53.6281 717.133 Q47.6125 717.133 44.5569 713.123 Q41.5014 709.081 41.5014 701.092 L41.5014 692.88 L40.9285 692.88 Q36.8862 692.88 34.6901 695.554 Q32.4621 698.195 32.4621 703.001 Q32.4621 706.057 33.1941 708.953 Q33.9262 711.85 35.3903 714.523 L29.9795 714.523 Q28.7381 711.309 28.1334 708.285 Q27.4968 705.261 27.4968 702.397 Q27.4968 694.662 31.5072 690.843 Q35.5176 687.024 43.6657 687.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M18.2347 669.168 L28.3562 669.168 L28.3562 657.105 L32.9077 657.105 L32.9077 669.168 L52.2594 669.168 Q56.6199 669.168 57.8613 667.99 Q59.1026 666.781 59.1026 663.12 L59.1026 657.105 L64.0042 657.105 L64.0042 663.12 Q64.0042 669.9 61.4897 672.478 Q58.9434 675.056 52.2594 675.056 L32.9077 675.056 L32.9077 679.353 L28.3562 679.353 L28.3562 675.056 L18.2347 675.056 L18.2347 669.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M49.9359 650.007 L28.3562 650.007 L28.3562 644.151 L49.7131 644.151 Q54.7739 644.151 57.3202 642.177 Q59.8346 640.204 59.8346 636.257 Q59.8346 631.515 56.8109 628.777 Q53.7872 626.008 48.5673 626.008 L28.3562 626.008 L28.3562 620.152 L64.0042 620.152 L64.0042 626.008 L58.5296 626.008 Q61.7762 628.141 63.3676 630.974 Q64.9272 633.774 64.9272 637.498 Q64.9272 643.641 61.1078 646.824 Q57.2883 650.007 49.9359 650.007 M27.4968 635.27 L27.4968 635.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M33.8307 587.432 Q33.2578 588.419 33.0032 589.596 Q32.7167 590.742 32.7167 592.143 Q32.7167 597.108 35.9632 599.782 Q39.1779 602.423 45.2253 602.423 L64.0042 602.423 L64.0042 608.312 L28.3562 608.312 L28.3562 602.423 L33.8944 602.423 Q30.6479 600.577 29.0883 597.617 Q27.4968 594.657 27.4968 590.424 Q27.4968 589.819 27.5923 589.087 Q27.656 588.355 27.8151 587.464 L33.8307 587.432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M44.7161 552.23 L47.5806 552.23 L47.5806 579.157 Q53.6281 578.775 56.8109 575.528 Q59.9619 572.25 59.9619 566.425 Q59.9619 563.051 59.1344 559.9 Q58.3069 556.718 56.6518 553.598 L62.1899 553.598 Q63.5267 556.749 64.227 560.06 Q64.9272 563.37 64.9272 566.775 Q64.9272 575.305 59.9619 580.302 Q54.9967 585.268 46.5303 585.268 Q37.7774 585.268 32.6531 580.557 Q27.4968 575.815 27.4968 567.794 Q27.4968 560.601 32.1438 556.431 Q36.7589 552.23 44.7161 552.23 M42.9973 558.086 Q38.1912 558.15 35.3266 560.792 Q32.4621 563.402 32.4621 567.73 Q32.4621 572.632 35.2312 575.592 Q38.0002 578.52 43.0292 578.966 L42.9973 558.086 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M55.9197 541.122 L55.9197 534.406 L61.3942 534.406 L71.5793 539.626 L71.5793 543.732 L61.3942 541.122 L55.9197 541.122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M33.7671 477.719 L14.479 477.719 L14.479 471.863 L64.0042 471.863 L64.0042 477.719 L58.657 477.719 Q61.8398 479.565 63.3994 482.398 Q64.9272 485.199 64.9272 489.146 Q64.9272 495.607 59.771 499.681 Q54.6147 503.723 46.212 503.723 Q37.8093 503.723 32.6531 499.681 Q27.4968 495.607 27.4968 489.146 Q27.4968 485.199 29.0564 482.398 Q30.5842 479.565 33.7671 477.719 M46.212 497.676 Q52.6732 497.676 56.3653 495.034 Q60.0256 492.36 60.0256 487.713 Q60.0256 483.066 56.3653 480.393 Q52.6732 477.719 46.212 477.719 Q39.7508 477.719 36.0905 480.393 Q32.3984 483.066 32.3984 487.713 Q32.3984 492.36 36.0905 495.034 Q39.7508 497.676 46.212 497.676 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M44.7161 429.308 L47.5806 429.308 L47.5806 456.235 Q53.6281 455.853 56.8109 452.606 Q59.9619 449.328 59.9619 443.503 Q59.9619 440.13 59.1344 436.979 Q58.3069 433.796 56.6518 430.677 L62.1899 430.677 Q63.5267 433.828 64.227 437.138 Q64.9272 440.448 64.9272 443.854 Q64.9272 452.384 59.9619 457.381 Q54.9967 462.346 46.5303 462.346 Q37.7774 462.346 32.6531 457.635 Q27.4968 452.893 27.4968 444.872 Q27.4968 437.679 32.1438 433.509 Q36.7589 429.308 44.7161 429.308 M42.9973 435.164 Q38.1912 435.228 35.3266 437.87 Q32.4621 440.48 32.4621 444.808 Q32.4621 449.71 35.2312 452.67 Q38.0002 455.598 43.0292 456.044 L42.9973 435.164 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M45.7664 396.238 Q39.4007 396.238 35.8996 398.88 Q32.3984 401.49 32.3984 406.232 Q32.3984 410.943 35.8996 413.585 Q39.4007 416.195 45.7664 416.195 Q52.1003 416.195 55.6014 413.585 Q59.1026 410.943 59.1026 406.232 Q59.1026 401.49 55.6014 398.88 Q52.1003 396.238 45.7664 396.238 M59.58 390.382 Q68.683 390.382 73.1071 394.424 Q77.5631 398.466 77.5631 406.805 Q77.5631 409.893 77.0857 412.63 Q76.6401 415.367 75.6852 417.945 L69.9879 417.945 Q71.3884 415.367 72.0568 412.853 Q72.7252 410.338 72.7252 407.728 Q72.7252 401.967 69.7015 399.103 Q66.7096 396.238 60.6303 396.238 L57.7339 396.238 Q60.885 398.052 62.4446 400.885 Q64.0042 403.718 64.0042 407.665 Q64.0042 414.221 59.0071 418.232 Q54.01 422.242 45.7664 422.242 Q37.491 422.242 32.4939 418.232 Q27.4968 414.221 27.4968 407.665 Q27.4968 403.718 29.0564 400.885 Q30.616 398.052 33.7671 396.238 L28.3562 396.238 L28.3562 390.382 L59.58 390.382 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M16.4842 357.344 L16.4842 350.914 L36.568 350.914 L16.4842 329.589 L16.4842 321.314 L38.6368 344.899 L64.0042 319.627 L64.0042 328.093 L41.1194 350.914 L64.0042 350.914 L64.0042 357.344 L16.4842 357.344 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip352)\" style=\"stroke:#ff0000; stroke-linecap:round; stroke-linejoin:round; stroke-width:12; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 324.52,1384.24 326.489,1384.24 328.458,1384.24 330.427,1384.24 332.396,1384.24 334.365,1384.24 336.335,1384.24 338.304,1384.24 340.273,1384.24 342.242,1384.24 \n", | |
| " 344.211,1384.24 346.18,1384.24 348.15,1384.24 350.119,1384.24 352.088,1384.24 354.057,1384.24 356.026,1384.24 357.995,1384.24 359.964,1384.24 361.934,1384.24 \n", | |
| " 363.903,1384.24 365.872,1384.24 367.841,1384.24 369.81,1384.24 371.779,1384.24 373.749,1384.24 375.718,1384.24 377.687,1384.24 379.656,1384.24 381.625,1384.24 \n", | |
| " 383.594,1384.24 385.564,1384.24 387.533,1384.24 389.502,1384.24 391.471,1384.24 393.44,1384.24 395.409,1384.24 397.379,1384.24 399.348,1384.24 401.317,1384.24 \n", | |
| " 403.286,1384.24 405.255,1384.24 407.224,1384.24 409.194,1384.24 411.163,1384.24 413.132,1384.24 415.101,1384.24 417.07,1384.24 419.039,1384.24 421.008,1384.24 \n", | |
| " 422.978,1384.24 424.947,1384.24 426.916,1384.24 428.885,1384.24 430.854,1384.24 432.823,1384.24 434.793,1384.24 436.762,1384.24 438.731,1384.23 440.7,1384.23 \n", | |
| " 442.669,1384.23 444.638,1384.23 446.608,1384.23 448.577,1384.23 450.546,1384.23 452.515,1384.23 454.484,1384.23 456.453,1384.23 458.423,1384.23 460.392,1384.23 \n", | |
| " 462.361,1384.23 464.33,1384.23 466.299,1384.23 468.268,1384.23 470.238,1384.23 472.207,1384.23 474.176,1384.23 476.145,1384.23 478.114,1384.23 480.083,1384.23 \n", | |
| " 482.052,1384.23 484.022,1384.23 485.991,1384.23 487.96,1384.23 489.929,1384.23 491.898,1384.23 493.867,1384.23 495.837,1384.23 497.806,1384.23 499.775,1384.23 \n", | |
| " 501.744,1384.23 503.713,1384.23 505.682,1384.23 507.652,1384.23 509.621,1384.23 511.59,1384.23 513.559,1384.23 515.528,1384.23 517.497,1384.23 519.467,1384.23 \n", | |
| " 521.436,1384.23 523.405,1384.23 525.374,1384.23 527.343,1384.23 529.312,1384.23 531.282,1384.23 533.251,1384.23 535.22,1384.23 537.189,1384.23 539.158,1384.22 \n", | |
| " 541.127,1384.22 543.096,1384.22 545.066,1384.22 547.035,1384.22 549.004,1384.22 550.973,1384.22 552.942,1384.22 554.911,1384.22 556.881,1384.22 558.85,1384.22 \n", | |
| " 560.819,1384.22 562.788,1384.22 564.757,1384.22 566.726,1384.22 568.696,1384.22 570.665,1384.22 572.634,1384.22 574.603,1384.22 576.572,1384.22 578.541,1384.22 \n", | |
| " 580.511,1384.22 582.48,1384.22 584.449,1384.21 586.418,1384.21 588.387,1384.21 590.356,1384.21 592.326,1384.21 594.295,1384.21 596.264,1384.21 598.233,1384.21 \n", | |
| " 600.202,1384.21 602.171,1384.21 604.141,1384.21 606.11,1384.21 608.079,1384.21 610.048,1384.21 612.017,1384.21 613.986,1384.2 615.955,1384.2 617.925,1384.2 \n", | |
| " 619.894,1384.2 621.863,1384.2 623.832,1384.2 625.801,1384.2 627.77,1384.2 629.74,1384.2 631.709,1384.2 633.678,1384.2 635.647,1384.19 637.616,1384.19 \n", | |
| " 639.585,1384.19 641.555,1384.19 643.524,1384.19 645.493,1384.19 647.462,1384.19 649.431,1384.19 651.4,1384.19 653.37,1384.18 655.339,1384.18 657.308,1384.18 \n", | |
| " 659.277,1384.18 661.246,1384.18 663.215,1384.18 665.185,1384.18 667.154,1384.18 669.123,1384.17 671.092,1384.17 673.061,1384.17 675.03,1384.17 676.999,1384.17 \n", | |
| " 678.969,1384.17 680.938,1384.16 682.907,1384.16 684.876,1384.16 686.845,1384.16 688.814,1384.16 690.784,1384.15 692.753,1384.15 694.722,1384.15 696.691,1384.15 \n", | |
| " 698.66,1384.15 700.629,1384.14 702.599,1384.14 704.568,1384.14 706.537,1384.14 708.506,1384.14 710.475,1384.13 712.444,1384.13 714.414,1384.13 716.383,1384.13 \n", | |
| " 718.352,1384.12 720.321,1384.12 722.29,1384.12 724.259,1384.11 726.229,1384.11 728.198,1384.11 730.167,1384.11 732.136,1384.1 734.105,1384.1 736.074,1384.1 \n", | |
| " 738.043,1384.09 740.013,1384.09 741.982,1384.09 743.951,1384.08 745.92,1384.08 747.889,1384.07 749.858,1384.07 751.828,1384.07 753.797,1384.06 755.766,1384.06 \n", | |
| " 757.735,1384.05 759.704,1384.05 761.673,1384.05 763.643,1384.04 765.612,1384.04 767.581,1384.03 769.55,1384.03 771.519,1384.02 773.488,1384.02 775.458,1384.01 \n", | |
| " 777.427,1384.01 779.396,1384 781.365,1384 783.334,1383.99 785.303,1383.99 787.273,1383.98 789.242,1383.97 791.211,1383.97 793.18,1383.96 795.149,1383.95 \n", | |
| " 797.118,1383.95 799.087,1383.94 801.057,1383.93 803.026,1383.93 804.995,1383.92 806.964,1383.91 808.933,1383.91 810.902,1383.9 812.872,1383.89 814.841,1383.88 \n", | |
| " 816.81,1383.87 818.779,1383.87 820.748,1383.86 822.717,1383.85 824.687,1383.84 826.656,1383.83 828.625,1383.82 830.594,1383.81 832.563,1383.8 834.532,1383.79 \n", | |
| " 836.502,1383.78 838.471,1383.77 840.44,1383.76 842.409,1383.75 844.378,1383.74 846.347,1383.73 848.317,1383.71 850.286,1383.7 852.255,1383.69 854.224,1383.68 \n", | |
| " 856.193,1383.66 858.162,1383.65 860.131,1383.64 862.101,1383.62 864.07,1383.61 866.039,1383.6 868.008,1383.58 869.977,1383.57 871.946,1383.55 873.916,1383.54 \n", | |
| " 875.885,1383.52 877.854,1383.5 879.823,1383.49 881.792,1383.47 883.761,1383.45 885.731,1383.43 887.7,1383.42 889.669,1383.4 891.638,1383.38 893.607,1383.36 \n", | |
| " 895.576,1383.34 897.546,1383.32 899.515,1383.3 901.484,1383.28 903.453,1383.26 905.422,1383.23 907.391,1383.21 909.361,1383.19 911.33,1383.17 913.299,1383.14 \n", | |
| " 915.268,1383.12 917.237,1383.09 919.206,1383.07 921.176,1383.04 923.145,1383.01 925.114,1382.99 927.083,1382.96 929.052,1382.93 931.021,1382.9 932.99,1382.87 \n", | |
| " 934.96,1382.84 936.929,1382.81 938.898,1382.78 940.867,1382.75 942.836,1382.71 944.805,1382.68 946.775,1382.64 948.744,1382.61 950.713,1382.57 952.682,1382.54 \n", | |
| " 954.651,1382.5 956.62,1382.46 958.59,1382.42 960.559,1382.38 962.528,1382.34 964.497,1382.3 966.466,1382.26 968.435,1382.22 970.405,1382.17 972.374,1382.13 \n", | |
| " 974.343,1382.08 976.312,1382.04 978.281,1381.99 980.25,1381.94 982.22,1381.89 984.189,1381.84 986.158,1381.79 988.127,1381.74 990.096,1381.68 992.065,1381.63 \n", | |
| " 994.034,1381.57 996.004,1381.52 997.973,1381.46 999.942,1381.4 1001.91,1381.34 1003.88,1381.28 1005.85,1381.22 1007.82,1381.16 1009.79,1381.09 1011.76,1381.03 \n", | |
| " 1013.73,1380.96 1015.7,1380.89 1017.66,1380.82 1019.63,1380.75 1021.6,1380.68 1023.57,1380.61 1025.54,1380.53 1027.51,1380.45 1029.48,1380.38 1031.45,1380.3 \n", | |
| " 1033.42,1380.22 1035.39,1380.14 1037.36,1380.05 1039.33,1379.97 1041.29,1379.88 1043.26,1379.8 1045.23,1379.71 1047.2,1379.62 1049.17,1379.52 1051.14,1379.43 \n", | |
| " 1053.11,1379.34 1055.08,1379.24 1057.05,1379.14 1059.02,1379.04 1060.99,1378.94 1062.96,1378.83 1064.92,1378.73 1066.89,1378.62 1068.86,1378.51 1070.83,1378.4 \n", | |
| " 1072.8,1378.29 1074.77,1378.18 1076.74,1378.06 1078.71,1377.94 1080.68,1377.82 1082.65,1377.7 1084.62,1377.58 1086.59,1377.46 1088.55,1377.33 1090.52,1377.2 \n", | |
| " 1092.49,1377.07 1094.46,1376.94 1096.43,1376.8 1098.4,1376.66 1100.37,1376.53 1102.34,1376.39 1104.31,1376.24 1106.28,1376.1 1108.25,1375.95 1110.22,1375.8 \n", | |
| " 1112.18,1375.65 1114.15,1375.5 1116.12,1375.34 1118.09,1375.19 1120.06,1375.03 1122.03,1374.86 1124,1374.7 1125.97,1374.53 1127.94,1374.37 1129.91,1374.2 \n", | |
| " 1131.88,1374.02 1133.84,1373.85 1135.81,1373.67 1137.78,1373.49 1139.75,1373.31 1141.72,1373.13 1143.69,1372.94 1145.66,1372.75 1147.63,1372.56 1149.6,1372.37 \n", | |
| " 1151.57,1372.17 1153.54,1371.97 1155.51,1371.77 1157.47,1371.57 1159.44,1371.37 1161.41,1371.16 1163.38,1370.95 1165.35,1370.74 1167.32,1370.52 1169.29,1370.3 \n", | |
| " 1171.26,1370.09 1173.23,1369.86 1175.2,1369.64 1177.17,1369.41 1179.14,1369.18 1181.1,1368.95 1183.07,1368.72 1185.04,1368.48 1187.01,1368.24 1188.98,1368 \n", | |
| " 1190.95,1367.76 1192.92,1367.51 1194.89,1367.26 1196.86,1367.01 1198.83,1366.75 1200.8,1366.5 1202.77,1366.24 1204.73,1365.98 1206.7,1365.71 1208.67,1365.44 \n", | |
| " 1210.64,1365.17 1212.61,1364.9 1214.58,1364.63 1216.55,1364.35 1218.52,1364.07 1220.49,1363.79 1222.46,1363.5 1224.43,1363.22 1226.4,1362.92 1228.36,1362.63 \n", | |
| " 1230.33,1362.34 1232.3,1362.04 1234.27,1361.74 1236.24,1361.43 1238.21,1361.13 1240.18,1360.82 1242.15,1360.51 1244.12,1360.19 1246.09,1359.88 1248.06,1359.56 \n", | |
| " 1250.03,1359.23 1251.99,1358.91 1253.96,1358.58 1255.93,1358.25 1257.9,1357.92 1259.87,1357.58 1261.84,1357.24 1263.81,1356.9 1265.78,1356.56 1267.75,1356.21 \n", | |
| " 1269.72,1355.86 1271.69,1355.51 1273.66,1355.15 1275.62,1354.8 1277.59,1354.44 1279.56,1354.07 1281.53,1353.71 1283.5,1353.34 1285.47,1352.96 1287.44,1352.59 \n", | |
| " 1289.41,1352.21 1291.38,1351.83 1293.35,1351.45 1295.32,1351.06 1297.29,1350.67 1299.25,1350.28 1301.22,1349.89 1303.19,1349.49 1305.16,1349.09 1307.13,1348.69 \n", | |
| " 1309.1,1348.28 1311.07,1347.87 1313.04,1347.46 1315.01,1347.04 1316.98,1346.63 1318.95,1346.21 1320.92,1345.78 1322.88,1345.35 1324.85,1344.93 1326.82,1344.49 \n", | |
| " 1328.79,1344.06 1330.76,1343.62 1332.73,1343.18 1334.7,1342.73 1336.67,1342.28 1338.64,1341.83 1340.61,1341.38 1342.58,1340.92 1344.55,1340.46 1346.51,1340 \n", | |
| " 1348.48,1339.53 1350.45,1339.06 1352.42,1338.59 1354.39,1338.11 1356.36,1337.63 1358.33,1337.15 1360.3,1336.67 1362.27,1336.18 1364.24,1335.69 1366.21,1335.19 \n", | |
| " 1368.18,1334.69 1370.14,1334.19 1372.11,1333.69 1374.08,1333.18 1376.05,1332.67 1378.02,1332.16 1379.99,1331.64 1381.96,1331.12 1383.93,1330.59 1385.9,1330.06 \n", | |
| " 1387.87,1329.53 1389.84,1329 1391.81,1328.46 1393.77,1327.92 1395.74,1327.38 1397.71,1326.83 1399.68,1326.28 1401.65,1325.72 1403.62,1325.16 1405.59,1324.6 \n", | |
| " 1407.56,1324.03 1409.53,1323.47 1411.5,1322.89 1413.47,1322.32 1415.44,1321.74 1417.4,1321.15 1419.37,1320.57 1421.34,1319.98 1423.31,1319.38 1425.28,1318.78 \n", | |
| " 1427.25,1318.18 1429.22,1317.58 1431.19,1316.97 1433.16,1316.36 1435.13,1315.74 1437.1,1315.12 1439.06,1314.5 1441.03,1313.87 1443,1313.24 1444.97,1312.6 \n", | |
| " 1446.94,1311.96 1448.91,1311.32 1450.88,1310.67 1452.85,1310.02 1454.82,1309.36 1456.79,1308.71 1458.76,1308.04 1460.73,1307.38 1462.69,1306.71 1464.66,1306.03 \n", | |
| " 1466.63,1305.35 1468.6,1304.67 1470.57,1303.98 1472.54,1303.29 1474.51,1302.59 1476.48,1301.89 1478.45,1301.19 1480.42,1300.48 1482.39,1299.77 1484.36,1299.05 \n", | |
| " 1486.32,1298.33 1488.29,1297.61 1490.26,1296.88 1492.23,1296.15 1494.2,1295.41 1496.17,1294.66 1498.14,1293.92 1500.11,1293.17 1502.08,1292.41 1504.05,1291.65 \n", | |
| " 1506.02,1290.89 1507.99,1290.12 1509.95,1289.34 1511.92,1288.56 1513.89,1287.78 1515.86,1286.99 1517.83,1286.2 1519.8,1285.41 1521.77,1284.6 1523.74,1283.8 \n", | |
| " 1525.71,1282.99 1527.68,1282.17 1529.65,1281.35 1531.62,1280.52 1533.58,1279.69 1535.55,1278.86 1537.52,1278.02 1539.49,1277.17 1541.46,1276.32 1543.43,1275.47 \n", | |
| " 1545.4,1274.61 1547.37,1273.74 1549.34,1272.87 1551.31,1272 1553.28,1271.12 1555.25,1270.23 1557.21,1269.34 1559.18,1268.45 1561.15,1267.54 1563.12,1266.64 \n", | |
| " 1565.09,1265.73 1567.06,1264.81 1569.03,1263.89 1571,1262.96 1572.97,1262.03 1574.94,1261.09 1576.91,1260.14 1578.88,1259.19 1580.84,1258.24 1582.81,1257.28 \n", | |
| " 1584.78,1256.31 1586.75,1255.34 1588.72,1254.36 1590.69,1253.38 1592.66,1252.39 1594.63,1251.39 1596.6,1250.39 1598.57,1249.39 1600.54,1248.37 1602.51,1247.36 \n", | |
| " 1604.47,1246.33 1606.44,1245.3 1608.41,1244.27 1610.38,1243.22 1612.35,1242.18 1614.32,1241.12 1616.29,1240.06 1618.26,1238.99 1620.23,1237.92 1622.2,1236.84 \n", | |
| " 1624.17,1235.76 1626.14,1234.67 1628.1,1233.57 1630.07,1232.46 1632.04,1231.35 1634.01,1230.24 1635.98,1229.11 1637.95,1227.98 1639.92,1226.85 1641.89,1225.7 \n", | |
| " 1643.86,1224.55 1645.83,1223.4 1647.8,1222.23 1649.77,1221.06 1651.73,1219.89 1653.7,1218.7 1655.67,1217.51 1657.64,1216.32 1659.61,1215.11 1661.58,1213.9 \n", | |
| " 1663.55,1212.68 1665.52,1211.46 1667.49,1210.22 1669.46,1208.99 1671.43,1207.74 1673.4,1206.48 1675.36,1205.22 1677.33,1203.96 1679.3,1202.68 1681.27,1201.4 \n", | |
| " 1683.24,1200.11 1685.21,1198.81 1687.18,1197.5 1689.15,1196.19 1691.12,1194.87 1693.09,1193.54 1695.06,1192.2 1697.03,1190.86 1698.99,1189.51 1700.96,1188.15 \n", | |
| " 1702.93,1186.78 1704.9,1185.41 1706.87,1184.02 1708.84,1182.63 1710.81,1181.23 1712.78,1179.83 1714.75,1178.41 1716.72,1176.99 1718.69,1175.56 1720.66,1174.12 \n", | |
| " 1722.62,1172.67 1724.59,1171.21 1726.56,1169.75 1728.53,1168.27 1730.5,1166.79 1732.47,1165.3 1734.44,1163.8 1736.41,1162.29 1738.38,1160.78 1740.35,1159.25 \n", | |
| " 1742.32,1157.72 1744.29,1156.17 1746.25,1154.62 1748.22,1153.06 1750.19,1151.49 1752.16,1149.91 1754.13,1148.32 1756.1,1146.73 1758.07,1145.12 1760.04,1143.5 \n", | |
| " 1762.01,1141.88 1763.98,1140.24 1765.95,1138.6 1767.91,1136.95 1769.88,1135.28 1771.85,1133.61 1773.82,1131.93 1775.79,1130.24 1777.76,1128.53 1779.73,1126.82 \n", | |
| " 1781.7,1125.1 1783.67,1123.37 1785.64,1121.63 1787.61,1119.88 1789.58,1118.11 1791.54,1116.34 1793.51,1114.56 1795.48,1112.77 1797.45,1110.97 1799.42,1109.15 \n", | |
| " 1801.39,1107.33 1803.36,1105.5 1805.33,1103.65 1807.3,1101.8 1809.27,1099.93 1811.24,1098.05 1813.21,1096.17 1815.17,1094.27 1817.14,1092.36 1819.11,1090.44 \n", | |
| " 1821.08,1088.51 1823.05,1086.56 1825.02,1084.61 1826.99,1082.64 1828.96,1080.67 1830.93,1078.68 1832.9,1076.68 1834.87,1074.67 1836.84,1072.65 1838.8,1070.61 \n", | |
| " 1840.77,1068.57 1842.74,1066.51 1844.71,1064.44 1846.68,1062.36 1848.65,1060.27 1850.62,1058.16 1852.59,1056.04 1854.56,1053.91 1856.53,1051.77 1858.5,1049.62 \n", | |
| " 1860.47,1047.45 1862.43,1045.27 1864.4,1043.08 1866.37,1040.87 1868.34,1038.65 1870.31,1036.42 1872.28,1034.18 1874.25,1031.93 1876.22,1029.66 1878.19,1027.37 \n", | |
| " 1880.16,1025.08 1882.13,1022.77 1884.1,1020.45 1886.06,1018.11 1888.03,1015.76 1890,1013.4 1891.97,1011.03 1893.94,1008.64 1895.91,1006.23 1897.88,1003.82 \n", | |
| " 1899.85,1001.39 1901.82,998.94 1903.79,996.481 1905.76,994.007 1907.73,991.519 1909.69,989.017 1911.66,986.501 1913.63,983.969 1915.6,981.424 1917.57,978.863 \n", | |
| " 1919.54,976.288 1921.51,973.698 1923.48,971.093 1925.45,968.473 1927.42,965.838 1929.39,963.188 1931.36,960.523 1933.32,957.842 1935.29,955.145 1937.26,952.433 \n", | |
| " 1939.23,949.706 1941.2,946.963 1943.17,944.203 1945.14,941.428 1947.11,938.637 1949.08,935.83 1951.05,933.007 1953.02,930.167 1954.99,927.311 1956.95,924.439 \n", | |
| " 1958.92,921.55 1960.89,918.644 1962.86,915.722 1964.83,912.782 1966.8,909.826 1968.77,906.853 1970.74,903.862 1972.71,900.855 1974.68,897.83 1976.65,894.787 \n", | |
| " 1978.62,891.727 1980.58,888.65 1982.55,885.554 1984.52,882.441 1986.49,879.31 1988.46,876.16 1990.43,872.993 1992.4,869.807 1994.37,866.603 1996.34,863.38 \n", | |
| " 1998.31,860.139 2000.28,856.879 2002.25,853.601 2004.21,850.303 2006.18,846.987 2008.15,843.651 2010.12,840.296 2012.09,836.922 2014.06,833.528 2016.03,830.115 \n", | |
| " 2018,826.682 2019.97,823.229 2021.94,819.756 2023.91,816.263 2025.88,812.751 2027.84,809.217 2029.81,805.664 2031.78,802.09 2033.75,798.495 2035.72,794.88 \n", | |
| " 2037.69,791.244 2039.66,787.587 2041.63,783.908 2043.6,780.209 2045.57,776.488 2047.54,772.746 2049.51,768.982 2051.47,765.196 2053.44,761.389 2055.41,757.56 \n", | |
| " 2057.38,753.708 2059.35,749.835 2061.32,745.939 2063.29,742.02 2065.26,738.079 2067.23,734.116 2069.2,730.129 2071.17,726.119 2073.13,722.087 2075.1,718.031 \n", | |
| " 2077.07,713.951 2079.04,709.848 2081.01,705.722 2082.98,701.571 2084.95,697.397 2086.92,693.199 2088.89,688.976 2090.86,684.729 2092.83,680.458 2094.8,676.162 \n", | |
| " 2096.76,671.841 2098.73,667.495 2100.7,663.124 2102.67,658.728 2104.64,654.307 2106.61,649.86 2108.58,645.388 2110.55,640.889 2112.52,636.365 2114.49,631.815 \n", | |
| " 2116.46,627.238 2118.43,622.635 2120.39,618.006 2122.36,613.35 2124.33,608.667 2126.3,603.957 2128.27,599.219 2130.24,594.455 2132.21,589.663 2134.18,584.843 \n", | |
| " 2136.15,579.996 2138.12,575.121 2140.09,570.217 2142.06,565.285 2144.02,560.325 2145.99,555.336 2147.96,550.319 2149.93,545.272 2151.9,540.197 2153.87,535.092 \n", | |
| " 2155.84,529.957 2157.81,524.793 2159.78,519.6 2161.75,514.376 2163.72,509.122 2165.69,503.838 2167.65,498.524 2169.62,493.178 2171.59,487.802 2173.56,482.395 \n", | |
| " 2175.53,476.957 2177.5,471.488 2179.47,465.986 2181.44,460.454 2183.41,454.889 2185.38,449.292 2187.35,443.663 2189.32,438.001 2191.28,432.307 2193.25,426.58 \n", | |
| " 2195.22,420.82 2197.19,415.027 2199.16,409.2 2201.13,403.34 2203.1,397.446 2205.07,391.518 2207.04,385.555 2209.01,379.559 2210.98,373.528 2212.95,367.462 \n", | |
| " 2214.91,361.361 2216.88,355.224 2218.85,349.053 2220.82,342.846 2222.79,336.603 2224.76,330.324 2226.73,324.009 2228.7,317.657 2230.67,311.269 2232.64,304.844 \n", | |
| " 2234.61,298.382 2236.58,291.883 2238.54,285.346 2240.51,278.771 2242.48,272.159 2244.45,265.508 2246.42,258.819 2248.39,252.092 2250.36,245.326 2252.33,238.52 \n", | |
| " 2254.3,231.676 2256.27,224.792 2258.24,217.868 2260.21,210.904 2262.17,203.901 2264.14,196.856 2266.11,189.772 2268.08,182.646 2270.05,175.479 2272.02,168.271 \n", | |
| " 2273.99,161.022 2275.96,153.73 2277.93,146.397 2279.9,139.021 2281.87,131.603 2283.84,124.141 2285.8,116.637 2287.77,109.09 2289.74,101.499 2291.71,93.8644 \n", | |
| " 2293.68,86.1857 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#0000ff; stroke-linecap:round; stroke-linejoin:round; stroke-width:12; stroke-opacity:1; fill:none\" stroke-dasharray=\"48, 30\" points=\"\n", | |
| " 324.52,1372.19 326.489,1372.19 328.458,1372.19 330.427,1372.19 332.396,1372.19 334.365,1372.19 336.335,1372.19 338.304,1372.19 340.273,1372.19 342.242,1372.19 \n", | |
| " 344.211,1372.19 346.18,1372.19 348.15,1372.19 350.119,1372.19 352.088,1372.19 354.057,1372.19 356.026,1372.19 357.995,1372.19 359.964,1372.19 361.934,1372.19 \n", | |
| " 363.903,1372.19 365.872,1372.19 367.841,1372.19 369.81,1372.19 371.779,1372.19 373.749,1372.19 375.718,1372.19 377.687,1372.19 379.656,1372.19 381.625,1372.19 \n", | |
| " 383.594,1372.19 385.564,1372.19 387.533,1372.19 389.502,1372.19 391.471,1372.19 393.44,1372.19 395.409,1372.19 397.379,1372.19 399.348,1372.19 401.317,1372.19 \n", | |
| " 403.286,1372.19 405.255,1372.19 407.224,1372.19 409.194,1372.19 411.163,1372.19 413.132,1372.19 415.101,1372.19 417.07,1372.19 419.039,1372.19 421.008,1372.19 \n", | |
| " 422.978,1372.19 424.947,1372.19 426.916,1372.19 428.885,1372.19 430.854,1372.19 432.823,1372.19 434.793,1372.19 436.762,1372.19 438.731,1372.19 440.7,1372.19 \n", | |
| " 442.669,1372.19 444.638,1372.19 446.608,1372.19 448.577,1372.19 450.546,1372.19 452.515,1372.19 454.484,1372.19 456.453,1372.19 458.423,1372.19 460.392,1372.19 \n", | |
| " 462.361,1372.19 464.33,1372.19 466.299,1372.19 468.268,1372.19 470.238,1372.19 472.207,1372.19 474.176,1372.19 476.145,1372.19 478.114,1372.19 480.083,1372.19 \n", | |
| " 482.052,1372.19 484.022,1372.19 485.991,1372.19 487.96,1372.19 489.929,1372.19 491.898,1372.19 493.867,1372.19 495.837,1372.19 497.806,1372.19 499.775,1372.19 \n", | |
| " 501.744,1372.19 503.713,1372.19 505.682,1372.19 507.652,1372.19 509.621,1372.19 511.59,1372.19 513.559,1372.19 515.528,1372.19 517.497,1372.19 519.467,1372.19 \n", | |
| " 521.436,1372.19 523.405,1372.19 525.374,1372.19 527.343,1372.19 529.312,1372.19 531.282,1372.19 533.251,1372.19 535.22,1372.19 537.189,1372.19 539.158,1372.19 \n", | |
| " 541.127,1372.19 543.096,1372.19 545.066,1372.19 547.035,1372.19 549.004,1372.19 550.973,1372.19 552.942,1372.19 554.911,1372.19 556.881,1372.19 558.85,1372.19 \n", | |
| " 560.819,1372.19 562.788,1372.19 564.757,1372.19 566.726,1372.19 568.696,1372.19 570.665,1372.19 572.634,1372.19 574.603,1372.19 576.572,1372.19 578.541,1372.19 \n", | |
| " 580.511,1372.19 582.48,1372.19 584.449,1372.19 586.418,1372.19 588.387,1372.19 590.356,1372.19 592.326,1372.19 594.295,1372.19 596.264,1372.19 598.233,1372.19 \n", | |
| " 600.202,1372.19 602.171,1372.19 604.141,1372.19 606.11,1372.19 608.079,1372.19 610.048,1372.19 612.017,1372.19 613.986,1372.19 615.955,1372.19 617.925,1372.19 \n", | |
| " 619.894,1372.19 621.863,1372.19 623.832,1372.19 625.801,1372.19 627.77,1372.19 629.74,1372.19 631.709,1372.19 633.678,1372.19 635.647,1372.19 637.616,1372.19 \n", | |
| " 639.585,1372.19 641.555,1372.19 643.524,1372.19 645.493,1372.19 647.462,1372.19 649.431,1372.19 651.4,1372.19 653.37,1372.19 655.339,1372.19 657.308,1372.19 \n", | |
| " 659.277,1372.19 661.246,1372.19 663.215,1372.19 665.185,1372.19 667.154,1372.19 669.123,1372.19 671.092,1372.19 673.061,1372.19 675.03,1372.19 676.999,1372.19 \n", | |
| " 678.969,1372.19 680.938,1372.19 682.907,1372.19 684.876,1372.19 686.845,1372.19 688.814,1372.19 690.784,1372.19 692.753,1372.19 694.722,1372.19 696.691,1372.19 \n", | |
| " 698.66,1372.19 700.629,1372.19 702.599,1372.19 704.568,1372.19 706.537,1372.19 708.506,1372.19 710.475,1372.19 712.444,1372.19 714.414,1372.19 716.383,1372.19 \n", | |
| " 718.352,1372.19 720.321,1372.19 722.29,1372.19 724.259,1372.19 726.229,1372.19 728.198,1372.19 730.167,1372.19 732.136,1372.19 734.105,1372.19 736.074,1372.19 \n", | |
| " 738.043,1372.19 740.013,1372.19 741.982,1372.19 743.951,1372.19 745.92,1372.19 747.889,1372.19 749.858,1372.19 751.828,1372.19 753.797,1372.19 755.766,1372.19 \n", | |
| " 757.735,1372.19 759.704,1372.19 761.673,1372.19 763.643,1372.19 765.612,1372.19 767.581,1372.19 769.55,1372.19 771.519,1372.19 773.488,1372.19 775.458,1372.19 \n", | |
| " 777.427,1372.19 779.396,1372.19 781.365,1372.19 783.334,1372.19 785.303,1372.19 787.273,1372.19 789.242,1372.19 791.211,1372.19 793.18,1372.19 795.149,1372.19 \n", | |
| " 797.118,1372.19 799.087,1372.19 801.057,1372.19 803.026,1372.19 804.995,1372.19 806.964,1372.19 808.933,1372.19 810.902,1372.19 812.872,1372.19 814.841,1372.19 \n", | |
| " 816.81,1372.19 818.779,1372.19 820.748,1372.19 822.717,1372.19 824.687,1372.19 826.656,1372.19 828.625,1372.19 830.594,1372.19 832.563,1372.19 834.532,1372.19 \n", | |
| " 836.502,1372.19 838.471,1372.19 840.44,1372.19 842.409,1372.19 844.378,1372.19 846.347,1372.19 848.317,1372.19 850.286,1372.19 852.255,1372.19 854.224,1372.19 \n", | |
| " 856.193,1372.19 858.162,1372.19 860.131,1372.19 862.101,1372.19 864.07,1372.19 866.039,1372.19 868.008,1372.19 869.977,1372.19 871.946,1372.19 873.916,1372.19 \n", | |
| " 875.885,1372.19 877.854,1372.19 879.823,1372.19 881.792,1372.19 883.761,1372.19 885.731,1372.19 887.7,1372.19 889.669,1372.19 891.638,1372.19 893.607,1372.19 \n", | |
| " 895.576,1372.19 897.546,1372.19 899.515,1372.19 901.484,1372.19 903.453,1372.19 905.422,1372.19 907.391,1372.19 909.361,1372.19 911.33,1372.19 913.299,1372.19 \n", | |
| " 915.268,1372.19 917.237,1372.19 919.206,1372.19 921.176,1372.19 923.145,1372.19 925.114,1372.19 927.083,1372.19 929.052,1372.19 931.021,1372.19 932.99,1372.19 \n", | |
| " 934.96,1372.19 936.929,1372.19 938.898,1372.19 940.867,1372.19 942.836,1372.19 944.805,1372.19 946.775,1372.19 948.744,1372.19 950.713,1372.19 952.682,1372.19 \n", | |
| " 954.651,1372.19 956.62,1372.19 958.59,1372.19 960.559,1372.19 962.528,1372.19 964.497,1372.19 966.466,1372.19 968.435,1372.19 970.405,1372.19 972.374,1372.19 \n", | |
| " 974.343,1372.19 976.312,1372.19 978.281,1372.19 980.25,1372.19 982.22,1372.19 984.189,1372.19 986.158,1372.19 988.127,1372.19 990.096,1372.19 992.065,1372.19 \n", | |
| " 994.034,1372.19 996.004,1372.19 997.973,1372.19 999.942,1372.19 1001.91,1372.19 1003.88,1372.19 1005.85,1372.19 1007.82,1372.19 1009.79,1372.19 1011.76,1372.19 \n", | |
| " 1013.73,1372.19 1015.7,1372.19 1017.66,1372.19 1019.63,1372.19 1021.6,1372.19 1023.57,1372.19 1025.54,1372.19 1027.51,1372.19 1029.48,1372.19 1031.45,1372.19 \n", | |
| " 1033.42,1372.19 1035.39,1372.19 1037.36,1372.19 1039.33,1372.19 1041.29,1372.19 1043.26,1372.19 1045.23,1372.19 1047.2,1372.19 1049.17,1372.19 1051.14,1372.19 \n", | |
| " 1053.11,1372.19 1055.08,1372.19 1057.05,1372.19 1059.02,1372.19 1060.99,1372.19 1062.96,1372.19 1064.92,1372.19 1066.89,1372.19 1068.86,1372.19 1070.83,1372.19 \n", | |
| " 1072.8,1372.19 1074.77,1372.19 1076.74,1372.19 1078.71,1372.19 1080.68,1372.19 1082.65,1372.19 1084.62,1372.19 1086.59,1372.19 1088.55,1372.19 1090.52,1372.19 \n", | |
| " 1092.49,1372.19 1094.46,1372.19 1096.43,1372.19 1098.4,1372.19 1100.37,1372.19 1102.34,1372.19 1104.31,1372.19 1106.28,1372.19 1108.25,1372.19 1110.22,1372.19 \n", | |
| " 1112.18,1372.19 1114.15,1372.19 1116.12,1372.19 1118.09,1372.19 1120.06,1372.19 1122.03,1372.19 1124,1372.19 1125.97,1372.19 1127.94,1372.19 1129.91,1372.19 \n", | |
| " 1131.88,1372.19 1133.84,1372.19 1135.81,1372.19 1137.78,1372.19 1139.75,1372.19 1141.72,1372.19 1143.69,1372.19 1145.66,1372.19 1147.63,1372.19 1149.6,1372.19 \n", | |
| " 1151.57,1372.19 1153.54,1372.19 1155.51,1372.19 1157.47,1372.19 1159.44,1372.19 1161.41,1372.19 1163.38,1372.19 1165.35,1372.19 1167.32,1372.19 1169.29,1372.19 \n", | |
| " 1171.26,1372.19 1173.23,1372.19 1175.2,1372.19 1177.17,1372.19 1179.14,1372.19 1181.1,1372.19 1183.07,1372.19 1185.04,1372.19 1187.01,1372.19 1188.98,1372.19 \n", | |
| " 1190.95,1372.19 1192.92,1372.19 1194.89,1372.19 1196.86,1372.19 1198.83,1372.19 1200.8,1372.19 1202.77,1372.19 1204.73,1372.19 1206.7,1372.19 1208.67,1372.19 \n", | |
| " 1210.64,1372.19 1212.61,1372.19 1214.58,1372.19 1216.55,1372.19 1218.52,1372.19 1220.49,1372.19 1222.46,1372.19 1224.43,1372.19 1226.4,1372.19 1228.36,1372.19 \n", | |
| " 1230.33,1372.19 1232.3,1372.19 1234.27,1372.19 1236.24,1372.19 1238.21,1372.19 1240.18,1372.19 1242.15,1372.19 1244.12,1372.19 1246.09,1372.19 1248.06,1372.19 \n", | |
| " 1250.03,1372.19 1251.99,1372.19 1253.96,1372.19 1255.93,1372.19 1257.9,1372.19 1259.87,1372.19 1261.84,1372.19 1263.81,1372.19 1265.78,1372.19 1267.75,1372.19 \n", | |
| " 1269.72,1372.19 1271.69,1372.19 1273.66,1372.19 1275.62,1372.19 1277.59,1372.19 1279.56,1372.19 1281.53,1372.19 1283.5,1372.19 1285.47,1372.19 1287.44,1372.19 \n", | |
| " 1289.41,1372.19 1291.38,1372.19 1293.35,1372.19 1295.32,1372.19 1297.29,1372.19 1299.25,1372.19 1301.22,1372.19 1303.19,1372.19 1305.16,1372.19 1307.13,1372.19 \n", | |
| " 1309.1,1372.19 1311.07,1372.19 1313.04,1372.19 1315.01,1372.19 1316.98,1372.19 1318.95,1372.19 1320.92,1372.19 1322.88,1372.19 1324.85,1372.19 1326.82,1372.19 \n", | |
| " 1328.79,1372.19 1330.76,1372.19 1332.73,1372.19 1334.7,1372.19 1336.67,1372.19 1338.64,1372.19 1340.61,1372.19 1342.58,1372.19 1344.55,1372.19 1346.51,1372.19 \n", | |
| " 1348.48,1372.19 1350.45,1372.19 1352.42,1372.19 1354.39,1372.19 1356.36,1372.19 1358.33,1372.19 1360.3,1372.19 1362.27,1372.19 1364.24,1372.19 1366.21,1372.19 \n", | |
| " 1368.18,1372.19 1370.14,1372.19 1372.11,1372.19 1374.08,1372.19 1376.05,1372.19 1378.02,1372.19 1379.99,1372.19 1381.96,1372.19 1383.93,1372.19 1385.9,1372.19 \n", | |
| " 1387.87,1372.19 1389.84,1372.19 1391.81,1372.19 1393.77,1372.19 1395.74,1372.19 1397.71,1372.19 1399.68,1372.19 1401.65,1372.19 1403.62,1372.19 1405.59,1372.19 \n", | |
| " 1407.56,1372.19 1409.53,1372.19 1411.5,1372.19 1413.47,1372.19 1415.44,1372.19 1417.4,1372.19 1419.37,1372.19 1421.34,1372.19 1423.31,1372.19 1425.28,1372.19 \n", | |
| " 1427.25,1372.19 1429.22,1372.19 1431.19,1372.19 1433.16,1372.19 1435.13,1372.19 1437.1,1372.19 1439.06,1372.19 1441.03,1372.19 1443,1372.19 1444.97,1372.19 \n", | |
| " 1446.94,1372.19 1448.91,1372.19 1450.88,1372.19 1452.85,1372.19 1454.82,1372.19 1456.79,1372.19 1458.76,1372.19 1460.73,1372.19 1462.69,1372.19 1464.66,1372.19 \n", | |
| " 1466.63,1372.19 1468.6,1372.19 1470.57,1372.19 1472.54,1372.19 1474.51,1372.19 1476.48,1372.19 1478.45,1372.19 1480.42,1372.19 1482.39,1372.19 1484.36,1372.19 \n", | |
| " 1486.32,1372.19 1488.29,1372.19 1490.26,1372.19 1492.23,1372.19 1494.2,1372.19 1496.17,1372.19 1498.14,1372.19 1500.11,1372.19 1502.08,1372.19 1504.05,1372.19 \n", | |
| " 1506.02,1372.19 1507.99,1372.19 1509.95,1372.19 1511.92,1372.19 1513.89,1372.19 1515.86,1372.19 1517.83,1372.19 1519.8,1372.19 1521.77,1372.19 1523.74,1372.19 \n", | |
| " 1525.71,1372.19 1527.68,1372.19 1529.65,1372.19 1531.62,1372.19 1533.58,1372.19 1535.55,1372.19 1537.52,1372.19 1539.49,1372.19 1541.46,1372.19 1543.43,1372.19 \n", | |
| " 1545.4,1372.19 1547.37,1372.19 1549.34,1372.19 1551.31,1372.19 1553.28,1372.19 1555.25,1372.19 1557.21,1372.19 1559.18,1372.19 1561.15,1372.19 1563.12,1372.19 \n", | |
| " 1565.09,1372.19 1567.06,1372.19 1569.03,1372.19 1571,1372.19 1572.97,1372.19 1574.94,1372.19 1576.91,1372.19 1578.88,1372.19 1580.84,1372.19 1582.81,1372.19 \n", | |
| " 1584.78,1372.19 1586.75,1372.19 1588.72,1372.19 1590.69,1372.19 1592.66,1372.19 1594.63,1372.19 1596.6,1372.19 1598.57,1372.19 1600.54,1372.19 1602.51,1372.19 \n", | |
| " 1604.47,1372.19 1606.44,1372.19 1608.41,1372.19 1610.38,1372.19 1612.35,1372.19 1614.32,1372.19 1616.29,1372.19 1618.26,1372.19 1620.23,1372.19 1622.2,1372.19 \n", | |
| " 1624.17,1372.19 1626.14,1372.19 1628.1,1372.19 1630.07,1372.19 1632.04,1372.19 1634.01,1372.19 1635.98,1372.19 1637.95,1372.19 1639.92,1372.19 1641.89,1372.19 \n", | |
| " 1643.86,1372.19 1645.83,1372.19 1647.8,1372.19 1649.77,1372.19 1651.73,1372.19 1653.7,1372.19 1655.67,1372.19 1657.64,1372.19 1659.61,1372.19 1661.58,1372.19 \n", | |
| " 1663.55,1372.19 1665.52,1372.19 1667.49,1372.19 1669.46,1372.19 1671.43,1372.19 1673.4,1372.19 1675.36,1372.19 1677.33,1372.19 1679.3,1372.19 1681.27,1372.19 \n", | |
| " 1683.24,1372.19 1685.21,1372.19 1687.18,1372.19 1689.15,1372.19 1691.12,1372.19 1693.09,1372.19 1695.06,1372.19 1697.03,1372.19 1698.99,1372.19 1700.96,1372.19 \n", | |
| " 1702.93,1372.19 1704.9,1372.19 1706.87,1372.19 1708.84,1372.19 1710.81,1372.19 1712.78,1372.19 1714.75,1372.19 1716.72,1372.19 1718.69,1372.19 1720.66,1372.19 \n", | |
| " 1722.62,1372.19 1724.59,1372.19 1726.56,1372.19 1728.53,1372.19 1730.5,1372.19 1732.47,1372.19 1734.44,1372.19 1736.41,1372.19 1738.38,1372.19 1740.35,1372.19 \n", | |
| " 1742.32,1372.19 1744.29,1372.19 1746.25,1372.19 1748.22,1372.19 1750.19,1372.19 1752.16,1372.19 1754.13,1372.19 1756.1,1372.19 1758.07,1372.19 1760.04,1372.19 \n", | |
| " 1762.01,1372.19 1763.98,1372.19 1765.95,1372.19 1767.91,1372.19 1769.88,1372.19 1771.85,1372.19 1773.82,1372.19 1775.79,1372.19 1777.76,1372.19 1779.73,1372.19 \n", | |
| " 1781.7,1372.19 1783.67,1372.19 1785.64,1372.19 1787.61,1372.19 1789.58,1372.19 1791.54,1372.19 1793.51,1372.19 1795.48,1372.19 1797.45,1372.19 1799.42,1372.19 \n", | |
| " 1801.39,1372.19 1803.36,1372.19 1805.33,1372.19 1807.3,1372.19 1809.27,1372.19 1811.24,1372.19 1813.21,1372.19 1815.17,1372.19 1817.14,1372.19 1819.11,1372.19 \n", | |
| " 1821.08,1372.19 1823.05,1372.19 1825.02,1372.19 1826.99,1372.19 1828.96,1372.19 1830.93,1372.19 1832.9,1372.19 1834.87,1372.19 1836.84,1372.19 1838.8,1372.19 \n", | |
| " 1840.77,1372.19 1842.74,1372.19 1844.71,1372.19 1846.68,1372.19 1848.65,1372.19 1850.62,1372.19 1852.59,1372.19 1854.56,1372.19 1856.53,1372.19 1858.5,1372.19 \n", | |
| " 1860.47,1372.19 1862.43,1372.19 1864.4,1372.19 1866.37,1372.19 1868.34,1372.19 1870.31,1372.19 1872.28,1372.19 1874.25,1372.19 1876.22,1372.19 1878.19,1372.19 \n", | |
| " 1880.16,1372.19 1882.13,1372.19 1884.1,1372.19 1886.06,1372.19 1888.03,1372.19 1890,1372.19 1891.97,1372.19 1893.94,1372.19 1895.91,1372.19 1897.88,1372.19 \n", | |
| " 1899.85,1372.19 1901.82,1372.19 1903.79,1372.19 1905.76,1372.19 1907.73,1372.19 1909.69,1372.19 1911.66,1372.19 1913.63,1372.19 1915.6,1372.19 1917.57,1372.19 \n", | |
| " 1919.54,1372.19 1921.51,1372.19 1923.48,1372.19 1925.45,1372.19 1927.42,1372.19 1929.39,1372.19 1931.36,1372.19 1933.32,1372.19 1935.29,1372.19 1937.26,1372.19 \n", | |
| " 1939.23,1372.19 1941.2,1372.19 1943.17,1372.19 1945.14,1372.19 1947.11,1372.19 1949.08,1372.19 1951.05,1372.19 1953.02,1372.19 1954.99,1372.19 1956.95,1372.19 \n", | |
| " 1958.92,1372.19 1960.89,1372.19 1962.86,1372.19 1964.83,1372.19 1966.8,1372.19 1968.77,1372.19 1970.74,1372.19 1972.71,1372.19 1974.68,1372.19 1976.65,1372.19 \n", | |
| " 1978.62,1372.19 1980.58,1372.19 1982.55,1372.19 1984.52,1372.19 1986.49,1372.19 1988.46,1372.19 1990.43,1372.19 1992.4,1372.19 1994.37,1372.19 1996.34,1372.19 \n", | |
| " 1998.31,1372.19 2000.28,1372.19 2002.25,1372.19 2004.21,1372.19 2006.18,1372.19 2008.15,1372.19 2010.12,1372.19 2012.09,1372.19 2014.06,1372.19 2016.03,1372.19 \n", | |
| " 2018,1372.19 2019.97,1372.19 2021.94,1372.19 2023.91,1372.19 2025.88,1372.19 2027.84,1372.19 2029.81,1372.19 2031.78,1372.19 2033.75,1372.19 2035.72,1372.19 \n", | |
| " 2037.69,1372.19 2039.66,1372.19 2041.63,1372.19 2043.6,1372.19 2045.57,1372.19 2047.54,1372.19 2049.51,1372.19 2051.47,1372.19 2053.44,1372.19 2055.41,1372.19 \n", | |
| " 2057.38,1372.19 2059.35,1372.19 2061.32,1372.19 2063.29,1372.19 2065.26,1372.19 2067.23,1372.19 2069.2,1372.19 2071.17,1372.19 2073.13,1372.19 2075.1,1372.19 \n", | |
| " 2077.07,1372.19 2079.04,1372.19 2081.01,1372.19 2082.98,1372.19 2084.95,1372.19 2086.92,1372.19 2088.89,1372.19 2090.86,1372.19 2092.83,1372.19 2094.8,1372.19 \n", | |
| " 2096.76,1372.19 2098.73,1372.19 2100.7,1372.19 2102.67,1372.19 2104.64,1372.19 2106.61,1372.19 2108.58,1372.19 2110.55,1372.19 2112.52,1372.19 2114.49,1372.19 \n", | |
| " 2116.46,1372.19 2118.43,1372.19 2120.39,1372.19 2122.36,1372.19 2124.33,1372.19 2126.3,1372.19 2128.27,1372.19 2130.24,1372.19 2132.21,1372.19 2134.18,1372.19 \n", | |
| " 2136.15,1372.19 2138.12,1372.19 2140.09,1372.19 2142.06,1372.19 2144.02,1372.19 2145.99,1372.19 2147.96,1372.19 2149.93,1372.19 2151.9,1372.19 2153.87,1372.19 \n", | |
| " 2155.84,1372.19 2157.81,1372.19 2159.78,1372.19 2161.75,1372.19 2163.72,1372.19 2165.69,1372.19 2167.65,1372.19 2169.62,1372.19 2171.59,1372.19 2173.56,1372.19 \n", | |
| " 2175.53,1372.19 2177.5,1372.19 2179.47,1372.19 2181.44,1372.19 2183.41,1372.19 2185.38,1372.19 2187.35,1372.19 2189.32,1372.19 2191.28,1372.19 2193.25,1372.19 \n", | |
| " 2195.22,1372.19 2197.19,1372.19 2199.16,1372.19 2201.13,1372.19 2203.1,1372.19 2205.07,1372.19 2207.04,1372.19 2209.01,1372.19 2210.98,1372.19 2212.95,1372.19 \n", | |
| " 2214.91,1372.19 2216.88,1372.19 2218.85,1372.19 2220.82,1372.19 2222.79,1372.19 2224.76,1372.19 2226.73,1372.19 2228.7,1372.19 2230.67,1372.19 2232.64,1372.19 \n", | |
| " 2234.61,1372.19 2236.58,1372.19 2238.54,1372.19 2240.51,1372.19 2242.48,1372.19 2244.45,1372.19 2246.42,1372.19 2248.39,1372.19 2250.36,1372.19 2252.33,1372.19 \n", | |
| " 2254.3,1372.19 2256.27,1372.19 2258.24,1372.19 2260.21,1372.19 2262.17,1372.19 2264.14,1372.19 2266.11,1372.19 2268.08,1372.19 2270.05,1372.19 2272.02,1372.19 \n", | |
| " 2273.99,1372.19 2275.96,1372.19 2277.93,1372.19 2279.9,1372.19 2281.87,1372.19 2283.84,1372.19 2285.8,1372.19 2287.77,1372.19 2289.74,1372.19 2291.71,1372.19 \n", | |
| " 2293.68,1372.19 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:12; stroke-opacity:1; fill:none\" stroke-dasharray=\"48, 30\" points=\"\n", | |
| " 324.52,1353.24 326.489,1353.24 328.458,1353.24 330.427,1353.24 332.396,1353.24 334.365,1353.24 336.335,1353.24 338.304,1353.24 340.273,1353.24 342.242,1353.24 \n", | |
| " 344.211,1353.24 346.18,1353.24 348.15,1353.24 350.119,1353.24 352.088,1353.24 354.057,1353.24 356.026,1353.24 357.995,1353.24 359.964,1353.24 361.934,1353.24 \n", | |
| " 363.903,1353.24 365.872,1353.24 367.841,1353.24 369.81,1353.24 371.779,1353.24 373.749,1353.24 375.718,1353.24 377.687,1353.24 379.656,1353.24 381.625,1353.24 \n", | |
| " 383.594,1353.24 385.564,1353.24 387.533,1353.24 389.502,1353.24 391.471,1353.24 393.44,1353.24 395.409,1353.24 397.379,1353.24 399.348,1353.24 401.317,1353.24 \n", | |
| " 403.286,1353.24 405.255,1353.24 407.224,1353.24 409.194,1353.24 411.163,1353.24 413.132,1353.24 415.101,1353.24 417.07,1353.24 419.039,1353.24 421.008,1353.24 \n", | |
| " 422.978,1353.24 424.947,1353.24 426.916,1353.24 428.885,1353.24 430.854,1353.24 432.823,1353.24 434.793,1353.24 436.762,1353.24 438.731,1353.24 440.7,1353.24 \n", | |
| " 442.669,1353.24 444.638,1353.24 446.608,1353.24 448.577,1353.24 450.546,1353.24 452.515,1353.24 454.484,1353.24 456.453,1353.24 458.423,1353.24 460.392,1353.24 \n", | |
| " 462.361,1353.24 464.33,1353.24 466.299,1353.24 468.268,1353.24 470.238,1353.24 472.207,1353.24 474.176,1353.24 476.145,1353.24 478.114,1353.24 480.083,1353.24 \n", | |
| " 482.052,1353.24 484.022,1353.24 485.991,1353.24 487.96,1353.24 489.929,1353.24 491.898,1353.24 493.867,1353.24 495.837,1353.24 497.806,1353.24 499.775,1353.24 \n", | |
| " 501.744,1353.24 503.713,1353.24 505.682,1353.24 507.652,1353.24 509.621,1353.24 511.59,1353.24 513.559,1353.24 515.528,1353.24 517.497,1353.24 519.467,1353.24 \n", | |
| " 521.436,1353.24 523.405,1353.24 525.374,1353.24 527.343,1353.24 529.312,1353.24 531.282,1353.24 533.251,1353.24 535.22,1353.24 537.189,1353.24 539.158,1353.24 \n", | |
| " 541.127,1353.24 543.096,1353.24 545.066,1353.24 547.035,1353.24 549.004,1353.24 550.973,1353.24 552.942,1353.24 554.911,1353.24 556.881,1353.24 558.85,1353.24 \n", | |
| " 560.819,1353.24 562.788,1353.24 564.757,1353.24 566.726,1353.24 568.696,1353.24 570.665,1353.24 572.634,1353.24 574.603,1353.24 576.572,1353.24 578.541,1353.24 \n", | |
| " 580.511,1353.24 582.48,1353.24 584.449,1353.24 586.418,1353.24 588.387,1353.24 590.356,1353.24 592.326,1353.24 594.295,1353.24 596.264,1353.24 598.233,1353.24 \n", | |
| " 600.202,1353.24 602.171,1353.24 604.141,1353.24 606.11,1353.24 608.079,1353.24 610.048,1353.24 612.017,1353.24 613.986,1353.24 615.955,1353.24 617.925,1353.24 \n", | |
| " 619.894,1353.24 621.863,1353.24 623.832,1353.24 625.801,1353.24 627.77,1353.24 629.74,1353.24 631.709,1353.24 633.678,1353.24 635.647,1353.24 637.616,1353.24 \n", | |
| " 639.585,1353.24 641.555,1353.24 643.524,1353.24 645.493,1353.24 647.462,1353.24 649.431,1353.24 651.4,1353.24 653.37,1353.24 655.339,1353.24 657.308,1353.24 \n", | |
| " 659.277,1353.24 661.246,1353.24 663.215,1353.24 665.185,1353.24 667.154,1353.24 669.123,1353.24 671.092,1353.24 673.061,1353.24 675.03,1353.24 676.999,1353.24 \n", | |
| " 678.969,1353.24 680.938,1353.24 682.907,1353.24 684.876,1353.24 686.845,1353.24 688.814,1353.24 690.784,1353.24 692.753,1353.24 694.722,1353.24 696.691,1353.24 \n", | |
| " 698.66,1353.24 700.629,1353.24 702.599,1353.24 704.568,1353.24 706.537,1353.24 708.506,1353.24 710.475,1353.24 712.444,1353.24 714.414,1353.24 716.383,1353.24 \n", | |
| " 718.352,1353.24 720.321,1353.24 722.29,1353.24 724.259,1353.24 726.229,1353.24 728.198,1353.24 730.167,1353.24 732.136,1353.24 734.105,1353.24 736.074,1353.24 \n", | |
| " 738.043,1353.24 740.013,1353.24 741.982,1353.24 743.951,1353.24 745.92,1353.24 747.889,1353.24 749.858,1353.24 751.828,1353.24 753.797,1353.24 755.766,1353.24 \n", | |
| " 757.735,1353.24 759.704,1353.24 761.673,1353.24 763.643,1353.24 765.612,1353.24 767.581,1353.24 769.55,1353.24 771.519,1353.24 773.488,1353.24 775.458,1353.24 \n", | |
| " 777.427,1353.24 779.396,1353.24 781.365,1353.24 783.334,1353.24 785.303,1353.24 787.273,1353.24 789.242,1353.24 791.211,1353.24 793.18,1353.24 795.149,1353.24 \n", | |
| " 797.118,1353.24 799.087,1353.24 801.057,1353.24 803.026,1353.24 804.995,1353.24 806.964,1353.24 808.933,1353.24 810.902,1353.24 812.872,1353.24 814.841,1353.24 \n", | |
| " 816.81,1353.24 818.779,1353.24 820.748,1353.24 822.717,1353.24 824.687,1353.24 826.656,1353.24 828.625,1353.24 830.594,1353.24 832.563,1353.24 834.532,1353.24 \n", | |
| " 836.502,1353.24 838.471,1353.24 840.44,1353.24 842.409,1353.24 844.378,1353.24 846.347,1353.24 848.317,1353.24 850.286,1353.24 852.255,1353.24 854.224,1353.24 \n", | |
| " 856.193,1353.24 858.162,1353.24 860.131,1353.24 862.101,1353.24 864.07,1353.24 866.039,1353.24 868.008,1353.24 869.977,1353.24 871.946,1353.24 873.916,1353.24 \n", | |
| " 875.885,1353.24 877.854,1353.24 879.823,1353.24 881.792,1353.24 883.761,1353.24 885.731,1353.24 887.7,1353.24 889.669,1353.24 891.638,1353.24 893.607,1353.24 \n", | |
| " 895.576,1353.24 897.546,1353.24 899.515,1353.24 901.484,1353.24 903.453,1353.24 905.422,1353.24 907.391,1353.24 909.361,1353.24 911.33,1353.24 913.299,1353.24 \n", | |
| " 915.268,1353.24 917.237,1353.24 919.206,1353.24 921.176,1353.24 923.145,1353.24 925.114,1353.24 927.083,1353.24 929.052,1353.24 931.021,1353.24 932.99,1353.24 \n", | |
| " 934.96,1353.24 936.929,1353.24 938.898,1353.24 940.867,1353.24 942.836,1353.24 944.805,1353.24 946.775,1353.24 948.744,1353.24 950.713,1353.24 952.682,1353.24 \n", | |
| " 954.651,1353.24 956.62,1353.24 958.59,1353.24 960.559,1353.24 962.528,1353.24 964.497,1353.24 966.466,1353.24 968.435,1353.24 970.405,1353.24 972.374,1353.24 \n", | |
| " 974.343,1353.24 976.312,1353.24 978.281,1353.24 980.25,1353.24 982.22,1353.24 984.189,1353.24 986.158,1353.24 988.127,1353.24 990.096,1353.24 992.065,1353.24 \n", | |
| " 994.034,1353.24 996.004,1353.24 997.973,1353.24 999.942,1353.24 1001.91,1353.24 1003.88,1353.24 1005.85,1353.24 1007.82,1353.24 1009.79,1353.24 1011.76,1353.24 \n", | |
| " 1013.73,1353.24 1015.7,1353.24 1017.66,1353.24 1019.63,1353.24 1021.6,1353.24 1023.57,1353.24 1025.54,1353.24 1027.51,1353.24 1029.48,1353.24 1031.45,1353.24 \n", | |
| " 1033.42,1353.24 1035.39,1353.24 1037.36,1353.24 1039.33,1353.24 1041.29,1353.24 1043.26,1353.24 1045.23,1353.24 1047.2,1353.24 1049.17,1353.24 1051.14,1353.24 \n", | |
| " 1053.11,1353.24 1055.08,1353.24 1057.05,1353.24 1059.02,1353.24 1060.99,1353.24 1062.96,1353.24 1064.92,1353.24 1066.89,1353.24 1068.86,1353.24 1070.83,1353.24 \n", | |
| " 1072.8,1353.24 1074.77,1353.24 1076.74,1353.24 1078.71,1353.24 1080.68,1353.24 1082.65,1353.24 1084.62,1353.24 1086.59,1353.24 1088.55,1353.24 1090.52,1353.24 \n", | |
| " 1092.49,1353.24 1094.46,1353.24 1096.43,1353.24 1098.4,1353.24 1100.37,1353.24 1102.34,1353.24 1104.31,1353.24 1106.28,1353.24 1108.25,1353.24 1110.22,1353.24 \n", | |
| " 1112.18,1353.24 1114.15,1353.24 1116.12,1353.24 1118.09,1353.24 1120.06,1353.24 1122.03,1353.24 1124,1353.24 1125.97,1353.24 1127.94,1353.24 1129.91,1353.24 \n", | |
| " 1131.88,1353.24 1133.84,1353.24 1135.81,1353.24 1137.78,1353.24 1139.75,1353.24 1141.72,1353.24 1143.69,1353.24 1145.66,1353.24 1147.63,1353.24 1149.6,1353.24 \n", | |
| " 1151.57,1353.24 1153.54,1353.24 1155.51,1353.24 1157.47,1353.24 1159.44,1353.24 1161.41,1353.24 1163.38,1353.24 1165.35,1353.24 1167.32,1353.24 1169.29,1353.24 \n", | |
| " 1171.26,1353.24 1173.23,1353.24 1175.2,1353.24 1177.17,1353.24 1179.14,1353.24 1181.1,1353.24 1183.07,1353.24 1185.04,1353.24 1187.01,1353.24 1188.98,1353.24 \n", | |
| " 1190.95,1353.24 1192.92,1353.24 1194.89,1353.24 1196.86,1353.24 1198.83,1353.24 1200.8,1353.24 1202.77,1353.24 1204.73,1353.24 1206.7,1353.24 1208.67,1353.24 \n", | |
| " 1210.64,1353.24 1212.61,1353.24 1214.58,1353.24 1216.55,1353.24 1218.52,1353.24 1220.49,1353.24 1222.46,1353.24 1224.43,1353.24 1226.4,1353.24 1228.36,1353.24 \n", | |
| " 1230.33,1353.24 1232.3,1353.24 1234.27,1353.24 1236.24,1353.24 1238.21,1353.24 1240.18,1353.24 1242.15,1353.24 1244.12,1353.24 1246.09,1353.24 1248.06,1353.24 \n", | |
| " 1250.03,1353.24 1251.99,1353.24 1253.96,1353.24 1255.93,1353.24 1257.9,1353.24 1259.87,1353.24 1261.84,1353.24 1263.81,1353.24 1265.78,1353.24 1267.75,1353.24 \n", | |
| " 1269.72,1353.24 1271.69,1353.24 1273.66,1353.24 1275.62,1353.24 1277.59,1353.24 1279.56,1353.24 1281.53,1353.24 1283.5,1353.24 1285.47,1353.24 1287.44,1353.24 \n", | |
| " 1289.41,1353.24 1291.38,1353.24 1293.35,1353.24 1295.32,1353.24 1297.29,1353.24 1299.25,1353.24 1301.22,1353.24 1303.19,1353.24 1305.16,1353.24 1307.13,1353.24 \n", | |
| " 1309.1,1353.24 1311.07,1353.24 1313.04,1353.24 1315.01,1353.24 1316.98,1353.24 1318.95,1353.24 1320.92,1353.24 1322.88,1353.24 1324.85,1353.24 1326.82,1353.24 \n", | |
| " 1328.79,1353.24 1330.76,1353.24 1332.73,1353.24 1334.7,1353.24 1336.67,1353.24 1338.64,1353.24 1340.61,1353.24 1342.58,1353.24 1344.55,1353.24 1346.51,1353.24 \n", | |
| " 1348.48,1353.24 1350.45,1353.24 1352.42,1353.24 1354.39,1353.24 1356.36,1353.24 1358.33,1353.24 1360.3,1353.24 1362.27,1353.24 1364.24,1353.24 1366.21,1353.24 \n", | |
| " 1368.18,1353.24 1370.14,1353.24 1372.11,1353.24 1374.08,1353.24 1376.05,1353.24 1378.02,1353.24 1379.99,1353.24 1381.96,1353.24 1383.93,1353.24 1385.9,1353.24 \n", | |
| " 1387.87,1353.24 1389.84,1353.24 1391.81,1353.24 1393.77,1353.24 1395.74,1353.24 1397.71,1353.24 1399.68,1353.24 1401.65,1353.24 1403.62,1353.24 1405.59,1353.24 \n", | |
| " 1407.56,1353.24 1409.53,1353.24 1411.5,1353.24 1413.47,1353.24 1415.44,1353.24 1417.4,1353.24 1419.37,1353.24 1421.34,1353.24 1423.31,1353.24 1425.28,1353.24 \n", | |
| " 1427.25,1353.24 1429.22,1353.24 1431.19,1353.24 1433.16,1353.24 1435.13,1353.24 1437.1,1353.24 1439.06,1353.24 1441.03,1353.24 1443,1353.24 1444.97,1353.24 \n", | |
| " 1446.94,1353.24 1448.91,1353.24 1450.88,1353.24 1452.85,1353.24 1454.82,1353.24 1456.79,1353.24 1458.76,1353.24 1460.73,1353.24 1462.69,1353.24 1464.66,1353.24 \n", | |
| " 1466.63,1353.24 1468.6,1353.24 1470.57,1353.24 1472.54,1353.24 1474.51,1353.24 1476.48,1353.24 1478.45,1353.24 1480.42,1353.24 1482.39,1353.24 1484.36,1353.24 \n", | |
| " 1486.32,1353.24 1488.29,1353.24 1490.26,1353.24 1492.23,1353.24 1494.2,1353.24 1496.17,1353.24 1498.14,1353.24 1500.11,1353.24 1502.08,1353.24 1504.05,1353.24 \n", | |
| " 1506.02,1353.24 1507.99,1353.24 1509.95,1353.24 1511.92,1353.24 1513.89,1353.24 1515.86,1353.24 1517.83,1353.24 1519.8,1353.24 1521.77,1353.24 1523.74,1353.24 \n", | |
| " 1525.71,1353.24 1527.68,1353.24 1529.65,1353.24 1531.62,1353.24 1533.58,1353.24 1535.55,1353.24 1537.52,1353.24 1539.49,1353.24 1541.46,1353.24 1543.43,1353.24 \n", | |
| " 1545.4,1353.24 1547.37,1353.24 1549.34,1353.24 1551.31,1353.24 1553.28,1353.24 1555.25,1353.24 1557.21,1353.24 1559.18,1353.24 1561.15,1353.24 1563.12,1353.24 \n", | |
| " 1565.09,1353.24 1567.06,1353.24 1569.03,1353.24 1571,1353.24 1572.97,1353.24 1574.94,1353.24 1576.91,1353.24 1578.88,1353.24 1580.84,1353.24 1582.81,1353.24 \n", | |
| " 1584.78,1353.24 1586.75,1353.24 1588.72,1353.24 1590.69,1353.24 1592.66,1353.24 1594.63,1353.24 1596.6,1353.24 1598.57,1353.24 1600.54,1353.24 1602.51,1353.24 \n", | |
| " 1604.47,1353.24 1606.44,1353.24 1608.41,1353.24 1610.38,1353.24 1612.35,1353.24 1614.32,1353.24 1616.29,1353.24 1618.26,1353.24 1620.23,1353.24 1622.2,1353.24 \n", | |
| " 1624.17,1353.24 1626.14,1353.24 1628.1,1353.24 1630.07,1353.24 1632.04,1353.24 1634.01,1353.24 1635.98,1353.24 1637.95,1353.24 1639.92,1353.24 1641.89,1353.24 \n", | |
| " 1643.86,1353.24 1645.83,1353.24 1647.8,1353.24 1649.77,1353.24 1651.73,1353.24 1653.7,1353.24 1655.67,1353.24 1657.64,1353.24 1659.61,1353.24 1661.58,1353.24 \n", | |
| " 1663.55,1353.24 1665.52,1353.24 1667.49,1353.24 1669.46,1353.24 1671.43,1353.24 1673.4,1353.24 1675.36,1353.24 1677.33,1353.24 1679.3,1353.24 1681.27,1353.24 \n", | |
| " 1683.24,1353.24 1685.21,1353.24 1687.18,1353.24 1689.15,1353.24 1691.12,1353.24 1693.09,1353.24 1695.06,1353.24 1697.03,1353.24 1698.99,1353.24 1700.96,1353.24 \n", | |
| " 1702.93,1353.24 1704.9,1353.24 1706.87,1353.24 1708.84,1353.24 1710.81,1353.24 1712.78,1353.24 1714.75,1353.24 1716.72,1353.24 1718.69,1353.24 1720.66,1353.24 \n", | |
| " 1722.62,1353.24 1724.59,1353.24 1726.56,1353.24 1728.53,1353.24 1730.5,1353.24 1732.47,1353.24 1734.44,1353.24 1736.41,1353.24 1738.38,1353.24 1740.35,1353.24 \n", | |
| " 1742.32,1353.24 1744.29,1353.24 1746.25,1353.24 1748.22,1353.24 1750.19,1353.24 1752.16,1353.24 1754.13,1353.24 1756.1,1353.24 1758.07,1353.24 1760.04,1353.24 \n", | |
| " 1762.01,1353.24 1763.98,1353.24 1765.95,1353.24 1767.91,1353.24 1769.88,1353.24 1771.85,1353.24 1773.82,1353.24 1775.79,1353.24 1777.76,1353.24 1779.73,1353.24 \n", | |
| " 1781.7,1353.24 1783.67,1353.24 1785.64,1353.24 1787.61,1353.24 1789.58,1353.24 1791.54,1353.24 1793.51,1353.24 1795.48,1353.24 1797.45,1353.24 1799.42,1353.24 \n", | |
| " 1801.39,1353.24 1803.36,1353.24 1805.33,1353.24 1807.3,1353.24 1809.27,1353.24 1811.24,1353.24 1813.21,1353.24 1815.17,1353.24 1817.14,1353.24 1819.11,1353.24 \n", | |
| " 1821.08,1353.24 1823.05,1353.24 1825.02,1353.24 1826.99,1353.24 1828.96,1353.24 1830.93,1353.24 1832.9,1353.24 1834.87,1353.24 1836.84,1353.24 1838.8,1353.24 \n", | |
| " 1840.77,1353.24 1842.74,1353.24 1844.71,1353.24 1846.68,1353.24 1848.65,1353.24 1850.62,1353.24 1852.59,1353.24 1854.56,1353.24 1856.53,1353.24 1858.5,1353.24 \n", | |
| " 1860.47,1353.24 1862.43,1353.24 1864.4,1353.24 1866.37,1353.24 1868.34,1353.24 1870.31,1353.24 1872.28,1353.24 1874.25,1353.24 1876.22,1353.24 1878.19,1353.24 \n", | |
| " 1880.16,1353.24 1882.13,1353.24 1884.1,1353.24 1886.06,1353.24 1888.03,1353.24 1890,1353.24 1891.97,1353.24 1893.94,1353.24 1895.91,1353.24 1897.88,1353.24 \n", | |
| " 1899.85,1353.24 1901.82,1353.24 1903.79,1353.24 1905.76,1353.24 1907.73,1353.24 1909.69,1353.24 1911.66,1353.24 1913.63,1353.24 1915.6,1353.24 1917.57,1353.24 \n", | |
| " 1919.54,1353.24 1921.51,1353.24 1923.48,1353.24 1925.45,1353.24 1927.42,1353.24 1929.39,1353.24 1931.36,1353.24 1933.32,1353.24 1935.29,1353.24 1937.26,1353.24 \n", | |
| " 1939.23,1353.24 1941.2,1353.24 1943.17,1353.24 1945.14,1353.24 1947.11,1353.24 1949.08,1353.24 1951.05,1353.24 1953.02,1353.24 1954.99,1353.24 1956.95,1353.24 \n", | |
| " 1958.92,1353.24 1960.89,1353.24 1962.86,1353.24 1964.83,1353.24 1966.8,1353.24 1968.77,1353.24 1970.74,1353.24 1972.71,1353.24 1974.68,1353.24 1976.65,1353.24 \n", | |
| " 1978.62,1353.24 1980.58,1353.24 1982.55,1353.24 1984.52,1353.24 1986.49,1353.24 1988.46,1353.24 1990.43,1353.24 1992.4,1353.24 1994.37,1353.24 1996.34,1353.24 \n", | |
| " 1998.31,1353.24 2000.28,1353.24 2002.25,1353.24 2004.21,1353.24 2006.18,1353.24 2008.15,1353.24 2010.12,1353.24 2012.09,1353.24 2014.06,1353.24 2016.03,1353.24 \n", | |
| " 2018,1353.24 2019.97,1353.24 2021.94,1353.24 2023.91,1353.24 2025.88,1353.24 2027.84,1353.24 2029.81,1353.24 2031.78,1353.24 2033.75,1353.24 2035.72,1353.24 \n", | |
| " 2037.69,1353.24 2039.66,1353.24 2041.63,1353.24 2043.6,1353.24 2045.57,1353.24 2047.54,1353.24 2049.51,1353.24 2051.47,1353.24 2053.44,1353.24 2055.41,1353.24 \n", | |
| " 2057.38,1353.24 2059.35,1353.24 2061.32,1353.24 2063.29,1353.24 2065.26,1353.24 2067.23,1353.24 2069.2,1353.24 2071.17,1353.24 2073.13,1353.24 2075.1,1353.24 \n", | |
| " 2077.07,1353.24 2079.04,1353.24 2081.01,1353.24 2082.98,1353.24 2084.95,1353.24 2086.92,1353.24 2088.89,1353.24 2090.86,1353.24 2092.83,1353.24 2094.8,1353.24 \n", | |
| " 2096.76,1353.24 2098.73,1353.24 2100.7,1353.24 2102.67,1353.24 2104.64,1353.24 2106.61,1353.24 2108.58,1353.24 2110.55,1353.24 2112.52,1353.24 2114.49,1353.24 \n", | |
| " 2116.46,1353.24 2118.43,1353.24 2120.39,1353.24 2122.36,1353.24 2124.33,1353.24 2126.3,1353.24 2128.27,1353.24 2130.24,1353.24 2132.21,1353.24 2134.18,1353.24 \n", | |
| " 2136.15,1353.24 2138.12,1353.24 2140.09,1353.24 2142.06,1353.24 2144.02,1353.24 2145.99,1353.24 2147.96,1353.24 2149.93,1353.24 2151.9,1353.24 2153.87,1353.24 \n", | |
| " 2155.84,1353.24 2157.81,1353.24 2159.78,1353.24 2161.75,1353.24 2163.72,1353.24 2165.69,1353.24 2167.65,1353.24 2169.62,1353.24 2171.59,1353.24 2173.56,1353.24 \n", | |
| " 2175.53,1353.24 2177.5,1353.24 2179.47,1353.24 2181.44,1353.24 2183.41,1353.24 2185.38,1353.24 2187.35,1353.24 2189.32,1353.24 2191.28,1353.24 2193.25,1353.24 \n", | |
| " 2195.22,1353.24 2197.19,1353.24 2199.16,1353.24 2201.13,1353.24 2203.1,1353.24 2205.07,1353.24 2207.04,1353.24 2209.01,1353.24 2210.98,1353.24 2212.95,1353.24 \n", | |
| " 2214.91,1353.24 2216.88,1353.24 2218.85,1353.24 2220.82,1353.24 2222.79,1353.24 2224.76,1353.24 2226.73,1353.24 2228.7,1353.24 2230.67,1353.24 2232.64,1353.24 \n", | |
| " 2234.61,1353.24 2236.58,1353.24 2238.54,1353.24 2240.51,1353.24 2242.48,1353.24 2244.45,1353.24 2246.42,1353.24 2248.39,1353.24 2250.36,1353.24 2252.33,1353.24 \n", | |
| " 2254.3,1353.24 2256.27,1353.24 2258.24,1353.24 2260.21,1353.24 2262.17,1353.24 2264.14,1353.24 2266.11,1353.24 2268.08,1353.24 2270.05,1353.24 2272.02,1353.24 \n", | |
| " 2273.99,1353.24 2275.96,1353.24 2277.93,1353.24 2279.9,1353.24 2281.87,1353.24 2283.84,1353.24 2285.8,1353.24 2287.77,1353.24 2289.74,1353.24 2291.71,1353.24 \n", | |
| " 2293.68,1353.24 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#ffff00; stroke-linecap:round; stroke-linejoin:round; stroke-width:12; stroke-opacity:1; fill:none\" stroke-dasharray=\"48, 30\" points=\"\n", | |
| " 324.52,1234.59 326.489,1234.59 328.458,1234.59 330.427,1234.59 332.396,1234.59 334.365,1234.59 336.335,1234.59 338.304,1234.59 340.273,1234.59 342.242,1234.59 \n", | |
| " 344.211,1234.59 346.18,1234.59 348.15,1234.59 350.119,1234.59 352.088,1234.59 354.057,1234.59 356.026,1234.59 357.995,1234.59 359.964,1234.59 361.934,1234.59 \n", | |
| " 363.903,1234.59 365.872,1234.59 367.841,1234.59 369.81,1234.59 371.779,1234.59 373.749,1234.59 375.718,1234.59 377.687,1234.59 379.656,1234.59 381.625,1234.59 \n", | |
| " 383.594,1234.59 385.564,1234.59 387.533,1234.59 389.502,1234.59 391.471,1234.59 393.44,1234.59 395.409,1234.59 397.379,1234.59 399.348,1234.59 401.317,1234.59 \n", | |
| " 403.286,1234.59 405.255,1234.59 407.224,1234.59 409.194,1234.59 411.163,1234.59 413.132,1234.59 415.101,1234.59 417.07,1234.59 419.039,1234.59 421.008,1234.59 \n", | |
| " 422.978,1234.59 424.947,1234.59 426.916,1234.59 428.885,1234.59 430.854,1234.59 432.823,1234.59 434.793,1234.59 436.762,1234.59 438.731,1234.59 440.7,1234.59 \n", | |
| " 442.669,1234.59 444.638,1234.59 446.608,1234.59 448.577,1234.59 450.546,1234.59 452.515,1234.59 454.484,1234.59 456.453,1234.59 458.423,1234.59 460.392,1234.59 \n", | |
| " 462.361,1234.59 464.33,1234.59 466.299,1234.59 468.268,1234.59 470.238,1234.59 472.207,1234.59 474.176,1234.59 476.145,1234.59 478.114,1234.59 480.083,1234.59 \n", | |
| " 482.052,1234.59 484.022,1234.59 485.991,1234.59 487.96,1234.59 489.929,1234.59 491.898,1234.59 493.867,1234.59 495.837,1234.59 497.806,1234.59 499.775,1234.59 \n", | |
| " 501.744,1234.59 503.713,1234.59 505.682,1234.59 507.652,1234.59 509.621,1234.59 511.59,1234.59 513.559,1234.59 515.528,1234.59 517.497,1234.59 519.467,1234.59 \n", | |
| " 521.436,1234.59 523.405,1234.59 525.374,1234.59 527.343,1234.59 529.312,1234.59 531.282,1234.59 533.251,1234.59 535.22,1234.59 537.189,1234.59 539.158,1234.59 \n", | |
| " 541.127,1234.59 543.096,1234.59 545.066,1234.59 547.035,1234.59 549.004,1234.59 550.973,1234.59 552.942,1234.59 554.911,1234.59 556.881,1234.59 558.85,1234.59 \n", | |
| " 560.819,1234.59 562.788,1234.59 564.757,1234.59 566.726,1234.59 568.696,1234.59 570.665,1234.59 572.634,1234.59 574.603,1234.59 576.572,1234.59 578.541,1234.59 \n", | |
| " 580.511,1234.59 582.48,1234.59 584.449,1234.59 586.418,1234.59 588.387,1234.59 590.356,1234.59 592.326,1234.59 594.295,1234.59 596.264,1234.59 598.233,1234.59 \n", | |
| " 600.202,1234.59 602.171,1234.59 604.141,1234.59 606.11,1234.59 608.079,1234.59 610.048,1234.59 612.017,1234.59 613.986,1234.59 615.955,1234.59 617.925,1234.59 \n", | |
| " 619.894,1234.59 621.863,1234.59 623.832,1234.59 625.801,1234.59 627.77,1234.59 629.74,1234.59 631.709,1234.59 633.678,1234.59 635.647,1234.59 637.616,1234.59 \n", | |
| " 639.585,1234.59 641.555,1234.59 643.524,1234.59 645.493,1234.59 647.462,1234.59 649.431,1234.59 651.4,1234.59 653.37,1234.59 655.339,1234.59 657.308,1234.59 \n", | |
| " 659.277,1234.59 661.246,1234.59 663.215,1234.59 665.185,1234.59 667.154,1234.59 669.123,1234.59 671.092,1234.59 673.061,1234.59 675.03,1234.59 676.999,1234.59 \n", | |
| " 678.969,1234.59 680.938,1234.59 682.907,1234.59 684.876,1234.59 686.845,1234.59 688.814,1234.59 690.784,1234.59 692.753,1234.59 694.722,1234.59 696.691,1234.59 \n", | |
| " 698.66,1234.59 700.629,1234.59 702.599,1234.59 704.568,1234.59 706.537,1234.59 708.506,1234.59 710.475,1234.59 712.444,1234.59 714.414,1234.59 716.383,1234.59 \n", | |
| " 718.352,1234.59 720.321,1234.59 722.29,1234.59 724.259,1234.59 726.229,1234.59 728.198,1234.59 730.167,1234.59 732.136,1234.59 734.105,1234.59 736.074,1234.59 \n", | |
| " 738.043,1234.59 740.013,1234.59 741.982,1234.59 743.951,1234.59 745.92,1234.59 747.889,1234.59 749.858,1234.59 751.828,1234.59 753.797,1234.59 755.766,1234.59 \n", | |
| " 757.735,1234.59 759.704,1234.59 761.673,1234.59 763.643,1234.59 765.612,1234.59 767.581,1234.59 769.55,1234.59 771.519,1234.59 773.488,1234.59 775.458,1234.59 \n", | |
| " 777.427,1234.59 779.396,1234.59 781.365,1234.59 783.334,1234.59 785.303,1234.59 787.273,1234.59 789.242,1234.59 791.211,1234.59 793.18,1234.59 795.149,1234.59 \n", | |
| " 797.118,1234.59 799.087,1234.59 801.057,1234.59 803.026,1234.59 804.995,1234.59 806.964,1234.59 808.933,1234.59 810.902,1234.59 812.872,1234.59 814.841,1234.59 \n", | |
| " 816.81,1234.59 818.779,1234.59 820.748,1234.59 822.717,1234.59 824.687,1234.59 826.656,1234.59 828.625,1234.59 830.594,1234.59 832.563,1234.59 834.532,1234.59 \n", | |
| " 836.502,1234.59 838.471,1234.59 840.44,1234.59 842.409,1234.59 844.378,1234.59 846.347,1234.59 848.317,1234.59 850.286,1234.59 852.255,1234.59 854.224,1234.59 \n", | |
| " 856.193,1234.59 858.162,1234.59 860.131,1234.59 862.101,1234.59 864.07,1234.59 866.039,1234.59 868.008,1234.59 869.977,1234.59 871.946,1234.59 873.916,1234.59 \n", | |
| " 875.885,1234.59 877.854,1234.59 879.823,1234.59 881.792,1234.59 883.761,1234.59 885.731,1234.59 887.7,1234.59 889.669,1234.59 891.638,1234.59 893.607,1234.59 \n", | |
| " 895.576,1234.59 897.546,1234.59 899.515,1234.59 901.484,1234.59 903.453,1234.59 905.422,1234.59 907.391,1234.59 909.361,1234.59 911.33,1234.59 913.299,1234.59 \n", | |
| " 915.268,1234.59 917.237,1234.59 919.206,1234.59 921.176,1234.59 923.145,1234.59 925.114,1234.59 927.083,1234.59 929.052,1234.59 931.021,1234.59 932.99,1234.59 \n", | |
| " 934.96,1234.59 936.929,1234.59 938.898,1234.59 940.867,1234.59 942.836,1234.59 944.805,1234.59 946.775,1234.59 948.744,1234.59 950.713,1234.59 952.682,1234.59 \n", | |
| " 954.651,1234.59 956.62,1234.59 958.59,1234.59 960.559,1234.59 962.528,1234.59 964.497,1234.59 966.466,1234.59 968.435,1234.59 970.405,1234.59 972.374,1234.59 \n", | |
| " 974.343,1234.59 976.312,1234.59 978.281,1234.59 980.25,1234.59 982.22,1234.59 984.189,1234.59 986.158,1234.59 988.127,1234.59 990.096,1234.59 992.065,1234.59 \n", | |
| " 994.034,1234.59 996.004,1234.59 997.973,1234.59 999.942,1234.59 1001.91,1234.59 1003.88,1234.59 1005.85,1234.59 1007.82,1234.59 1009.79,1234.59 1011.76,1234.59 \n", | |
| " 1013.73,1234.59 1015.7,1234.59 1017.66,1234.59 1019.63,1234.59 1021.6,1234.59 1023.57,1234.59 1025.54,1234.59 1027.51,1234.59 1029.48,1234.59 1031.45,1234.59 \n", | |
| " 1033.42,1234.59 1035.39,1234.59 1037.36,1234.59 1039.33,1234.59 1041.29,1234.59 1043.26,1234.59 1045.23,1234.59 1047.2,1234.59 1049.17,1234.59 1051.14,1234.59 \n", | |
| " 1053.11,1234.59 1055.08,1234.59 1057.05,1234.59 1059.02,1234.59 1060.99,1234.59 1062.96,1234.59 1064.92,1234.59 1066.89,1234.59 1068.86,1234.59 1070.83,1234.59 \n", | |
| " 1072.8,1234.59 1074.77,1234.59 1076.74,1234.59 1078.71,1234.59 1080.68,1234.59 1082.65,1234.59 1084.62,1234.59 1086.59,1234.59 1088.55,1234.59 1090.52,1234.59 \n", | |
| " 1092.49,1234.59 1094.46,1234.59 1096.43,1234.59 1098.4,1234.59 1100.37,1234.59 1102.34,1234.59 1104.31,1234.59 1106.28,1234.59 1108.25,1234.59 1110.22,1234.59 \n", | |
| " 1112.18,1234.59 1114.15,1234.59 1116.12,1234.59 1118.09,1234.59 1120.06,1234.59 1122.03,1234.59 1124,1234.59 1125.97,1234.59 1127.94,1234.59 1129.91,1234.59 \n", | |
| " 1131.88,1234.59 1133.84,1234.59 1135.81,1234.59 1137.78,1234.59 1139.75,1234.59 1141.72,1234.59 1143.69,1234.59 1145.66,1234.59 1147.63,1234.59 1149.6,1234.59 \n", | |
| " 1151.57,1234.59 1153.54,1234.59 1155.51,1234.59 1157.47,1234.59 1159.44,1234.59 1161.41,1234.59 1163.38,1234.59 1165.35,1234.59 1167.32,1234.59 1169.29,1234.59 \n", | |
| " 1171.26,1234.59 1173.23,1234.59 1175.2,1234.59 1177.17,1234.59 1179.14,1234.59 1181.1,1234.59 1183.07,1234.59 1185.04,1234.59 1187.01,1234.59 1188.98,1234.59 \n", | |
| " 1190.95,1234.59 1192.92,1234.59 1194.89,1234.59 1196.86,1234.59 1198.83,1234.59 1200.8,1234.59 1202.77,1234.59 1204.73,1234.59 1206.7,1234.59 1208.67,1234.59 \n", | |
| " 1210.64,1234.59 1212.61,1234.59 1214.58,1234.59 1216.55,1234.59 1218.52,1234.59 1220.49,1234.59 1222.46,1234.59 1224.43,1234.59 1226.4,1234.59 1228.36,1234.59 \n", | |
| " 1230.33,1234.59 1232.3,1234.59 1234.27,1234.59 1236.24,1234.59 1238.21,1234.59 1240.18,1234.59 1242.15,1234.59 1244.12,1234.59 1246.09,1234.59 1248.06,1234.59 \n", | |
| " 1250.03,1234.59 1251.99,1234.59 1253.96,1234.59 1255.93,1234.59 1257.9,1234.59 1259.87,1234.59 1261.84,1234.59 1263.81,1234.59 1265.78,1234.59 1267.75,1234.59 \n", | |
| " 1269.72,1234.59 1271.69,1234.59 1273.66,1234.59 1275.62,1234.59 1277.59,1234.59 1279.56,1234.59 1281.53,1234.59 1283.5,1234.59 1285.47,1234.59 1287.44,1234.59 \n", | |
| " 1289.41,1234.59 1291.38,1234.59 1293.35,1234.59 1295.32,1234.59 1297.29,1234.59 1299.25,1234.59 1301.22,1234.59 1303.19,1234.59 1305.16,1234.59 1307.13,1234.59 \n", | |
| " 1309.1,1234.59 1311.07,1234.59 1313.04,1234.59 1315.01,1234.59 1316.98,1234.59 1318.95,1234.59 1320.92,1234.59 1322.88,1234.59 1324.85,1234.59 1326.82,1234.59 \n", | |
| " 1328.79,1234.59 1330.76,1234.59 1332.73,1234.59 1334.7,1234.59 1336.67,1234.59 1338.64,1234.59 1340.61,1234.59 1342.58,1234.59 1344.55,1234.59 1346.51,1234.59 \n", | |
| " 1348.48,1234.59 1350.45,1234.59 1352.42,1234.59 1354.39,1234.59 1356.36,1234.59 1358.33,1234.59 1360.3,1234.59 1362.27,1234.59 1364.24,1234.59 1366.21,1234.59 \n", | |
| " 1368.18,1234.59 1370.14,1234.59 1372.11,1234.59 1374.08,1234.59 1376.05,1234.59 1378.02,1234.59 1379.99,1234.59 1381.96,1234.59 1383.93,1234.59 1385.9,1234.59 \n", | |
| " 1387.87,1234.59 1389.84,1234.59 1391.81,1234.59 1393.77,1234.59 1395.74,1234.59 1397.71,1234.59 1399.68,1234.59 1401.65,1234.59 1403.62,1234.59 1405.59,1234.59 \n", | |
| " 1407.56,1234.59 1409.53,1234.59 1411.5,1234.59 1413.47,1234.59 1415.44,1234.59 1417.4,1234.59 1419.37,1234.59 1421.34,1234.59 1423.31,1234.59 1425.28,1234.59 \n", | |
| " 1427.25,1234.59 1429.22,1234.59 1431.19,1234.59 1433.16,1234.59 1435.13,1234.59 1437.1,1234.59 1439.06,1234.59 1441.03,1234.59 1443,1234.59 1444.97,1234.59 \n", | |
| " 1446.94,1234.59 1448.91,1234.59 1450.88,1234.59 1452.85,1234.59 1454.82,1234.59 1456.79,1234.59 1458.76,1234.59 1460.73,1234.59 1462.69,1234.59 1464.66,1234.59 \n", | |
| " 1466.63,1234.59 1468.6,1234.59 1470.57,1234.59 1472.54,1234.59 1474.51,1234.59 1476.48,1234.59 1478.45,1234.59 1480.42,1234.59 1482.39,1234.59 1484.36,1234.59 \n", | |
| " 1486.32,1234.59 1488.29,1234.59 1490.26,1234.59 1492.23,1234.59 1494.2,1234.59 1496.17,1234.59 1498.14,1234.59 1500.11,1234.59 1502.08,1234.59 1504.05,1234.59 \n", | |
| " 1506.02,1234.59 1507.99,1234.59 1509.95,1234.59 1511.92,1234.59 1513.89,1234.59 1515.86,1234.59 1517.83,1234.59 1519.8,1234.59 1521.77,1234.59 1523.74,1234.59 \n", | |
| " 1525.71,1234.59 1527.68,1234.59 1529.65,1234.59 1531.62,1234.59 1533.58,1234.59 1535.55,1234.59 1537.52,1234.59 1539.49,1234.59 1541.46,1234.59 1543.43,1234.59 \n", | |
| " 1545.4,1234.59 1547.37,1234.59 1549.34,1234.59 1551.31,1234.59 1553.28,1234.59 1555.25,1234.59 1557.21,1234.59 1559.18,1234.59 1561.15,1234.59 1563.12,1234.59 \n", | |
| " 1565.09,1234.59 1567.06,1234.59 1569.03,1234.59 1571,1234.59 1572.97,1234.59 1574.94,1234.59 1576.91,1234.59 1578.88,1234.59 1580.84,1234.59 1582.81,1234.59 \n", | |
| " 1584.78,1234.59 1586.75,1234.59 1588.72,1234.59 1590.69,1234.59 1592.66,1234.59 1594.63,1234.59 1596.6,1234.59 1598.57,1234.59 1600.54,1234.59 1602.51,1234.59 \n", | |
| " 1604.47,1234.59 1606.44,1234.59 1608.41,1234.59 1610.38,1234.59 1612.35,1234.59 1614.32,1234.59 1616.29,1234.59 1618.26,1234.59 1620.23,1234.59 1622.2,1234.59 \n", | |
| " 1624.17,1234.59 1626.14,1234.59 1628.1,1234.59 1630.07,1234.59 1632.04,1234.59 1634.01,1234.59 1635.98,1234.59 1637.95,1234.59 1639.92,1234.59 1641.89,1234.59 \n", | |
| " 1643.86,1234.59 1645.83,1234.59 1647.8,1234.59 1649.77,1234.59 1651.73,1234.59 1653.7,1234.59 1655.67,1234.59 1657.64,1234.59 1659.61,1234.59 1661.58,1234.59 \n", | |
| " 1663.55,1234.59 1665.52,1234.59 1667.49,1234.59 1669.46,1234.59 1671.43,1234.59 1673.4,1234.59 1675.36,1234.59 1677.33,1234.59 1679.3,1234.59 1681.27,1234.59 \n", | |
| " 1683.24,1234.59 1685.21,1234.59 1687.18,1234.59 1689.15,1234.59 1691.12,1234.59 1693.09,1234.59 1695.06,1234.59 1697.03,1234.59 1698.99,1234.59 1700.96,1234.59 \n", | |
| " 1702.93,1234.59 1704.9,1234.59 1706.87,1234.59 1708.84,1234.59 1710.81,1234.59 1712.78,1234.59 1714.75,1234.59 1716.72,1234.59 1718.69,1234.59 1720.66,1234.59 \n", | |
| " 1722.62,1234.59 1724.59,1234.59 1726.56,1234.59 1728.53,1234.59 1730.5,1234.59 1732.47,1234.59 1734.44,1234.59 1736.41,1234.59 1738.38,1234.59 1740.35,1234.59 \n", | |
| " 1742.32,1234.59 1744.29,1234.59 1746.25,1234.59 1748.22,1234.59 1750.19,1234.59 1752.16,1234.59 1754.13,1234.59 1756.1,1234.59 1758.07,1234.59 1760.04,1234.59 \n", | |
| " 1762.01,1234.59 1763.98,1234.59 1765.95,1234.59 1767.91,1234.59 1769.88,1234.59 1771.85,1234.59 1773.82,1234.59 1775.79,1234.59 1777.76,1234.59 1779.73,1234.59 \n", | |
| " 1781.7,1234.59 1783.67,1234.59 1785.64,1234.59 1787.61,1234.59 1789.58,1234.59 1791.54,1234.59 1793.51,1234.59 1795.48,1234.59 1797.45,1234.59 1799.42,1234.59 \n", | |
| " 1801.39,1234.59 1803.36,1234.59 1805.33,1234.59 1807.3,1234.59 1809.27,1234.59 1811.24,1234.59 1813.21,1234.59 1815.17,1234.59 1817.14,1234.59 1819.11,1234.59 \n", | |
| " 1821.08,1234.59 1823.05,1234.59 1825.02,1234.59 1826.99,1234.59 1828.96,1234.59 1830.93,1234.59 1832.9,1234.59 1834.87,1234.59 1836.84,1234.59 1838.8,1234.59 \n", | |
| " 1840.77,1234.59 1842.74,1234.59 1844.71,1234.59 1846.68,1234.59 1848.65,1234.59 1850.62,1234.59 1852.59,1234.59 1854.56,1234.59 1856.53,1234.59 1858.5,1234.59 \n", | |
| " 1860.47,1234.59 1862.43,1234.59 1864.4,1234.59 1866.37,1234.59 1868.34,1234.59 1870.31,1234.59 1872.28,1234.59 1874.25,1234.59 1876.22,1234.59 1878.19,1234.59 \n", | |
| " 1880.16,1234.59 1882.13,1234.59 1884.1,1234.59 1886.06,1234.59 1888.03,1234.59 1890,1234.59 1891.97,1234.59 1893.94,1234.59 1895.91,1234.59 1897.88,1234.59 \n", | |
| " 1899.85,1234.59 1901.82,1234.59 1903.79,1234.59 1905.76,1234.59 1907.73,1234.59 1909.69,1234.59 1911.66,1234.59 1913.63,1234.59 1915.6,1234.59 1917.57,1234.59 \n", | |
| " 1919.54,1234.59 1921.51,1234.59 1923.48,1234.59 1925.45,1234.59 1927.42,1234.59 1929.39,1234.59 1931.36,1234.59 1933.32,1234.59 1935.29,1234.59 1937.26,1234.59 \n", | |
| " 1939.23,1234.59 1941.2,1234.59 1943.17,1234.59 1945.14,1234.59 1947.11,1234.59 1949.08,1234.59 1951.05,1234.59 1953.02,1234.59 1954.99,1234.59 1956.95,1234.59 \n", | |
| " 1958.92,1234.59 1960.89,1234.59 1962.86,1234.59 1964.83,1234.59 1966.8,1234.59 1968.77,1234.59 1970.74,1234.59 1972.71,1234.59 1974.68,1234.59 1976.65,1234.59 \n", | |
| " 1978.62,1234.59 1980.58,1234.59 1982.55,1234.59 1984.52,1234.59 1986.49,1234.59 1988.46,1234.59 1990.43,1234.59 1992.4,1234.59 1994.37,1234.59 1996.34,1234.59 \n", | |
| " 1998.31,1234.59 2000.28,1234.59 2002.25,1234.59 2004.21,1234.59 2006.18,1234.59 2008.15,1234.59 2010.12,1234.59 2012.09,1234.59 2014.06,1234.59 2016.03,1234.59 \n", | |
| " 2018,1234.59 2019.97,1234.59 2021.94,1234.59 2023.91,1234.59 2025.88,1234.59 2027.84,1234.59 2029.81,1234.59 2031.78,1234.59 2033.75,1234.59 2035.72,1234.59 \n", | |
| " 2037.69,1234.59 2039.66,1234.59 2041.63,1234.59 2043.6,1234.59 2045.57,1234.59 2047.54,1234.59 2049.51,1234.59 2051.47,1234.59 2053.44,1234.59 2055.41,1234.59 \n", | |
| " 2057.38,1234.59 2059.35,1234.59 2061.32,1234.59 2063.29,1234.59 2065.26,1234.59 2067.23,1234.59 2069.2,1234.59 2071.17,1234.59 2073.13,1234.59 2075.1,1234.59 \n", | |
| " 2077.07,1234.59 2079.04,1234.59 2081.01,1234.59 2082.98,1234.59 2084.95,1234.59 2086.92,1234.59 2088.89,1234.59 2090.86,1234.59 2092.83,1234.59 2094.8,1234.59 \n", | |
| " 2096.76,1234.59 2098.73,1234.59 2100.7,1234.59 2102.67,1234.59 2104.64,1234.59 2106.61,1234.59 2108.58,1234.59 2110.55,1234.59 2112.52,1234.59 2114.49,1234.59 \n", | |
| " 2116.46,1234.59 2118.43,1234.59 2120.39,1234.59 2122.36,1234.59 2124.33,1234.59 2126.3,1234.59 2128.27,1234.59 2130.24,1234.59 2132.21,1234.59 2134.18,1234.59 \n", | |
| " 2136.15,1234.59 2138.12,1234.59 2140.09,1234.59 2142.06,1234.59 2144.02,1234.59 2145.99,1234.59 2147.96,1234.59 2149.93,1234.59 2151.9,1234.59 2153.87,1234.59 \n", | |
| " 2155.84,1234.59 2157.81,1234.59 2159.78,1234.59 2161.75,1234.59 2163.72,1234.59 2165.69,1234.59 2167.65,1234.59 2169.62,1234.59 2171.59,1234.59 2173.56,1234.59 \n", | |
| " 2175.53,1234.59 2177.5,1234.59 2179.47,1234.59 2181.44,1234.59 2183.41,1234.59 2185.38,1234.59 2187.35,1234.59 2189.32,1234.59 2191.28,1234.59 2193.25,1234.59 \n", | |
| " 2195.22,1234.59 2197.19,1234.59 2199.16,1234.59 2201.13,1234.59 2203.1,1234.59 2205.07,1234.59 2207.04,1234.59 2209.01,1234.59 2210.98,1234.59 2212.95,1234.59 \n", | |
| " 2214.91,1234.59 2216.88,1234.59 2218.85,1234.59 2220.82,1234.59 2222.79,1234.59 2224.76,1234.59 2226.73,1234.59 2228.7,1234.59 2230.67,1234.59 2232.64,1234.59 \n", | |
| " 2234.61,1234.59 2236.58,1234.59 2238.54,1234.59 2240.51,1234.59 2242.48,1234.59 2244.45,1234.59 2246.42,1234.59 2248.39,1234.59 2250.36,1234.59 2252.33,1234.59 \n", | |
| " 2254.3,1234.59 2256.27,1234.59 2258.24,1234.59 2260.21,1234.59 2262.17,1234.59 2264.14,1234.59 2266.11,1234.59 2268.08,1234.59 2270.05,1234.59 2272.02,1234.59 \n", | |
| " 2273.99,1234.59 2275.96,1234.59 2277.93,1234.59 2279.9,1234.59 2281.87,1234.59 2283.84,1234.59 2285.8,1234.59 2287.77,1234.59 2289.74,1234.59 2291.71,1234.59 \n", | |
| " 2293.68,1234.59 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip352)\" style=\"stroke:#ffa500; stroke-linecap:round; stroke-linejoin:round; stroke-width:12; stroke-opacity:1; fill:none\" stroke-dasharray=\"48, 30\" points=\"\n", | |
| " 324.52,600.616 326.489,600.616 328.458,600.616 330.427,600.616 332.396,600.616 334.365,600.616 336.335,600.616 338.304,600.616 340.273,600.616 342.242,600.616 \n", | |
| " 344.211,600.616 346.18,600.616 348.15,600.616 350.119,600.616 352.088,600.616 354.057,600.616 356.026,600.616 357.995,600.616 359.964,600.616 361.934,600.616 \n", | |
| " 363.903,600.616 365.872,600.616 367.841,600.616 369.81,600.616 371.779,600.616 373.749,600.616 375.718,600.616 377.687,600.616 379.656,600.616 381.625,600.616 \n", | |
| " 383.594,600.616 385.564,600.616 387.533,600.616 389.502,600.616 391.471,600.616 393.44,600.616 395.409,600.616 397.379,600.616 399.348,600.616 401.317,600.616 \n", | |
| " 403.286,600.616 405.255,600.616 407.224,600.616 409.194,600.616 411.163,600.616 413.132,600.616 415.101,600.616 417.07,600.616 419.039,600.616 421.008,600.616 \n", | |
| " 422.978,600.616 424.947,600.616 426.916,600.616 428.885,600.616 430.854,600.616 432.823,600.616 434.793,600.616 436.762,600.616 438.731,600.616 440.7,600.616 \n", | |
| " 442.669,600.616 444.638,600.616 446.608,600.616 448.577,600.616 450.546,600.616 452.515,600.616 454.484,600.616 456.453,600.616 458.423,600.616 460.392,600.616 \n", | |
| " 462.361,600.616 464.33,600.616 466.299,600.616 468.268,600.616 470.238,600.616 472.207,600.616 474.176,600.616 476.145,600.616 478.114,600.616 480.083,600.616 \n", | |
| " 482.052,600.616 484.022,600.616 485.991,600.616 487.96,600.616 489.929,600.616 491.898,600.616 493.867,600.616 495.837,600.616 497.806,600.616 499.775,600.616 \n", | |
| " 501.744,600.616 503.713,600.616 505.682,600.616 507.652,600.616 509.621,600.616 511.59,600.616 513.559,600.616 515.528,600.616 517.497,600.616 519.467,600.616 \n", | |
| " 521.436,600.616 523.405,600.616 525.374,600.616 527.343,600.616 529.312,600.616 531.282,600.616 533.251,600.616 535.22,600.616 537.189,600.616 539.158,600.616 \n", | |
| " 541.127,600.616 543.096,600.616 545.066,600.616 547.035,600.616 549.004,600.616 550.973,600.616 552.942,600.616 554.911,600.616 556.881,600.616 558.85,600.616 \n", | |
| " 560.819,600.616 562.788,600.616 564.757,600.616 566.726,600.616 568.696,600.616 570.665,600.616 572.634,600.616 574.603,600.616 576.572,600.616 578.541,600.616 \n", | |
| " 580.511,600.616 582.48,600.616 584.449,600.616 586.418,600.616 588.387,600.616 590.356,600.616 592.326,600.616 594.295,600.616 596.264,600.616 598.233,600.616 \n", | |
| " 600.202,600.616 602.171,600.616 604.141,600.616 606.11,600.616 608.079,600.616 610.048,600.616 612.017,600.616 613.986,600.616 615.955,600.616 617.925,600.616 \n", | |
| " 619.894,600.616 621.863,600.616 623.832,600.616 625.801,600.616 627.77,600.616 629.74,600.616 631.709,600.616 633.678,600.616 635.647,600.616 637.616,600.616 \n", | |
| " 639.585,600.616 641.555,600.616 643.524,600.616 645.493,600.616 647.462,600.616 649.431,600.616 651.4,600.616 653.37,600.616 655.339,600.616 657.308,600.616 \n", | |
| " 659.277,600.616 661.246,600.616 663.215,600.616 665.185,600.616 667.154,600.616 669.123,600.616 671.092,600.616 673.061,600.616 675.03,600.616 676.999,600.616 \n", | |
| " 678.969,600.616 680.938,600.616 682.907,600.616 684.876,600.616 686.845,600.616 688.814,600.616 690.784,600.616 692.753,600.616 694.722,600.616 696.691,600.616 \n", | |
| " 698.66,600.616 700.629,600.616 702.599,600.616 704.568,600.616 706.537,600.616 708.506,600.616 710.475,600.616 712.444,600.616 714.414,600.616 716.383,600.616 \n", | |
| " 718.352,600.616 720.321,600.616 722.29,600.616 724.259,600.616 726.229,600.616 728.198,600.616 730.167,600.616 732.136,600.616 734.105,600.616 736.074,600.616 \n", | |
| " 738.043,600.616 740.013,600.616 741.982,600.616 743.951,600.616 745.92,600.616 747.889,600.616 749.858,600.616 751.828,600.616 753.797,600.616 755.766,600.616 \n", | |
| " 757.735,600.616 759.704,600.616 761.673,600.616 763.643,600.616 765.612,600.616 767.581,600.616 769.55,600.616 771.519,600.616 773.488,600.616 775.458,600.616 \n", | |
| " 777.427,600.616 779.396,600.616 781.365,600.616 783.334,600.616 785.303,600.616 787.273,600.616 789.242,600.616 791.211,600.616 793.18,600.616 795.149,600.616 \n", | |
| " 797.118,600.616 799.087,600.616 801.057,600.616 803.026,600.616 804.995,600.616 806.964,600.616 808.933,600.616 810.902,600.616 812.872,600.616 814.841,600.616 \n", | |
| " 816.81,600.616 818.779,600.616 820.748,600.616 822.717,600.616 824.687,600.616 826.656,600.616 828.625,600.616 830.594,600.616 832.563,600.616 834.532,600.616 \n", | |
| " 836.502,600.616 838.471,600.616 840.44,600.616 842.409,600.616 844.378,600.616 846.347,600.616 848.317,600.616 850.286,600.616 852.255,600.616 854.224,600.616 \n", | |
| " 856.193,600.616 858.162,600.616 860.131,600.616 862.101,600.616 864.07,600.616 866.039,600.616 868.008,600.616 869.977,600.616 871.946,600.616 873.916,600.616 \n", | |
| " 875.885,600.616 877.854,600.616 879.823,600.616 881.792,600.616 883.761,600.616 885.731,600.616 887.7,600.616 889.669,600.616 891.638,600.616 893.607,600.616 \n", | |
| " 895.576,600.616 897.546,600.616 899.515,600.616 901.484,600.616 903.453,600.616 905.422,600.616 907.391,600.616 909.361,600.616 911.33,600.616 913.299,600.616 \n", | |
| " 915.268,600.616 917.237,600.616 919.206,600.616 921.176,600.616 923.145,600.616 925.114,600.616 927.083,600.616 929.052,600.616 931.021,600.616 932.99,600.616 \n", | |
| " 934.96,600.616 936.929,600.616 938.898,600.616 940.867,600.616 942.836,600.616 944.805,600.616 946.775,600.616 948.744,600.616 950.713,600.616 952.682,600.616 \n", | |
| " 954.651,600.616 956.62,600.616 958.59,600.616 960.559,600.616 962.528,600.616 964.497,600.616 966.466,600.616 968.435,600.616 970.405,600.616 972.374,600.616 \n", | |
| " 974.343,600.616 976.312,600.616 978.281,600.616 980.25,600.616 982.22,600.616 984.189,600.616 986.158,600.616 988.127,600.616 990.096,600.616 992.065,600.616 \n", | |
| " 994.034,600.616 996.004,600.616 997.973,600.616 999.942,600.616 1001.91,600.616 1003.88,600.616 1005.85,600.616 1007.82,600.616 1009.79,600.616 1011.76,600.616 \n", | |
| " 1013.73,600.616 1015.7,600.616 1017.66,600.616 1019.63,600.616 1021.6,600.616 1023.57,600.616 1025.54,600.616 1027.51,600.616 1029.48,600.616 1031.45,600.616 \n", | |
| " 1033.42,600.616 1035.39,600.616 1037.36,600.616 1039.33,600.616 1041.29,600.616 1043.26,600.616 1045.23,600.616 1047.2,600.616 1049.17,600.616 1051.14,600.616 \n", | |
| " 1053.11,600.616 1055.08,600.616 1057.05,600.616 1059.02,600.616 1060.99,600.616 1062.96,600.616 1064.92,600.616 1066.89,600.616 1068.86,600.616 1070.83,600.616 \n", | |
| " 1072.8,600.616 1074.77,600.616 1076.74,600.616 1078.71,600.616 1080.68,600.616 1082.65,600.616 1084.62,600.616 1086.59,600.616 1088.55,600.616 1090.52,600.616 \n", | |
| " 1092.49,600.616 1094.46,600.616 1096.43,600.616 1098.4,600.616 1100.37,600.616 1102.34,600.616 1104.31,600.616 1106.28,600.616 1108.25,600.616 1110.22,600.616 \n", | |
| " 1112.18,600.616 1114.15,600.616 1116.12,600.616 1118.09,600.616 1120.06,600.616 1122.03,600.616 1124,600.616 1125.97,600.616 1127.94,600.616 1129.91,600.616 \n", | |
| " 1131.88,600.616 1133.84,600.616 1135.81,600.616 1137.78,600.616 1139.75,600.616 1141.72,600.616 1143.69,600.616 1145.66,600.616 1147.63,600.616 1149.6,600.616 \n", | |
| " 1151.57,600.616 1153.54,600.616 1155.51,600.616 1157.47,600.616 1159.44,600.616 1161.41,600.616 1163.38,600.616 1165.35,600.616 1167.32,600.616 1169.29,600.616 \n", | |
| " 1171.26,600.616 1173.23,600.616 1175.2,600.616 1177.17,600.616 1179.14,600.616 1181.1,600.616 1183.07,600.616 1185.04,600.616 1187.01,600.616 1188.98,600.616 \n", | |
| " 1190.95,600.616 1192.92,600.616 1194.89,600.616 1196.86,600.616 1198.83,600.616 1200.8,600.616 1202.77,600.616 1204.73,600.616 1206.7,600.616 1208.67,600.616 \n", | |
| " 1210.64,600.616 1212.61,600.616 1214.58,600.616 1216.55,600.616 1218.52,600.616 1220.49,600.616 1222.46,600.616 1224.43,600.616 1226.4,600.616 1228.36,600.616 \n", | |
| " 1230.33,600.616 1232.3,600.616 1234.27,600.616 1236.24,600.616 1238.21,600.616 1240.18,600.616 1242.15,600.616 1244.12,600.616 1246.09,600.616 1248.06,600.616 \n", | |
| " 1250.03,600.616 1251.99,600.616 1253.96,600.616 1255.93,600.616 1257.9,600.616 1259.87,600.616 1261.84,600.616 1263.81,600.616 1265.78,600.616 1267.75,600.616 \n", | |
| " 1269.72,600.616 1271.69,600.616 1273.66,600.616 1275.62,600.616 1277.59,600.616 1279.56,600.616 1281.53,600.616 1283.5,600.616 1285.47,600.616 1287.44,600.616 \n", | |
| " 1289.41,600.616 1291.38,600.616 1293.35,600.616 1295.32,600.616 1297.29,600.616 1299.25,600.616 1301.22,600.616 1303.19,600.616 1305.16,600.616 1307.13,600.616 \n", | |
| " 1309.1,600.616 1311.07,600.616 1313.04,600.616 1315.01,600.616 1316.98,600.616 1318.95,600.616 1320.92,600.616 1322.88,600.616 1324.85,600.616 1326.82,600.616 \n", | |
| " 1328.79,600.616 1330.76,600.616 1332.73,600.616 1334.7,600.616 1336.67,600.616 1338.64,600.616 1340.61,600.616 1342.58,600.616 1344.55,600.616 1346.51,600.616 \n", | |
| " 1348.48,600.616 1350.45,600.616 1352.42,600.616 1354.39,600.616 1356.36,600.616 1358.33,600.616 1360.3,600.616 1362.27,600.616 1364.24,600.616 1366.21,600.616 \n", | |
| " 1368.18,600.616 1370.14,600.616 1372.11,600.616 1374.08,600.616 1376.05,600.616 1378.02,600.616 1379.99,600.616 1381.96,600.616 1383.93,600.616 1385.9,600.616 \n", | |
| " 1387.87,600.616 1389.84,600.616 1391.81,600.616 1393.77,600.616 1395.74,600.616 1397.71,600.616 1399.68,600.616 1401.65,600.616 1403.62,600.616 1405.59,600.616 \n", | |
| " 1407.56,600.616 1409.53,600.616 1411.5,600.616 1413.47,600.616 1415.44,600.616 1417.4,600.616 1419.37,600.616 1421.34,600.616 1423.31,600.616 1425.28,600.616 \n", | |
| " 1427.25,600.616 1429.22,600.616 1431.19,600.616 1433.16,600.616 1435.13,600.616 1437.1,600.616 1439.06,600.616 1441.03,600.616 1443,600.616 1444.97,600.616 \n", | |
| " 1446.94,600.616 1448.91,600.616 1450.88,600.616 1452.85,600.616 1454.82,600.616 1456.79,600.616 1458.76,600.616 1460.73,600.616 1462.69,600.616 1464.66,600.616 \n", | |
| " 1466.63,600.616 1468.6,600.616 1470.57,600.616 1472.54,600.616 1474.51,600.616 1476.48,600.616 1478.45,600.616 1480.42,600.616 1482.39,600.616 1484.36,600.616 \n", | |
| " 1486.32,600.616 1488.29,600.616 1490.26,600.616 1492.23,600.616 1494.2,600.616 1496.17,600.616 1498.14,600.616 1500.11,600.616 1502.08,600.616 1504.05,600.616 \n", | |
| " 1506.02,600.616 1507.99,600.616 1509.95,600.616 1511.92,600.616 1513.89,600.616 1515.86,600.616 1517.83,600.616 1519.8,600.616 1521.77,600.616 1523.74,600.616 \n", | |
| " 1525.71,600.616 1527.68,600.616 1529.65,600.616 1531.62,600.616 1533.58,600.616 1535.55,600.616 1537.52,600.616 1539.49,600.616 1541.46,600.616 1543.43,600.616 \n", | |
| " 1545.4,600.616 1547.37,600.616 1549.34,600.616 1551.31,600.616 1553.28,600.616 1555.25,600.616 1557.21,600.616 1559.18,600.616 1561.15,600.616 1563.12,600.616 \n", | |
| " 1565.09,600.616 1567.06,600.616 1569.03,600.616 1571,600.616 1572.97,600.616 1574.94,600.616 1576.91,600.616 1578.88,600.616 1580.84,600.616 1582.81,600.616 \n", | |
| " 1584.78,600.616 1586.75,600.616 1588.72,600.616 1590.69,600.616 1592.66,600.616 1594.63,600.616 1596.6,600.616 1598.57,600.616 1600.54,600.616 1602.51,600.616 \n", | |
| " 1604.47,600.616 1606.44,600.616 1608.41,600.616 1610.38,600.616 1612.35,600.616 1614.32,600.616 1616.29,600.616 1618.26,600.616 1620.23,600.616 1622.2,600.616 \n", | |
| " 1624.17,600.616 1626.14,600.616 1628.1,600.616 1630.07,600.616 1632.04,600.616 1634.01,600.616 1635.98,600.616 1637.95,600.616 1639.92,600.616 1641.89,600.616 \n", | |
| " 1643.86,600.616 1645.83,600.616 1647.8,600.616 1649.77,600.616 1651.73,600.616 1653.7,600.616 1655.67,600.616 1657.64,600.616 1659.61,600.616 1661.58,600.616 \n", | |
| " 1663.55,600.616 1665.52,600.616 1667.49,600.616 1669.46,600.616 1671.43,600.616 1673.4,600.616 1675.36,600.616 1677.33,600.616 1679.3,600.616 1681.27,600.616 \n", | |
| " 1683.24,600.616 1685.21,600.616 1687.18,600.616 1689.15,600.616 1691.12,600.616 1693.09,600.616 1695.06,600.616 1697.03,600.616 1698.99,600.616 1700.96,600.616 \n", | |
| " 1702.93,600.616 1704.9,600.616 1706.87,600.616 1708.84,600.616 1710.81,600.616 1712.78,600.616 1714.75,600.616 1716.72,600.616 1718.69,600.616 1720.66,600.616 \n", | |
| " 1722.62,600.616 1724.59,600.616 1726.56,600.616 1728.53,600.616 1730.5,600.616 1732.47,600.616 1734.44,600.616 1736.41,600.616 1738.38,600.616 1740.35,600.616 \n", | |
| " 1742.32,600.616 1744.29,600.616 1746.25,600.616 1748.22,600.616 1750.19,600.616 1752.16,600.616 1754.13,600.616 1756.1,600.616 1758.07,600.616 1760.04,600.616 \n", | |
| " 1762.01,600.616 1763.98,600.616 1765.95,600.616 1767.91,600.616 1769.88,600.616 1771.85,600.616 1773.82,600.616 1775.79,600.616 1777.76,600.616 1779.73,600.616 \n", | |
| " 1781.7,600.616 1783.67,600.616 1785.64,600.616 1787.61,600.616 1789.58,600.616 1791.54,600.616 1793.51,600.616 1795.48,600.616 1797.45,600.616 1799.42,600.616 \n", | |
| " 1801.39,600.616 1803.36,600.616 1805.33,600.616 1807.3,600.616 1809.27,600.616 1811.24,600.616 1813.21,600.616 1815.17,600.616 1817.14,600.616 1819.11,600.616 \n", | |
| " 1821.08,600.616 1823.05,600.616 1825.02,600.616 1826.99,600.616 1828.96,600.616 1830.93,600.616 1832.9,600.616 1834.87,600.616 1836.84,600.616 1838.8,600.616 \n", | |
| " 1840.77,600.616 1842.74,600.616 1844.71,600.616 1846.68,600.616 1848.65,600.616 1850.62,600.616 1852.59,600.616 1854.56,600.616 1856.53,600.616 1858.5,600.616 \n", | |
| " 1860.47,600.616 1862.43,600.616 1864.4,600.616 1866.37,600.616 1868.34,600.616 1870.31,600.616 1872.28,600.616 1874.25,600.616 1876.22,600.616 1878.19,600.616 \n", | |
| " 1880.16,600.616 1882.13,600.616 1884.1,600.616 1886.06,600.616 1888.03,600.616 1890,600.616 1891.97,600.616 1893.94,600.616 1895.91,600.616 1897.88,600.616 \n", | |
| " 1899.85,600.616 1901.82,600.616 1903.79,600.616 1905.76,600.616 1907.73,600.616 1909.69,600.616 1911.66,600.616 1913.63,600.616 1915.6,600.616 1917.57,600.616 \n", | |
| " 1919.54,600.616 1921.51,600.616 1923.48,600.616 1925.45,600.616 1927.42,600.616 1929.39,600.616 1931.36,600.616 1933.32,600.616 1935.29,600.616 1937.26,600.616 \n", | |
| " 1939.23,600.616 1941.2,600.616 1943.17,600.616 1945.14,600.616 1947.11,600.616 1949.08,600.616 1951.05,600.616 1953.02,600.616 1954.99,600.616 1956.95,600.616 \n", | |
| " 1958.92,600.616 1960.89,600.616 1962.86,600.616 1964.83,600.616 1966.8,600.616 1968.77,600.616 1970.74,600.616 1972.71,600.616 1974.68,600.616 1976.65,600.616 \n", | |
| " 1978.62,600.616 1980.58,600.616 1982.55,600.616 1984.52,600.616 1986.49,600.616 1988.46,600.616 1990.43,600.616 1992.4,600.616 1994.37,600.616 1996.34,600.616 \n", | |
| " 1998.31,600.616 2000.28,600.616 2002.25,600.616 2004.21,600.616 2006.18,600.616 2008.15,600.616 2010.12,600.616 2012.09,600.616 2014.06,600.616 2016.03,600.616 \n", | |
| " 2018,600.616 2019.97,600.616 2021.94,600.616 2023.91,600.616 2025.88,600.616 2027.84,600.616 2029.81,600.616 2031.78,600.616 2033.75,600.616 2035.72,600.616 \n", | |
| " 2037.69,600.616 2039.66,600.616 2041.63,600.616 2043.6,600.616 2045.57,600.616 2047.54,600.616 2049.51,600.616 2051.47,600.616 2053.44,600.616 2055.41,600.616 \n", | |
| " 2057.38,600.616 2059.35,600.616 2061.32,600.616 2063.29,600.616 2065.26,600.616 2067.23,600.616 2069.2,600.616 2071.17,600.616 2073.13,600.616 2075.1,600.616 \n", | |
| " 2077.07,600.616 2079.04,600.616 2081.01,600.616 2082.98,600.616 2084.95,600.616 2086.92,600.616 2088.89,600.616 2090.86,600.616 2092.83,600.616 2094.8,600.616 \n", | |
| " 2096.76,600.616 2098.73,600.616 2100.7,600.616 2102.67,600.616 2104.64,600.616 2106.61,600.616 2108.58,600.616 2110.55,600.616 2112.52,600.616 2114.49,600.616 \n", | |
| " 2116.46,600.616 2118.43,600.616 2120.39,600.616 2122.36,600.616 2124.33,600.616 2126.3,600.616 2128.27,600.616 2130.24,600.616 2132.21,600.616 2134.18,600.616 \n", | |
| " 2136.15,600.616 2138.12,600.616 2140.09,600.616 2142.06,600.616 2144.02,600.616 2145.99,600.616 2147.96,600.616 2149.93,600.616 2151.9,600.616 2153.87,600.616 \n", | |
| " 2155.84,600.616 2157.81,600.616 2159.78,600.616 2161.75,600.616 2163.72,600.616 2165.69,600.616 2167.65,600.616 2169.62,600.616 2171.59,600.616 2173.56,600.616 \n", | |
| " 2175.53,600.616 2177.5,600.616 2179.47,600.616 2181.44,600.616 2183.41,600.616 2185.38,600.616 2187.35,600.616 2189.32,600.616 2191.28,600.616 2193.25,600.616 \n", | |
| " 2195.22,600.616 2197.19,600.616 2199.16,600.616 2201.13,600.616 2203.1,600.616 2205.07,600.616 2207.04,600.616 2209.01,600.616 2210.98,600.616 2212.95,600.616 \n", | |
| " 2214.91,600.616 2216.88,600.616 2218.85,600.616 2220.82,600.616 2222.79,600.616 2224.76,600.616 2226.73,600.616 2228.7,600.616 2230.67,600.616 2232.64,600.616 \n", | |
| " 2234.61,600.616 2236.58,600.616 2238.54,600.616 2240.51,600.616 2242.48,600.616 2244.45,600.616 2246.42,600.616 2248.39,600.616 2250.36,600.616 2252.33,600.616 \n", | |
| " 2254.3,600.616 2256.27,600.616 2258.24,600.616 2260.21,600.616 2262.17,600.616 2264.14,600.616 2266.11,600.616 2268.08,600.616 2270.05,600.616 2272.02,600.616 \n", | |
| " 2273.99,600.616 2275.96,600.616 2277.93,600.616 2279.9,600.616 2281.87,600.616 2283.84,600.616 2285.8,600.616 2287.77,600.616 2289.74,600.616 2291.71,600.616 \n", | |
| " 2293.68,600.616 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"\n", | |
| "M335.022 404.149 L999.281 404.149 L999.281 93.1086 L335.022 93.1086 Z\n", | |
| " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 335.022,404.149 999.281,404.149 999.281,93.1086 335.022,93.1086 335.022,404.149 \n", | |
| " \"/>\n", | |
| "<polyline clip-path=\"url(#clip350)\" style=\"stroke:#ff0000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", | |
| " 358.214,144.949 497.368,144.949 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M520.561 127.669 L549.796 127.669 L549.796 131.604 L537.528 131.604 L537.528 162.229 L532.829 162.229 L532.829 131.604 L520.561 131.604 L520.561 127.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M568.245 148.201 L568.245 150.284 L548.662 150.284 Q548.94 154.682 551.301 156.997 Q553.685 159.289 557.921 159.289 Q560.375 159.289 562.667 158.687 Q564.982 158.085 567.25 156.881 L567.25 160.909 Q564.958 161.881 562.551 162.391 Q560.144 162.9 557.667 162.9 Q551.463 162.9 547.829 159.289 Q544.218 155.678 544.218 149.52 Q544.218 143.155 547.644 139.428 Q551.093 135.678 556.926 135.678 Q562.158 135.678 565.19 139.057 Q568.245 142.414 568.245 148.201 M563.986 146.951 Q563.94 143.456 562.019 141.372 Q560.121 139.289 556.972 139.289 Q553.408 139.289 551.255 141.303 Q549.125 143.317 548.801 146.974 L563.986 146.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M595.421 141.28 Q597.018 138.409 599.241 137.044 Q601.463 135.678 604.472 135.678 Q608.523 135.678 610.722 138.525 Q612.921 141.349 612.921 146.581 L612.921 162.229 L608.639 162.229 L608.639 146.719 Q608.639 142.993 607.319 141.187 Q606 139.382 603.292 139.382 Q599.981 139.382 598.06 141.581 Q596.139 143.78 596.139 147.576 L596.139 162.229 L591.856 162.229 L591.856 146.719 Q591.856 142.969 590.537 141.187 Q589.218 139.382 586.463 139.382 Q583.199 139.382 581.278 141.604 Q579.357 143.803 579.357 147.576 L579.357 162.229 L575.074 162.229 L575.074 136.303 L579.357 136.303 L579.357 140.331 Q580.815 137.946 582.852 136.812 Q584.889 135.678 587.69 135.678 Q590.514 135.678 592.481 137.113 Q594.472 138.548 595.421 141.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M625.537 158.34 L625.537 172.09 L621.254 172.09 L621.254 136.303 L625.537 136.303 L625.537 140.238 Q626.879 137.923 628.916 136.812 Q630.977 135.678 633.824 135.678 Q638.546 135.678 641.486 139.428 Q644.449 143.178 644.449 149.289 Q644.449 155.4 641.486 159.15 Q638.546 162.9 633.824 162.9 Q630.977 162.9 628.916 161.789 Q626.879 160.655 625.537 158.34 M640.027 149.289 Q640.027 144.59 638.083 141.928 Q636.162 139.243 632.782 139.243 Q629.403 139.243 627.458 141.928 Q625.537 144.59 625.537 149.289 Q625.537 153.988 627.458 156.673 Q629.403 159.335 632.782 159.335 Q636.162 159.335 638.083 156.673 Q640.027 153.988 640.027 149.289 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M673.685 148.201 L673.685 150.284 L654.101 150.284 Q654.379 154.682 656.74 156.997 Q659.125 159.289 663.361 159.289 Q665.814 159.289 668.106 158.687 Q670.421 158.085 672.689 156.881 L672.689 160.909 Q670.398 161.881 667.99 162.391 Q665.583 162.9 663.106 162.9 Q656.902 162.9 653.268 159.289 Q649.657 155.678 649.657 149.52 Q649.657 143.155 653.083 139.428 Q656.532 135.678 662.365 135.678 Q667.597 135.678 670.629 139.057 Q673.685 142.414 673.685 148.201 M669.425 146.951 Q669.379 143.456 667.458 141.372 Q665.56 139.289 662.412 139.289 Q658.847 139.289 656.694 141.303 Q654.564 143.317 654.24 146.974 L669.425 146.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M695.698 140.284 Q694.981 139.868 694.124 139.682 Q693.291 139.474 692.273 139.474 Q688.661 139.474 686.717 141.835 Q684.796 144.173 684.796 148.571 L684.796 162.229 L680.513 162.229 L680.513 136.303 L684.796 136.303 L684.796 140.331 Q686.138 137.969 688.291 136.835 Q690.444 135.678 693.523 135.678 Q693.962 135.678 694.495 135.747 Q695.027 135.794 695.675 135.909 L695.698 140.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M711.948 149.196 Q706.786 149.196 704.796 150.377 Q702.805 151.557 702.805 154.405 Q702.805 156.673 704.286 158.016 Q705.791 159.335 708.36 159.335 Q711.902 159.335 714.032 156.835 Q716.184 154.312 716.184 150.145 L716.184 149.196 L711.948 149.196 M720.444 147.437 L720.444 162.229 L716.184 162.229 L716.184 158.293 Q714.726 160.655 712.55 161.789 Q710.374 162.9 707.226 162.9 Q703.245 162.9 700.884 160.678 Q698.546 158.432 698.546 154.682 Q698.546 150.307 701.462 148.085 Q704.402 145.863 710.212 145.863 L716.184 145.863 L716.184 145.446 Q716.184 142.507 714.24 140.909 Q712.319 139.289 708.823 139.289 Q706.601 139.289 704.495 139.821 Q702.388 140.354 700.444 141.419 L700.444 137.483 Q702.782 136.581 704.981 136.141 Q707.18 135.678 709.263 135.678 Q714.888 135.678 717.666 138.594 Q720.444 141.511 720.444 147.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M733.43 128.942 L733.43 136.303 L742.203 136.303 L742.203 139.613 L733.43 139.613 L733.43 153.687 Q733.43 156.858 734.286 157.761 Q735.166 158.664 737.828 158.664 L742.203 158.664 L742.203 162.229 L737.828 162.229 Q732.897 162.229 731.022 160.4 Q729.147 158.548 729.147 153.687 L729.147 139.613 L726.022 139.613 L726.022 136.303 L729.147 136.303 L729.147 128.942 L733.43 128.942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M747.365 151.997 L747.365 136.303 L751.624 136.303 L751.624 151.835 Q751.624 155.516 753.059 157.368 Q754.494 159.196 757.365 159.196 Q760.814 159.196 762.805 156.997 Q764.818 154.798 764.818 151.002 L764.818 136.303 L769.078 136.303 L769.078 162.229 L764.818 162.229 L764.818 158.247 Q763.268 160.608 761.207 161.766 Q759.17 162.9 756.462 162.9 Q751.994 162.9 749.68 160.122 Q747.365 157.344 747.365 151.997 M758.082 135.678 L758.082 135.678 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M792.874 140.284 Q792.156 139.868 791.3 139.682 Q790.466 139.474 789.448 139.474 Q785.837 139.474 783.892 141.835 Q781.971 144.173 781.971 148.571 L781.971 162.229 L777.689 162.229 L777.689 136.303 L781.971 136.303 L781.971 140.331 Q783.314 137.969 785.467 136.835 Q787.619 135.678 790.698 135.678 Q791.138 135.678 791.67 135.747 Q792.203 135.794 792.851 135.909 L792.874 140.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M818.476 148.201 L818.476 150.284 L798.892 150.284 Q799.17 154.682 801.531 156.997 Q803.915 159.289 808.152 159.289 Q810.605 159.289 812.897 158.687 Q815.212 158.085 817.48 156.881 L817.48 160.909 Q815.189 161.881 812.781 162.391 Q810.374 162.9 807.897 162.9 Q801.693 162.9 798.059 159.289 Q794.448 155.678 794.448 149.52 Q794.448 143.155 797.874 139.428 Q801.323 135.678 807.156 135.678 Q812.388 135.678 815.42 139.057 Q818.476 142.414 818.476 148.201 M814.216 146.951 Q814.17 143.456 812.249 141.372 Q810.351 139.289 807.203 139.289 Q803.638 139.289 801.485 141.303 Q799.355 143.317 799.031 146.974 L814.216 146.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip350)\" style=\"stroke:#0000ff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n", | |
| " 358.214,196.789 497.368,196.789 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M520.561 179.509 L525.283 179.509 L532.551 208.721 L539.797 179.509 L545.051 179.509 L552.32 208.721 L559.565 179.509 L564.31 179.509 L555.63 214.069 L549.75 214.069 L542.459 184.069 L535.097 214.069 L529.218 214.069 L520.561 179.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M579.079 201.036 Q573.917 201.036 571.926 202.217 Q569.935 203.397 569.935 206.245 Q569.935 208.513 571.417 209.856 Q572.921 211.175 575.491 211.175 Q579.032 211.175 581.162 208.675 Q583.315 206.152 583.315 201.985 L583.315 201.036 L579.079 201.036 M587.574 199.277 L587.574 214.069 L583.315 214.069 L583.315 210.133 Q581.857 212.495 579.681 213.629 Q577.505 214.74 574.357 214.74 Q570.375 214.74 568.014 212.518 Q565.676 210.272 565.676 206.522 Q565.676 202.147 568.593 199.925 Q571.532 197.703 577.343 197.703 L583.315 197.703 L583.315 197.286 Q583.315 194.347 581.37 192.749 Q579.449 191.129 575.954 191.129 Q573.732 191.129 571.625 191.661 Q569.519 192.194 567.574 193.259 L567.574 189.323 Q569.912 188.421 572.111 187.981 Q574.31 187.518 576.394 187.518 Q582.019 187.518 584.796 190.434 Q587.574 193.351 587.574 199.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M600.56 180.782 L600.56 188.143 L609.333 188.143 L609.333 191.453 L600.56 191.453 L600.56 205.527 Q600.56 208.698 601.417 209.601 Q602.296 210.504 604.958 210.504 L609.333 210.504 L609.333 214.069 L604.958 214.069 Q600.028 214.069 598.153 212.24 Q596.278 210.388 596.278 205.527 L596.278 191.453 L593.153 191.453 L593.153 188.143 L596.278 188.143 L596.278 180.782 L600.56 180.782 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M637.111 200.041 L637.111 202.124 L617.528 202.124 Q617.805 206.522 620.166 208.837 Q622.551 211.129 626.787 211.129 Q629.241 211.129 631.532 210.527 Q633.847 209.925 636.115 208.721 L636.115 212.749 Q633.824 213.721 631.416 214.231 Q629.009 214.74 626.532 214.74 Q620.329 214.74 616.694 211.129 Q613.083 207.518 613.083 201.36 Q613.083 194.995 616.509 191.268 Q619.958 187.518 625.791 187.518 Q631.023 187.518 634.055 190.897 Q637.111 194.254 637.111 200.041 M632.852 198.791 Q632.805 195.296 630.884 193.212 Q628.986 191.129 625.838 191.129 Q622.273 191.129 620.12 193.143 Q617.991 195.157 617.666 198.814 L632.852 198.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M659.125 192.124 Q658.407 191.708 657.551 191.522 Q656.717 191.314 655.699 191.314 Q652.088 191.314 650.143 193.675 Q648.222 196.013 648.222 200.411 L648.222 214.069 L643.94 214.069 L643.94 188.143 L648.222 188.143 L648.222 192.171 Q649.564 189.809 651.717 188.675 Q653.87 187.518 656.949 187.518 Q657.389 187.518 657.921 187.587 Q658.453 187.634 659.101 187.749 L659.125 192.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M697.273 201.129 Q697.273 196.43 695.328 193.768 Q693.407 191.083 690.027 191.083 Q686.648 191.083 684.703 193.768 Q682.782 196.43 682.782 201.129 Q682.782 205.828 684.703 208.513 Q686.648 211.175 690.027 211.175 Q693.407 211.175 695.328 208.513 Q697.273 205.828 697.273 201.129 M682.782 192.078 Q684.124 189.763 686.162 188.652 Q688.222 187.518 691.069 187.518 Q695.791 187.518 698.731 191.268 Q701.694 195.018 701.694 201.129 Q701.694 207.24 698.731 210.99 Q695.791 214.74 691.069 214.74 Q688.222 214.74 686.162 213.629 Q684.124 212.495 682.782 210.18 L682.782 214.069 L678.5 214.069 L678.5 178.05 L682.782 178.05 L682.782 192.078 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M718.8 191.129 Q715.374 191.129 713.384 193.814 Q711.393 196.476 711.393 201.129 Q711.393 205.782 713.36 208.467 Q715.351 211.129 718.8 211.129 Q722.203 211.129 724.194 208.444 Q726.184 205.758 726.184 201.129 Q726.184 196.522 724.194 193.837 Q722.203 191.129 718.8 191.129 M718.8 187.518 Q724.356 187.518 727.527 191.129 Q730.698 194.74 730.698 201.129 Q730.698 207.495 727.527 211.129 Q724.356 214.74 718.8 214.74 Q713.222 214.74 710.05 211.129 Q706.902 207.495 706.902 201.129 Q706.902 194.74 710.05 191.129 Q713.222 187.518 718.8 187.518 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M737.758 188.143 L742.018 188.143 L742.018 214.069 L737.758 214.069 L737.758 188.143 M737.758 178.05 L742.018 178.05 L742.018 183.444 L737.758 183.444 L737.758 178.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M750.93 178.05 L755.189 178.05 L755.189 214.069 L750.93 214.069 L750.93 178.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M780.629 188.907 L780.629 192.934 Q778.823 192.009 776.879 191.546 Q774.934 191.083 772.851 191.083 Q769.68 191.083 768.082 192.055 Q766.508 193.027 766.508 194.971 Q766.508 196.453 767.643 197.309 Q768.777 198.143 772.203 198.907 L773.661 199.231 Q778.198 200.203 780.096 201.985 Q782.017 203.745 782.017 206.916 Q782.017 210.527 779.147 212.633 Q776.3 214.74 771.3 214.74 Q769.217 214.74 766.948 214.323 Q764.703 213.93 762.203 213.12 L762.203 208.721 Q764.564 209.948 766.856 210.573 Q769.147 211.175 771.393 211.175 Q774.402 211.175 776.022 210.157 Q777.642 209.115 777.642 207.24 Q777.642 205.504 776.462 204.578 Q775.305 203.652 771.346 202.796 L769.865 202.448 Q765.906 201.615 764.147 199.902 Q762.388 198.166 762.388 195.157 Q762.388 191.499 764.981 189.509 Q767.573 187.518 772.342 187.518 Q774.703 187.518 776.786 187.865 Q778.869 188.212 780.629 188.907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip350)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n", | |
| " 358.214,248.629 497.368,248.629 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M525.236 235.191 L525.236 248.177 L531.116 248.177 Q534.38 248.177 536.162 246.487 Q537.945 244.798 537.945 241.673 Q537.945 238.571 536.162 236.881 Q534.38 235.191 531.116 235.191 L525.236 235.191 M520.561 231.349 L531.116 231.349 Q536.926 231.349 539.889 233.987 Q542.875 236.603 542.875 241.673 Q542.875 246.788 539.889 249.404 Q536.926 252.02 531.116 252.02 L525.236 252.02 L525.236 265.909 L520.561 265.909 L520.561 231.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M558.616 252.876 Q553.454 252.876 551.463 254.057 Q549.472 255.237 549.472 258.085 Q549.472 260.353 550.954 261.696 Q552.459 263.015 555.028 263.015 Q558.57 263.015 560.699 260.515 Q562.852 257.992 562.852 253.825 L562.852 252.876 L558.616 252.876 M567.111 251.117 L567.111 265.909 L562.852 265.909 L562.852 261.973 Q561.394 264.335 559.218 265.469 Q557.042 266.58 553.894 266.58 Q549.912 266.58 547.551 264.358 Q545.213 262.112 545.213 258.362 Q545.213 253.987 548.13 251.765 Q551.07 249.543 556.88 249.543 L562.852 249.543 L562.852 249.126 Q562.852 246.187 560.908 244.589 Q558.986 242.969 555.491 242.969 Q553.269 242.969 551.162 243.501 Q549.056 244.034 547.111 245.099 L547.111 241.163 Q549.449 240.261 551.648 239.821 Q553.847 239.358 555.931 239.358 Q561.556 239.358 564.333 242.274 Q567.111 245.191 567.111 251.117 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M580.005 262.02 L580.005 275.77 L575.722 275.77 L575.722 239.983 L580.005 239.983 L580.005 243.918 Q581.347 241.603 583.384 240.492 Q585.444 239.358 588.292 239.358 Q593.014 239.358 595.954 243.108 Q598.917 246.858 598.917 252.969 Q598.917 259.08 595.954 262.83 Q593.014 266.58 588.292 266.58 Q585.444 266.58 583.384 265.469 Q581.347 264.335 580.005 262.02 M594.495 252.969 Q594.495 248.27 592.551 245.608 Q590.63 242.923 587.25 242.923 Q583.87 242.923 581.926 245.608 Q580.005 248.27 580.005 252.969 Q580.005 257.668 581.926 260.353 Q583.87 263.015 587.25 263.015 Q590.63 263.015 592.551 260.353 Q594.495 257.668 594.495 252.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M628.153 251.881 L628.153 253.964 L608.569 253.964 Q608.847 258.362 611.208 260.677 Q613.592 262.969 617.829 262.969 Q620.282 262.969 622.574 262.367 Q624.889 261.765 627.157 260.561 L627.157 264.589 Q624.866 265.561 622.458 266.071 Q620.051 266.58 617.574 266.58 Q611.37 266.58 607.736 262.969 Q604.125 259.358 604.125 253.2 Q604.125 246.835 607.551 243.108 Q611 239.358 616.833 239.358 Q622.065 239.358 625.097 242.737 Q628.153 246.094 628.153 251.881 M623.893 250.631 Q623.847 247.136 621.926 245.052 Q620.028 242.969 616.879 242.969 Q613.315 242.969 611.162 244.983 Q609.032 246.997 608.708 250.654 L623.893 250.631 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M650.166 243.964 Q649.449 243.548 648.592 243.362 Q647.759 243.154 646.74 243.154 Q643.129 243.154 641.185 245.515 Q639.264 247.853 639.264 252.251 L639.264 265.909 L634.981 265.909 L634.981 239.983 L639.264 239.983 L639.264 244.011 Q640.606 241.649 642.759 240.515 Q644.912 239.358 647.99 239.358 Q648.43 239.358 648.963 239.427 Q649.495 239.474 650.143 239.589 L650.166 243.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M688.314 252.969 Q688.314 248.27 686.37 245.608 Q684.449 242.923 681.069 242.923 Q677.689 242.923 675.745 245.608 Q673.824 248.27 673.824 252.969 Q673.824 257.668 675.745 260.353 Q677.689 263.015 681.069 263.015 Q684.449 263.015 686.37 260.353 Q688.314 257.668 688.314 252.969 M673.824 243.918 Q675.166 241.603 677.203 240.492 Q679.263 239.358 682.111 239.358 Q686.833 239.358 689.773 243.108 Q692.736 246.858 692.736 252.969 Q692.736 259.08 689.773 262.83 Q686.833 266.58 682.111 266.58 Q679.263 266.58 677.203 265.469 Q675.166 264.335 673.824 262.02 L673.824 265.909 L669.541 265.909 L669.541 229.89 L673.824 229.89 L673.824 243.918 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M699.356 255.677 L699.356 239.983 L703.615 239.983 L703.615 255.515 Q703.615 259.196 705.05 261.048 Q706.485 262.876 709.356 262.876 Q712.805 262.876 714.796 260.677 Q716.809 258.478 716.809 254.682 L716.809 239.983 L721.069 239.983 L721.069 265.909 L716.809 265.909 L716.809 261.927 Q715.259 264.288 713.198 265.446 Q711.161 266.58 708.453 266.58 Q703.985 266.58 701.671 263.802 Q699.356 261.024 699.356 255.677 M710.073 239.358 L710.073 239.358 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M744.865 243.964 Q744.147 243.548 743.291 243.362 Q742.457 243.154 741.439 243.154 Q737.828 243.154 735.883 245.515 Q733.962 247.853 733.962 252.251 L733.962 265.909 L729.68 265.909 L729.68 239.983 L733.962 239.983 L733.962 244.011 Q735.305 241.649 737.458 240.515 Q739.61 239.358 742.689 239.358 Q743.129 239.358 743.661 239.427 Q744.194 239.474 744.842 239.589 L744.865 243.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M770.05 250.261 L770.05 265.909 L765.791 265.909 L765.791 250.399 Q765.791 246.719 764.356 244.89 Q762.92 243.062 760.05 243.062 Q756.601 243.062 754.61 245.261 Q752.619 247.46 752.619 251.256 L752.619 265.909 L748.337 265.909 L748.337 239.983 L752.619 239.983 L752.619 244.011 Q754.147 241.673 756.207 240.515 Q758.291 239.358 760.999 239.358 Q765.467 239.358 767.758 242.136 Q770.05 244.89 770.05 250.261 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M795.073 240.747 L795.073 244.774 Q793.267 243.849 791.323 243.386 Q789.379 242.923 787.295 242.923 Q784.124 242.923 782.527 243.895 Q780.953 244.867 780.953 246.811 Q780.953 248.293 782.087 249.149 Q783.221 249.983 786.647 250.747 L788.105 251.071 Q792.642 252.043 794.541 253.825 Q796.462 255.585 796.462 258.756 Q796.462 262.367 793.591 264.473 Q790.744 266.58 785.744 266.58 Q783.661 266.58 781.392 266.163 Q779.147 265.77 776.647 264.96 L776.647 260.561 Q779.008 261.788 781.3 262.413 Q783.592 263.015 785.837 263.015 Q788.846 263.015 790.466 261.997 Q792.087 260.955 792.087 259.08 Q792.087 257.344 790.906 256.418 Q789.749 255.492 785.791 254.636 L784.309 254.288 Q780.351 253.455 778.592 251.742 Q776.832 250.006 776.832 246.997 Q776.832 243.339 779.425 241.349 Q782.017 239.358 786.786 239.358 Q789.147 239.358 791.23 239.705 Q793.314 240.052 795.073 240.747 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip350)\" style=\"stroke:#ffff00; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n", | |
| " 358.214,300.469 497.368,300.469 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M546.116 312.818 L546.116 303.536 L538.477 303.536 L538.477 299.693 L550.746 299.693 L550.746 314.531 Q548.037 316.452 544.773 317.448 Q541.509 318.42 537.806 318.42 Q529.704 318.42 525.121 313.698 Q520.561 308.952 520.561 300.503 Q520.561 292.031 525.121 287.309 Q529.704 282.564 537.806 282.564 Q541.185 282.564 544.218 283.397 Q547.273 284.23 549.843 285.851 L549.843 290.827 Q547.25 288.628 544.334 287.517 Q541.417 286.406 538.199 286.406 Q531.857 286.406 528.662 289.948 Q525.491 293.489 525.491 300.503 Q525.491 307.494 528.662 311.036 Q531.857 314.577 538.199 314.577 Q540.676 314.577 542.621 314.161 Q544.565 313.721 546.116 312.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M569.148 294.809 Q565.722 294.809 563.732 297.494 Q561.741 300.156 561.741 304.809 Q561.741 309.462 563.708 312.147 Q565.699 314.809 569.148 314.809 Q572.551 314.809 574.542 312.124 Q576.532 309.438 576.532 304.809 Q576.532 300.202 574.542 297.517 Q572.551 294.809 569.148 294.809 M569.148 291.198 Q574.704 291.198 577.875 294.809 Q581.046 298.42 581.046 304.809 Q581.046 311.175 577.875 314.809 Q574.704 318.42 569.148 318.42 Q563.57 318.42 560.398 314.809 Q557.25 311.175 557.25 304.809 Q557.25 298.42 560.398 294.809 Q563.57 291.198 569.148 291.198 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M588.106 281.73 L592.366 281.73 L592.366 317.749 L588.106 317.749 L588.106 281.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M618.338 295.758 L618.338 281.73 L622.597 281.73 L622.597 317.749 L618.338 317.749 L618.338 313.86 Q616.995 316.175 614.935 317.309 Q612.898 318.42 610.028 318.42 Q605.329 318.42 602.366 314.67 Q599.426 310.92 599.426 304.809 Q599.426 298.698 602.366 294.948 Q605.329 291.198 610.028 291.198 Q612.898 291.198 614.935 292.332 Q616.995 293.443 618.338 295.758 M603.824 304.809 Q603.824 309.508 605.745 312.193 Q607.69 314.855 611.069 314.855 Q614.449 314.855 616.393 312.193 Q618.338 309.508 618.338 304.809 Q618.338 300.11 616.393 297.448 Q614.449 294.763 611.069 294.763 Q607.69 294.763 605.745 297.448 Q603.824 300.11 603.824 304.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M666.625 296.8 Q668.222 293.929 670.444 292.564 Q672.666 291.198 675.675 291.198 Q679.726 291.198 681.925 294.045 Q684.124 296.869 684.124 302.101 L684.124 317.749 L679.842 317.749 L679.842 302.239 Q679.842 298.513 678.523 296.707 Q677.203 294.902 674.495 294.902 Q671.185 294.902 669.263 297.101 Q667.342 299.3 667.342 303.096 L667.342 317.749 L663.06 317.749 L663.06 302.239 Q663.06 298.489 661.74 296.707 Q660.421 294.902 657.666 294.902 Q654.402 294.902 652.481 297.124 Q650.56 299.323 650.56 303.096 L650.56 317.749 L646.277 317.749 L646.277 291.823 L650.56 291.823 L650.56 295.851 Q652.018 293.466 654.055 292.332 Q656.092 291.198 658.893 291.198 Q661.717 291.198 663.685 292.633 Q665.675 294.068 666.625 296.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M714.796 303.721 L714.796 305.804 L695.212 305.804 Q695.49 310.202 697.851 312.517 Q700.235 314.809 704.472 314.809 Q706.925 314.809 709.217 314.207 Q711.532 313.605 713.8 312.401 L713.8 316.429 Q711.509 317.401 709.101 317.911 Q706.694 318.42 704.217 318.42 Q698.013 318.42 694.379 314.809 Q690.768 311.198 690.768 305.04 Q690.768 298.675 694.194 294.948 Q697.643 291.198 703.476 291.198 Q708.708 291.198 711.74 294.577 Q714.796 297.934 714.796 303.721 M710.536 302.471 Q710.49 298.976 708.569 296.892 Q706.671 294.809 703.523 294.809 Q699.958 294.809 697.805 296.823 Q695.675 298.837 695.351 302.494 L710.536 302.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M721.786 281.73 L726.046 281.73 L726.046 317.749 L721.786 317.749 L721.786 281.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M739.17 284.462 L739.17 291.823 L747.944 291.823 L747.944 295.133 L739.17 295.133 L739.17 309.207 Q739.17 312.378 740.027 313.281 Q740.907 314.184 743.569 314.184 L747.944 314.184 L747.944 317.749 L743.569 317.749 Q738.638 317.749 736.763 315.92 Q734.888 314.068 734.888 309.207 L734.888 295.133 L731.763 295.133 L731.763 291.823 L734.888 291.823 L734.888 284.462 L739.17 284.462 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M770.073 292.587 L770.073 296.614 Q768.268 295.689 766.323 295.226 Q764.379 294.763 762.295 294.763 Q759.124 294.763 757.527 295.735 Q755.953 296.707 755.953 298.651 Q755.953 300.133 757.087 300.989 Q758.221 301.823 761.647 302.587 L763.106 302.911 Q767.643 303.883 769.541 305.665 Q771.462 307.425 771.462 310.596 Q771.462 314.207 768.592 316.313 Q765.744 318.42 760.744 318.42 Q758.661 318.42 756.393 318.003 Q754.147 317.61 751.647 316.8 L751.647 312.401 Q754.008 313.628 756.3 314.253 Q758.592 314.855 760.837 314.855 Q763.846 314.855 765.467 313.837 Q767.087 312.795 767.087 310.92 Q767.087 309.184 765.906 308.258 Q764.749 307.332 760.791 306.476 L759.309 306.128 Q755.351 305.295 753.592 303.582 Q751.832 301.846 751.832 298.837 Q751.832 295.179 754.425 293.189 Q757.018 291.198 761.786 291.198 Q764.147 291.198 766.231 291.545 Q768.314 291.892 770.073 292.587 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip350)\" style=\"stroke:#ffa500; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n", | |
| " 358.214,352.309 497.368,352.309 \n", | |
| " \"/>\n", | |
| "<path clip-path=\"url(#clip350)\" d=\"M542.806 336.163 L542.806 340.723 Q540.144 339.45 537.783 338.825 Q535.422 338.2 533.223 338.2 Q529.403 338.2 527.32 339.681 Q525.26 341.163 525.26 343.894 Q525.26 346.186 526.625 347.367 Q528.014 348.524 531.857 349.242 L534.681 349.82 Q539.912 350.816 542.389 353.339 Q544.889 355.839 544.889 360.052 Q544.889 365.075 541.509 367.667 Q538.153 370.26 531.648 370.26 Q529.195 370.26 526.417 369.704 Q523.662 369.149 520.699 368.061 L520.699 363.246 Q523.547 364.843 526.278 365.653 Q529.01 366.464 531.648 366.464 Q535.653 366.464 537.829 364.89 Q540.005 363.316 540.005 360.399 Q540.005 357.853 538.431 356.417 Q536.88 354.982 533.315 354.265 L530.468 353.709 Q525.236 352.667 522.898 350.445 Q520.561 348.223 520.561 344.265 Q520.561 339.681 523.778 337.042 Q527.019 334.404 532.69 334.404 Q535.121 334.404 537.644 334.843 Q540.167 335.283 542.806 336.163 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M551.556 359.357 L551.556 343.663 L555.815 343.663 L555.815 359.195 Q555.815 362.876 557.25 364.728 Q558.685 366.556 561.556 366.556 Q565.005 366.556 566.995 364.357 Q569.009 362.158 569.009 358.362 L569.009 343.663 L573.269 343.663 L573.269 369.589 L569.009 369.589 L569.009 365.607 Q567.458 367.968 565.398 369.126 Q563.361 370.26 560.653 370.26 Q556.185 370.26 553.871 367.482 Q551.556 364.704 551.556 359.357 M562.273 343.038 L562.273 343.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M597.065 347.644 Q596.347 347.228 595.491 347.042 Q594.657 346.834 593.639 346.834 Q590.028 346.834 588.083 349.195 Q586.162 351.533 586.162 355.931 L586.162 369.589 L581.88 369.589 L581.88 343.663 L586.162 343.663 L586.162 347.691 Q587.505 345.329 589.657 344.195 Q591.81 343.038 594.889 343.038 Q595.329 343.038 595.861 343.107 Q596.393 343.154 597.042 343.269 L597.065 347.644 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M614.657 333.57 L614.657 337.112 L610.583 337.112 Q608.292 337.112 607.389 338.038 Q606.509 338.964 606.509 341.371 L606.509 343.663 L613.523 343.663 L613.523 346.973 L606.509 346.973 L606.509 369.589 L602.227 369.589 L602.227 346.973 L598.153 346.973 L598.153 343.663 L602.227 343.663 L602.227 341.857 Q602.227 337.529 604.241 335.561 Q606.255 333.57 610.629 333.57 L614.657 333.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M630.004 356.556 Q624.842 356.556 622.852 357.737 Q620.861 358.917 620.861 361.765 Q620.861 364.033 622.342 365.376 Q623.847 366.695 626.416 366.695 Q629.958 366.695 632.088 364.195 Q634.24 361.672 634.24 357.505 L634.24 356.556 L630.004 356.556 M638.5 354.797 L638.5 369.589 L634.24 369.589 L634.24 365.653 Q632.782 368.015 630.606 369.149 Q628.43 370.26 625.282 370.26 Q621.301 370.26 618.94 368.038 Q616.602 365.792 616.602 362.042 Q616.602 357.667 619.518 355.445 Q622.458 353.223 628.268 353.223 L634.24 353.223 L634.24 352.806 Q634.24 349.867 632.296 348.269 Q630.375 346.649 626.879 346.649 Q624.657 346.649 622.551 347.181 Q620.444 347.714 618.5 348.779 L618.5 344.843 Q620.838 343.941 623.037 343.501 Q625.236 343.038 627.319 343.038 Q632.944 343.038 635.722 345.954 Q638.5 348.871 638.5 354.797 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M665.93 344.658 L665.93 348.64 Q664.125 347.644 662.296 347.158 Q660.49 346.649 658.639 346.649 Q654.495 346.649 652.203 349.288 Q649.912 351.904 649.912 356.649 Q649.912 361.394 652.203 364.033 Q654.495 366.649 658.639 366.649 Q660.49 366.649 662.296 366.163 Q664.125 365.653 665.93 364.658 L665.93 368.593 Q664.148 369.427 662.226 369.843 Q660.328 370.26 658.176 370.26 Q652.319 370.26 648.87 366.579 Q645.421 362.899 645.421 356.649 Q645.421 350.306 648.893 346.672 Q652.389 343.038 658.453 343.038 Q660.421 343.038 662.296 343.455 Q664.171 343.848 665.93 344.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M695.513 355.561 L695.513 357.644 L675.93 357.644 Q676.208 362.042 678.569 364.357 Q680.953 366.649 685.189 366.649 Q687.643 366.649 689.935 366.047 Q692.249 365.445 694.518 364.241 L694.518 368.269 Q692.226 369.241 689.819 369.751 Q687.411 370.26 684.935 370.26 Q678.731 370.26 675.097 366.649 Q671.486 363.038 671.486 356.88 Q671.486 350.515 674.912 346.788 Q678.361 343.038 684.194 343.038 Q689.425 343.038 692.458 346.417 Q695.513 349.774 695.513 355.561 M691.254 354.311 Q691.208 350.816 689.286 348.732 Q687.388 346.649 684.24 346.649 Q680.675 346.649 678.523 348.663 Q676.393 350.677 676.069 354.334 L691.254 354.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M727.62 346.649 Q724.194 346.649 722.203 349.334 Q720.212 351.996 720.212 356.649 Q720.212 361.302 722.18 363.987 Q724.171 366.649 727.62 366.649 Q731.022 366.649 733.013 363.964 Q735.004 361.278 735.004 356.649 Q735.004 352.042 733.013 349.357 Q731.022 346.649 727.62 346.649 M727.62 343.038 Q733.175 343.038 736.346 346.649 Q739.518 350.26 739.518 356.649 Q739.518 363.015 736.346 366.649 Q733.175 370.26 727.62 370.26 Q722.041 370.26 718.87 366.649 Q715.722 363.015 715.722 356.649 Q715.722 350.26 718.87 346.649 Q722.041 343.038 727.62 343.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M759.703 333.57 L759.703 337.112 L755.629 337.112 Q753.337 337.112 752.434 338.038 Q751.555 338.964 751.555 341.371 L751.555 343.663 L758.569 343.663 L758.569 346.973 L751.555 346.973 L751.555 369.589 L747.272 369.589 L747.272 346.973 L743.198 346.973 L743.198 343.663 L747.272 343.663 L747.272 341.857 Q747.272 337.529 749.286 335.561 Q751.3 333.57 755.675 333.57 L759.703 333.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M782.55 336.302 L782.55 343.663 L791.323 343.663 L791.323 346.973 L782.55 346.973 L782.55 361.047 Q782.55 364.218 783.406 365.121 Q784.286 366.024 786.948 366.024 L791.323 366.024 L791.323 369.589 L786.948 369.589 Q782.017 369.589 780.142 367.76 Q778.267 365.908 778.267 361.047 L778.267 346.973 L775.143 346.973 L775.143 343.663 L778.267 343.663 L778.267 336.302 L782.55 336.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M818.476 353.941 L818.476 369.589 L814.216 369.589 L814.216 354.079 Q814.216 350.399 812.781 348.57 Q811.346 346.742 808.476 346.742 Q805.027 346.742 803.036 348.941 Q801.045 351.14 801.045 354.936 L801.045 369.589 L796.763 369.589 L796.763 333.57 L801.045 333.57 L801.045 347.691 Q802.573 345.353 804.633 344.195 Q806.716 343.038 809.425 343.038 Q813.892 343.038 816.184 345.816 Q818.476 348.57 818.476 353.941 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M849.147 355.561 L849.147 357.644 L829.564 357.644 Q829.841 362.042 832.202 364.357 Q834.587 366.649 838.823 366.649 Q841.276 366.649 843.568 366.047 Q845.883 365.445 848.151 364.241 L848.151 368.269 Q845.86 369.241 843.452 369.751 Q841.045 370.26 838.568 370.26 Q832.364 370.26 828.73 366.649 Q825.119 363.038 825.119 356.88 Q825.119 350.515 828.545 346.788 Q831.994 343.038 837.827 343.038 Q843.059 343.038 846.091 346.417 Q849.147 349.774 849.147 355.561 M844.888 354.311 Q844.841 350.816 842.92 348.732 Q841.022 346.649 837.874 346.649 Q834.309 346.649 832.156 348.663 Q830.026 350.677 829.702 354.334 L844.888 354.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M892.109 336.163 L892.109 340.723 Q889.447 339.45 887.086 338.825 Q884.725 338.2 882.526 338.2 Q878.707 338.2 876.623 339.681 Q874.563 341.163 874.563 343.894 Q874.563 346.186 875.929 347.367 Q877.318 348.524 881.16 349.242 L883.985 349.82 Q889.216 350.816 891.693 353.339 Q894.193 355.839 894.193 360.052 Q894.193 365.075 890.813 367.667 Q887.457 370.26 880.952 370.26 Q878.498 370.26 875.721 369.704 Q872.966 369.149 870.003 368.061 L870.003 363.246 Q872.85 364.843 875.582 365.653 Q878.313 366.464 880.952 366.464 Q884.957 366.464 887.133 364.89 Q889.309 363.316 889.309 360.399 Q889.309 357.853 887.734 356.417 Q886.184 354.982 882.619 354.265 L879.772 353.709 Q874.54 352.667 872.202 350.445 Q869.864 348.223 869.864 344.265 Q869.864 339.681 873.082 337.042 Q876.323 334.404 881.994 334.404 Q884.424 334.404 886.947 334.843 Q889.471 335.283 892.109 336.163 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M900.859 359.357 L900.859 343.663 L905.119 343.663 L905.119 359.195 Q905.119 362.876 906.554 364.728 Q907.989 366.556 910.859 366.556 Q914.308 366.556 916.299 364.357 Q918.313 362.158 918.313 358.362 L918.313 343.663 L922.572 343.663 L922.572 369.589 L918.313 369.589 L918.313 365.607 Q916.762 367.968 914.702 369.126 Q912.665 370.26 909.957 370.26 Q905.489 370.26 903.174 367.482 Q900.859 364.704 900.859 359.357 M911.577 343.038 L911.577 343.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip350)\" d=\"M952.896 353.941 L952.896 369.589 L948.637 369.589 L948.637 354.079 Q948.637 350.399 947.202 348.57 Q945.767 346.742 942.896 346.742 Q939.447 346.742 937.456 348.941 Q935.466 351.14 935.466 354.936 L935.466 369.589 L931.183 369.589 L931.183 343.663 L935.466 343.663 L935.466 347.691 Q936.993 345.353 939.054 344.195 Q941.137 343.038 943.845 343.038 Q948.313 343.038 950.605 345.816 Q952.896 348.57 952.896 353.941 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n" | |
| ] | |
| }, | |
| "execution_count": 100, | |
| "metadata": {}, | |
| "output_type": "execute_result" | |
| } | |
| ], | |
| "source": [ | |
| "nt = length(t);\n", | |
| "plot(t,T_growth, linecolor = :red, linewidth = 3, xlabel = \"Year\", ylabel = \"Earth Temperature, deg K\", legend = :topleft, label = \"Temperature\")\n", | |
| "plot!(t,water*ones(nt), linecolor = :blue, linewidth = 3, linestyle = :dash, label = \"Water boils\")\n", | |
| "plot!(t,paper*ones(nt), linecolor = :black, linewidth = 3, linestyle = :dash, label = \"Paper burns\")\n", | |
| "plot!(t,gold*ones(nt), linecolor = :yellow, linewidth = 3, linestyle = :dash, label = \"Gold melts\")\n", | |
| "plot!(t,sun*ones(nt), linecolor = :orange, linewidth = 3, linestyle = :dash, label = \"Surface of the Sun\")" | |
| ] | |
| } | |
| ], | |
| "metadata": { | |
| "kernelspec": { | |
| "display_name": "Julia 1.9.4", | |
| "language": "julia", | |
| "name": "julia-1.9" | |
| }, | |
| "language_info": { | |
| "file_extension": ".jl", | |
| "mimetype": "application/julia", | |
| "name": "julia", | |
| "version": "1.9.4" | |
| } | |
| }, | |
| "nbformat": 4, | |
| "nbformat_minor": 5 | |
| } |
Yes, I think it's a typo. A bit further down in p0=P0/Adisk, the value of E (178889) instead of P0 is written. Again, I think the correct value is used in computations.
do these numbers represent useful energy to society, or total consumption?
Good question, but I don't think it matters all that much. In the case of fossil fuels (~87%) it should be simple: it should be based on extraction. For example, a coal power plant may have an efficiency of 35%, but the statistics should be based on the amount of coal used, not electricity produced. And I think that's the case. Statistics on extractions should be fairly easy to get.
For wind, solar, bio and hydro, I think the stats are based on electricity produced. But they should not be included in your temperature calculations anyway, since the energy is already received by earth, just transformed to electricity.
Nuclear is trickier. I think (and I am guessing) that the stats are based on electricity produced. But a nuclear power plant has an efficiency around 35%, so the thermal effect is around 3 times the electricity output. But then again, nuclear is a small contributor (yet).
The result for P0 = E/H = 14e13 watts is incorrect in the post:
https://wildpeaches.xyz/blog/stefan-boltzmann-revisited/
The correct value, as in this gist, is 2.0421118721461188e13 (~20.42 TW)
This is in line with https://en.wikipedia.org/wiki/World_energy_supply_and_consumption (19.6TW 2021).
14e13 watts is around 7 times higher, which made me jump a bit