Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genkuroki/edb7760413c8b00da65320255fbae235 to your computer and use it in GitHub Desktop.
Save genkuroki/edb7760413c8b00da65320255fbae235 to your computer and use it in GitHub Desktop.
DifferentialEquations.jl example - single pendulum.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {
"toc": true
},
"cell_type": "markdown",
"source": "<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n<div class=\"toc\"><ul class=\"toc-item\"></ul></div>"
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "VERSION",
"execution_count": 1,
"outputs": [
{
"data": {
"text/plain": "v\"1.7.0-DEV.1129\""
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "using Test\nusing DifferentialEquations\nusing SimpleDiffEq\nusing Plots\nusing Elliptic",
"execution_count": 2,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "function my_RK4(f!, u0, tspan, p; dt=0.1)\n t = range(tspan...; step=dt)\n n = length(t)\n u = similar(typeof(u0)[], n)\n u[1] = u0\n du1, du2, du3, du4 = similar(u0), similar(u0), similar(u0), similar(u0)\n dt_half = dt/2\n for k in 2:n\n u_prev, t_prev = u[k-1], t[k-1]\n f!(du1, u_prev , p, t_prev )\n f!(du2, u_prev + du1*dt_half, p, t_prev + dt_half)\n f!(du3, u_prev + du2*dt_half, p, t_prev + dt_half)\n f!(du4, u_prev + du3*dt , p, t_prev + dt )\n u_next = @. u_prev + (du1 + 2du2 + 2du3 + du4)*dt/6\n u[k] = u_next\n end\n (; t, u)\nend",
"execution_count": 3,
"outputs": [
{
"data": {
"text/plain": "my_RK4 (generic function with 1 method)"
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "sn(u, k) = Jacobi.sn(u, k^2)\nsol_exact(p, t) = ((g, l, ymax) = p; 2asin(ymax*sn(√(g/l)*t, ymax)))\n\nfunction f!(du, u, p, t)\n g, l, = p\n du[1] = -(g/l)*sin(u[2])\n du[2] = u[1]\nend\n\np = (g = 9.80665, l = 1.0, ymax = 0.999)\nU0(p) = ((g, l, ymax) = p; [√(g/l)*2ymax, 0.0])\ntspan = (0.0, 30.0)",
"execution_count": 4,
"outputs": [
{
"data": {
"text/plain": "(0.0, 30.0)"
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dt = 0.1\nsol_fixedstep_RK4 = solve(ODEProblem(f!, U0(p), tspan, p), RK4(); adaptive=false, dt)\nsol_SimpleRK4 = solve(ODEProblem(f!, U0(p), tspan, p), SimpleRK4(); dt)\nsol_my_RK4 = my_RK4(f!, U0(p), tspan, p; dt)\n\n@test sol_fixedstep_RK4.u ≈ sol_SimpleRK4.u ≈ sol_my_RK4.u",
"execution_count": 5,
"outputs": [
{
"data": {
"text/plain": "\u001b[32m\u001b[1mTest Passed\u001b[22m\u001b[39m"
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "E(v, u, p, t) = ((g, l,) = p; v[1]^2/2 - (g/l)*(cos(u[1]) - 1)) # total energy\n\nfunction plot_pendulum(sol; title=\"solution: θ(t)\", ylim=nothing)\n tspan, p = sol.prob.tspan, sol.prob.p\n t = range(tspan..., length=501)\n dθ = (t -> sol(t)[1]).(t)\n θ = (t -> sol(t)[2]).(t)\n θ_exact = sol_exact.(Ref(p), t)\n \n P = plot(t, [θ θ_exact]; label=[\"numerical\" \"exact\"], ls=:auto, ylim=(-4, 6.5))\n plot!(xtick=0:2:30, ytick=-10:10)\n title!(title; titlefontsize=10)\n \n v0, u0 = first.((dθ, θ))\n E_exact = fill(E(v0, u0, p, 0.0), length(t))\n E_numerical = E.(dθ, θ, Ref(p), t)\n Q = plot(t, E_numerical - E_exact; label=\"\")\n title!(\"total energy error\"; titlefontsize=12)\n plot!(xtick=0:2:30)\n isnothing(ylim) || plot!(; ylim)\n \n plot(P, Q; size=(800, 250), layout=(1, 2))\nend",
"execution_count": 6,
"outputs": [
{
"data": {
"text/plain": "plot_pendulum (generic function with 1 method)"
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dt = 0.1\nsol = solve(ODEProblem(f!, U0(p), tspan, p), RK4(); adaptive=false, dt)\n@show length(sol.t)\nplot_pendulum(sol; title=\"RK4 with fixed dt = $dt\")",
"execution_count": 7,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 301\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip730\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip730)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip731\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip730)\" d=\"\nM157.191 910.808 L1500.22 910.808 L1500.22 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip732\">\n <rect x=\"157\" y=\"87\" width=\"1344\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 195.201,910.808 195.201,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 279.668,910.808 279.668,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 364.136,910.808 364.136,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 448.603,910.808 448.603,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 533.07,910.808 533.07,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 617.538,910.808 617.538,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 702.005,910.808 702.005,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 786.472,910.808 786.472,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 870.94,910.808 870.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 955.407,910.808 955.407,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1039.87,910.808 1039.87,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1124.34,910.808 1124.34,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1208.81,910.808 1208.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1293.28,910.808 1293.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1377.74,910.808 1377.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1462.21,910.808 1462.21,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1500.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 195.201,910.808 195.201,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 279.668,910.808 279.668,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 364.136,910.808 364.136,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 448.603,910.808 448.603,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 533.07,910.808 533.07,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 617.538,910.808 617.538,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 702.005,910.808 702.005,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 786.472,910.808 786.472,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 870.94,910.808 870.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 955.407,910.808 955.407,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1039.87,910.808 1039.87,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1124.34,910.808 1124.34,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1208.81,910.808 1208.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1293.28,910.808 1293.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1377.74,910.808 1377.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1462.21,910.808 1462.21,900.926 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M195.201 946.399 Q191.59 946.399 189.761 949.963 Q187.956 953.505 187.956 960.635 Q187.956 967.741 189.761 971.306 Q191.59 974.847 195.201 974.847 Q198.835 974.847 200.641 971.306 Q202.47 967.741 202.47 960.635 Q202.47 953.505 200.641 949.963 Q198.835 946.399 195.201 946.399 M195.201 942.695 Q201.011 942.695 204.067 947.301 Q207.146 951.885 207.146 960.635 Q207.146 969.361 204.067 973.968 Q201.011 978.551 195.201 978.551 Q189.391 978.551 186.312 973.968 Q183.257 969.361 183.257 960.635 Q183.257 951.885 186.312 947.301 Q189.391 942.695 195.201 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M274.321 973.945 L290.641 973.945 L290.641 977.88 L268.696 977.88 L268.696 973.945 Q271.358 971.19 275.942 966.56 Q280.548 961.908 281.729 960.565 Q283.974 958.042 284.854 956.306 Q285.756 954.547 285.756 952.857 Q285.756 950.102 283.812 948.366 Q281.891 946.63 278.789 946.63 Q276.59 946.63 274.136 947.394 Q271.706 948.158 268.928 949.709 L268.928 944.987 Q271.752 943.852 274.206 943.274 Q276.659 942.695 278.696 942.695 Q284.067 942.695 287.261 945.38 Q290.455 948.065 290.455 952.556 Q290.455 954.686 289.645 956.607 Q288.858 958.505 286.752 961.098 Q286.173 961.769 283.071 964.986 Q279.969 968.181 274.321 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M367.145 947.394 L355.34 965.843 L367.145 965.843 L367.145 947.394 M365.918 943.32 L371.798 943.32 L371.798 965.843 L376.728 965.843 L376.728 969.732 L371.798 969.732 L371.798 977.88 L367.145 977.88 L367.145 969.732 L351.543 969.732 L351.543 965.218 L365.918 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M449.008 958.736 Q445.86 958.736 444.008 960.889 Q442.18 963.042 442.18 966.792 Q442.18 970.519 444.008 972.695 Q445.86 974.847 449.008 974.847 Q452.156 974.847 453.985 972.695 Q455.837 970.519 455.837 966.792 Q455.837 963.042 453.985 960.889 Q452.156 958.736 449.008 958.736 M458.291 944.084 L458.291 948.343 Q456.531 947.51 454.726 947.07 Q452.943 946.63 451.184 946.63 Q446.555 946.63 444.101 949.755 Q441.67 952.88 441.323 959.199 Q442.689 957.186 444.749 956.121 Q446.809 955.033 449.286 955.033 Q454.494 955.033 457.504 958.204 Q460.536 961.352 460.536 966.792 Q460.536 972.116 457.388 975.334 Q454.24 978.551 449.008 978.551 Q443.013 978.551 439.842 973.968 Q436.67 969.361 436.67 960.635 Q436.67 952.44 440.559 947.579 Q444.448 942.695 450.999 942.695 Q452.758 942.695 454.541 943.042 Q456.346 943.389 458.291 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M533.07 961.468 Q529.737 961.468 527.816 963.25 Q525.918 965.033 525.918 968.158 Q525.918 971.283 527.816 973.065 Q529.737 974.847 533.07 974.847 Q536.404 974.847 538.325 973.065 Q540.246 971.26 540.246 968.158 Q540.246 965.033 538.325 963.25 Q536.427 961.468 533.07 961.468 M528.395 959.477 Q525.385 958.736 523.696 956.676 Q522.029 954.616 522.029 951.653 Q522.029 947.51 524.969 945.102 Q527.932 942.695 533.07 942.695 Q538.233 942.695 541.172 945.102 Q544.112 947.51 544.112 951.653 Q544.112 954.616 542.422 956.676 Q540.756 958.736 537.77 959.477 Q541.149 960.264 543.024 962.556 Q544.922 964.848 544.922 968.158 Q544.922 973.181 541.844 975.866 Q538.788 978.551 533.07 978.551 Q527.353 978.551 524.274 975.866 Q521.219 973.181 521.219 968.158 Q521.219 964.848 523.117 962.556 Q525.015 960.264 528.395 959.477 M526.682 952.093 Q526.682 954.778 528.348 956.283 Q530.038 957.787 533.07 957.787 Q536.08 957.787 537.77 956.283 Q539.483 954.778 539.483 952.093 Q539.483 949.408 537.77 947.903 Q536.08 946.399 533.07 946.399 Q530.038 946.399 528.348 947.903 Q526.682 949.408 526.682 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M592.225 973.945 L599.864 973.945 L599.864 947.579 L591.554 949.246 L591.554 944.987 L599.818 943.32 L604.494 943.32 L604.494 973.945 L612.133 973.945 L612.133 977.88 L592.225 977.88 L592.225 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M631.577 946.399 Q627.966 946.399 626.137 949.963 Q624.332 953.505 624.332 960.635 Q624.332 967.741 626.137 971.306 Q627.966 974.847 631.577 974.847 Q635.211 974.847 637.017 971.306 Q638.846 967.741 638.846 960.635 Q638.846 953.505 637.017 949.963 Q635.211 946.399 631.577 946.399 M631.577 942.695 Q637.387 942.695 640.443 947.301 Q643.521 951.885 643.521 960.635 Q643.521 969.361 640.443 973.968 Q637.387 978.551 631.577 978.551 Q625.767 978.551 622.688 973.968 Q619.633 969.361 619.633 960.635 Q619.633 951.885 622.688 947.301 Q625.767 942.695 631.577 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M677.491 973.945 L685.13 973.945 L685.13 947.579 L676.82 949.246 L676.82 944.987 L685.084 943.32 L689.76 943.32 L689.76 973.945 L697.399 973.945 L697.399 977.88 L677.491 977.88 L677.491 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M710.871 973.945 L727.19 973.945 L727.19 977.88 L705.246 977.88 L705.246 973.945 Q707.908 971.19 712.491 966.56 Q717.098 961.908 718.278 960.565 Q720.524 958.042 721.403 956.306 Q722.306 954.547 722.306 952.857 Q722.306 950.102 720.362 948.366 Q718.44 946.63 715.338 946.63 Q713.139 946.63 710.686 947.394 Q708.255 948.158 705.477 949.709 L705.477 944.987 Q708.301 943.852 710.755 943.274 Q713.209 942.695 715.246 942.695 Q720.616 942.695 723.811 945.38 Q727.005 948.065 727.005 952.556 Q727.005 954.686 726.195 956.607 Q725.408 958.505 723.301 961.098 Q722.723 961.769 719.621 964.986 Q716.519 968.181 710.871 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M760.917 973.945 L768.556 973.945 L768.556 947.579 L760.246 949.246 L760.246 944.987 L768.51 943.32 L773.186 943.32 L773.186 973.945 L780.824 973.945 L780.824 977.88 L760.917 977.88 L760.917 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M803.116 947.394 L791.31 965.843 L803.116 965.843 L803.116 947.394 M801.889 943.32 L807.769 943.32 L807.769 965.843 L812.699 965.843 L812.699 969.732 L807.769 969.732 L807.769 977.88 L803.116 977.88 L803.116 969.732 L787.514 969.732 L787.514 965.218 L801.889 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M845.546 973.945 L853.185 973.945 L853.185 947.579 L844.875 949.246 L844.875 944.987 L853.139 943.32 L857.815 943.32 L857.815 973.945 L865.454 973.945 L865.454 977.88 L845.546 977.88 L845.546 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M885.477 958.736 Q882.329 958.736 880.477 960.889 Q878.648 963.042 878.648 966.792 Q878.648 970.519 880.477 972.695 Q882.329 974.847 885.477 974.847 Q888.625 974.847 890.454 972.695 Q892.305 970.519 892.305 966.792 Q892.305 963.042 890.454 960.889 Q888.625 958.736 885.477 958.736 M894.759 944.084 L894.759 948.343 Q893 947.51 891.194 947.07 Q889.412 946.63 887.653 946.63 Q883.023 946.63 880.569 949.755 Q878.139 952.88 877.792 959.199 Q879.157 957.186 881.218 956.121 Q883.278 955.033 885.755 955.033 Q890.963 955.033 893.972 958.204 Q897.005 961.352 897.005 966.792 Q897.005 972.116 893.856 975.334 Q890.708 978.551 885.477 978.551 Q879.481 978.551 876.31 973.968 Q873.139 969.361 873.139 960.635 Q873.139 952.44 877.028 947.579 Q880.917 942.695 887.468 942.695 Q889.227 942.695 891.009 943.042 Q892.815 943.389 894.759 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M930.141 973.945 L937.78 973.945 L937.78 947.579 L929.47 949.246 L929.47 944.987 L937.734 943.32 L942.41 943.32 L942.41 973.945 L950.048 973.945 L950.048 977.88 L930.141 977.88 L930.141 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M969.493 961.468 Q966.159 961.468 964.238 963.25 Q962.34 965.033 962.34 968.158 Q962.34 971.283 964.238 973.065 Q966.159 974.847 969.493 974.847 Q972.826 974.847 974.747 973.065 Q976.669 971.26 976.669 968.158 Q976.669 965.033 974.747 963.25 Q972.849 961.468 969.493 961.468 M964.817 959.477 Q961.808 958.736 960.118 956.676 Q958.451 954.616 958.451 951.653 Q958.451 947.51 961.391 945.102 Q964.354 942.695 969.493 942.695 Q974.655 942.695 977.595 945.102 Q980.534 947.51 980.534 951.653 Q980.534 954.616 978.845 956.676 Q977.178 958.736 974.192 959.477 Q977.571 960.264 979.446 962.556 Q981.345 964.848 981.345 968.158 Q981.345 973.181 978.266 975.866 Q975.21 978.551 969.493 978.551 Q963.775 978.551 960.696 975.866 Q957.641 973.181 957.641 968.158 Q957.641 964.848 959.539 962.556 Q961.437 960.264 964.817 959.477 M963.104 952.093 Q963.104 954.778 964.771 956.283 Q966.46 957.787 969.493 957.787 Q972.502 957.787 974.192 956.283 Q975.905 954.778 975.905 952.093 Q975.905 949.408 974.192 947.903 Q972.502 946.399 969.493 946.399 Q966.46 946.399 964.771 947.903 Q963.104 949.408 963.104 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1018.65 973.945 L1034.97 973.945 L1034.97 977.88 L1013.02 977.88 L1013.02 973.945 Q1015.68 971.19 1020.27 966.56 Q1024.87 961.908 1026.06 960.565 Q1028.3 958.042 1029.18 956.306 Q1030.08 954.547 1030.08 952.857 Q1030.08 950.102 1028.14 948.366 Q1026.22 946.63 1023.12 946.63 Q1020.92 946.63 1018.46 947.394 Q1016.03 948.158 1013.25 949.709 L1013.25 944.987 Q1016.08 943.852 1018.53 943.274 Q1020.99 942.695 1023.02 942.695 Q1028.39 942.695 1031.59 945.38 Q1034.78 948.065 1034.78 952.556 Q1034.78 954.686 1033.97 956.607 Q1033.18 958.505 1031.08 961.098 Q1030.5 961.769 1027.4 964.986 Q1024.3 968.181 1018.65 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1054.78 946.399 Q1051.17 946.399 1049.34 949.963 Q1047.54 953.505 1047.54 960.635 Q1047.54 967.741 1049.34 971.306 Q1051.17 974.847 1054.78 974.847 Q1058.42 974.847 1060.22 971.306 Q1062.05 967.741 1062.05 960.635 Q1062.05 953.505 1060.22 949.963 Q1058.42 946.399 1054.78 946.399 M1054.78 942.695 Q1060.59 942.695 1063.65 947.301 Q1066.73 951.885 1066.73 960.635 Q1066.73 969.361 1063.65 973.968 Q1060.59 978.551 1054.78 978.551 Q1048.97 978.551 1045.89 973.968 Q1042.84 969.361 1042.84 960.635 Q1042.84 951.885 1045.89 947.301 Q1048.97 942.695 1054.78 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1103.91 973.945 L1120.23 973.945 L1120.23 977.88 L1098.29 977.88 L1098.29 973.945 Q1100.95 971.19 1105.53 966.56 Q1110.14 961.908 1111.32 960.565 Q1113.57 958.042 1114.45 956.306 Q1115.35 954.547 1115.35 952.857 Q1115.35 950.102 1113.4 948.366 Q1111.48 946.63 1108.38 946.63 Q1106.18 946.63 1103.73 947.394 Q1101.3 948.158 1098.52 949.709 L1098.52 944.987 Q1101.34 943.852 1103.8 943.274 Q1106.25 942.695 1108.29 942.695 Q1113.66 942.695 1116.85 945.38 Q1120.05 948.065 1120.05 952.556 Q1120.05 954.686 1119.24 956.607 Q1118.45 958.505 1116.34 961.098 Q1115.77 961.769 1112.66 964.986 Q1109.56 968.181 1103.91 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1134.08 973.945 L1150.39 973.945 L1150.39 977.88 L1128.45 977.88 L1128.45 973.945 Q1131.11 971.19 1135.7 966.56 Q1140.3 961.908 1141.48 960.565 Q1143.73 958.042 1144.61 956.306 Q1145.51 954.547 1145.51 952.857 Q1145.51 950.102 1143.57 948.366 Q1141.64 946.63 1138.54 946.63 Q1136.34 946.63 1133.89 947.394 Q1131.46 948.158 1128.68 949.709 L1128.68 944.987 Q1131.51 943.852 1133.96 943.274 Q1136.41 942.695 1138.45 942.695 Q1143.82 942.695 1147.02 945.38 Q1150.21 948.065 1150.21 952.556 Q1150.21 954.686 1149.4 956.607 Q1148.61 958.505 1146.51 961.098 Q1145.93 961.769 1142.83 964.986 Q1139.72 968.181 1134.08 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1187.34 973.945 L1203.66 973.945 L1203.66 977.88 L1181.71 977.88 L1181.71 973.945 Q1184.38 971.19 1188.96 966.56 Q1193.57 961.908 1194.75 960.565 Q1196.99 958.042 1197.87 956.306 Q1198.77 954.547 1198.77 952.857 Q1198.77 950.102 1196.83 948.366 Q1194.91 946.63 1191.81 946.63 Q1189.61 946.63 1187.15 947.394 Q1184.72 948.158 1181.95 949.709 L1181.95 944.987 Q1184.77 943.852 1187.22 943.274 Q1189.68 942.695 1191.71 942.695 Q1197.08 942.695 1200.28 945.38 Q1203.47 948.065 1203.47 952.556 Q1203.47 954.686 1202.66 956.607 Q1201.88 958.505 1199.77 961.098 Q1199.19 961.769 1196.09 964.986 Q1192.99 968.181 1187.34 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1226.32 947.394 L1214.52 965.843 L1226.32 965.843 L1226.32 947.394 M1225.09 943.32 L1230.97 943.32 L1230.97 965.843 L1235.9 965.843 L1235.9 969.732 L1230.97 969.732 L1230.97 977.88 L1226.32 977.88 L1226.32 969.732 L1210.72 969.732 L1210.72 965.218 L1225.09 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1271.97 973.945 L1288.29 973.945 L1288.29 977.88 L1266.34 977.88 L1266.34 973.945 Q1269.01 971.19 1273.59 966.56 Q1278.2 961.908 1279.38 960.565 Q1281.62 958.042 1282.5 956.306 Q1283.4 954.547 1283.4 952.857 Q1283.4 950.102 1281.46 948.366 Q1279.54 946.63 1276.44 946.63 Q1274.24 946.63 1271.78 947.394 Q1269.35 948.158 1266.58 949.709 L1266.58 944.987 Q1269.4 943.852 1271.85 943.274 Q1274.31 942.695 1276.34 942.695 Q1281.71 942.695 1284.91 945.38 Q1288.1 948.065 1288.1 952.556 Q1288.1 954.686 1287.29 956.607 Q1286.51 958.505 1284.4 961.098 Q1283.82 961.769 1280.72 964.986 Q1277.62 968.181 1271.97 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1308.68 958.736 Q1305.53 958.736 1303.68 960.889 Q1301.85 963.042 1301.85 966.792 Q1301.85 970.519 1303.68 972.695 Q1305.53 974.847 1308.68 974.847 Q1311.83 974.847 1313.66 972.695 Q1315.51 970.519 1315.51 966.792 Q1315.51 963.042 1313.66 960.889 Q1311.83 958.736 1308.68 958.736 M1317.96 944.084 L1317.96 948.343 Q1316.2 947.51 1314.4 947.07 Q1312.62 946.63 1310.86 946.63 Q1306.23 946.63 1303.77 949.755 Q1301.34 952.88 1301 959.199 Q1302.36 957.186 1304.42 956.121 Q1306.48 955.033 1308.96 955.033 Q1314.17 955.033 1317.18 958.204 Q1320.21 961.352 1320.21 966.792 Q1320.21 972.116 1317.06 975.334 Q1313.91 978.551 1308.68 978.551 Q1302.69 978.551 1299.51 973.968 Q1296.34 969.361 1296.34 960.635 Q1296.34 952.44 1300.23 947.579 Q1304.12 942.695 1310.67 942.695 Q1312.43 942.695 1314.21 943.042 Q1316.02 943.389 1317.96 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1356.56 973.945 L1372.88 973.945 L1372.88 977.88 L1350.94 977.88 L1350.94 973.945 Q1353.6 971.19 1358.18 966.56 Q1362.79 961.908 1363.97 960.565 Q1366.22 958.042 1367.1 956.306 Q1368 954.547 1368 952.857 Q1368 950.102 1366.05 948.366 Q1364.13 946.63 1361.03 946.63 Q1358.83 946.63 1356.38 947.394 Q1353.95 948.158 1351.17 949.709 L1351.17 944.987 Q1353.99 943.852 1356.45 943.274 Q1358.9 942.695 1360.94 942.695 Q1366.31 942.695 1369.5 945.38 Q1372.7 948.065 1372.7 952.556 Q1372.7 954.686 1371.89 956.607 Q1371.1 958.505 1368.99 961.098 Q1368.42 961.769 1365.31 964.986 Q1362.21 968.181 1356.56 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1392.7 961.468 Q1389.36 961.468 1387.44 963.25 Q1385.54 965.033 1385.54 968.158 Q1385.54 971.283 1387.44 973.065 Q1389.36 974.847 1392.7 974.847 Q1396.03 974.847 1397.95 973.065 Q1399.87 971.26 1399.87 968.158 Q1399.87 965.033 1397.95 963.25 Q1396.05 961.468 1392.7 961.468 M1388.02 959.477 Q1385.01 958.736 1383.32 956.676 Q1381.66 954.616 1381.66 951.653 Q1381.66 947.51 1384.6 945.102 Q1387.56 942.695 1392.7 942.695 Q1397.86 942.695 1400.8 945.102 Q1403.74 947.51 1403.74 951.653 Q1403.74 954.616 1402.05 956.676 Q1400.38 958.736 1397.4 959.477 Q1400.78 960.264 1402.65 962.556 Q1404.55 964.848 1404.55 968.158 Q1404.55 973.181 1401.47 975.866 Q1398.42 978.551 1392.7 978.551 Q1386.98 978.551 1383.9 975.866 Q1380.85 973.181 1380.85 968.158 Q1380.85 964.848 1382.74 962.556 Q1384.64 960.264 1388.02 959.477 M1386.31 952.093 Q1386.31 954.778 1387.98 956.283 Q1389.67 957.787 1392.7 957.787 Q1395.71 957.787 1397.4 956.283 Q1399.11 954.778 1399.11 952.093 Q1399.11 949.408 1397.4 947.903 Q1395.71 946.399 1392.7 946.399 Q1389.67 946.399 1387.98 947.903 Q1386.31 949.408 1386.31 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1451.05 959.246 Q1454.41 959.963 1456.29 962.232 Q1458.18 964.5 1458.18 967.834 Q1458.18 972.949 1454.66 975.75 Q1451.15 978.551 1444.66 978.551 Q1442.49 978.551 1440.17 978.111 Q1437.88 977.695 1435.43 976.838 L1435.43 972.324 Q1437.37 973.459 1439.69 974.037 Q1442 974.616 1444.53 974.616 Q1448.92 974.616 1451.22 972.88 Q1453.53 971.144 1453.53 967.834 Q1453.53 964.778 1451.38 963.065 Q1449.25 961.329 1445.43 961.329 L1441.4 961.329 L1441.4 957.486 L1445.61 957.486 Q1449.06 957.486 1450.89 956.121 Q1452.72 954.732 1452.72 952.139 Q1452.72 949.477 1450.82 948.065 Q1448.95 946.63 1445.43 946.63 Q1443.51 946.63 1441.31 947.047 Q1439.11 947.463 1436.47 948.343 L1436.47 944.176 Q1439.13 943.436 1441.45 943.065 Q1443.79 942.695 1445.85 942.695 Q1451.17 942.695 1454.27 945.125 Q1457.37 947.533 1457.37 951.653 Q1457.37 954.524 1455.73 956.514 Q1454.09 958.482 1451.05 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1477.05 946.399 Q1473.44 946.399 1471.61 949.963 Q1469.8 953.505 1469.8 960.635 Q1469.8 967.741 1471.61 971.306 Q1473.44 974.847 1477.05 974.847 Q1480.68 974.847 1482.49 971.306 Q1484.32 967.741 1484.32 960.635 Q1484.32 953.505 1482.49 949.963 Q1480.68 946.399 1477.05 946.399 M1477.05 942.695 Q1482.86 942.695 1485.91 947.301 Q1488.99 951.885 1488.99 960.635 Q1488.99 969.361 1485.91 973.968 Q1482.86 978.551 1477.05 978.551 Q1471.24 978.551 1468.16 973.968 Q1465.1 969.361 1465.1 960.635 Q1465.1 951.885 1468.16 947.301 Q1471.24 942.695 1477.05 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1500.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1500.22,832.378 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1500.22,753.948 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1500.22,675.518 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1500.22,597.088 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1500.22,518.658 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1500.22,440.227 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1500.22,361.797 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1500.22,283.367 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1500.22,204.937 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1500.22,126.507 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 173.307,910.808 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 173.307,832.378 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 173.307,753.948 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 173.307,675.518 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 173.307,597.088 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 173.307,518.658 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 173.307,440.227 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 173.307,361.797 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 173.307,283.367 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 173.307,204.937 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 173.307,126.507 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M511.318 31.5855 Q513.199 32.222 514.964 34.3054 Q516.758 36.3887 518.552 40.0345 L524.483 51.84 L518.204 51.84 L512.678 40.7579 Q510.537 36.4176 508.511 34.9998 Q506.515 33.582 503.042 33.582 L496.677 33.582 L496.677 51.84 L490.832 51.84 L490.832 8.64 L504.026 8.64 Q511.434 8.64 515.079 11.736 Q518.725 14.8321 518.725 21.0821 Q518.725 25.1619 516.815 27.8529 Q514.935 30.5438 511.318 31.5855 M496.677 13.4432 L496.677 28.7788 L504.026 28.7788 Q508.251 28.7788 510.392 26.8401 Q512.562 24.8726 512.562 21.0821 Q512.562 17.2916 510.392 15.3819 Q508.251 13.4432 504.026 13.4432 L496.677 13.4432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M532.006 8.64 L537.851 8.64 L537.851 26.898 L557.238 8.64 L564.761 8.64 L543.32 28.7788 L566.294 51.84 L558.598 51.84 L537.851 31.0357 L537.851 51.84 L532.006 51.84 L532.006 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M587.446 13.7326 L572.689 36.7938 L587.446 36.7938 L587.446 13.7326 M585.912 8.64 L593.262 8.64 L593.262 36.7938 L599.425 36.7938 L599.425 41.6549 L593.262 41.6549 L593.262 51.84 L587.446 51.84 L587.446 41.6549 L567.944 41.6549 L567.944 36.0125 L585.912 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M624.078 19.4328 L629.402 19.4328 L636.057 44.722 L642.683 19.4328 L648.962 19.4328 L655.617 44.722 L662.243 19.4328 L667.567 19.4328 L659.089 51.84 L652.81 51.84 L645.837 25.2776 L638.834 51.84 L632.556 51.84 L624.078 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M675.64 19.4328 L680.964 19.4328 L680.964 51.84 L675.64 51.84 L675.64 19.4328 M675.64 6.81709 L680.964 6.81709 L680.964 13.559 L675.64 13.559 L675.64 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M697.37 10.2314 L697.37 19.4328 L708.336 19.4328 L708.336 23.5705 L697.37 23.5705 L697.37 41.163 Q697.37 45.1271 698.441 46.2555 Q699.54 47.384 702.868 47.384 L708.336 47.384 L708.336 51.84 L702.868 51.84 Q696.705 51.84 694.361 49.5541 Q692.017 47.2393 692.017 41.163 L692.017 23.5705 L688.111 23.5705 L688.111 19.4328 L692.017 19.4328 L692.017 10.2314 L697.37 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M742.277 32.2799 L742.277 51.84 L736.953 51.84 L736.953 32.4535 Q736.953 27.8529 735.159 25.567 Q733.365 23.2811 729.777 23.2811 Q725.466 23.2811 722.978 26.03 Q720.489 28.7788 720.489 33.5241 L720.489 51.84 L715.136 51.84 L715.136 6.81709 L720.489 6.81709 L720.489 24.4675 Q722.399 21.545 724.974 20.0983 Q727.578 18.6515 730.964 18.6515 Q736.548 18.6515 739.413 22.1237 Q742.277 25.567 742.277 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M788.139 6.81709 L788.139 11.2442 L783.047 11.2442 Q780.182 11.2442 779.054 12.4016 Q777.954 13.559 777.954 16.5682 L777.954 19.4328 L786.721 19.4328 L786.721 23.5705 L777.954 23.5705 L777.954 51.84 L772.601 51.84 L772.601 23.5705 L767.509 23.5705 L767.509 19.4328 L772.601 19.4328 L772.601 17.1758 Q772.601 11.765 775.118 9.30551 Q777.636 6.81709 783.105 6.81709 L788.139 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M792.595 19.4328 L797.919 19.4328 L797.919 51.84 L792.595 51.84 L792.595 19.4328 M792.595 6.81709 L797.919 6.81709 L797.919 13.559 L792.595 13.559 L792.595 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M835.998 19.4328 L824.279 35.2024 L836.605 51.84 L830.327 51.84 L820.894 39.1086 L811.461 51.84 L805.182 51.84 L817.769 34.8841 L806.253 19.4328 L812.531 19.4328 L821.125 30.9778 L829.719 19.4328 L835.998 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M870.025 34.3054 L870.025 36.9095 L845.546 36.9095 Q845.894 42.4072 848.845 45.3007 Q851.825 48.1653 857.12 48.1653 Q860.187 48.1653 863.052 47.4129 Q865.946 46.6606 868.781 45.156 L868.781 50.1907 Q865.917 51.406 862.907 52.0425 Q859.898 52.6791 856.802 52.6791 Q849.047 52.6791 844.505 48.1653 Q839.991 43.6514 839.991 35.9547 Q839.991 27.9975 844.273 23.339 Q848.585 18.6515 855.876 18.6515 Q862.415 18.6515 866.206 22.876 Q870.025 27.0716 870.025 34.3054 M864.701 32.7429 Q864.643 28.3737 862.242 25.7695 Q859.869 23.1654 855.934 23.1654 Q851.478 23.1654 848.787 25.6827 Q846.125 28.2001 845.72 32.7718 L864.701 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M900.089 24.3517 L900.089 6.81709 L905.413 6.81709 L905.413 51.84 L900.089 51.84 L900.089 46.9789 Q898.411 49.8724 895.835 51.2902 Q893.289 52.6791 889.701 52.6791 Q883.827 52.6791 880.124 47.9916 Q876.449 43.3042 876.449 35.6653 Q876.449 28.0265 880.124 23.339 Q883.827 18.6515 889.701 18.6515 Q893.289 18.6515 895.835 20.0693 Q898.411 21.4582 900.089 24.3517 M881.947 35.6653 Q881.947 41.5391 884.348 44.8956 Q886.779 48.2231 891.003 48.2231 Q895.228 48.2231 897.658 44.8956 Q900.089 41.5391 900.089 35.6653 Q900.089 29.7915 897.658 26.464 Q895.228 23.1075 891.003 23.1075 Q886.779 23.1075 884.348 26.464 Q881.947 29.7915 881.947 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M956.541 24.3517 L956.541 6.81709 L961.865 6.81709 L961.865 51.84 L956.541 51.84 L956.541 46.9789 Q954.863 49.8724 952.288 51.2902 Q949.741 52.6791 946.153 52.6791 Q940.28 52.6791 936.576 47.9916 Q932.901 43.3042 932.901 35.6653 Q932.901 28.0265 936.576 23.339 Q940.28 18.6515 946.153 18.6515 Q949.741 18.6515 952.288 20.0693 Q954.863 21.4582 956.541 24.3517 M938.399 35.6653 Q938.399 41.5391 940.8 44.8956 Q943.231 48.2231 947.456 48.2231 Q951.68 48.2231 954.111 44.8956 Q956.541 41.5391 956.541 35.6653 Q956.541 29.7915 954.111 26.464 Q951.68 23.1075 947.456 23.1075 Q943.231 23.1075 940.8 26.464 Q938.399 29.7915 938.399 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M978.098 10.2314 L978.098 19.4328 L989.064 19.4328 L989.064 23.5705 L978.098 23.5705 L978.098 41.163 Q978.098 45.1271 979.168 46.2555 Q980.268 47.384 983.595 47.384 L989.064 47.384 L989.064 51.84 L983.595 51.84 Q977.432 51.84 975.088 49.5541 Q972.745 47.2393 972.745 41.163 L972.745 23.5705 L968.839 23.5705 L968.839 19.4328 L972.745 19.4328 L972.745 10.2314 L978.098 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1015.6 24.9304 L1052.69 24.9304 L1052.69 29.7915 L1015.6 29.7915 L1015.6 24.9304 M1015.6 36.7359 L1052.69 36.7359 L1052.69 41.6549 L1015.6 41.6549 L1015.6 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1096.64 12.4884 Q1092.13 12.4884 1089.84 16.9444 Q1087.59 21.3714 1087.59 30.2834 Q1087.59 39.1665 1089.84 43.6225 Q1092.13 48.0495 1096.64 48.0495 Q1101.19 48.0495 1103.44 43.6225 Q1105.73 39.1665 1105.73 30.2834 Q1105.73 21.3714 1103.44 16.9444 Q1101.19 12.4884 1096.64 12.4884 M1096.64 7.85875 Q1103.91 7.85875 1107.73 13.6168 Q1111.58 19.346 1111.58 30.2834 Q1111.58 41.1919 1107.73 46.95 Q1103.91 52.6791 1096.64 52.6791 Q1089.38 52.6791 1085.53 46.95 Q1081.71 41.1919 1081.71 30.2834 Q1081.71 19.346 1085.53 13.6168 Q1089.38 7.85875 1096.64 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1121.85 44.4905 L1127.95 44.4905 L1127.95 51.84 L1121.85 51.84 L1121.85 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1141.7 46.921 L1151.24 46.921 L1151.24 13.964 L1140.86 16.0474 L1140.86 10.7233 L1151.19 8.64 L1157.03 8.64 L1157.03 46.921 L1166.58 46.921 L1166.58 51.84 L1141.7 51.84 L1141.7 46.921 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip732)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 195.201,597.088 197.735,567.822 200.269,539.548 202.803,513.106 205.337,489.07 207.871,467.724 210.405,449.131 212.939,433.157 215.473,419.586 218.007,408.145 \n 220.541,398.557 223.075,390.558 225.609,383.909 228.143,378.401 230.677,373.852 233.211,370.112 235.745,367.051 238.28,364.566 240.814,362.569 243.348,360.991 \n 245.882,359.777 248.416,358.883 250.95,358.279 253.484,357.942 256.018,357.863 258.552,358.036 261.086,358.469 263.62,359.178 266.154,360.186 268.688,361.529 \n 271.222,363.255 273.756,365.423 276.29,368.11 278.824,371.408 281.358,375.431 283.892,380.316 286.426,386.223 288.96,393.345 291.494,401.902 294.028,412.143 \n 296.562,424.339 299.096,438.769 301.63,455.688 304.164,475.292 306.698,497.651 309.232,522.621 311.766,549.826 314.3,578.572 316.834,607.957 319.368,636.963 \n 321.902,664.647 324.436,690.247 326.97,713.31 329.504,733.631 332.038,751.235 334.572,766.29 337.106,779.04 339.64,789.763 342.174,798.732 344.708,806.203 \n 347.242,812.404 349.776,817.536 352.31,821.765 354.844,825.235 357.378,828.065 359.912,830.353 362.446,832.179 364.981,833.606 367.515,834.684 370.049,835.451 \n 372.583,835.934 375.117,836.151 377.651,836.108 380.185,835.804 382.719,835.23 385.253,834.363 387.787,833.174 390.321,831.622 392.855,829.651 395.389,827.193 \n 397.923,824.162 400.457,820.456 402.991,815.945 405.525,810.479 408.059,803.881 410.593,795.94 413.127,786.42 415.661,775.056 418.195,761.573 420.729,745.697 \n 423.263,727.208 425.797,705.969 428.331,682.034 430.865,655.677 433.399,627.461 435.933,598.219 438.467,568.937 441.001,540.611 443.535,514.088 446.069,489.955 \n 448.603,468.505 451.137,449.81 453.671,433.742 456.205,420.086 458.739,408.571 461.273,398.921 463.807,390.87 466.341,384.179 468.875,378.637 471.409,374.062 \n 473.943,370.303 476.477,367.23 479.011,364.738 481.545,362.742 484.079,361.169 486.613,359.967 489.147,359.092 491.682,358.514 494.216,358.212 496.75,358.176 \n 499.284,358.405 501.818,358.907 504.352,359.698 506.886,360.808 509.42,362.275 511.954,364.151 514.488,366.5 517.022,369.405 519.556,372.967 522.09,377.306 \n 524.624,382.57 527.158,388.929 529.692,396.589 532.226,405.78 534.76,416.762 537.294,429.81 539.828,445.2 542.362,463.166 544.896,483.864 547.43,507.291 \n 549.964,533.207 552.498,561.12 555.032,590.235 557.566,619.59 560.1,648.17 562.634,675.101 565.168,699.728 567.702,721.709 570.236,740.935 572.77,757.497 \n 575.304,771.601 577.838,783.509 580.372,793.498 582.906,801.838 585.44,808.774 587.974,814.521 590.508,819.268 593.042,823.17 595.576,826.361 598.11,828.952 \n 600.644,831.03 603.178,832.671 605.712,833.929 608.246,834.85 610.78,835.466 613.314,835.799 615.848,835.86 618.383,835.652 620.917,835.167 623.451,834.388 \n 625.985,833.288 628.519,831.828 631.053,829.957 633.587,827.609 636.121,824.704 638.655,821.139 641.189,816.795 643.723,811.525 646.257,805.154 648.791,797.482 \n 651.325,788.274 653.859,777.274 656.393,764.203 658.927,748.789 661.461,730.792 663.995,710.069 666.529,686.613 669.063,660.671 671.597,632.746 674.131,603.622 \n 676.665,574.271 679.199,545.706 681.733,518.8 684.267,494.198 686.801,472.251 689.335,453.053 691.869,436.521 694.403,422.443 696.937,410.56 699.471,400.591 \n 702.005,392.27 704.539,385.35 707.073,379.618 709.607,374.886 712.141,370.996 714.675,367.818 717.209,365.24 719.743,363.175 722.277,361.549 724.811,360.307 \n 727.345,359.404 729.879,358.809 732.413,358.501 734.947,358.468 737.481,358.711 740.015,359.237 742.549,360.064 745.084,361.223 747.618,362.754 750.152,364.709 \n 752.686,367.159 755.22,370.187 757.754,373.898 760.288,378.418 762.822,383.899 765.356,390.521 767.89,398.49 770.424,408.048 772.958,419.455 775.492,432.992 \n 778.026,448.923 780.56,467.481 783.094,488.779 785.628,512.777 788.162,539.188 790.696,567.431 793.23,596.685 795.764,625.952 798.298,654.238 800.832,680.701 \n 803.366,704.774 805.9,726.145 808.434,744.774 810.968,760.774 813.502,774.37 816.036,785.83 818.57,795.433 821.104,803.44 823.638,810.092 826.172,815.599 \n 828.706,820.139 831.24,823.866 833.774,826.905 836.308,829.362 838.842,831.321 841.376,832.852 843.91,834.008 846.444,834.829 848.978,835.345 851.512,835.573 \n 854.046,835.521 856.58,835.188 859.114,834.561 861.648,833.62 864.182,832.33 866.716,830.647 869.25,828.512 871.785,825.849 874.319,822.568 876.853,818.555 \n 879.387,813.675 881.921,807.766 884.455,800.635 886.989,792.065 889.523,781.804 892.057,769.582 894.591,755.122 897.125,738.167 899.659,718.526 902.193,696.13 \n 904.727,671.127 907.261,643.898 909.795,615.141 912.329,585.761 914.863,556.775 917.397,529.124 919.931,503.567 922.465,480.552 924.999,460.279 927.533,442.723 \n 930.067,427.712 932.601,415.004 935.135,404.319 937.669,395.386 940.203,387.948 942.737,381.779 945.271,376.681 947.805,372.487 950.339,369.054 952.873,366.264 \n 955.407,364.023 957.941,362.251 960.475,360.887 963.009,359.882 965.543,359.202 968.077,358.824 970.611,358.732 973.145,358.924 975.679,359.407 978.213,360.198 \n 980.747,361.325 983.281,362.827 985.815,364.757 988.349,367.182 990.883,370.186 993.417,373.874 995.951,378.37 998.486,383.826 1001.02,390.418 1003.55,398.357 \n 1006.09,407.879 1008.62,419.247 1011.16,432.738 1013.69,448.623 1016.22,467.128 1018.76,488.371 1021.29,512.324 1023.83,538.687 1026.36,566.904 1028.89,596.145 \n 1031.43,625.419 1033.96,653.725 1036.5,680.231 1039.03,704.344 1041.56,725.765 1044.1,744.443 1046.63,760.486 1049.17,774.122 1051.7,785.615 1054.23,795.245 \n 1056.77,803.275 1059.3,809.945 1061.84,815.464 1064.37,820.013 1066.9,823.743 1069.44,826.782 1071.97,829.235 1074.51,831.186 1077.04,832.703 1079.57,833.84 \n 1082.11,834.636 1084.64,835.12 1087.18,835.309 1089.71,835.208 1092.24,834.816 1094.78,834.116 1097.31,833.087 1099.85,831.69 1102.38,829.877 1104.91,827.585 \n 1107.45,824.734 1109.98,821.226 1112.52,816.941 1115.05,811.734 1117.58,805.434 1120.12,797.841 1122.65,788.723 1125.19,777.824 1127.72,764.868 1130.25,749.58 \n 1132.79,731.724 1135.32,711.136 1137.86,687.822 1140.39,661.996 1142.92,634.155 1145.46,605.077 1147.99,575.72 1150.53,547.095 1153.06,520.096 1155.59,495.376 \n 1158.13,473.293 1160.66,453.969 1163.2,437.311 1165.73,423.124 1168.26,411.144 1170.8,401.094 1173.33,392.706 1175.87,385.733 1178.4,379.959 1180.93,375.196 \n 1183.47,371.287 1186,368.098 1188.54,365.521 1191.07,363.465 1193.61,361.859 1196.14,360.647 1198.67,359.786 1201.21,359.247 1203.74,359.01 1206.28,359.067 \n 1208.81,359.42 1211.34,360.082 1213.88,361.075 1216.41,362.434 1218.95,364.207 1221.48,366.457 1224.01,369.261 1226.55,372.716 1229.08,376.94 1231.62,382.076 \n 1234.15,388.293 1236.68,395.789 1239.22,404.794 1241.75,415.563 1244.29,428.37 1246.82,443.488 1249.35,461.168 1251.89,481.564 1254.42,504.698 1256.96,530.368 \n 1259.49,558.087 1262.02,587.113 1264.56,616.483 1267.09,645.185 1269.63,672.313 1272.16,697.208 1274.69,719.467 1277.23,738.98 1279.76,755.81 1282.3,770.155 \n 1284.83,782.274 1287.36,792.444 1289.9,800.935 1292.43,807.993 1294.97,813.84 1297.5,818.661 1300.03,822.619 1302.57,825.847 1305.1,828.457 1307.64,830.537 \n 1310.17,832.162 1312.7,833.387 1315.24,834.256 1317.77,834.798 1320.31,835.034 1322.84,834.972 1325.37,834.609 1327.91,833.932 1330.44,832.918 1332.98,831.531 \n 1335.51,829.722 1338.04,827.429 1340.58,824.572 1343.11,821.051 1345.65,816.748 1348.18,811.516 1350.71,805.186 1353.25,797.553 1355.78,788.387 1358.32,777.431 \n 1360.85,764.41 1363.38,749.047 1365.92,731.108 1368.45,710.439 1370.99,687.04 1373.52,661.149 1376.05,633.257 1378.59,604.157 1381.12,574.809 1383.66,546.229 \n 1386.19,519.291 1388.72,494.654 1391.26,472.66 1393.79,453.421 1396.33,436.848 1398.86,422.736 1401.39,410.824 1403.93,400.833 1406.46,392.497 1409,385.57 \n 1411.53,379.837 1414.06,375.111 1416.6,371.235 1419.13,368.079 1421.67,365.532 1424.2,363.508 1426.73,361.935 1429.27,360.759 1431.8,359.939 1434.34,359.445 \n 1436.87,359.26 1439.4,359.378 1441.94,359.802 1444.47,360.549 1447.01,361.643 1449.54,363.125 1452.08,365.043 1454.61,367.468 1457.14,370.482 1459.68,374.188 \n 1462.21,378.715 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 195.201,597.088 197.735,567.816 200.269,539.54 202.803,513.095 205.337,489.056 207.871,467.714 210.405,449.117 212.939,433.145 215.473,419.572 218.007,408.13 \n 220.541,398.541 223.075,390.54 225.609,383.889 228.143,378.377 230.677,373.825 233.211,370.08 235.745,367.014 238.28,364.522 240.814,362.517 243.348,360.929 \n 245.882,359.702 248.416,358.794 250.95,358.172 253.484,357.814 256.018,357.709 258.552,357.851 261.086,358.246 263.62,358.909 266.154,359.862 268.688,361.139 \n 271.222,362.784 273.756,364.857 276.29,367.427 278.824,370.586 281.358,374.442 283.892,379.125 286.426,384.793 288.96,391.629 291.494,399.848 294.028,409.694 \n 296.562,421.432 299.096,435.342 301.63,451.689 304.164,470.685 306.698,492.433 309.232,516.852 311.766,543.609 314.3,572.09 316.834,601.426 319.368,630.612 \n 321.902,658.665 324.436,684.784 326.97,708.438 329.504,729.373 332.038,747.572 334.572,763.175 337.106,776.416 339.64,787.568 342.174,796.907 344.708,804.695 \n 347.242,811.166 349.776,816.525 352.31,820.95 354.844,824.587 357.378,827.562 359.912,829.978 362.446,831.917 364.981,833.449 367.515,834.626 370.049,835.49 \n 372.583,836.072 375.117,836.392 377.651,836.461 380.185,836.282 382.719,835.848 385.253,835.145 387.787,834.146 390.321,832.818 392.855,831.114 395.389,828.973 \n 397.923,826.322 400.457,823.067 402.991,819.099 405.525,814.281 408.059,808.453 410.593,801.427 413.127,792.984 415.661,782.877 418.195,770.836 420.729,756.583 \n 423.263,739.857 425.797,720.458 428.331,698.306 430.865,673.515 433.399,646.458 435.933,617.792 438.467,588.413 441.001,559.336 443.535,531.523 446.069,505.741 \n 448.603,482.478 451.137,461.95 453.671,444.145 456.205,428.906 458.739,415.991 461.273,405.123 463.807,396.029 466.341,388.449 468.875,382.154 471.409,376.943 \n 473.943,372.643 476.477,369.111 479.011,366.224 481.545,363.884 484.079,362.008 486.613,360.532 489.147,359.403 491.682,358.582 494.216,358.04 496.75,357.757 \n 499.284,357.725 501.818,357.941 504.352,358.413 506.886,359.158 509.42,360.203 511.954,361.583 514.488,363.348 517.022,365.559 519.556,368.293 522.09,371.645 \n 524.624,375.73 527.158,380.686 529.692,386.677 532.226,393.898 534.76,402.57 537.294,412.945 539.828,425.294 542.362,439.896 544.896,457.006 547.43,476.809 \n 549.964,499.363 552.498,524.518 555.032,551.86 557.566,580.692 560.1,610.091 562.634,639.039 565.168,666.594 567.702,692.029 570.236,714.896 572.77,735.018 \n 575.304,752.432 577.838,767.312 580.372,779.908 582.906,790.497 585.44,799.353 587.974,806.729 590.508,812.853 593.042,817.92 595.576,822.098 598.11,825.528 \n 600.644,828.328 603.178,830.596 605.712,832.408 608.246,833.831 610.78,834.912 613.314,835.69 615.848,836.193 618.383,836.438 620.917,836.434 623.451,836.181 \n 625.985,835.67 628.519,834.882 631.053,833.791 633.587,832.357 636.121,830.531 638.655,828.248 641.189,825.43 643.723,821.977 646.257,817.774 648.791,812.676 \n 651.325,806.516 653.859,799.096 656.393,790.19 658.927,779.541 661.461,766.877 663.995,751.92 666.529,734.423 669.063,714.214 671.597,691.262 674.131,665.751 \n 676.665,638.139 679.199,609.162 681.733,579.765 684.267,550.967 686.801,523.685 689.335,498.607 691.869,476.14 694.403,456.423 696.937,439.397 699.471,424.87 \n 702.005,412.587 704.539,402.27 707.073,393.648 709.607,386.47 712.141,380.514 714.675,375.588 717.209,371.528 719.743,368.197 722.277,365.481 724.811,363.286 \n 727.345,361.534 729.879,360.165 732.413,359.13 734.947,358.394 737.481,357.93 740.015,357.722 742.549,357.762 745.084,358.053 747.618,358.603 750.152,359.434 \n 752.686,360.573 755.22,362.061 757.754,363.95 760.288,366.306 762.822,369.212 765.356,372.767 767.89,377.093 770.424,382.336 772.958,388.668 775.492,396.292 \n 778.026,405.439 780.56,416.367 783.094,429.352 785.628,444.669 788.162,462.557 790.696,483.173 793.23,506.52 795.764,532.376 798.298,560.242 800.832,589.344 \n 803.366,618.716 805.9,647.344 808.434,674.338 810.968,699.049 813.502,721.114 816.036,740.427 818.57,757.071 821.104,771.25 823.638,783.225 826.172,793.276 \n 828.706,801.67 831.24,808.655 833.774,814.448 836.308,819.237 838.842,823.181 841.376,826.414 843.91,829.048 846.444,831.174 848.978,832.866 851.512,834.183 \n 854.046,835.171 856.58,835.866 859.114,836.292 861.648,836.463 864.182,836.386 866.716,836.058 869.25,835.468 871.785,834.594 874.319,833.406 876.853,831.862 \n 879.387,829.909 881.921,827.477 884.455,824.483 886.989,820.822 889.523,816.371 892.057,810.979 894.591,804.47 897.125,796.637 899.659,787.244 902.193,776.03 \n 904.727,762.719 907.261,747.037 909.795,728.753 912.329,707.73 914.863,683.993 917.397,657.803 919.931,629.7 922.465,600.495 924.999,571.17 927.533,542.732 \n 930.067,516.04 932.601,491.703 935.135,470.042 937.669,451.132 940.203,434.866 942.737,421.029 945.271,409.354 947.805,399.565 950.339,391.393 952.873,384.596 \n 955.407,378.963 957.941,374.308 960.475,370.476 963.009,367.337 965.543,364.784 968.077,362.726 970.611,361.093 973.145,359.827 975.679,358.884 978.213,358.23 \n 980.747,357.843 983.281,357.708 985.815,357.822 988.349,358.187 990.883,358.818 993.417,359.736 995.951,360.973 998.486,362.573 1001.02,364.593 1003.55,367.102 \n 1006.09,370.187 1008.62,373.956 1011.16,378.536 1013.69,384.081 1016.22,390.771 1018.76,398.819 1021.29,408.463 1023.83,419.968 1026.36,433.613 1028.89,449.665 \n 1031.43,468.347 1033.96,489.776 1036.5,513.897 1039.03,540.411 1041.56,568.732 1044.1,598.02 1046.63,627.275 1049.17,655.505 1051.7,681.881 1054.23,705.837 \n 1056.77,727.092 1059.3,745.603 1061.84,761.495 1064.37,774.996 1066.9,786.375 1069.44,795.911 1071.97,803.865 1074.51,810.478 1077.04,815.956 1079.57,820.481 \n 1082.11,824.202 1084.64,827.248 1087.18,829.724 1089.71,831.715 1092.24,833.291 1094.78,834.507 1097.31,835.405 1099.85,836.019 1102.38,836.368 1104.91,836.466 \n 1107.45,836.316 1109.98,835.912 1112.52,835.241 1115.05,834.278 1117.58,832.99 1120.12,831.332 1122.65,829.245 1125.19,826.657 1127.72,823.478 1130.25,819.599 \n 1132.79,814.887 1135.32,809.185 1137.86,802.308 1140.39,794.041 1142.92,784.14 1145.46,772.337 1147.99,758.354 1150.53,741.926 1153.06,722.844 1155.59,701.009 \n 1158.13,676.51 1160.66,649.687 1163.2,621.164 1165.73,591.817 1168.26,562.653 1170.8,534.65 1173.33,508.602 1175.87,485.032 1178.4,464.184 1180.93,446.07 \n 1183.47,430.546 1186,417.375 1188.54,406.285 1191.07,396.999 1193.61,389.256 1196.14,382.824 1198.67,377.496 1201.21,373.099 1203.74,369.484 1206.28,366.528 \n 1208.81,364.129 1211.34,362.203 1213.88,360.684 1216.41,359.517 1218.95,358.662 1221.48,358.089 1224.01,357.777 1226.55,357.716 1229.08,357.903 1231.62,358.345 \n 1234.15,359.057 1236.68,360.066 1239.22,361.405 1241.75,363.122 1244.29,365.278 1246.82,367.947 1249.35,371.222 1251.89,375.215 1254.42,380.062 1256.96,385.925 \n 1259.49,392.992 1262.02,401.484 1264.56,411.648 1267.09,423.755 1269.63,438.083 1272.16,454.891 1274.69,474.376 1277.23,496.615 1279.76,521.484 1282.3,548.604 \n 1284.83,577.308 1287.36,606.692 1289.9,635.744 1292.43,663.503 1294.97,689.211 1297.5,712.389 1300.03,732.83 1302.57,750.55 1305.1,765.712 1307.64,778.558 \n 1310.17,789.365 1312.7,798.408 1315.24,805.944 1317.77,812.202 1320.31,817.382 1322.84,821.655 1325.37,825.165 1327.91,828.033 1330.44,830.358 1332.98,832.22 \n 1335.51,833.684 1338.04,834.803 1340.58,835.615 1343.11,836.148 1345.65,836.423 1348.18,836.448 1350.71,836.224 1353.25,835.743 1355.78,834.989 1358.32,833.934 \n 1360.85,832.542 1363.38,830.764 1365.92,828.538 1368.45,825.786 1370.99,822.413 1373.52,818.303 1376.05,813.317 1378.59,807.289 1381.12,800.027 1383.66,791.304 \n 1386.19,780.871 1388.72,768.455 1391.26,753.777 1393.79,736.585 1396.33,716.694 1398.86,694.054 1401.39,668.822 1403.93,641.421 1406.46,612.556 1409,583.156 \n 1411.53,554.238 1414.06,526.74 1416.6,501.381 1419.13,478.6 1421.67,458.565 1424.2,441.235 1426.73,426.431 1429.27,413.903 1431.8,403.373 1434.34,394.567 \n 1436.87,387.234 1439.4,381.147 1441.94,376.111 1444.47,371.958 1447.01,368.549 1449.54,365.767 1452.08,363.516 1454.61,361.716 1457.14,360.305 1459.68,359.234 \n 1462.21,358.465 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"\nM1078.59 296.183 L1455.45 296.183 L1455.45 114.743 L1078.59 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1078.59,296.183 1455.45,296.183 1455.45,114.743 1078.59,114.743 1078.59,296.183 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1093.51,175.223 1183.05,175.223 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M1219.68 176.855 L1219.68 192.503 L1215.42 192.503 L1215.42 176.993 Q1215.42 173.313 1213.99 171.484 Q1212.55 169.656 1209.68 169.656 Q1206.23 169.656 1204.24 171.855 Q1202.25 174.054 1202.25 177.85 L1202.25 192.503 L1197.97 192.503 L1197.97 166.577 L1202.25 166.577 L1202.25 170.605 Q1203.78 168.267 1205.84 167.109 Q1207.92 165.952 1210.63 165.952 Q1215.1 165.952 1217.39 168.73 Q1219.68 171.484 1219.68 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1227.74 182.271 L1227.74 166.577 L1232 166.577 L1232 182.109 Q1232 185.79 1233.43 187.642 Q1234.87 189.47 1237.74 189.47 Q1241.19 189.47 1243.18 187.271 Q1245.19 185.072 1245.19 181.276 L1245.19 166.577 L1249.45 166.577 L1249.45 192.503 L1245.19 192.503 L1245.19 188.521 Q1243.64 190.882 1241.58 192.04 Q1239.54 193.174 1236.84 193.174 Q1232.37 193.174 1230.05 190.396 Q1227.74 187.618 1227.74 182.271 M1238.46 165.952 L1238.46 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1278.41 171.554 Q1280.01 168.683 1282.23 167.318 Q1284.45 165.952 1287.46 165.952 Q1291.51 165.952 1293.71 168.799 Q1295.91 171.623 1295.91 176.855 L1295.91 192.503 L1291.63 192.503 L1291.63 176.993 Q1291.63 173.267 1290.31 171.461 Q1288.99 169.656 1286.28 169.656 Q1282.97 169.656 1281.05 171.855 Q1279.13 174.054 1279.13 177.85 L1279.13 192.503 L1274.85 192.503 L1274.85 176.993 Q1274.85 173.243 1273.53 171.461 Q1272.21 169.656 1269.45 169.656 Q1266.19 169.656 1264.27 171.878 Q1262.35 174.077 1262.35 177.85 L1262.35 192.503 L1258.06 192.503 L1258.06 166.577 L1262.35 166.577 L1262.35 170.605 Q1263.8 168.22 1265.84 167.086 Q1267.88 165.952 1270.68 165.952 Q1273.5 165.952 1275.47 167.387 Q1277.46 168.822 1278.41 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1326.58 178.475 L1326.58 180.558 L1307 180.558 Q1307.28 184.956 1309.64 187.271 Q1312.02 189.563 1316.26 189.563 Q1318.71 189.563 1321 188.961 Q1323.32 188.359 1325.59 187.155 L1325.59 191.183 Q1323.29 192.155 1320.89 192.665 Q1318.48 193.174 1316 193.174 Q1309.8 193.174 1306.16 189.563 Q1302.55 185.952 1302.55 179.794 Q1302.55 173.429 1305.98 169.702 Q1309.43 165.952 1315.26 165.952 Q1320.49 165.952 1323.53 169.331 Q1326.58 172.688 1326.58 178.475 M1322.32 177.225 Q1322.28 173.73 1320.35 171.646 Q1318.46 169.563 1315.31 169.563 Q1311.74 169.563 1309.59 171.577 Q1307.46 173.591 1307.14 177.248 L1322.32 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1348.6 170.558 Q1347.88 170.142 1347.02 169.956 Q1346.19 169.748 1345.17 169.748 Q1341.56 169.748 1339.61 172.109 Q1337.69 174.447 1337.69 178.845 L1337.69 192.503 L1333.41 192.503 L1333.41 166.577 L1337.69 166.577 L1337.69 170.605 Q1339.04 168.244 1341.19 167.109 Q1343.34 165.952 1346.42 165.952 Q1346.86 165.952 1347.39 166.021 Q1347.92 166.068 1348.57 166.183 L1348.6 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1353.06 166.577 L1357.32 166.577 L1357.32 192.503 L1353.06 192.503 L1353.06 166.577 M1353.06 156.484 L1357.32 156.484 L1357.32 161.878 L1353.06 161.878 L1353.06 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1384.89 167.572 L1384.89 171.554 Q1383.09 170.558 1381.26 170.072 Q1379.45 169.563 1377.6 169.563 Q1373.46 169.563 1371.16 172.202 Q1368.87 174.818 1368.87 179.563 Q1368.87 184.308 1371.16 186.947 Q1373.46 189.563 1377.6 189.563 Q1379.45 189.563 1381.26 189.077 Q1383.09 188.567 1384.89 187.572 L1384.89 191.507 Q1383.11 192.341 1381.19 192.757 Q1379.29 193.174 1377.14 193.174 Q1371.28 193.174 1367.83 189.493 Q1364.38 185.813 1364.38 179.563 Q1364.38 173.22 1367.85 169.586 Q1371.35 165.952 1377.41 165.952 Q1379.38 165.952 1381.26 166.369 Q1383.13 166.762 1384.89 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1404.08 179.47 Q1398.92 179.47 1396.93 180.651 Q1394.94 181.831 1394.94 184.679 Q1394.94 186.947 1396.42 188.29 Q1397.92 189.609 1400.49 189.609 Q1404.03 189.609 1406.16 187.109 Q1408.32 184.586 1408.32 180.419 L1408.32 179.47 L1404.08 179.47 M1412.58 177.711 L1412.58 192.503 L1408.32 192.503 L1408.32 188.567 Q1406.86 190.929 1404.68 192.063 Q1402.51 193.174 1399.36 193.174 Q1395.38 193.174 1393.02 190.952 Q1390.68 188.706 1390.68 184.956 Q1390.68 180.581 1393.59 178.359 Q1396.53 176.137 1402.34 176.137 L1408.32 176.137 L1408.32 175.72 Q1408.32 172.781 1406.37 171.183 Q1404.45 169.563 1400.96 169.563 Q1398.73 169.563 1396.63 170.095 Q1394.52 170.628 1392.58 171.693 L1392.58 167.757 Q1394.91 166.855 1397.11 166.415 Q1399.31 165.952 1401.4 165.952 Q1407.02 165.952 1409.8 168.869 Q1412.58 171.785 1412.58 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1421.35 156.484 L1425.61 156.484 L1425.61 192.503 L1421.35 192.503 L1421.35 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip730)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1093.51,235.703 1183.05,235.703 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M1222 238.955 L1222 241.038 L1202.42 241.038 Q1202.69 245.436 1205.05 247.751 Q1207.44 250.043 1211.67 250.043 Q1214.13 250.043 1216.42 249.441 Q1218.73 248.839 1221 247.635 L1221 251.663 Q1218.71 252.635 1216.3 253.145 Q1213.9 253.654 1211.42 253.654 Q1205.22 253.654 1201.58 250.043 Q1197.97 246.432 1197.97 240.274 Q1197.97 233.909 1201.4 230.182 Q1204.85 226.432 1210.68 226.432 Q1215.91 226.432 1218.94 229.811 Q1222 233.168 1222 238.955 M1217.74 237.705 Q1217.69 234.21 1215.77 232.126 Q1213.87 230.043 1210.73 230.043 Q1207.16 230.043 1205.01 232.057 Q1202.88 234.071 1202.55 237.728 L1217.74 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1249.71 227.057 L1240.33 239.673 L1250.19 252.983 L1245.17 252.983 L1237.62 242.798 L1230.08 252.983 L1225.05 252.983 L1235.12 239.418 L1225.91 227.057 L1230.93 227.057 L1237.81 236.293 L1244.68 227.057 L1249.71 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1267.99 239.95 Q1262.83 239.95 1260.84 241.131 Q1258.85 242.311 1258.85 245.159 Q1258.85 247.427 1260.33 248.77 Q1261.84 250.089 1264.41 250.089 Q1267.95 250.089 1270.08 247.589 Q1272.23 245.066 1272.23 240.899 L1272.23 239.95 L1267.99 239.95 M1276.49 238.191 L1276.49 252.983 L1272.23 252.983 L1272.23 249.047 Q1270.77 251.409 1268.6 252.543 Q1266.42 253.654 1263.27 253.654 Q1259.29 253.654 1256.93 251.432 Q1254.59 249.186 1254.59 245.436 Q1254.59 241.061 1257.51 238.839 Q1260.45 236.617 1266.26 236.617 L1272.23 236.617 L1272.23 236.2 Q1272.23 233.261 1270.29 231.663 Q1268.36 230.043 1264.87 230.043 Q1262.65 230.043 1260.54 230.575 Q1258.43 231.108 1256.49 232.173 L1256.49 228.237 Q1258.83 227.335 1261.03 226.895 Q1263.23 226.432 1265.31 226.432 Q1270.93 226.432 1273.71 229.349 Q1276.49 232.265 1276.49 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1303.92 228.052 L1303.92 232.034 Q1302.11 231.038 1300.29 230.552 Q1298.48 230.043 1296.63 230.043 Q1292.48 230.043 1290.19 232.682 Q1287.9 235.298 1287.9 240.043 Q1287.9 244.788 1290.19 247.427 Q1292.48 250.043 1296.63 250.043 Q1298.48 250.043 1300.29 249.557 Q1302.11 249.047 1303.92 248.052 L1303.92 251.987 Q1302.14 252.821 1300.22 253.237 Q1298.32 253.654 1296.16 253.654 Q1290.31 253.654 1286.86 249.973 Q1283.41 246.293 1283.41 240.043 Q1283.41 233.7 1286.88 230.066 Q1290.38 226.432 1296.44 226.432 Q1298.41 226.432 1300.29 226.849 Q1302.16 227.242 1303.92 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1315.54 219.696 L1315.54 227.057 L1324.31 227.057 L1324.31 230.367 L1315.54 230.367 L1315.54 244.441 Q1315.54 247.612 1316.4 248.515 Q1317.28 249.418 1319.94 249.418 L1324.31 249.418 L1324.31 252.983 L1319.94 252.983 Q1315.01 252.983 1313.13 251.154 Q1311.26 249.302 1311.26 244.441 L1311.26 230.367 L1308.13 230.367 L1308.13 227.057 L1311.26 227.057 L1311.26 219.696 L1315.54 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"\nM1809.73 910.808 L3152.76 910.808 L3152.76 87.2921 L1809.73 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip733\">\n <rect x=\"1809\" y=\"87\" width=\"1344\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1847.74,910.808 1847.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1932.2,910.808 1932.2,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2016.67,910.808 2016.67,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2101.14,910.808 2101.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2185.6,910.808 2185.6,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2270.07,910.808 2270.07,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2354.54,910.808 2354.54,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2439.01,910.808 2439.01,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2523.47,910.808 2523.47,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2607.94,910.808 2607.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2692.41,910.808 2692.41,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2776.88,910.808 2776.88,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2861.34,910.808 2861.34,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2945.81,910.808 2945.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3030.28,910.808 3030.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3114.75,910.808 3114.75,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1847.74,910.808 1847.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1932.2,910.808 1932.2,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2016.67,910.808 2016.67,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2101.14,910.808 2101.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2185.6,910.808 2185.6,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2270.07,910.808 2270.07,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2354.54,910.808 2354.54,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2439.01,910.808 2439.01,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2523.47,910.808 2523.47,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2607.94,910.808 2607.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2692.41,910.808 2692.41,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2776.88,910.808 2776.88,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2861.34,910.808 2861.34,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2945.81,910.808 2945.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3030.28,910.808 3030.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3114.75,910.808 3114.75,900.926 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M1847.74 946.399 Q1844.12 946.399 1842.3 949.963 Q1840.49 953.505 1840.49 960.635 Q1840.49 967.741 1842.3 971.306 Q1844.12 974.847 1847.74 974.847 Q1851.37 974.847 1853.18 971.306 Q1855 967.741 1855 960.635 Q1855 953.505 1853.18 949.963 Q1851.37 946.399 1847.74 946.399 M1847.74 942.695 Q1853.55 942.695 1856.6 947.301 Q1859.68 951.885 1859.68 960.635 Q1859.68 969.361 1856.6 973.968 Q1853.55 978.551 1847.74 978.551 Q1841.93 978.551 1838.85 973.968 Q1835.79 969.361 1835.79 960.635 Q1835.79 951.885 1838.85 947.301 Q1841.93 942.695 1847.74 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1926.86 973.945 L1943.18 973.945 L1943.18 977.88 L1921.23 977.88 L1921.23 973.945 Q1923.89 971.19 1928.48 966.56 Q1933.08 961.908 1934.26 960.565 Q1936.51 958.042 1937.39 956.306 Q1938.29 954.547 1938.29 952.857 Q1938.29 950.102 1936.35 948.366 Q1934.43 946.63 1931.32 946.63 Q1929.12 946.63 1926.67 947.394 Q1924.24 948.158 1921.46 949.709 L1921.46 944.987 Q1924.29 943.852 1926.74 943.274 Q1929.19 942.695 1931.23 942.695 Q1936.6 942.695 1939.8 945.38 Q1942.99 948.065 1942.99 952.556 Q1942.99 954.686 1942.18 956.607 Q1941.39 958.505 1939.29 961.098 Q1938.71 961.769 1935.61 964.986 Q1932.5 968.181 1926.86 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2019.68 947.394 L2007.87 965.843 L2019.68 965.843 L2019.68 947.394 M2018.45 943.32 L2024.33 943.32 L2024.33 965.843 L2029.26 965.843 L2029.26 969.732 L2024.33 969.732 L2024.33 977.88 L2019.68 977.88 L2019.68 969.732 L2004.08 969.732 L2004.08 965.218 L2018.45 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2101.54 958.736 Q2098.39 958.736 2096.54 960.889 Q2094.71 963.042 2094.71 966.792 Q2094.71 970.519 2096.54 972.695 Q2098.39 974.847 2101.54 974.847 Q2104.69 974.847 2106.52 972.695 Q2108.37 970.519 2108.37 966.792 Q2108.37 963.042 2106.52 960.889 Q2104.69 958.736 2101.54 958.736 M2110.83 944.084 L2110.83 948.343 Q2109.07 947.51 2107.26 947.07 Q2105.48 946.63 2103.72 946.63 Q2099.09 946.63 2096.64 949.755 Q2094.2 952.88 2093.86 959.199 Q2095.22 957.186 2097.28 956.121 Q2099.34 955.033 2101.82 955.033 Q2107.03 955.033 2110.04 958.204 Q2113.07 961.352 2113.07 966.792 Q2113.07 972.116 2109.92 975.334 Q2106.77 978.551 2101.54 978.551 Q2095.55 978.551 2092.38 973.968 Q2089.2 969.361 2089.2 960.635 Q2089.2 952.44 2093.09 947.579 Q2096.98 942.695 2103.53 942.695 Q2105.29 942.695 2107.08 943.042 Q2108.88 943.389 2110.83 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2185.6 961.468 Q2182.27 961.468 2180.35 963.25 Q2178.45 965.033 2178.45 968.158 Q2178.45 971.283 2180.35 973.065 Q2182.27 974.847 2185.6 974.847 Q2188.94 974.847 2190.86 973.065 Q2192.78 971.26 2192.78 968.158 Q2192.78 965.033 2190.86 963.25 Q2188.96 961.468 2185.6 961.468 M2180.93 959.477 Q2177.92 958.736 2176.23 956.676 Q2174.56 954.616 2174.56 951.653 Q2174.56 947.51 2177.5 945.102 Q2180.47 942.695 2185.6 942.695 Q2190.77 942.695 2193.71 945.102 Q2196.65 947.51 2196.65 951.653 Q2196.65 954.616 2194.96 956.676 Q2193.29 958.736 2190.3 959.477 Q2193.68 960.264 2195.56 962.556 Q2197.46 964.848 2197.46 968.158 Q2197.46 973.181 2194.38 975.866 Q2191.32 978.551 2185.6 978.551 Q2179.89 978.551 2176.81 975.866 Q2173.75 973.181 2173.75 968.158 Q2173.75 964.848 2175.65 962.556 Q2177.55 960.264 2180.93 959.477 M2179.22 952.093 Q2179.22 954.778 2180.88 956.283 Q2182.57 957.787 2185.6 957.787 Q2188.61 957.787 2190.3 956.283 Q2192.02 954.778 2192.02 952.093 Q2192.02 949.408 2190.3 947.903 Q2188.61 946.399 2185.6 946.399 Q2182.57 946.399 2180.88 947.903 Q2179.22 949.408 2179.22 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2244.76 973.945 L2252.4 973.945 L2252.4 947.579 L2244.09 949.246 L2244.09 944.987 L2252.35 943.32 L2257.03 943.32 L2257.03 973.945 L2264.67 973.945 L2264.67 977.88 L2244.76 977.88 L2244.76 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2284.11 946.399 Q2280.5 946.399 2278.67 949.963 Q2276.87 953.505 2276.87 960.635 Q2276.87 967.741 2278.67 971.306 Q2280.5 974.847 2284.11 974.847 Q2287.75 974.847 2289.55 971.306 Q2291.38 967.741 2291.38 960.635 Q2291.38 953.505 2289.55 949.963 Q2287.75 946.399 2284.11 946.399 M2284.11 942.695 Q2289.92 942.695 2292.98 947.301 Q2296.06 951.885 2296.06 960.635 Q2296.06 969.361 2292.98 973.968 Q2289.92 978.551 2284.11 978.551 Q2278.3 978.551 2275.22 973.968 Q2272.17 969.361 2272.17 960.635 Q2272.17 951.885 2275.22 947.301 Q2278.3 942.695 2284.11 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2330.03 973.945 L2337.66 973.945 L2337.66 947.579 L2329.35 949.246 L2329.35 944.987 L2337.62 943.32 L2342.29 943.32 L2342.29 973.945 L2349.93 973.945 L2349.93 977.88 L2330.03 977.88 L2330.03 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2363.41 973.945 L2379.72 973.945 L2379.72 977.88 L2357.78 977.88 L2357.78 973.945 Q2360.44 971.19 2365.03 966.56 Q2369.63 961.908 2370.81 960.565 Q2373.06 958.042 2373.94 956.306 Q2374.84 954.547 2374.84 952.857 Q2374.84 950.102 2372.9 948.366 Q2370.97 946.63 2367.87 946.63 Q2365.67 946.63 2363.22 947.394 Q2360.79 948.158 2358.01 949.709 L2358.01 944.987 Q2360.84 943.852 2363.29 943.274 Q2365.74 942.695 2367.78 942.695 Q2373.15 942.695 2376.35 945.38 Q2379.54 948.065 2379.54 952.556 Q2379.54 954.686 2378.73 956.607 Q2377.94 958.505 2375.84 961.098 Q2375.26 961.769 2372.16 964.986 Q2369.05 968.181 2363.41 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2413.45 973.945 L2421.09 973.945 L2421.09 947.579 L2412.78 949.246 L2412.78 944.987 L2421.04 943.32 L2425.72 943.32 L2425.72 973.945 L2433.36 973.945 L2433.36 977.88 L2413.45 977.88 L2413.45 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2455.65 947.394 L2443.84 965.843 L2455.65 965.843 L2455.65 947.394 M2454.42 943.32 L2460.3 943.32 L2460.3 965.843 L2465.23 965.843 L2465.23 969.732 L2460.3 969.732 L2460.3 977.88 L2455.65 977.88 L2455.65 969.732 L2440.05 969.732 L2440.05 965.218 L2454.42 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2498.08 973.945 L2505.72 973.945 L2505.72 947.579 L2497.41 949.246 L2497.41 944.987 L2505.67 943.32 L2510.35 943.32 L2510.35 973.945 L2517.99 973.945 L2517.99 977.88 L2498.08 977.88 L2498.08 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2538.01 958.736 Q2534.86 958.736 2533.01 960.889 Q2531.18 963.042 2531.18 966.792 Q2531.18 970.519 2533.01 972.695 Q2534.86 974.847 2538.01 974.847 Q2541.16 974.847 2542.99 972.695 Q2544.84 970.519 2544.84 966.792 Q2544.84 963.042 2542.99 960.889 Q2541.16 958.736 2538.01 958.736 M2547.29 944.084 L2547.29 948.343 Q2545.53 947.51 2543.73 947.07 Q2541.95 946.63 2540.19 946.63 Q2535.56 946.63 2533.1 949.755 Q2530.67 952.88 2530.33 959.199 Q2531.69 957.186 2533.75 956.121 Q2535.81 955.033 2538.29 955.033 Q2543.5 955.033 2546.51 958.204 Q2549.54 961.352 2549.54 966.792 Q2549.54 972.116 2546.39 975.334 Q2543.24 978.551 2538.01 978.551 Q2532.02 978.551 2528.84 973.968 Q2525.67 969.361 2525.67 960.635 Q2525.67 952.44 2529.56 947.579 Q2533.45 942.695 2540 942.695 Q2541.76 942.695 2543.54 943.042 Q2545.35 943.389 2547.29 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2582.68 973.945 L2590.31 973.945 L2590.31 947.579 L2582 949.246 L2582 944.987 L2590.27 943.32 L2594.94 943.32 L2594.94 973.945 L2602.58 973.945 L2602.58 977.88 L2582.68 977.88 L2582.68 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2622.03 961.468 Q2618.69 961.468 2616.77 963.25 Q2614.87 965.033 2614.87 968.158 Q2614.87 971.283 2616.77 973.065 Q2618.69 974.847 2622.03 974.847 Q2625.36 974.847 2627.28 973.065 Q2629.2 971.26 2629.2 968.158 Q2629.2 965.033 2627.28 963.25 Q2625.38 961.468 2622.03 961.468 M2617.35 959.477 Q2614.34 958.736 2612.65 956.676 Q2610.99 954.616 2610.99 951.653 Q2610.99 947.51 2613.93 945.102 Q2616.89 942.695 2622.03 942.695 Q2627.19 942.695 2630.13 945.102 Q2633.07 947.51 2633.07 951.653 Q2633.07 954.616 2631.38 956.676 Q2629.71 958.736 2626.73 959.477 Q2630.11 960.264 2631.98 962.556 Q2633.88 964.848 2633.88 968.158 Q2633.88 973.181 2630.8 975.866 Q2627.74 978.551 2622.03 978.551 Q2616.31 978.551 2613.23 975.866 Q2610.18 973.181 2610.18 968.158 Q2610.18 964.848 2612.07 962.556 Q2613.97 960.264 2617.35 959.477 M2615.64 952.093 Q2615.64 954.778 2617.3 956.283 Q2618.99 957.787 2622.03 957.787 Q2625.04 957.787 2626.73 956.283 Q2628.44 954.778 2628.44 952.093 Q2628.44 949.408 2626.73 947.903 Q2625.04 946.399 2622.03 946.399 Q2618.99 946.399 2617.3 947.903 Q2615.64 949.408 2615.64 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2671.18 973.945 L2687.5 973.945 L2687.5 977.88 L2665.56 977.88 L2665.56 973.945 Q2668.22 971.19 2672.8 966.56 Q2677.41 961.908 2678.59 960.565 Q2680.83 958.042 2681.71 956.306 Q2682.62 954.547 2682.62 952.857 Q2682.62 950.102 2680.67 948.366 Q2678.75 946.63 2675.65 946.63 Q2673.45 946.63 2671 947.394 Q2668.57 948.158 2665.79 949.709 L2665.79 944.987 Q2668.61 943.852 2671.07 943.274 Q2673.52 942.695 2675.56 942.695 Q2680.93 942.695 2684.12 945.38 Q2687.32 948.065 2687.32 952.556 Q2687.32 954.686 2686.51 956.607 Q2685.72 958.505 2683.61 961.098 Q2683.03 961.769 2679.93 964.986 Q2676.83 968.181 2671.18 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2707.32 946.399 Q2703.71 946.399 2701.88 949.963 Q2700.07 953.505 2700.07 960.635 Q2700.07 967.741 2701.88 971.306 Q2703.71 974.847 2707.32 974.847 Q2710.95 974.847 2712.76 971.306 Q2714.58 967.741 2714.58 960.635 Q2714.58 953.505 2712.76 949.963 Q2710.95 946.399 2707.32 946.399 M2707.32 942.695 Q2713.13 942.695 2716.18 947.301 Q2719.26 951.885 2719.26 960.635 Q2719.26 969.361 2716.18 973.968 Q2713.13 978.551 2707.32 978.551 Q2701.51 978.551 2698.43 973.968 Q2695.37 969.361 2695.37 960.635 Q2695.37 951.885 2698.43 947.301 Q2701.51 942.695 2707.32 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2756.45 973.945 L2772.77 973.945 L2772.77 977.88 L2750.82 977.88 L2750.82 973.945 Q2753.49 971.19 2758.07 966.56 Q2762.67 961.908 2763.86 960.565 Q2766.1 958.042 2766.98 956.306 Q2767.88 954.547 2767.88 952.857 Q2767.88 950.102 2765.94 948.366 Q2764.02 946.63 2760.92 946.63 Q2758.72 946.63 2756.26 947.394 Q2753.83 948.158 2751.05 949.709 L2751.05 944.987 Q2753.88 943.852 2756.33 943.274 Q2758.79 942.695 2760.82 942.695 Q2766.19 942.695 2769.39 945.38 Q2772.58 948.065 2772.58 952.556 Q2772.58 954.686 2771.77 956.607 Q2770.99 958.505 2768.88 961.098 Q2768.3 961.769 2765.2 964.986 Q2762.1 968.181 2756.45 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2786.61 973.945 L2802.93 973.945 L2802.93 977.88 L2780.99 977.88 L2780.99 973.945 Q2783.65 971.19 2788.23 966.56 Q2792.84 961.908 2794.02 960.565 Q2796.26 958.042 2797.14 956.306 Q2798.05 954.547 2798.05 952.857 Q2798.05 950.102 2796.1 948.366 Q2794.18 946.63 2791.08 946.63 Q2788.88 946.63 2786.42 947.394 Q2783.99 948.158 2781.22 949.709 L2781.22 944.987 Q2784.04 943.852 2786.49 943.274 Q2788.95 942.695 2790.98 942.695 Q2796.36 942.695 2799.55 945.38 Q2802.74 948.065 2802.74 952.556 Q2802.74 954.686 2801.93 956.607 Q2801.15 958.505 2799.04 961.098 Q2798.46 961.769 2795.36 964.986 Q2792.26 968.181 2786.61 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2839.87 973.945 L2856.19 973.945 L2856.19 977.88 L2834.25 977.88 L2834.25 973.945 Q2836.91 971.19 2841.49 966.56 Q2846.1 961.908 2847.28 960.565 Q2849.53 958.042 2850.41 956.306 Q2851.31 954.547 2851.31 952.857 Q2851.31 950.102 2849.36 948.366 Q2847.44 946.63 2844.34 946.63 Q2842.14 946.63 2839.69 947.394 Q2837.26 948.158 2834.48 949.709 L2834.48 944.987 Q2837.3 943.852 2839.76 943.274 Q2842.21 942.695 2844.25 942.695 Q2849.62 942.695 2852.81 945.38 Q2856.01 948.065 2856.01 952.556 Q2856.01 954.686 2855.2 956.607 Q2854.41 958.505 2852.3 961.098 Q2851.73 961.769 2848.62 964.986 Q2845.52 968.181 2839.87 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2878.86 947.394 L2867.05 965.843 L2878.86 965.843 L2878.86 947.394 M2877.63 943.32 L2883.51 943.32 L2883.51 965.843 L2888.44 965.843 L2888.44 969.732 L2883.51 969.732 L2883.51 977.88 L2878.86 977.88 L2878.86 969.732 L2863.25 969.732 L2863.25 965.218 L2877.63 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2924.5 973.945 L2940.82 973.945 L2940.82 977.88 L2918.88 977.88 L2918.88 973.945 Q2921.54 971.19 2926.12 966.56 Q2930.73 961.908 2931.91 960.565 Q2934.16 958.042 2935.04 956.306 Q2935.94 954.547 2935.94 952.857 Q2935.94 950.102 2933.99 948.366 Q2932.07 946.63 2928.97 946.63 Q2926.77 946.63 2924.32 947.394 Q2921.89 948.158 2919.11 949.709 L2919.11 944.987 Q2921.93 943.852 2924.39 943.274 Q2926.84 942.695 2928.88 942.695 Q2934.25 942.695 2937.44 945.38 Q2940.64 948.065 2940.64 952.556 Q2940.64 954.686 2939.83 956.607 Q2939.04 958.505 2936.93 961.098 Q2936.35 961.769 2933.25 964.986 Q2930.15 968.181 2924.5 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2961.22 958.736 Q2958.07 958.736 2956.22 960.889 Q2954.39 963.042 2954.39 966.792 Q2954.39 970.519 2956.22 972.695 Q2958.07 974.847 2961.22 974.847 Q2964.36 974.847 2966.19 972.695 Q2968.04 970.519 2968.04 966.792 Q2968.04 963.042 2966.19 960.889 Q2964.36 958.736 2961.22 958.736 M2970.5 944.084 L2970.5 948.343 Q2968.74 947.51 2966.93 947.07 Q2965.15 946.63 2963.39 946.63 Q2958.76 946.63 2956.31 949.755 Q2953.88 952.88 2953.53 959.199 Q2954.9 957.186 2956.96 956.121 Q2959.02 955.033 2961.49 955.033 Q2966.7 955.033 2969.71 958.204 Q2972.74 961.352 2972.74 966.792 Q2972.74 972.116 2969.6 975.334 Q2966.45 978.551 2961.22 978.551 Q2955.22 978.551 2952.05 973.968 Q2948.88 969.361 2948.88 960.635 Q2948.88 952.44 2952.77 947.579 Q2956.66 942.695 2963.21 942.695 Q2964.97 942.695 2966.75 943.042 Q2968.55 943.389 2970.5 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M3009.1 973.945 L3025.42 973.945 L3025.42 977.88 L3003.47 977.88 L3003.47 973.945 Q3006.13 971.19 3010.72 966.56 Q3015.32 961.908 3016.51 960.565 Q3018.75 958.042 3019.63 956.306 Q3020.53 954.547 3020.53 952.857 Q3020.53 950.102 3018.59 948.366 Q3016.67 946.63 3013.57 946.63 Q3011.37 946.63 3008.91 947.394 Q3006.48 948.158 3003.7 949.709 L3003.7 944.987 Q3006.53 943.852 3008.98 943.274 Q3011.44 942.695 3013.47 942.695 Q3018.84 942.695 3022.04 945.38 Q3025.23 948.065 3025.23 952.556 Q3025.23 954.686 3024.42 956.607 Q3023.63 958.505 3021.53 961.098 Q3020.95 961.769 3017.85 964.986 Q3014.75 968.181 3009.1 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M3045.23 961.468 Q3041.9 961.468 3039.98 963.25 Q3038.08 965.033 3038.08 968.158 Q3038.08 971.283 3039.98 973.065 Q3041.9 974.847 3045.23 974.847 Q3048.57 974.847 3050.49 973.065 Q3052.41 971.26 3052.41 968.158 Q3052.41 965.033 3050.49 963.25 Q3048.59 961.468 3045.23 961.468 M3040.56 959.477 Q3037.55 958.736 3035.86 956.676 Q3034.19 954.616 3034.19 951.653 Q3034.19 947.51 3037.13 945.102 Q3040.09 942.695 3045.23 942.695 Q3050.39 942.695 3053.33 945.102 Q3056.27 947.51 3056.27 951.653 Q3056.27 954.616 3054.58 956.676 Q3052.92 958.736 3049.93 959.477 Q3053.31 960.264 3055.19 962.556 Q3057.08 964.848 3057.08 968.158 Q3057.08 973.181 3054 975.866 Q3050.95 978.551 3045.23 978.551 Q3039.51 978.551 3036.44 975.866 Q3033.38 973.181 3033.38 968.158 Q3033.38 964.848 3035.28 962.556 Q3037.18 960.264 3040.56 959.477 M3038.84 952.093 Q3038.84 954.778 3040.51 956.283 Q3042.2 957.787 3045.23 957.787 Q3048.24 957.787 3049.93 956.283 Q3051.64 954.778 3051.64 952.093 Q3051.64 949.408 3049.93 947.903 Q3048.24 946.399 3045.23 946.399 Q3042.2 946.399 3040.51 947.903 Q3038.84 949.408 3038.84 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M3103.59 959.246 Q3106.94 959.963 3108.82 962.232 Q3110.72 964.5 3110.72 967.834 Q3110.72 972.949 3107.2 975.75 Q3103.68 978.551 3097.2 978.551 Q3095.02 978.551 3092.71 978.111 Q3090.42 977.695 3087.96 976.838 L3087.96 972.324 Q3089.91 973.459 3092.22 974.037 Q3094.54 974.616 3097.06 974.616 Q3101.46 974.616 3103.75 972.88 Q3106.07 971.144 3106.07 967.834 Q3106.07 964.778 3103.91 963.065 Q3101.78 961.329 3097.96 961.329 L3093.94 961.329 L3093.94 957.486 L3098.15 957.486 Q3101.6 957.486 3103.43 956.121 Q3105.25 954.732 3105.25 952.139 Q3105.25 949.477 3103.36 948.065 Q3101.48 946.63 3097.96 946.63 Q3096.04 946.63 3093.84 947.047 Q3091.64 947.463 3089.01 948.343 L3089.01 944.176 Q3091.67 943.436 3093.98 943.065 Q3096.32 942.695 3098.38 942.695 Q3103.7 942.695 3106.81 945.125 Q3109.91 947.533 3109.91 951.653 Q3109.91 954.524 3108.26 956.514 Q3106.62 958.482 3103.59 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M3129.58 946.399 Q3125.97 946.399 3124.14 949.963 Q3122.34 953.505 3122.34 960.635 Q3122.34 967.741 3124.14 971.306 Q3125.97 974.847 3129.58 974.847 Q3133.22 974.847 3135.02 971.306 Q3136.85 967.741 3136.85 960.635 Q3136.85 953.505 3135.02 949.963 Q3133.22 946.399 3129.58 946.399 M3129.58 942.695 Q3135.39 942.695 3138.45 947.301 Q3141.53 951.885 3141.53 960.635 Q3141.53 969.361 3138.45 973.968 Q3135.39 978.551 3129.58 978.551 Q3123.77 978.551 3120.69 973.968 Q3117.64 969.361 3117.64 960.635 Q3117.64 951.885 3120.69 947.301 Q3123.77 942.695 3129.58 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,853.668 3152.76,853.668 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,667.9 3152.76,667.9 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,482.133 3152.76,482.133 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,296.366 3152.76,296.366 \n \"/>\n<polyline clip-path=\"url(#clip733)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,110.599 3152.76,110.599 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,910.808 1809.73,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,853.668 1825.84,853.668 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,667.9 1825.84,667.9 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,482.133 1825.84,482.133 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,296.366 1825.84,296.366 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,110.599 1825.84,110.599 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M1594.46 854.119 L1624.13 854.119 L1624.13 858.054 L1594.46 858.054 L1594.46 854.119 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1644.23 839.466 Q1640.61 839.466 1638.79 843.031 Q1636.98 846.573 1636.98 853.702 Q1636.98 860.809 1638.79 864.374 Q1640.61 867.915 1644.23 867.915 Q1647.86 867.915 1649.67 864.374 Q1651.49 860.809 1651.49 853.702 Q1651.49 846.573 1649.67 843.031 Q1647.86 839.466 1644.23 839.466 M1644.23 835.763 Q1650.04 835.763 1653.09 840.369 Q1656.17 844.952 1656.17 853.702 Q1656.17 862.429 1653.09 867.036 Q1650.04 871.619 1644.23 871.619 Q1638.42 871.619 1635.34 867.036 Q1632.28 862.429 1632.28 853.702 Q1632.28 844.952 1635.34 840.369 Q1638.42 835.763 1644.23 835.763 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1664.39 865.068 L1669.27 865.068 L1669.27 870.948 L1664.39 870.948 L1664.39 865.068 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1689.46 839.466 Q1685.85 839.466 1684.02 843.031 Q1682.21 846.573 1682.21 853.702 Q1682.21 860.809 1684.02 864.374 Q1685.85 867.915 1689.46 867.915 Q1693.09 867.915 1694.9 864.374 Q1696.73 860.809 1696.73 853.702 Q1696.73 846.573 1694.9 843.031 Q1693.09 839.466 1689.46 839.466 M1689.46 835.763 Q1695.27 835.763 1698.32 840.369 Q1701.4 844.952 1701.4 853.702 Q1701.4 862.429 1698.32 867.036 Q1695.27 871.619 1689.46 871.619 Q1683.65 871.619 1680.57 867.036 Q1677.51 862.429 1677.51 853.702 Q1677.51 844.952 1680.57 840.369 Q1683.65 835.763 1689.46 835.763 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1713.65 867.012 L1729.97 867.012 L1729.97 870.948 L1708.02 870.948 L1708.02 867.012 Q1710.68 864.258 1715.27 859.628 Q1719.87 854.975 1721.05 853.633 Q1723.3 851.11 1724.18 849.374 Q1725.08 847.614 1725.08 845.925 Q1725.08 843.17 1723.14 841.434 Q1721.22 839.698 1718.11 839.698 Q1715.92 839.698 1713.46 840.462 Q1711.03 841.226 1708.25 842.776 L1708.25 838.054 Q1711.08 836.92 1713.53 836.341 Q1715.98 835.763 1718.02 835.763 Q1723.39 835.763 1726.59 838.448 Q1729.78 841.133 1729.78 845.624 Q1729.78 847.753 1728.97 849.675 Q1728.18 851.573 1726.08 854.165 Q1725.5 854.837 1722.4 858.054 Q1719.29 861.249 1713.65 867.012 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1749.78 839.466 Q1746.17 839.466 1744.34 843.031 Q1742.54 846.573 1742.54 853.702 Q1742.54 860.809 1744.34 864.374 Q1746.17 867.915 1749.78 867.915 Q1753.42 867.915 1755.22 864.374 Q1757.05 860.809 1757.05 853.702 Q1757.05 846.573 1755.22 843.031 Q1753.42 839.466 1749.78 839.466 M1749.78 835.763 Q1755.59 835.763 1758.65 840.369 Q1761.73 844.952 1761.73 853.702 Q1761.73 862.429 1758.65 867.036 Q1755.59 871.619 1749.78 871.619 Q1743.97 871.619 1740.89 867.036 Q1737.84 862.429 1737.84 853.702 Q1737.84 844.952 1740.89 840.369 Q1743.97 835.763 1749.78 835.763 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1595.45 668.352 L1625.13 668.352 L1625.13 672.287 L1595.45 672.287 L1595.45 668.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1645.22 653.699 Q1641.61 653.699 1639.78 657.264 Q1637.98 660.806 1637.98 667.935 Q1637.98 675.042 1639.78 678.606 Q1641.61 682.148 1645.22 682.148 Q1648.86 682.148 1650.66 678.606 Q1652.49 675.042 1652.49 667.935 Q1652.49 660.806 1650.66 657.264 Q1648.86 653.699 1645.22 653.699 M1645.22 649.996 Q1651.03 649.996 1654.09 654.602 Q1657.17 659.185 1657.17 667.935 Q1657.17 676.662 1654.09 681.268 Q1651.03 685.852 1645.22 685.852 Q1639.41 685.852 1636.33 681.268 Q1633.28 676.662 1633.28 667.935 Q1633.28 659.185 1636.33 654.602 Q1639.41 649.996 1645.22 649.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1665.38 679.301 L1670.27 679.301 L1670.27 685.18 L1665.38 685.18 L1665.38 679.301 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1690.45 653.699 Q1686.84 653.699 1685.01 657.264 Q1683.21 660.806 1683.21 667.935 Q1683.21 675.042 1685.01 678.606 Q1686.84 682.148 1690.45 682.148 Q1694.09 682.148 1695.89 678.606 Q1697.72 675.042 1697.72 667.935 Q1697.72 660.806 1695.89 657.264 Q1694.09 653.699 1690.45 653.699 M1690.45 649.996 Q1696.26 649.996 1699.32 654.602 Q1702.4 659.185 1702.4 667.935 Q1702.4 676.662 1699.32 681.268 Q1696.26 685.852 1690.45 685.852 Q1684.64 685.852 1681.56 681.268 Q1678.51 676.662 1678.51 667.935 Q1678.51 659.185 1681.56 654.602 Q1684.64 649.996 1690.45 649.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1711.42 681.245 L1719.06 681.245 L1719.06 654.88 L1710.75 656.546 L1710.75 652.287 L1719.02 650.62 L1723.69 650.62 L1723.69 681.245 L1731.33 681.245 L1731.33 685.18 L1711.42 685.18 L1711.42 681.245 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1740.82 650.62 L1759.18 650.62 L1759.18 654.556 L1745.11 654.556 L1745.11 663.028 Q1746.12 662.681 1747.14 662.519 Q1748.16 662.333 1749.18 662.333 Q1754.97 662.333 1758.35 665.505 Q1761.73 668.676 1761.73 674.093 Q1761.73 679.671 1758.25 682.773 Q1754.78 685.852 1748.46 685.852 Q1746.29 685.852 1744.02 685.481 Q1741.77 685.111 1739.36 684.37 L1739.36 679.671 Q1741.45 680.806 1743.67 681.361 Q1745.89 681.917 1748.37 681.917 Q1752.37 681.917 1754.71 679.81 Q1757.05 677.704 1757.05 674.093 Q1757.05 670.482 1754.71 668.375 Q1752.37 666.269 1748.37 666.269 Q1746.49 666.269 1744.62 666.685 Q1742.77 667.102 1740.82 667.982 L1740.82 650.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1594.46 482.585 L1624.13 482.585 L1624.13 486.52 L1594.46 486.52 L1594.46 482.585 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1644.23 467.932 Q1640.61 467.932 1638.79 471.497 Q1636.98 475.039 1636.98 482.168 Q1636.98 489.275 1638.79 492.839 Q1640.61 496.381 1644.23 496.381 Q1647.86 496.381 1649.67 492.839 Q1651.49 489.275 1651.49 482.168 Q1651.49 475.039 1649.67 471.497 Q1647.86 467.932 1644.23 467.932 M1644.23 464.228 Q1650.04 464.228 1653.09 468.835 Q1656.17 473.418 1656.17 482.168 Q1656.17 490.895 1653.09 495.501 Q1650.04 500.085 1644.23 500.085 Q1638.42 500.085 1635.34 495.501 Q1632.28 490.895 1632.28 482.168 Q1632.28 473.418 1635.34 468.835 Q1638.42 464.228 1644.23 464.228 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1664.39 493.534 L1669.27 493.534 L1669.27 499.413 L1664.39 499.413 L1664.39 493.534 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1689.46 467.932 Q1685.85 467.932 1684.02 471.497 Q1682.21 475.039 1682.21 482.168 Q1682.21 489.275 1684.02 492.839 Q1685.85 496.381 1689.46 496.381 Q1693.09 496.381 1694.9 492.839 Q1696.73 489.275 1696.73 482.168 Q1696.73 475.039 1694.9 471.497 Q1693.09 467.932 1689.46 467.932 M1689.46 464.228 Q1695.27 464.228 1698.32 468.835 Q1701.4 473.418 1701.4 482.168 Q1701.4 490.895 1698.32 495.501 Q1695.27 500.085 1689.46 500.085 Q1683.65 500.085 1680.57 495.501 Q1677.51 490.895 1677.51 482.168 Q1677.51 473.418 1680.57 468.835 Q1683.65 464.228 1689.46 464.228 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1710.43 495.478 L1718.07 495.478 L1718.07 469.113 L1709.76 470.779 L1709.76 466.52 L1718.02 464.853 L1722.7 464.853 L1722.7 495.478 L1730.34 495.478 L1730.34 499.413 L1710.43 499.413 L1710.43 495.478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1749.78 467.932 Q1746.17 467.932 1744.34 471.497 Q1742.54 475.039 1742.54 482.168 Q1742.54 489.275 1744.34 492.839 Q1746.17 496.381 1749.78 496.381 Q1753.42 496.381 1755.22 492.839 Q1757.05 489.275 1757.05 482.168 Q1757.05 475.039 1755.22 471.497 Q1753.42 467.932 1749.78 467.932 M1749.78 464.228 Q1755.59 464.228 1758.65 468.835 Q1761.73 473.418 1761.73 482.168 Q1761.73 490.895 1758.65 495.501 Q1755.59 500.085 1749.78 500.085 Q1743.97 500.085 1740.89 495.501 Q1737.84 490.895 1737.84 482.168 Q1737.84 473.418 1740.89 468.835 Q1743.97 464.228 1749.78 464.228 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1595.45 296.818 L1625.13 296.818 L1625.13 300.753 L1595.45 300.753 L1595.45 296.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1645.22 282.165 Q1641.61 282.165 1639.78 285.73 Q1637.98 289.271 1637.98 296.401 Q1637.98 303.507 1639.78 307.072 Q1641.61 310.614 1645.22 310.614 Q1648.86 310.614 1650.66 307.072 Q1652.49 303.507 1652.49 296.401 Q1652.49 289.271 1650.66 285.73 Q1648.86 282.165 1645.22 282.165 M1645.22 278.461 Q1651.03 278.461 1654.09 283.068 Q1657.17 287.651 1657.17 296.401 Q1657.17 305.128 1654.09 309.734 Q1651.03 314.318 1645.22 314.318 Q1639.41 314.318 1636.33 309.734 Q1633.28 305.128 1633.28 296.401 Q1633.28 287.651 1636.33 283.068 Q1639.41 278.461 1645.22 278.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1665.38 307.767 L1670.27 307.767 L1670.27 313.646 L1665.38 313.646 L1665.38 307.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1690.45 282.165 Q1686.84 282.165 1685.01 285.73 Q1683.21 289.271 1683.21 296.401 Q1683.21 303.507 1685.01 307.072 Q1686.84 310.614 1690.45 310.614 Q1694.09 310.614 1695.89 307.072 Q1697.72 303.507 1697.72 296.401 Q1697.72 289.271 1695.89 285.73 Q1694.09 282.165 1690.45 282.165 M1690.45 278.461 Q1696.26 278.461 1699.32 283.068 Q1702.4 287.651 1702.4 296.401 Q1702.4 305.128 1699.32 309.734 Q1696.26 314.318 1690.45 314.318 Q1684.64 314.318 1681.56 309.734 Q1678.51 305.128 1678.51 296.401 Q1678.51 287.651 1681.56 283.068 Q1684.64 278.461 1690.45 278.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1720.61 282.165 Q1717 282.165 1715.17 285.73 Q1713.37 289.271 1713.37 296.401 Q1713.37 303.507 1715.17 307.072 Q1717 310.614 1720.61 310.614 Q1724.25 310.614 1726.05 307.072 Q1727.88 303.507 1727.88 296.401 Q1727.88 289.271 1726.05 285.73 Q1724.25 282.165 1720.61 282.165 M1720.61 278.461 Q1726.42 278.461 1729.48 283.068 Q1732.56 287.651 1732.56 296.401 Q1732.56 305.128 1729.48 309.734 Q1726.42 314.318 1720.61 314.318 Q1714.8 314.318 1711.73 309.734 Q1708.67 305.128 1708.67 296.401 Q1708.67 287.651 1711.73 283.068 Q1714.8 278.461 1720.61 278.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1740.82 279.086 L1759.18 279.086 L1759.18 283.021 L1745.11 283.021 L1745.11 291.494 Q1746.12 291.146 1747.14 290.984 Q1748.16 290.799 1749.18 290.799 Q1754.97 290.799 1758.35 293.97 Q1761.73 297.142 1761.73 302.558 Q1761.73 308.137 1758.25 311.239 Q1754.78 314.318 1748.46 314.318 Q1746.29 314.318 1744.02 313.947 Q1741.77 313.577 1739.36 312.836 L1739.36 308.137 Q1741.45 309.271 1743.67 309.827 Q1745.89 310.382 1748.37 310.382 Q1752.37 310.382 1754.71 308.276 Q1757.05 306.169 1757.05 302.558 Q1757.05 298.947 1754.71 296.841 Q1752.37 294.734 1748.37 294.734 Q1746.49 294.734 1744.62 295.151 Q1742.77 295.568 1740.82 296.447 L1740.82 279.086 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1644.23 96.3979 Q1640.61 96.3979 1638.79 99.9627 Q1636.98 103.504 1636.98 110.634 Q1636.98 117.74 1638.79 121.305 Q1640.61 124.847 1644.23 124.847 Q1647.86 124.847 1649.67 121.305 Q1651.49 117.74 1651.49 110.634 Q1651.49 103.504 1649.67 99.9627 Q1647.86 96.3979 1644.23 96.3979 M1644.23 92.6942 Q1650.04 92.6942 1653.09 97.3006 Q1656.17 101.884 1656.17 110.634 Q1656.17 119.361 1653.09 123.967 Q1650.04 128.55 1644.23 128.55 Q1638.42 128.55 1635.34 123.967 Q1632.28 119.361 1632.28 110.634 Q1632.28 101.884 1635.34 97.3006 Q1638.42 92.6942 1644.23 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1664.39 122 L1669.27 122 L1669.27 127.879 L1664.39 127.879 L1664.39 122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1689.46 96.3979 Q1685.85 96.3979 1684.02 99.9627 Q1682.21 103.504 1682.21 110.634 Q1682.21 117.74 1684.02 121.305 Q1685.85 124.847 1689.46 124.847 Q1693.09 124.847 1694.9 121.305 Q1696.73 117.74 1696.73 110.634 Q1696.73 103.504 1694.9 99.9627 Q1693.09 96.3979 1689.46 96.3979 M1689.46 92.6942 Q1695.27 92.6942 1698.32 97.3006 Q1701.4 101.884 1701.4 110.634 Q1701.4 119.361 1698.32 123.967 Q1695.27 128.55 1689.46 128.55 Q1683.65 128.55 1680.57 123.967 Q1677.51 119.361 1677.51 110.634 Q1677.51 101.884 1680.57 97.3006 Q1683.65 92.6942 1689.46 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1719.62 96.3979 Q1716.01 96.3979 1714.18 99.9627 Q1712.37 103.504 1712.37 110.634 Q1712.37 117.74 1714.18 121.305 Q1716.01 124.847 1719.62 124.847 Q1723.25 124.847 1725.06 121.305 Q1726.89 117.74 1726.89 110.634 Q1726.89 103.504 1725.06 99.9627 Q1723.25 96.3979 1719.62 96.3979 M1719.62 92.6942 Q1725.43 92.6942 1728.48 97.3006 Q1731.56 101.884 1731.56 110.634 Q1731.56 119.361 1728.48 123.967 Q1725.43 128.55 1719.62 128.55 Q1713.81 128.55 1710.73 123.967 Q1707.67 119.361 1707.67 110.634 Q1707.67 101.884 1710.73 97.3006 Q1713.81 92.6942 1719.62 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M1749.78 96.3979 Q1746.17 96.3979 1744.34 99.9627 Q1742.54 103.504 1742.54 110.634 Q1742.54 117.74 1744.34 121.305 Q1746.17 124.847 1749.78 124.847 Q1753.42 124.847 1755.22 121.305 Q1757.05 117.74 1757.05 110.634 Q1757.05 103.504 1755.22 99.9627 Q1753.42 96.3979 1749.78 96.3979 M1749.78 92.6942 Q1755.59 92.6942 1758.65 97.3006 Q1761.73 101.884 1761.73 110.634 Q1761.73 119.361 1758.65 123.967 Q1755.59 128.55 1749.78 128.55 Q1743.97 128.55 1740.89 123.967 Q1737.84 119.361 1737.84 110.634 Q1737.84 101.884 1740.89 97.3006 Q1743.97 92.6942 1749.78 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2179.44 12.2777 L2179.44 23.3193 L2192.6 23.3193 L2192.6 28.2846 L2179.44 28.2846 L2179.44 49.3956 Q2179.44 54.1525 2180.72 55.5066 Q2182.04 56.8608 2186.03 56.8608 L2192.6 56.8608 L2192.6 62.208 L2186.03 62.208 Q2178.64 62.208 2175.83 59.465 Q2173.01 56.6872 2173.01 49.3956 L2173.01 28.2846 L2168.33 28.2846 L2168.33 23.3193 L2173.01 23.3193 L2173.01 12.2777 L2179.44 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2216.07 27.7985 Q2210.93 27.7985 2207.94 31.8262 Q2204.96 35.8193 2204.96 42.7984 Q2204.96 49.7775 2207.91 53.8053 Q2210.89 57.7983 2216.07 57.7983 Q2221.17 57.7983 2224.16 53.7705 Q2227.14 49.7428 2227.14 42.7984 Q2227.14 35.8887 2224.16 31.8609 Q2221.17 27.7985 2216.07 27.7985 M2216.07 22.3818 Q2224.4 22.3818 2229.16 27.7985 Q2233.92 33.2151 2233.92 42.7984 Q2233.92 52.3469 2229.16 57.7983 Q2224.4 63.2149 2216.07 63.2149 Q2207.7 63.2149 2202.94 57.7983 Q2198.22 52.3469 2198.22 42.7984 Q2198.22 33.2151 2202.94 27.7985 Q2207.7 22.3818 2216.07 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2250.83 12.2777 L2250.83 23.3193 L2263.98 23.3193 L2263.98 28.2846 L2250.83 28.2846 L2250.83 49.3956 Q2250.83 54.1525 2252.11 55.5066 Q2253.43 56.8608 2257.42 56.8608 L2263.98 56.8608 L2263.98 62.208 L2257.42 62.208 Q2250.03 62.208 2247.21 59.465 Q2244.4 56.6872 2244.4 49.3956 L2244.4 28.2846 L2239.71 28.2846 L2239.71 23.3193 L2244.4 23.3193 L2244.4 12.2777 L2250.83 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2290.06 42.6595 Q2282.32 42.6595 2279.33 44.4303 Q2276.35 46.2011 2276.35 50.472 Q2276.35 53.8747 2278.57 55.8886 Q2280.83 57.8677 2284.68 57.8677 Q2289.99 57.8677 2293.19 54.1178 Q2296.42 50.3331 2296.42 44.0831 L2296.42 42.6595 L2290.06 42.6595 M2302.8 40.0206 L2302.8 62.208 L2296.42 62.208 L2296.42 56.3053 Q2294.23 59.8469 2290.96 61.5483 Q2287.7 63.2149 2282.98 63.2149 Q2277.01 63.2149 2273.46 59.8816 Q2269.96 56.5136 2269.96 50.8886 Q2269.96 44.3262 2274.33 40.9928 Q2278.74 37.6595 2287.46 37.6595 L2296.42 37.6595 L2296.42 37.0345 Q2296.42 32.6248 2293.5 30.229 Q2290.62 27.7985 2285.37 27.7985 Q2282.04 27.7985 2278.88 28.5971 Q2275.72 29.3957 2272.8 30.9929 L2272.8 25.0901 Q2276.31 23.736 2279.61 23.0763 Q2282.91 22.3818 2286.03 22.3818 Q2294.47 22.3818 2298.64 26.7568 Q2302.8 31.1318 2302.8 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2315.96 8.18051 L2322.35 8.18051 L2322.35 62.208 L2315.96 62.208 L2315.96 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2391.59 41.1664 L2391.59 44.2914 L2362.21 44.2914 Q2362.63 50.8886 2366.17 54.3608 Q2369.75 57.7983 2376.1 57.7983 Q2379.78 57.7983 2383.22 56.8955 Q2386.69 55.9928 2390.1 54.1872 L2390.1 60.2288 Q2386.66 61.6872 2383.05 62.4511 Q2379.44 63.2149 2375.72 63.2149 Q2366.41 63.2149 2360.96 57.7983 Q2355.55 52.3817 2355.55 43.1456 Q2355.55 33.597 2360.69 28.0068 Q2365.86 22.3818 2374.61 22.3818 Q2382.46 22.3818 2387.01 27.4512 Q2391.59 32.4859 2391.59 41.1664 M2385.2 39.2915 Q2385.13 34.0484 2382.25 30.9234 Q2379.4 27.7985 2374.68 27.7985 Q2369.33 27.7985 2366.1 30.8193 Q2362.91 33.8401 2362.42 39.3262 L2385.2 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2434.4 38.7359 L2434.4 62.208 L2428.01 62.208 L2428.01 38.9442 Q2428.01 33.4234 2425.86 30.6804 Q2423.71 27.9374 2419.4 27.9374 Q2414.23 27.9374 2411.24 31.2359 Q2408.25 34.5345 2408.25 40.229 L2408.25 62.208 L2401.83 62.208 L2401.83 23.3193 L2408.25 23.3193 L2408.25 29.361 Q2410.55 25.854 2413.64 24.1179 Q2416.76 22.3818 2420.82 22.3818 Q2427.53 22.3818 2430.96 26.5485 Q2434.4 30.6804 2434.4 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2480.41 41.1664 L2480.41 44.2914 L2451.03 44.2914 Q2451.45 50.8886 2454.99 54.3608 Q2458.57 57.7983 2464.92 57.7983 Q2468.6 57.7983 2472.04 56.8955 Q2475.51 55.9928 2478.91 54.1872 L2478.91 60.2288 Q2475.48 61.6872 2471.87 62.4511 Q2468.25 63.2149 2464.54 63.2149 Q2455.23 63.2149 2449.78 57.7983 Q2444.37 52.3817 2444.37 43.1456 Q2444.37 33.597 2449.5 28.0068 Q2454.68 22.3818 2463.43 22.3818 Q2471.28 22.3818 2475.82 27.4512 Q2480.41 32.4859 2480.41 41.1664 M2474.02 39.2915 Q2473.95 34.0484 2471.07 30.9234 Q2468.22 27.7985 2463.5 27.7985 Q2458.15 27.7985 2454.92 30.8193 Q2451.73 33.8401 2451.24 39.3262 L2474.02 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2513.43 29.2915 Q2512.35 28.6665 2511.07 28.3887 Q2509.82 28.0762 2508.29 28.0762 Q2502.87 28.0762 2499.96 31.6179 Q2497.07 35.1248 2497.07 41.722 L2497.07 62.208 L2490.65 62.208 L2490.65 23.3193 L2497.07 23.3193 L2497.07 29.361 Q2499.09 25.8193 2502.32 24.1179 Q2505.55 22.3818 2510.16 22.3818 Q2510.82 22.3818 2511.62 22.486 Q2512.42 22.5554 2513.39 22.729 L2513.43 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2544.47 42.3123 Q2544.47 35.3679 2541.59 31.5484 Q2538.74 27.729 2533.57 27.729 Q2528.43 27.729 2525.55 31.5484 Q2522.7 35.3679 2522.7 42.3123 Q2522.7 49.222 2525.55 53.0414 Q2528.43 56.8608 2533.57 56.8608 Q2538.74 56.8608 2541.59 53.0414 Q2544.47 49.222 2544.47 42.3123 M2550.86 57.3816 Q2550.86 67.3121 2546.45 72.1385 Q2542.04 76.9996 2532.94 76.9996 Q2529.57 76.9996 2526.59 76.4788 Q2523.6 75.9926 2520.79 74.951 L2520.79 68.7357 Q2523.6 70.2635 2526.34 70.9927 Q2529.09 71.7218 2531.93 71.7218 Q2538.22 71.7218 2541.34 68.4232 Q2544.47 65.1594 2544.47 58.5275 L2544.47 55.3678 Q2542.49 58.8052 2539.4 60.5066 Q2536.31 62.208 2532 62.208 Q2524.85 62.208 2520.48 56.7566 Q2516.1 51.3053 2516.1 42.3123 Q2516.1 33.2845 2520.48 27.8332 Q2524.85 22.3818 2532 22.3818 Q2536.31 22.3818 2539.4 24.0832 Q2542.49 25.7846 2544.47 29.2221 L2544.47 23.3193 L2550.86 23.3193 L2550.86 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2580.2 65.8191 Q2577.49 72.7635 2574.92 74.8815 Q2572.35 76.9996 2568.05 76.9996 L2562.94 76.9996 L2562.94 71.6524 L2566.69 71.6524 Q2569.33 71.6524 2570.79 70.4024 Q2572.25 69.1524 2574.02 64.4997 L2575.16 61.583 L2559.43 23.3193 L2566.21 23.3193 L2578.36 53.7358 L2590.51 23.3193 L2597.28 23.3193 L2580.2 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2661.97 41.1664 L2661.97 44.2914 L2632.59 44.2914 Q2633.01 50.8886 2636.55 54.3608 Q2640.13 57.7983 2646.48 57.7983 Q2650.16 57.7983 2653.6 56.8955 Q2657.07 55.9928 2660.48 54.1872 L2660.48 60.2288 Q2657.04 61.6872 2653.43 62.4511 Q2649.82 63.2149 2646.1 63.2149 Q2636.8 63.2149 2631.34 57.7983 Q2625.93 52.3817 2625.93 43.1456 Q2625.93 33.597 2631.07 28.0068 Q2636.24 22.3818 2644.99 22.3818 Q2652.84 22.3818 2657.39 27.4512 Q2661.97 32.4859 2661.97 41.1664 M2655.58 39.2915 Q2655.51 34.0484 2652.63 30.9234 Q2649.78 27.7985 2645.06 27.7985 Q2639.71 27.7985 2636.48 30.8193 Q2633.29 33.8401 2632.8 39.3262 L2655.58 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2694.99 29.2915 Q2693.91 28.6665 2692.63 28.3887 Q2691.38 28.0762 2689.85 28.0762 Q2684.43 28.0762 2681.52 31.6179 Q2678.64 35.1248 2678.64 41.722 L2678.64 62.208 L2672.21 62.208 L2672.21 23.3193 L2678.64 23.3193 L2678.64 29.361 Q2680.65 25.8193 2683.88 24.1179 Q2687.11 22.3818 2691.73 22.3818 Q2692.39 22.3818 2693.18 22.486 Q2693.98 22.5554 2694.95 22.729 L2694.99 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2722.98 29.2915 Q2721.9 28.6665 2720.61 28.3887 Q2719.36 28.0762 2717.84 28.0762 Q2712.42 28.0762 2709.5 31.6179 Q2706.62 35.1248 2706.62 41.722 L2706.62 62.208 L2700.2 62.208 L2700.2 23.3193 L2706.62 23.3193 L2706.62 29.361 Q2708.64 25.8193 2711.86 24.1179 Q2715.09 22.3818 2719.71 22.3818 Q2720.37 22.3818 2721.17 22.486 Q2721.97 22.5554 2722.94 22.729 L2722.98 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2743.18 27.7985 Q2738.04 27.7985 2735.06 31.8262 Q2732.07 35.8193 2732.07 42.7984 Q2732.07 49.7775 2735.02 53.8053 Q2738.01 57.7983 2743.18 57.7983 Q2748.29 57.7983 2751.27 53.7705 Q2754.26 49.7428 2754.26 42.7984 Q2754.26 35.8887 2751.27 31.8609 Q2748.29 27.7985 2743.18 27.7985 M2743.18 22.3818 Q2751.52 22.3818 2756.27 27.7985 Q2761.03 33.2151 2761.03 42.7984 Q2761.03 52.3469 2756.27 57.7983 Q2751.52 63.2149 2743.18 63.2149 Q2734.82 63.2149 2730.06 57.7983 Q2725.34 52.3469 2725.34 42.7984 Q2725.34 33.2151 2730.06 27.7985 Q2734.82 22.3818 2743.18 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M2794.16 29.2915 Q2793.08 28.6665 2791.79 28.3887 Q2790.54 28.0762 2789.02 28.0762 Q2783.6 28.0762 2780.68 31.6179 Q2777.8 35.1248 2777.8 41.722 L2777.8 62.208 L2771.38 62.208 L2771.38 23.3193 L2777.8 23.3193 L2777.8 29.361 Q2779.82 25.8193 2783.04 24.1179 Q2786.27 22.3818 2790.89 22.3818 Q2791.55 22.3818 2792.35 22.486 Q2793.15 22.5554 2794.12 22.729 L2794.16 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip733)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1847.74,110.599 1850.27,284.732 1852.8,185.779 1855.34,220.468 1857.87,182.538 1860.41,210.277 1862.94,171.141 1865.47,184.198 1868.01,176.555 1870.54,173.556 \n 1873.08,176.096 1875.61,173.213 1878.14,174.022 1880.68,173.671 1883.21,173.567 1885.75,173.712 1888.28,173.578 1890.81,173.644 1893.35,173.65 1895.88,173.618 \n 1898.42,173.704 1900.95,173.642 1903.48,173.692 1906.02,173.708 1908.55,173.676 1911.09,173.762 1913.62,173.702 1916.15,173.752 1918.69,173.768 1921.22,173.735 \n 1923.76,173.829 1926.29,173.76 1928.82,173.817 1931.36,173.877 1933.89,173.722 1936.43,174.216 1938.96,173.72 1941.49,174.127 1944.03,175.71 1946.56,171.774 \n 1949.1,184.086 1951.63,172.585 1954.16,186.939 1956.7,198.889 1959.23,203.02 1961.77,212.996 1964.3,275.165 1966.83,251.477 1969.37,261.464 1971.9,315.773 \n 1974.44,254.869 1976.97,269.409 1979.5,263.799 1982.04,255.602 1984.57,238.927 1987.11,251.743 1989.64,236.987 1992.17,241.312 1994.71,239.19 1997.24,238.635 \n 1999.78,239.169 2002.31,238.58 2004.84,238.765 2007.38,238.715 2009.91,238.671 2012.45,238.768 2014.98,238.694 2017.51,238.747 2020.05,238.762 2022.58,238.729 \n 2025.12,238.818 2027.65,238.756 2030.19,238.807 2032.72,238.824 2035.25,238.791 2037.79,238.882 2040.32,238.818 2042.86,238.871 2045.39,238.894 2047.92,238.843 \n 2050.46,238.998 2052.99,238.865 2055.53,238.971 2058.06,239.287 2060.59,238.444 2063.13,241.14 2065.66,238.387 2068.2,241.056 2070.73,247.96 2073.26,235.11 \n 2075.8,274.221 2078.33,251.353 2080.87,294.41 2083.4,278.657 2085.93,390.914 2088.47,240.388 2091,415.503 2093.54,315.577 2096.07,351.011 2098.6,313.109 \n 2101.14,340.803 2103.67,301.376 2106.21,314.568 2108.74,306.804 2111.27,303.72 2113.81,306.329 2116.34,303.369 2118.88,304.201 2121.41,303.841 2123.94,303.733 \n 2126.48,303.885 2129.01,303.744 2131.55,303.815 2134.08,303.822 2136.61,303.787 2139.15,303.88 2141.68,303.814 2144.22,303.868 2146.75,303.885 2149.28,303.851 \n 2151.82,303.944 2154.35,303.879 2156.89,303.933 2159.42,303.951 2161.95,303.914 2164.49,304.018 2167.02,303.941 2169.56,304.005 2172.09,304.082 2174.62,303.882 \n 2177.16,304.52 2179.69,303.875 2182.23,304.413 2184.76,306.451 2187.29,301.505 2189.83,316.899 2192.36,302.952 2194.9,321.212 2197.43,331.837 2199.96,347.794 \n 2202.5,336.278 2205.03,426.98 2207.57,379.344 2210.1,401.953 2212.63,431.582 2215.17,396.612 2217.7,389.066 2220.24,392.652 2222.77,382.19 2225.3,368.949 \n 2227.84,379.257 2230.37,367.464 2232.91,370.876 2235.44,369.231 2237.97,368.808 2240.51,369.232 2243.04,368.773 2245.58,368.926 2248.11,368.894 2250.64,368.85 \n 2253.18,368.952 2255.71,368.876 2258.25,368.933 2260.78,368.95 2263.31,368.914 2265.85,369.011 2268.38,368.943 2270.92,368.999 2273.45,369.017 2275.98,368.981 \n 2278.52,369.08 2281.05,369.011 2283.59,369.068 2286.12,369.099 2288.66,369.028 2291.19,369.247 2293.72,369.048 2296.26,369.206 2298.79,369.758 2301.33,368.307 \n 2303.86,372.923 2306.39,368.292 2308.93,373.143 2311.46,382.741 2314,368.746 2316.53,412.452 2319.06,400.017 2321.6,439.451 2324.13,418.295 2326.67,540.493 \n 2329.2,388.617 2331.73,523.064 2334.27,453.624 2336.8,470.937 2339.34,437.327 2341.87,462.225 2344.4,431.088 2346.94,440.932 2349.47,435.626 2352.01,433.898 \n 2354.54,435.414 2357.07,433.7 2359.61,434.19 2362.14,433.997 2364.68,433.921 2367.21,434.051 2369.74,433.941 2372.28,434.007 2374.81,434.02 2377.35,433.982 \n 2379.88,434.082 2382.41,434.012 2384.95,434.07 2387.48,434.088 2390.02,434.052 2392.55,434.152 2395.08,434.082 2397.62,434.14 2400.15,434.162 2402.69,434.117 \n 2405.22,434.247 2407.75,434.145 2410.29,434.228 2412.82,434.394 2415.36,433.953 2417.89,435.368 2420.42,433.917 2422.96,435.219 2425.49,439.416 2428.03,430.277 \n 2430.56,458.256 2433.09,436.556 2435.63,469.987 2438.16,468.634 2440.7,538.611 2443.23,440.456 2445.76,607.792 2448.3,505.002 2450.83,550.01 2453.37,524.406 \n 2455.9,541.356 2458.43,500.963 2460.97,515.726 2463.5,505.063 2466.04,499.005 2468.57,503.936 2471.1,498.334 2473.64,499.915 2476.17,499.193 2478.71,499 \n 2481.24,499.231 2483.77,499.001 2486.31,499.098 2488.84,499.097 2491.38,499.056 2493.91,499.161 2496.44,499.085 2498.98,499.145 2501.51,499.164 2504.05,499.126 \n 2506.58,499.23 2509.11,499.158 2511.65,499.218 2514.18,499.237 2516.72,499.198 2519.25,499.31 2521.78,499.229 2524.32,499.295 2526.85,499.359 2529.39,499.198 \n 2531.92,499.711 2534.46,499.201 2536.99,499.621 2539.52,501.221 2542.06,497.251 2544.59,509.673 2547.13,498.087 2549.66,512.578 2552.19,524.484 2554.73,529.026 \n 2557.26,538.229 2559.8,601.448 2562.33,576.838 2564.86,587.323 2567.4,640.616 2569.93,580.822 2572.47,594.4 2575,589.208 2577.53,580.905 2580.07,564.382 \n 2582.6,577.085 2585.14,562.46 2587.67,566.744 2590.2,564.646 2592.74,564.091 2595.27,564.633 2597.81,564.04 2600.34,564.232 2602.87,564.186 2605.41,564.135 \n 2607.94,564.249 2610.48,564.163 2613.01,564.226 2615.54,564.245 2618.08,564.205 2620.61,564.312 2623.15,564.237 2625.68,564.299 2628.21,564.319 2630.75,564.28 \n 2633.28,564.39 2635.82,564.312 2638.35,564.377 2640.88,564.411 2643.42,564.331 2645.95,564.579 2648.49,564.353 2651.02,564.534 2653.55,565.162 2656.09,563.519 \n 2658.62,568.74 2661.16,563.534 2663.69,569.096 2666.22,579.297 2668.76,565.671 2671.29,608.985 2673.83,601.365 2676.36,637.351 2678.89,616.904 2681.43,736.499 \n 2683.96,590.577 2686.5,711.217 2689.03,650.488 2691.56,663.55 2694.1,631.849 2696.63,655.405 2699.17,626.46 2701.7,635.507 2704.23,630.704 2706.77,629.193 \n 2709.3,630.534 2711.84,629.02 2714.37,629.459 2716.9,629.295 2719.44,629.22 2721.97,629.355 2724.51,629.244 2727.04,629.314 2729.57,629.33 2732.11,629.289 \n 2734.64,629.4 2737.18,629.322 2739.71,629.386 2742.24,629.406 2744.78,629.366 2747.31,629.478 2749.85,629.4 2752.38,629.465 2754.91,629.491 2757.45,629.435 \n 2759.98,629.6 2762.52,629.464 2765.05,629.573 2767.58,629.846 2770.12,629.122 2772.65,631.444 2775.19,629.073 2777.72,631.327 2780.25,637.505 2782.79,625.464 \n 2785.32,662.113 2787.86,638.614 2790.39,680.192 2792.93,667.651 2795.46,771.697 2797.99,629.658 2800.53,808.72 2803.06,704.09 2805.6,743.605 2808.13,706.469 \n 2810.66,733.414 2813.2,692.495 2815.73,706.443 2818.27,697.938 2820.8,694.301 2823.33,697.352 2825.87,693.889 2828.4,694.865 2830.94,694.442 2833.47,694.312 \n 2836,694.496 2838.54,694.326 2841.07,694.412 2843.61,694.422 2846.14,694.378 2848.67,694.493 2851.21,694.411 2853.74,694.477 2856.28,694.498 2858.81,694.457 \n 2861.34,694.571 2863.88,694.491 2866.41,694.558 2868.95,694.581 2871.48,694.533 2874.01,694.671 2876.55,694.566 2879.08,694.652 2881.62,694.788 2884.15,694.429 \n 2886.68,695.582 2889.22,694.407 2891.75,695.439 2894.29,698.93 2896.82,691.055 2899.35,715.272 2901.89,695.448 2904.42,724.58 2906.96,727.559 2909.49,781.358 \n 2912.02,707.193 2914.56,858.728 2917.09,765.484 2919.63,808.184 2922.16,793.015 2924.69,800.752 2927.23,764.486 2929.76,778.235 2932.3,766.962 2934.83,759.431 \n 2937.36,765.485 2939.9,758.602 2942.43,760.554 2944.97,759.652 2947.5,759.411 2950.03,759.691 2952.57,759.408 2955.1,759.523 2957.64,759.519 2960.17,759.472 \n 2962.7,759.591 2965.24,759.505 2967.77,759.574 2970.31,759.595 2972.84,759.552 2975.37,759.67 2977.91,759.587 2980.44,759.656 2982.98,759.679 2985.51,759.633 \n 2988.04,759.762 2990.58,759.668 2993.11,759.746 2995.65,759.826 2998.18,759.621 3000.71,760.277 3003.25,759.622 3005.78,760.17 3008.32,762.199 3010.85,757.278 \n 3013.38,772.604 3015.92,758.717 3018.45,776.887 3020.99,787.531 3023.52,803.235 3026.05,792.151 3028.59,882.223 3031.12,835.077 3033.66,857.435 3036.19,887.501 \n 3038.73,852.098 3041.26,844.953 3043.79,848.378 3046.33,837.963 3048.86,824.668 3051.4,835.013 3053.93,823.172 3056.46,826.599 3059,824.951 3061.53,824.517 \n 3064.07,824.962 3066.6,824.486 3069.13,824.652 3071.67,824.624 3074.2,824.571 3076.74,824.697 3079.27,824.604 3081.8,824.675 3084.34,824.696 3086.87,824.652 \n 3089.41,824.774 3091.94,824.688 3094.47,824.759 3097.01,824.782 3099.54,824.736 3102.08,824.864 3104.61,824.773 3107.14,824.848 3109.68,824.904 3112.21,824.767 \n 3114.75,825.199 \n \"/>\n</svg>\n"
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dt = 0.05\nsol = solve(ODEProblem(f!, U0(p), tspan, p), RK4(); adaptive=false, dt)\n@show length(sol.t)\nplot_pendulum(sol; title=\"RK4 with fixed dt = $dt\")",
"execution_count": 8,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 601\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip770\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip770)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip771\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip770)\" d=\"\nM157.191 910.808 L1484.9 910.808 L1484.9 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip772\">\n <rect x=\"157\" y=\"87\" width=\"1329\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 194.767,910.808 194.767,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 278.271,910.808 278.271,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 361.775,910.808 361.775,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 445.278,910.808 445.278,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 528.782,910.808 528.782,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 612.285,910.808 612.285,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 695.789,910.808 695.789,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 779.292,910.808 779.292,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 862.796,910.808 862.796,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 946.3,910.808 946.3,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1029.8,910.808 1029.8,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1113.31,910.808 1113.31,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1196.81,910.808 1196.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1280.31,910.808 1280.31,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1363.82,910.808 1363.82,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1447.32,910.808 1447.32,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1484.9,910.808 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 194.767,910.808 194.767,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 278.271,910.808 278.271,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 361.775,910.808 361.775,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 445.278,910.808 445.278,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 528.782,910.808 528.782,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 612.285,910.808 612.285,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 695.789,910.808 695.789,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 779.292,910.808 779.292,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 862.796,910.808 862.796,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 946.3,910.808 946.3,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1029.8,910.808 1029.8,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1113.31,910.808 1113.31,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1196.81,910.808 1196.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1280.31,910.808 1280.31,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1363.82,910.808 1363.82,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1447.32,910.808 1447.32,900.926 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M194.767 946.399 Q191.156 946.399 189.328 949.963 Q187.522 953.505 187.522 960.635 Q187.522 967.741 189.328 971.306 Q191.156 974.847 194.767 974.847 Q198.402 974.847 200.207 971.306 Q202.036 967.741 202.036 960.635 Q202.036 953.505 200.207 949.963 Q198.402 946.399 194.767 946.399 M194.767 942.695 Q200.578 942.695 203.633 947.301 Q206.712 951.885 206.712 960.635 Q206.712 969.361 203.633 973.968 Q200.578 978.551 194.767 978.551 Q188.957 978.551 185.879 973.968 Q182.823 969.361 182.823 960.635 Q182.823 951.885 185.879 947.301 Q188.957 942.695 194.767 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M272.924 973.945 L289.243 973.945 L289.243 977.88 L267.299 977.88 L267.299 973.945 Q269.961 971.19 274.544 966.56 Q279.151 961.908 280.331 960.565 Q282.577 958.042 283.456 956.306 Q284.359 954.547 284.359 952.857 Q284.359 950.102 282.415 948.366 Q280.493 946.63 277.391 946.63 Q275.192 946.63 272.739 947.394 Q270.308 948.158 267.53 949.709 L267.53 944.987 Q270.354 943.852 272.808 943.274 Q275.262 942.695 277.299 942.695 Q282.669 942.695 285.864 945.38 Q289.058 948.065 289.058 952.556 Q289.058 954.686 288.248 956.607 Q287.461 958.505 285.354 961.098 Q284.776 961.769 281.674 964.986 Q278.572 968.181 272.924 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M364.784 947.394 L352.978 965.843 L364.784 965.843 L364.784 947.394 M363.557 943.32 L369.437 943.32 L369.437 965.843 L374.367 965.843 L374.367 969.732 L369.437 969.732 L369.437 977.88 L364.784 977.88 L364.784 969.732 L349.182 969.732 L349.182 965.218 L363.557 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M445.683 958.736 Q442.535 958.736 440.683 960.889 Q438.855 963.042 438.855 966.792 Q438.855 970.519 440.683 972.695 Q442.535 974.847 445.683 974.847 Q448.831 974.847 450.66 972.695 Q452.512 970.519 452.512 966.792 Q452.512 963.042 450.66 960.889 Q448.831 958.736 445.683 958.736 M454.966 944.084 L454.966 948.343 Q453.206 947.51 451.401 947.07 Q449.618 946.63 447.859 946.63 Q443.23 946.63 440.776 949.755 Q438.345 952.88 437.998 959.199 Q439.364 957.186 441.424 956.121 Q443.484 955.033 445.961 955.033 Q451.169 955.033 454.179 958.204 Q457.211 961.352 457.211 966.792 Q457.211 972.116 454.063 975.334 Q450.915 978.551 445.683 978.551 Q439.688 978.551 436.517 973.968 Q433.345 969.361 433.345 960.635 Q433.345 952.44 437.234 947.579 Q441.123 942.695 447.674 942.695 Q449.433 942.695 451.216 943.042 Q453.021 943.389 454.966 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M528.782 961.468 Q525.448 961.468 523.527 963.25 Q521.629 965.033 521.629 968.158 Q521.629 971.283 523.527 973.065 Q525.448 974.847 528.782 974.847 Q532.115 974.847 534.036 973.065 Q535.958 971.26 535.958 968.158 Q535.958 965.033 534.036 963.25 Q532.138 961.468 528.782 961.468 M524.106 959.477 Q521.097 958.736 519.407 956.676 Q517.74 954.616 517.74 951.653 Q517.74 947.51 520.68 945.102 Q523.643 942.695 528.782 942.695 Q533.944 942.695 536.884 945.102 Q539.823 947.51 539.823 951.653 Q539.823 954.616 538.134 956.676 Q536.467 958.736 533.481 959.477 Q536.86 960.264 538.735 962.556 Q540.633 964.848 540.633 968.158 Q540.633 973.181 537.555 975.866 Q534.499 978.551 528.782 978.551 Q523.064 978.551 519.985 975.866 Q516.93 973.181 516.93 968.158 Q516.93 964.848 518.828 962.556 Q520.726 960.264 524.106 959.477 M522.393 952.093 Q522.393 954.778 524.06 956.283 Q525.749 957.787 528.782 957.787 Q531.791 957.787 533.481 956.283 Q535.194 954.778 535.194 952.093 Q535.194 949.408 533.481 947.903 Q531.791 946.399 528.782 946.399 Q525.749 946.399 524.06 947.903 Q522.393 949.408 522.393 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M586.973 973.945 L594.612 973.945 L594.612 947.579 L586.302 949.246 L586.302 944.987 L594.565 943.32 L599.241 943.32 L599.241 973.945 L606.88 973.945 L606.88 977.88 L586.973 977.88 L586.973 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M626.325 946.399 Q622.713 946.399 620.885 949.963 Q619.079 953.505 619.079 960.635 Q619.079 967.741 620.885 971.306 Q622.713 974.847 626.325 974.847 Q629.959 974.847 631.764 971.306 Q633.593 967.741 633.593 960.635 Q633.593 953.505 631.764 949.963 Q629.959 946.399 626.325 946.399 M626.325 942.695 Q632.135 942.695 635.19 947.301 Q638.269 951.885 638.269 960.635 Q638.269 969.361 635.19 973.968 Q632.135 978.551 626.325 978.551 Q620.514 978.551 617.436 973.968 Q614.38 969.361 614.38 960.635 Q614.38 951.885 617.436 947.301 Q620.514 942.695 626.325 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M671.275 973.945 L678.914 973.945 L678.914 947.579 L670.604 949.246 L670.604 944.987 L678.868 943.32 L683.544 943.32 L683.544 973.945 L691.182 973.945 L691.182 977.88 L671.275 977.88 L671.275 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M704.655 973.945 L720.974 973.945 L720.974 977.88 L699.03 977.88 L699.03 973.945 Q701.692 971.19 706.275 966.56 Q710.881 961.908 712.062 960.565 Q714.307 958.042 715.187 956.306 Q716.09 954.547 716.09 952.857 Q716.09 950.102 714.145 948.366 Q712.224 946.63 709.122 946.63 Q706.923 946.63 704.469 947.394 Q702.039 948.158 699.261 949.709 L699.261 944.987 Q702.085 943.852 704.539 943.274 Q706.992 942.695 709.029 942.695 Q714.4 942.695 717.594 945.38 Q720.789 948.065 720.789 952.556 Q720.789 954.686 719.979 956.607 Q719.191 958.505 717.085 961.098 Q716.506 961.769 713.404 964.986 Q710.303 968.181 704.655 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M753.737 973.945 L761.376 973.945 L761.376 947.579 L753.066 949.246 L753.066 944.987 L761.33 943.32 L766.005 943.32 L766.005 973.945 L773.644 973.945 L773.644 977.88 L753.737 977.88 L753.737 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M795.936 947.394 L784.13 965.843 L795.936 965.843 L795.936 947.394 M794.709 943.32 L800.589 943.32 L800.589 965.843 L805.519 965.843 L805.519 969.732 L800.589 969.732 L800.589 977.88 L795.936 977.88 L795.936 969.732 L780.334 969.732 L780.334 965.218 L794.709 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M837.403 973.945 L845.041 973.945 L845.041 947.579 L836.731 949.246 L836.731 944.987 L844.995 943.32 L849.671 943.32 L849.671 973.945 L857.31 973.945 L857.31 977.88 L837.403 977.88 L837.403 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M877.333 958.736 Q874.185 958.736 872.333 960.889 Q870.504 963.042 870.504 966.792 Q870.504 970.519 872.333 972.695 Q874.185 974.847 877.333 974.847 Q880.481 974.847 882.31 972.695 Q884.162 970.519 884.162 966.792 Q884.162 963.042 882.31 960.889 Q880.481 958.736 877.333 958.736 M886.615 944.084 L886.615 948.343 Q884.856 947.51 883.05 947.07 Q881.268 946.63 879.509 946.63 Q874.879 946.63 872.426 949.755 Q869.995 952.88 869.648 959.199 Q871.013 957.186 873.074 956.121 Q875.134 955.033 877.611 955.033 Q882.819 955.033 885.828 958.204 Q888.861 961.352 888.861 966.792 Q888.861 972.116 885.712 975.334 Q882.564 978.551 877.333 978.551 Q871.338 978.551 868.166 973.968 Q864.995 969.361 864.995 960.635 Q864.995 952.44 868.884 947.579 Q872.773 942.695 879.324 942.695 Q881.083 942.695 882.865 943.042 Q884.671 943.389 886.615 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M921.033 973.945 L928.672 973.945 L928.672 947.579 L920.362 949.246 L920.362 944.987 L928.626 943.32 L933.302 943.32 L933.302 973.945 L940.941 973.945 L940.941 977.88 L921.033 977.88 L921.033 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M960.385 961.468 Q957.052 961.468 955.13 963.25 Q953.232 965.033 953.232 968.158 Q953.232 971.283 955.13 973.065 Q957.052 974.847 960.385 974.847 Q963.718 974.847 965.64 973.065 Q967.561 971.26 967.561 968.158 Q967.561 965.033 965.64 963.25 Q963.742 961.468 960.385 961.468 M955.709 959.477 Q952.7 958.736 951.01 956.676 Q949.343 954.616 949.343 951.653 Q949.343 947.51 952.283 945.102 Q955.246 942.695 960.385 942.695 Q965.547 942.695 968.487 945.102 Q971.427 947.51 971.427 951.653 Q971.427 954.616 969.737 956.676 Q968.07 958.736 965.084 959.477 Q968.464 960.264 970.339 962.556 Q972.237 964.848 972.237 968.158 Q972.237 973.181 969.158 975.866 Q966.103 978.551 960.385 978.551 Q954.668 978.551 951.589 975.866 Q948.533 973.181 948.533 968.158 Q948.533 964.848 950.431 962.556 Q952.33 960.264 955.709 959.477 M953.996 952.093 Q953.996 954.778 955.663 956.283 Q957.353 957.787 960.385 957.787 Q963.394 957.787 965.084 956.283 Q966.797 954.778 966.797 952.093 Q966.797 949.408 965.084 947.903 Q963.394 946.399 960.385 946.399 Q957.353 946.399 955.663 947.903 Q953.996 949.408 953.996 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1008.58 973.945 L1024.9 973.945 L1024.9 977.88 L1002.95 977.88 L1002.95 973.945 Q1005.61 971.19 1010.2 966.56 Q1014.8 961.908 1015.98 960.565 Q1018.23 958.042 1019.11 956.306 Q1020.01 954.547 1020.01 952.857 Q1020.01 950.102 1018.07 948.366 Q1016.15 946.63 1013.04 946.63 Q1010.84 946.63 1008.39 947.394 Q1005.96 948.158 1003.18 949.709 L1003.18 944.987 Q1006.01 943.852 1008.46 943.274 Q1010.91 942.695 1012.95 942.695 Q1018.32 942.695 1021.52 945.38 Q1024.71 948.065 1024.71 952.556 Q1024.71 954.686 1023.9 956.607 Q1023.11 958.505 1021.01 961.098 Q1020.43 961.769 1017.33 964.986 Q1014.22 968.181 1008.58 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1044.71 946.399 Q1041.1 946.399 1039.27 949.963 Q1037.47 953.505 1037.47 960.635 Q1037.47 967.741 1039.27 971.306 Q1041.1 974.847 1044.71 974.847 Q1048.34 974.847 1050.15 971.306 Q1051.98 967.741 1051.98 960.635 Q1051.98 953.505 1050.15 949.963 Q1048.34 946.399 1044.71 946.399 M1044.71 942.695 Q1050.52 942.695 1053.58 947.301 Q1056.65 951.885 1056.65 960.635 Q1056.65 969.361 1053.58 973.968 Q1050.52 978.551 1044.71 978.551 Q1038.9 978.551 1035.82 973.968 Q1032.77 969.361 1032.77 960.635 Q1032.77 951.885 1035.82 947.301 Q1038.9 942.695 1044.71 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1092.88 973.945 L1109.2 973.945 L1109.2 977.88 L1087.25 977.88 L1087.25 973.945 Q1089.92 971.19 1094.5 966.56 Q1099.11 961.908 1100.29 960.565 Q1102.53 958.042 1103.41 956.306 Q1104.31 954.547 1104.31 952.857 Q1104.31 950.102 1102.37 948.366 Q1100.45 946.63 1097.35 946.63 Q1095.15 946.63 1092.69 947.394 Q1090.26 948.158 1087.49 949.709 L1087.49 944.987 Q1090.31 943.852 1092.76 943.274 Q1095.22 942.695 1097.25 942.695 Q1102.62 942.695 1105.82 945.38 Q1109.01 948.065 1109.01 952.556 Q1109.01 954.686 1108.2 956.607 Q1107.42 958.505 1105.31 961.098 Q1104.73 961.769 1101.63 964.986 Q1098.53 968.181 1092.88 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1123.04 973.945 L1139.36 973.945 L1139.36 977.88 L1117.42 977.88 L1117.42 973.945 Q1120.08 971.19 1124.66 966.56 Q1129.27 961.908 1130.45 960.565 Q1132.69 958.042 1133.57 956.306 Q1134.48 954.547 1134.48 952.857 Q1134.48 950.102 1132.53 948.366 Q1130.61 946.63 1127.51 946.63 Q1125.31 946.63 1122.86 947.394 Q1120.42 948.158 1117.65 949.709 L1117.65 944.987 Q1120.47 943.852 1122.92 943.274 Q1125.38 942.695 1127.42 942.695 Q1132.79 942.695 1135.98 945.38 Q1139.17 948.065 1139.17 952.556 Q1139.17 954.686 1138.36 956.607 Q1137.58 958.505 1135.47 961.098 Q1134.89 961.769 1131.79 964.986 Q1128.69 968.181 1123.04 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1175.34 973.945 L1191.66 973.945 L1191.66 977.88 L1169.72 977.88 L1169.72 973.945 Q1172.38 971.19 1176.96 966.56 Q1181.57 961.908 1182.75 960.565 Q1184.99 958.042 1185.87 956.306 Q1186.78 954.547 1186.78 952.857 Q1186.78 950.102 1184.83 948.366 Q1182.91 946.63 1179.81 946.63 Q1177.61 946.63 1175.16 947.394 Q1172.72 948.158 1169.95 949.709 L1169.95 944.987 Q1172.77 943.852 1175.22 943.274 Q1177.68 942.695 1179.72 942.695 Q1185.09 942.695 1188.28 945.38 Q1191.47 948.065 1191.47 952.556 Q1191.47 954.686 1190.66 956.607 Q1189.88 958.505 1187.77 961.098 Q1187.19 961.769 1184.09 964.986 Q1180.99 968.181 1175.34 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1214.32 947.394 L1202.52 965.843 L1214.32 965.843 L1214.32 947.394 M1213.09 943.32 L1218.97 943.32 L1218.97 965.843 L1223.9 965.843 L1223.9 969.732 L1218.97 969.732 L1218.97 977.88 L1214.32 977.88 L1214.32 969.732 L1198.72 969.732 L1198.72 965.218 L1213.09 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1259.01 973.945 L1275.33 973.945 L1275.33 977.88 L1253.38 977.88 L1253.38 973.945 Q1256.04 971.19 1260.63 966.56 Q1265.23 961.908 1266.41 960.565 Q1268.66 958.042 1269.54 956.306 Q1270.44 954.547 1270.44 952.857 Q1270.44 950.102 1268.5 948.366 Q1266.58 946.63 1263.47 946.63 Q1261.27 946.63 1258.82 947.394 Q1256.39 948.158 1253.61 949.709 L1253.61 944.987 Q1256.44 943.852 1258.89 943.274 Q1261.34 942.695 1263.38 942.695 Q1268.75 942.695 1271.95 945.38 Q1275.14 948.065 1275.14 952.556 Q1275.14 954.686 1274.33 956.607 Q1273.54 958.505 1271.44 961.098 Q1270.86 961.769 1267.76 964.986 Q1264.65 968.181 1259.01 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1295.72 958.736 Q1292.57 958.736 1290.72 960.889 Q1288.89 963.042 1288.89 966.792 Q1288.89 970.519 1290.72 972.695 Q1292.57 974.847 1295.72 974.847 Q1298.87 974.847 1300.7 972.695 Q1302.55 970.519 1302.55 966.792 Q1302.55 963.042 1300.7 960.889 Q1298.87 958.736 1295.72 958.736 M1305 944.084 L1305 948.343 Q1303.24 947.51 1301.44 947.07 Q1299.65 946.63 1297.89 946.63 Q1293.27 946.63 1290.81 949.755 Q1288.38 952.88 1288.03 959.199 Q1289.4 957.186 1291.46 956.121 Q1293.52 955.033 1296 955.033 Q1301.2 955.033 1304.21 958.204 Q1307.25 961.352 1307.25 966.792 Q1307.25 972.116 1304.1 975.334 Q1300.95 978.551 1295.72 978.551 Q1289.72 978.551 1286.55 973.968 Q1283.38 969.361 1283.38 960.635 Q1283.38 952.44 1287.27 947.579 Q1291.16 942.695 1297.71 942.695 Q1299.47 942.695 1301.25 943.042 Q1303.06 943.389 1305 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1342.64 973.945 L1358.96 973.945 L1358.96 977.88 L1337.01 977.88 L1337.01 973.945 Q1339.67 971.19 1344.26 966.56 Q1348.86 961.908 1350.04 960.565 Q1352.29 958.042 1353.17 956.306 Q1354.07 954.547 1354.07 952.857 Q1354.07 950.102 1352.13 948.366 Q1350.21 946.63 1347.1 946.63 Q1344.91 946.63 1342.45 947.394 Q1340.02 948.158 1337.24 949.709 L1337.24 944.987 Q1340.07 943.852 1342.52 943.274 Q1344.97 942.695 1347.01 942.695 Q1352.38 942.695 1355.58 945.38 Q1358.77 948.065 1358.77 952.556 Q1358.77 954.686 1357.96 956.607 Q1357.17 958.505 1355.07 961.098 Q1354.49 961.769 1351.39 964.986 Q1348.28 968.181 1342.64 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1378.77 961.468 Q1375.44 961.468 1373.52 963.25 Q1371.62 965.033 1371.62 968.158 Q1371.62 971.283 1373.52 973.065 Q1375.44 974.847 1378.77 974.847 Q1382.1 974.847 1384.03 973.065 Q1385.95 971.26 1385.95 968.158 Q1385.95 965.033 1384.03 963.25 Q1382.13 961.468 1378.77 961.468 M1374.1 959.477 Q1371.09 958.736 1369.4 956.676 Q1367.73 954.616 1367.73 951.653 Q1367.73 947.51 1370.67 945.102 Q1373.63 942.695 1378.77 942.695 Q1383.93 942.695 1386.87 945.102 Q1389.81 947.51 1389.81 951.653 Q1389.81 954.616 1388.12 956.676 Q1386.46 958.736 1383.47 959.477 Q1386.85 960.264 1388.72 962.556 Q1390.62 964.848 1390.62 968.158 Q1390.62 973.181 1387.54 975.866 Q1384.49 978.551 1378.77 978.551 Q1373.05 978.551 1369.97 975.866 Q1366.92 973.181 1366.92 968.158 Q1366.92 964.848 1368.82 962.556 Q1370.72 960.264 1374.1 959.477 M1372.38 952.093 Q1372.38 954.778 1374.05 956.283 Q1375.74 957.787 1378.77 957.787 Q1381.78 957.787 1383.47 956.283 Q1385.18 954.778 1385.18 952.093 Q1385.18 949.408 1383.47 947.903 Q1381.78 946.399 1378.77 946.399 Q1375.74 946.399 1374.05 947.903 Q1372.38 949.408 1372.38 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1436.16 959.246 Q1439.52 959.963 1441.39 962.232 Q1443.29 964.5 1443.29 967.834 Q1443.29 972.949 1439.77 975.75 Q1436.26 978.551 1429.77 978.551 Q1427.6 978.551 1425.28 978.111 Q1422.99 977.695 1420.54 976.838 L1420.54 972.324 Q1422.48 973.459 1424.8 974.037 Q1427.11 974.616 1429.64 974.616 Q1434.03 974.616 1436.33 972.88 Q1438.64 971.144 1438.64 967.834 Q1438.64 964.778 1436.49 963.065 Q1434.36 961.329 1430.54 961.329 L1426.51 961.329 L1426.51 957.486 L1430.72 957.486 Q1434.17 957.486 1436 956.121 Q1437.83 954.732 1437.83 952.139 Q1437.83 949.477 1435.93 948.065 Q1434.06 946.63 1430.54 946.63 Q1428.62 946.63 1426.42 947.047 Q1424.22 947.463 1421.58 948.343 L1421.58 944.176 Q1424.24 943.436 1426.56 943.065 Q1428.9 942.695 1430.96 942.695 Q1436.28 942.695 1439.38 945.125 Q1442.48 947.533 1442.48 951.653 Q1442.48 954.524 1440.84 956.514 Q1439.2 958.482 1436.16 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1462.16 946.399 Q1458.55 946.399 1456.72 949.963 Q1454.91 953.505 1454.91 960.635 Q1454.91 967.741 1456.72 971.306 Q1458.55 974.847 1462.16 974.847 Q1465.79 974.847 1467.6 971.306 Q1469.43 967.741 1469.43 960.635 Q1469.43 953.505 1467.6 949.963 Q1465.79 946.399 1462.16 946.399 M1462.16 942.695 Q1467.97 942.695 1471.02 947.301 Q1474.1 951.885 1474.1 960.635 Q1474.1 969.361 1471.02 973.968 Q1467.97 978.551 1462.16 978.551 Q1456.35 978.551 1453.27 973.968 Q1450.21 969.361 1450.21 960.635 Q1450.21 951.885 1453.27 947.301 Q1456.35 942.695 1462.16 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1484.9,910.808 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1484.9,832.378 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1484.9,753.948 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1484.9,675.518 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1484.9,597.088 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1484.9,518.658 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1484.9,440.227 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1484.9,361.797 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1484.9,283.367 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1484.9,204.937 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1484.9,126.507 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 173.123,910.808 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 173.123,832.378 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 173.123,753.948 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 173.123,675.518 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 173.123,597.088 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 173.123,518.658 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 173.123,440.227 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 173.123,361.797 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 173.123,283.367 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 173.123,204.937 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 173.123,126.507 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M484.66 31.5855 Q486.541 32.222 488.306 34.3054 Q490.1 36.3887 491.894 40.0345 L497.825 51.84 L491.547 51.84 L486.02 40.7579 Q483.879 36.4176 481.853 34.9998 Q479.857 33.582 476.385 33.582 L470.019 33.582 L470.019 51.84 L464.174 51.84 L464.174 8.64 L477.368 8.64 Q484.776 8.64 488.422 11.736 Q492.067 14.8321 492.067 21.0821 Q492.067 25.1619 490.158 27.8529 Q488.277 30.5438 484.66 31.5855 M470.019 13.4432 L470.019 28.7788 L477.368 28.7788 Q481.593 28.7788 483.734 26.8401 Q485.904 24.8726 485.904 21.0821 Q485.904 17.2916 483.734 15.3819 Q481.593 13.4432 477.368 13.4432 L470.019 13.4432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M505.349 8.64 L511.193 8.64 L511.193 26.898 L530.58 8.64 L538.103 8.64 L516.662 28.7788 L539.637 51.84 L531.94 51.84 L511.193 31.0357 L511.193 51.84 L505.349 51.84 L505.349 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M560.788 13.7326 L546.031 36.7938 L560.788 36.7938 L560.788 13.7326 M559.254 8.64 L566.604 8.64 L566.604 36.7938 L572.767 36.7938 L572.767 41.6549 L566.604 41.6549 L566.604 51.84 L560.788 51.84 L560.788 41.6549 L541.286 41.6549 L541.286 36.0125 L559.254 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M597.42 19.4328 L602.744 19.4328 L609.399 44.722 L616.025 19.4328 L622.304 19.4328 L628.959 44.722 L635.585 19.4328 L640.909 19.4328 L632.431 51.84 L626.152 51.84 L619.179 25.2776 L612.177 51.84 L605.898 51.84 L597.42 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M648.982 19.4328 L654.306 19.4328 L654.306 51.84 L648.982 51.84 L648.982 19.4328 M648.982 6.81709 L654.306 6.81709 L654.306 13.559 L648.982 13.559 L648.982 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M670.712 10.2314 L670.712 19.4328 L681.679 19.4328 L681.679 23.5705 L670.712 23.5705 L670.712 41.163 Q670.712 45.1271 671.783 46.2555 Q672.882 47.384 676.21 47.384 L681.679 47.384 L681.679 51.84 L676.21 51.84 Q670.047 51.84 667.703 49.5541 Q665.359 47.2393 665.359 41.163 L665.359 23.5705 L661.453 23.5705 L661.453 19.4328 L665.359 19.4328 L665.359 10.2314 L670.712 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M715.619 32.2799 L715.619 51.84 L710.295 51.84 L710.295 32.4535 Q710.295 27.8529 708.501 25.567 Q706.707 23.2811 703.119 23.2811 Q698.808 23.2811 696.32 26.03 Q693.831 28.7788 693.831 33.5241 L693.831 51.84 L688.478 51.84 L688.478 6.81709 L693.831 6.81709 L693.831 24.4675 Q695.741 21.545 698.316 20.0983 Q700.92 18.6515 704.306 18.6515 Q709.89 18.6515 712.755 22.1237 Q715.619 25.567 715.619 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M761.481 6.81709 L761.481 11.2442 L756.389 11.2442 Q753.524 11.2442 752.396 12.4016 Q751.296 13.559 751.296 16.5682 L751.296 19.4328 L760.064 19.4328 L760.064 23.5705 L751.296 23.5705 L751.296 51.84 L745.943 51.84 L745.943 23.5705 L740.851 23.5705 L740.851 19.4328 L745.943 19.4328 L745.943 17.1758 Q745.943 11.765 748.461 9.30551 Q750.978 6.81709 756.447 6.81709 L761.481 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M765.937 19.4328 L771.261 19.4328 L771.261 51.84 L765.937 51.84 L765.937 19.4328 M765.937 6.81709 L771.261 6.81709 L771.261 13.559 L765.937 13.559 L765.937 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M809.34 19.4328 L797.621 35.2024 L809.948 51.84 L803.669 51.84 L794.236 39.1086 L784.803 51.84 L778.524 51.84 L791.111 34.8841 L779.595 19.4328 L785.874 19.4328 L794.467 30.9778 L803.061 19.4328 L809.34 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M843.368 34.3054 L843.368 36.9095 L818.889 36.9095 Q819.236 42.4072 822.187 45.3007 Q825.167 48.1653 830.463 48.1653 Q833.53 48.1653 836.394 47.4129 Q839.288 46.6606 842.123 45.156 L842.123 50.1907 Q839.259 51.406 836.25 52.0425 Q833.24 52.6791 830.144 52.6791 Q822.39 52.6791 817.847 48.1653 Q813.333 43.6514 813.333 35.9547 Q813.333 27.9975 817.615 23.339 Q821.927 18.6515 829.218 18.6515 Q835.758 18.6515 839.548 22.876 Q843.368 27.0716 843.368 34.3054 M838.044 32.7429 Q837.986 28.3737 835.584 25.7695 Q833.211 23.1654 829.276 23.1654 Q824.82 23.1654 822.129 25.6827 Q819.467 28.2001 819.062 32.7718 L838.044 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M873.431 24.3517 L873.431 6.81709 L878.755 6.81709 L878.755 51.84 L873.431 51.84 L873.431 46.9789 Q871.753 49.8724 869.178 51.2902 Q866.631 52.6791 863.043 52.6791 Q857.17 52.6791 853.466 47.9916 Q849.791 43.3042 849.791 35.6653 Q849.791 28.0265 853.466 23.339 Q857.17 18.6515 863.043 18.6515 Q866.631 18.6515 869.178 20.0693 Q871.753 21.4582 873.431 24.3517 M855.289 35.6653 Q855.289 41.5391 857.69 44.8956 Q860.121 48.2231 864.345 48.2231 Q868.57 48.2231 871 44.8956 Q873.431 41.5391 873.431 35.6653 Q873.431 29.7915 871 26.464 Q868.57 23.1075 864.345 23.1075 Q860.121 23.1075 857.69 26.464 Q855.289 29.7915 855.289 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M929.883 24.3517 L929.883 6.81709 L935.207 6.81709 L935.207 51.84 L929.883 51.84 L929.883 46.9789 Q928.205 49.8724 925.63 51.2902 Q923.084 52.6791 919.496 52.6791 Q913.622 52.6791 909.918 47.9916 Q906.243 43.3042 906.243 35.6653 Q906.243 28.0265 909.918 23.339 Q913.622 18.6515 919.496 18.6515 Q923.084 18.6515 925.63 20.0693 Q928.205 21.4582 929.883 24.3517 M911.741 35.6653 Q911.741 41.5391 914.143 44.8956 Q916.573 48.2231 920.798 48.2231 Q925.022 48.2231 927.453 44.8956 Q929.883 41.5391 929.883 35.6653 Q929.883 29.7915 927.453 26.464 Q925.022 23.1075 920.798 23.1075 Q916.573 23.1075 914.143 26.464 Q911.741 29.7915 911.741 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M951.44 10.2314 L951.44 19.4328 L962.406 19.4328 L962.406 23.5705 L951.44 23.5705 L951.44 41.163 Q951.44 45.1271 952.51 46.2555 Q953.61 47.384 956.938 47.384 L962.406 47.384 L962.406 51.84 L956.938 51.84 Q950.774 51.84 948.431 49.5541 Q946.087 47.2393 946.087 41.163 L946.087 23.5705 L942.181 23.5705 L942.181 19.4328 L946.087 19.4328 L946.087 10.2314 L951.44 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M988.94 24.9304 L1026.03 24.9304 L1026.03 29.7915 L988.94 29.7915 L988.94 24.9304 M988.94 36.7359 L1026.03 36.7359 L1026.03 41.6549 L988.94 41.6549 L988.94 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1069.99 12.4884 Q1065.47 12.4884 1063.19 16.9444 Q1060.93 21.3714 1060.93 30.2834 Q1060.93 39.1665 1063.19 43.6225 Q1065.47 48.0495 1069.99 48.0495 Q1074.53 48.0495 1076.79 43.6225 Q1079.07 39.1665 1079.07 30.2834 Q1079.07 21.3714 1076.79 16.9444 Q1074.53 12.4884 1069.99 12.4884 M1069.99 7.85875 Q1077.25 7.85875 1081.07 13.6168 Q1084.92 19.346 1084.92 30.2834 Q1084.92 41.1919 1081.07 46.95 Q1077.25 52.6791 1069.99 52.6791 Q1062.72 52.6791 1058.88 46.95 Q1055.06 41.1919 1055.06 30.2834 Q1055.06 19.346 1058.88 13.6168 Q1062.72 7.85875 1069.99 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1095.19 44.4905 L1101.29 44.4905 L1101.29 51.84 L1095.19 51.84 L1095.19 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1126.53 12.4884 Q1122.01 12.4884 1119.73 16.9444 Q1117.47 21.3714 1117.47 30.2834 Q1117.47 39.1665 1119.73 43.6225 Q1122.01 48.0495 1126.53 48.0495 Q1131.07 48.0495 1133.33 43.6225 Q1135.61 39.1665 1135.61 30.2834 Q1135.61 21.3714 1133.33 16.9444 Q1131.07 12.4884 1126.53 12.4884 M1126.53 7.85875 Q1133.79 7.85875 1137.61 13.6168 Q1141.46 19.346 1141.46 30.2834 Q1141.46 41.1919 1137.61 46.95 Q1133.79 52.6791 1126.53 52.6791 Q1119.26 52.6791 1115.41 46.95 Q1111.6 41.1919 1111.6 30.2834 Q1111.6 19.346 1115.41 13.6168 Q1119.26 7.85875 1126.53 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1151.79 8.64 L1174.73 8.64 L1174.73 13.559 L1157.14 13.559 L1157.14 24.1492 Q1158.41 23.7152 1159.69 23.5126 Q1160.96 23.2811 1162.23 23.2811 Q1169.47 23.2811 1173.69 27.2452 Q1177.91 31.2093 1177.91 37.9801 Q1177.91 44.9535 1173.57 48.8308 Q1169.23 52.6791 1161.33 52.6791 Q1158.61 52.6791 1155.78 52.2162 Q1152.97 51.7532 1149.96 50.8273 L1149.96 44.9535 Q1152.57 46.3713 1155.35 47.0657 Q1158.12 47.7602 1161.22 47.7602 Q1166.22 47.7602 1169.15 45.1271 Q1172.07 42.494 1172.07 37.9801 Q1172.07 33.4663 1169.15 30.8332 Q1166.22 28.2001 1161.22 28.2001 Q1158.88 28.2001 1156.53 28.7209 Q1154.22 29.2417 1151.79 30.3413 L1151.79 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip772)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 194.767,597.088 197.273,567.816 199.778,539.54 202.283,513.096 204.788,489.056 207.293,467.714 209.798,449.118 212.303,433.146 214.808,419.573 217.313,408.131 \n 219.819,398.542 222.324,390.541 224.829,383.89 227.334,378.378 229.839,373.826 232.344,370.081 234.849,367.016 237.354,364.524 239.859,362.519 242.364,360.932 \n 244.87,359.705 247.375,358.798 249.88,358.177 252.385,357.82 254.89,357.716 257.395,357.859 259.9,358.257 262.405,358.921 264.91,359.877 267.416,361.157 \n 269.921,362.806 272.426,364.882 274.931,367.459 277.436,370.624 279.941,374.487 282.446,379.179 284.951,384.858 287.456,391.708 289.962,399.942 292.467,409.806 \n 294.972,421.565 297.477,435.499 299.982,451.873 302.487,470.897 304.992,492.674 307.497,517.118 310.002,543.898 312.507,572.392 315.013,601.731 317.518,630.909 \n 320.023,658.946 322.528,685.042 325.033,708.668 327.538,729.575 330.043,747.746 332.548,763.323 335.053,776.541 337.559,787.672 340.064,796.994 342.569,804.767 \n 345.074,811.225 347.579,816.574 350.084,820.989 352.589,824.619 355.094,827.587 357.599,829.997 360.105,831.931 362.61,833.458 365.115,834.631 367.62,835.491 \n 370.125,836.068 372.63,836.384 375.135,836.448 377.64,836.264 380.145,835.824 382.65,835.114 385.156,834.108 387.661,832.771 390.166,831.055 392.671,828.902 \n 395.176,826.235 397.681,822.963 400.186,818.972 402.691,814.128 405.196,808.27 407.702,801.207 410.207,792.72 412.712,782.562 415.217,770.462 417.722,756.142 \n 420.227,739.343 422.732,719.865 425.237,697.636 427.742,672.774 430.248,645.661 432.753,616.962 435.258,587.578 437.763,558.525 440.268,530.76 442.773,505.044 \n 445.278,481.858 447.783,461.408 450.288,443.679 452.793,428.51 455.299,415.657 457.804,404.843 460.309,395.795 462.814,388.256 465.319,381.994 467.824,376.811 \n 470.329,372.536 472.834,369.024 475.339,366.155 477.845,363.829 480.35,361.967 482.855,360.502 485.36,359.384 487.865,358.573 490.37,358.041 492.875,357.768 \n 495.38,357.746 497.885,357.973 500.39,358.457 502.896,359.216 505.401,360.276 507.906,361.675 510.411,363.461 512.916,365.697 515.421,368.461 517.926,371.849 \n 520.431,375.977 522.936,380.984 525.442,387.037 527.947,394.33 530.452,403.087 532.957,413.562 535.462,426.026 537.967,440.758 540.472,458.009 542.977,477.961 \n 545.482,500.662 547.988,525.948 550.493,553.391 552.998,582.279 555.503,611.679 558.008,640.574 560.513,668.03 563.018,693.335 565.523,716.055 568.028,736.028 \n 570.533,753.299 573.039,768.048 575.544,780.528 578.049,791.017 580.554,799.786 583.059,807.088 585.564,813.149 588.069,818.164 590.574,822.297 593.079,825.69 \n 595.585,828.458 598.09,830.698 600.595,832.487 603.1,833.888 605.605,834.95 608.11,835.71 610.615,836.196 613.12,836.424 615.625,836.402 618.131,836.13 \n 620.636,835.599 623.141,834.788 625.646,833.67 628.151,832.206 630.656,830.344 633.161,828.019 635.666,825.15 638.171,821.637 640.676,817.362 643.182,812.179 \n 645.687,805.917 648.192,798.377 650.697,789.329 653.202,778.515 655.707,765.662 658.212,750.492 660.717,732.763 663.222,712.312 665.728,689.125 668.233,663.408 \n 670.738,635.644 673.243,606.59 675.748,577.206 678.253,548.507 680.758,521.395 683.263,496.534 685.768,474.305 688.274,454.829 690.779,438.03 693.284,423.711 \n 695.789,411.612 698.294,401.454 700.799,392.968 703.304,385.906 705.809,380.048 708.314,375.204 710.819,371.214 713.325,367.943 715.83,365.277 718.335,363.124 \n 720.84,361.41 723.345,360.074 725.85,359.069 728.355,358.361 730.86,357.923 733.365,357.742 735.871,357.809 738.376,358.128 740.881,358.71 743.386,359.576 \n 745.891,360.755 748.396,362.29 750.901,364.233 753.406,366.654 755.911,369.636 758.416,373.282 760.922,377.716 763.427,383.089 765.932,389.575 768.437,397.38 \n 770.942,406.741 773.447,417.918 775.952,431.187 778.457,446.822 780.962,465.055 783.468,486.026 785.973,509.713 788.478,535.862 790.983,563.935 793.488,593.128 \n 795.993,622.459 798.498,650.922 801.003,677.652 803.508,702.038 806.014,723.75 808.519,742.711 811.024,759.025 813.529,772.905 816.034,784.617 818.539,794.44 \n 821.044,802.639 823.549,809.459 826.054,815.112 828.559,819.783 831.065,823.628 833.57,826.777 836.075,829.339 838.58,831.404 841.085,833.042 843.59,834.312 \n 846.095,835.258 848.6,835.913 851.105,836.301 853.611,836.435 856.116,836.319 858.621,835.95 861.126,835.315 863.631,834.392 866.136,833.147 868.641,831.537 \n 871.146,829.506 873.651,826.982 876.157,823.879 878.662,820.089 881.167,815.484 883.672,809.908 886.177,803.18 888.682,795.089 891.187,785.394 893.692,773.829 \n 896.197,760.117 898.702,743.989 901.208,725.225 903.713,703.714 906.218,679.516 908.723,652.939 911.228,624.576 913.733,595.275 916.238,566.037 918.743,537.852 \n 921.248,511.542 923.754,487.664 926.259,466.492 928.764,448.062 931.269,432.245 933.774,418.812 936.279,407.492 938.784,398.008 941.289,390.098 943.794,383.523 \n 946.3,378.076 948.805,373.579 951.31,369.88 953.815,366.854 956.32,364.396 958.825,362.42 961.33,360.858 963.835,359.656 966.34,358.77 968.845,358.169 \n 971.351,357.833 973.856,357.749 976.361,357.914 978.866,358.335 981.371,359.026 983.876,360.012 986.381,361.327 988.886,363.017 991.391,365.142 993.897,367.776 \n 996.402,371.009 998.907,374.954 1001.41,379.744 1003.92,385.538 1006.42,392.525 1008.93,400.923 1011.43,410.977 1013.94,422.956 1016.44,437.14 1018.95,453.79 \n 1021.45,473.108 1023.96,495.179 1026.46,519.896 1028.97,546.894 1031.47,575.524 1033.98,604.895 1036.48,633.995 1038.99,661.857 1041.49,687.707 1044,711.048 \n 1046.5,731.658 1049.01,749.54 1051.51,764.851 1054.02,777.831 1056.52,788.755 1059.03,797.897 1061.53,805.517 1064.04,811.847 1066.54,817.086 1069.05,821.409 \n 1071.55,824.961 1074.06,827.864 1076.57,830.217 1079.07,832.103 1081.58,833.587 1084.08,834.722 1086.59,835.547 1089.09,836.092 1091.6,836.375 1094.1,836.408 \n 1096.61,836.19 1099.11,835.714 1101.62,834.963 1104.12,833.912 1106.63,832.522 1109.13,830.746 1111.64,828.52 1114.14,825.768 1116.65,822.395 1119.15,818.284 \n 1121.66,813.296 1124.16,807.266 1126.67,800 1129.17,791.274 1131.68,780.836 1134.18,768.414 1136.69,753.73 1139.19,736.53 1141.7,716.632 1144.2,693.985 \n 1146.71,668.747 1149.21,641.34 1151.72,612.473 1154.22,583.073 1156.73,554.159 1159.23,526.666 1161.74,501.315 1164.24,478.542 1166.75,458.515 1169.25,441.192 \n 1171.76,426.396 1174.26,413.874 1176.77,403.349 1179.27,394.549 1181.78,387.22 1184.28,381.137 1186.79,376.105 1189.29,371.956 1191.8,368.551 1194.31,365.772 \n 1196.81,363.525 1199.32,361.729 1201.82,360.323 1204.33,359.257 1206.83,358.493 1209.34,358.006 1211.84,357.777 1214.35,357.798 1216.85,358.071 1219.36,358.605 \n 1221.86,359.418 1224.37,360.539 1226.87,362.009 1229.38,363.877 1231.88,366.211 1234.39,369.09 1236.89,372.614 1239.4,376.904 1241.9,382.105 1244.41,388.388 \n 1246.91,395.953 1249.42,405.031 1251.92,415.88 1254.43,428.774 1256.93,443.989 1259.44,461.767 1261.94,482.269 1264.45,505.505 1266.95,531.265 1269.46,559.06 \n 1271.96,588.129 1274.47,617.509 1276.97,646.186 1279.48,673.262 1281.98,698.076 1284.49,720.254 1286.99,739.68 1289.5,756.43 1292,770.706 1294.51,782.766 \n 1297.01,792.89 1299.52,801.348 1302.02,808.385 1304.53,814.223 1307.03,819.048 1309.54,823.023 1312.05,826.281 1314.55,828.936 1317.06,831.078 1319.56,832.784 \n 1322.07,834.111 1324.57,835.107 1327.08,835.808 1329.58,836.237 1332.09,836.41 1334.59,836.333 1337.1,836.003 1339.6,835.409 1342.11,834.529 1344.61,833.333 \n 1347.12,831.778 1349.62,829.811 1352.13,827.362 1354.63,824.347 1357.14,820.66 1359.64,816.178 1362.15,810.748 1364.65,804.193 1367.16,796.307 1369.66,786.851 \n 1372.17,775.563 1374.67,762.167 1377.18,746.391 1379.68,728.005 1382.19,706.878 1384.69,683.043 1387.2,656.769 1389.7,628.609 1392.21,599.381 1394.71,570.073 \n 1397.22,541.687 1399.72,515.076 1402.23,490.836 1404.73,469.279 1407.24,450.472 1409.74,434.303 1412.25,420.553 1414.75,408.956 1417.26,399.233 1419.76,391.118 \n 1422.27,384.37 1424.77,378.778 1427.28,374.158 1429.79,370.357 1432.29,367.244 1434.8,364.713 1437.3,362.676 1439.81,361.062 1442.31,359.813 1444.82,358.887 \n 1447.32,358.25 \n \"/>\n<polyline clip-path=\"url(#clip772)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 194.767,597.088 197.273,567.816 199.778,539.54 202.283,513.095 204.788,489.056 207.293,467.714 209.798,449.117 212.303,433.145 214.808,419.572 217.313,408.13 \n 219.819,398.541 222.324,390.54 224.829,383.889 227.334,378.377 229.839,373.825 232.344,370.08 234.849,367.014 237.354,364.522 239.859,362.517 242.364,360.929 \n 244.87,359.702 247.375,358.794 249.88,358.172 252.385,357.814 254.89,357.709 257.395,357.851 259.9,358.246 262.405,358.909 264.91,359.862 267.416,361.139 \n 269.921,362.784 272.426,364.857 274.931,367.427 277.436,370.586 279.941,374.442 282.446,379.125 284.951,384.793 287.456,391.629 289.962,399.848 292.467,409.694 \n 294.972,421.432 297.477,435.342 299.982,451.689 302.487,470.685 304.992,492.433 307.497,516.852 310.002,543.609 312.507,572.09 315.013,601.426 317.518,630.612 \n 320.023,658.665 322.528,684.784 325.033,708.438 327.538,729.373 330.043,747.572 332.548,763.175 335.053,776.416 337.559,787.568 340.064,796.907 342.569,804.695 \n 345.074,811.166 347.579,816.525 350.084,820.95 352.589,824.587 355.094,827.562 357.599,829.978 360.105,831.917 362.61,833.449 365.115,834.626 367.62,835.49 \n 370.125,836.072 372.63,836.392 375.135,836.461 377.64,836.282 380.145,835.848 382.65,835.145 385.156,834.146 387.661,832.818 390.166,831.114 392.671,828.973 \n 395.176,826.322 397.681,823.067 400.186,819.099 402.691,814.281 405.196,808.453 407.702,801.427 410.207,792.984 412.712,782.877 415.217,770.836 417.722,756.583 \n 420.227,739.857 422.732,720.458 425.237,698.306 427.742,673.515 430.248,646.458 432.753,617.792 435.258,588.413 437.763,559.336 440.268,531.523 442.773,505.741 \n 445.278,482.478 447.783,461.95 450.288,444.145 452.793,428.906 455.299,415.991 457.804,405.123 460.309,396.029 462.814,388.449 465.319,382.154 467.824,376.943 \n 470.329,372.643 472.834,369.111 475.339,366.224 477.845,363.884 480.35,362.008 482.855,360.532 485.36,359.403 487.865,358.582 490.37,358.04 492.875,357.757 \n 495.38,357.725 497.885,357.941 500.39,358.413 502.896,359.158 505.401,360.203 507.906,361.583 510.411,363.348 512.916,365.559 515.421,368.293 517.926,371.645 \n 520.431,375.73 522.936,380.686 525.442,386.677 527.947,393.898 530.452,402.57 532.957,412.945 535.462,425.294 537.967,439.896 540.472,457.006 542.977,476.809 \n 545.482,499.363 547.988,524.518 550.493,551.86 552.998,580.692 555.503,610.091 558.008,639.039 560.513,666.594 563.018,692.029 565.523,714.896 568.028,735.018 \n 570.533,752.432 573.039,767.312 575.544,779.908 578.049,790.497 580.554,799.353 583.059,806.729 585.564,812.853 588.069,817.92 590.574,822.098 593.079,825.528 \n 595.585,828.328 598.09,830.596 600.595,832.408 603.1,833.831 605.605,834.912 608.11,835.69 610.615,836.193 613.12,836.438 615.625,836.434 618.131,836.181 \n 620.636,835.67 623.141,834.882 625.646,833.791 628.151,832.357 630.656,830.531 633.161,828.248 635.666,825.43 638.171,821.977 640.676,817.774 643.182,812.676 \n 645.687,806.516 648.192,799.096 650.697,790.19 653.202,779.541 655.707,766.877 658.212,751.92 660.717,734.423 663.222,714.214 665.728,691.262 668.233,665.751 \n 670.738,638.139 673.243,609.162 675.748,579.765 678.253,550.967 680.758,523.685 683.263,498.607 685.768,476.14 688.274,456.423 690.779,439.397 693.284,424.87 \n 695.789,412.587 698.294,402.27 700.799,393.648 703.304,386.47 705.809,380.514 708.314,375.588 710.819,371.528 713.325,368.197 715.83,365.481 718.335,363.286 \n 720.84,361.534 723.345,360.165 725.85,359.13 728.355,358.394 730.86,357.93 733.365,357.722 735.871,357.762 738.376,358.053 740.881,358.603 743.386,359.434 \n 745.891,360.573 748.396,362.061 750.901,363.95 753.406,366.306 755.911,369.212 758.416,372.767 760.922,377.093 763.427,382.336 765.932,388.668 768.437,396.292 \n 770.942,405.439 773.447,416.367 775.952,429.352 778.457,444.669 780.962,462.557 783.468,483.173 785.973,506.52 788.478,532.376 790.983,560.242 793.488,589.344 \n 795.993,618.716 798.498,647.344 801.003,674.338 803.508,699.049 806.014,721.114 808.519,740.427 811.024,757.071 813.529,771.25 816.034,783.225 818.539,793.276 \n 821.044,801.67 823.549,808.655 826.054,814.448 828.559,819.237 831.065,823.181 833.57,826.414 836.075,829.048 838.58,831.174 841.085,832.866 843.59,834.183 \n 846.095,835.171 848.6,835.866 851.105,836.292 853.611,836.463 856.116,836.386 858.621,836.058 861.126,835.468 863.631,834.594 866.136,833.406 868.641,831.862 \n 871.146,829.909 873.651,827.477 876.157,824.483 878.662,820.822 881.167,816.371 883.672,810.979 886.177,804.47 888.682,796.637 891.187,787.244 893.692,776.03 \n 896.197,762.719 898.702,747.037 901.208,728.753 903.713,707.73 906.218,683.993 908.723,657.803 911.228,629.7 913.733,600.495 916.238,571.17 918.743,542.732 \n 921.248,516.04 923.754,491.703 926.259,470.042 928.764,451.132 931.269,434.866 933.774,421.029 936.279,409.354 938.784,399.565 941.289,391.393 943.794,384.596 \n 946.3,378.963 948.805,374.308 951.31,370.476 953.815,367.337 956.32,364.784 958.825,362.726 961.33,361.093 963.835,359.827 966.34,358.884 968.845,358.23 \n 971.351,357.843 973.856,357.708 976.361,357.822 978.866,358.187 981.371,358.818 983.876,359.736 986.381,360.973 988.886,362.573 991.391,364.593 993.897,367.102 \n 996.402,370.187 998.907,373.956 1001.41,378.536 1003.92,384.081 1006.42,390.771 1008.93,398.819 1011.43,408.463 1013.94,419.968 1016.44,433.613 1018.95,449.665 \n 1021.45,468.347 1023.96,489.776 1026.46,513.897 1028.97,540.411 1031.47,568.732 1033.98,598.02 1036.48,627.275 1038.99,655.505 1041.49,681.881 1044,705.837 \n 1046.5,727.092 1049.01,745.603 1051.51,761.495 1054.02,774.996 1056.52,786.375 1059.03,795.911 1061.53,803.865 1064.04,810.478 1066.54,815.956 1069.05,820.481 \n 1071.55,824.202 1074.06,827.248 1076.57,829.724 1079.07,831.715 1081.58,833.291 1084.08,834.507 1086.59,835.405 1089.09,836.019 1091.6,836.368 1094.1,836.466 \n 1096.61,836.316 1099.11,835.912 1101.62,835.241 1104.12,834.278 1106.63,832.99 1109.13,831.332 1111.64,829.245 1114.14,826.657 1116.65,823.478 1119.15,819.599 \n 1121.66,814.887 1124.16,809.185 1126.67,802.308 1129.17,794.041 1131.68,784.14 1134.18,772.337 1136.69,758.354 1139.19,741.926 1141.7,722.844 1144.2,701.009 \n 1146.71,676.51 1149.21,649.687 1151.72,621.164 1154.22,591.817 1156.73,562.653 1159.23,534.65 1161.74,508.602 1164.24,485.032 1166.75,464.184 1169.25,446.07 \n 1171.76,430.546 1174.26,417.375 1176.77,406.285 1179.27,396.999 1181.78,389.256 1184.28,382.824 1186.79,377.496 1189.29,373.099 1191.8,369.484 1194.31,366.528 \n 1196.81,364.129 1199.32,362.203 1201.82,360.684 1204.33,359.517 1206.83,358.662 1209.34,358.089 1211.84,357.777 1214.35,357.716 1216.85,357.903 1219.36,358.345 \n 1221.86,359.057 1224.37,360.066 1226.87,361.405 1229.38,363.122 1231.88,365.278 1234.39,367.947 1236.89,371.222 1239.4,375.215 1241.9,380.062 1244.41,385.925 \n 1246.91,392.992 1249.42,401.484 1251.92,411.648 1254.43,423.755 1256.93,438.083 1259.44,454.891 1261.94,474.376 1264.45,496.615 1266.95,521.484 1269.46,548.604 \n 1271.96,577.308 1274.47,606.692 1276.97,635.744 1279.48,663.503 1281.98,689.211 1284.49,712.389 1286.99,732.83 1289.5,750.55 1292,765.712 1294.51,778.558 \n 1297.01,789.365 1299.52,798.408 1302.02,805.944 1304.53,812.202 1307.03,817.382 1309.54,821.655 1312.05,825.165 1314.55,828.033 1317.06,830.358 1319.56,832.22 \n 1322.07,833.684 1324.57,834.803 1327.08,835.615 1329.58,836.148 1332.09,836.423 1334.59,836.448 1337.1,836.224 1339.6,835.743 1342.11,834.989 1344.61,833.934 \n 1347.12,832.542 1349.62,830.764 1352.13,828.538 1354.63,825.786 1357.14,822.413 1359.64,818.303 1362.15,813.317 1364.65,807.289 1367.16,800.027 1369.66,791.304 \n 1372.17,780.871 1374.67,768.455 1377.18,753.777 1379.68,736.585 1382.19,716.694 1384.69,694.054 1387.2,668.822 1389.7,641.421 1392.21,612.556 1394.71,583.156 \n 1397.22,554.238 1399.72,526.74 1402.23,501.381 1404.73,478.6 1407.24,458.565 1409.74,441.235 1412.25,426.431 1414.75,413.903 1417.26,403.373 1419.76,394.567 \n 1422.27,387.234 1424.77,381.147 1427.28,376.111 1429.79,371.958 1432.29,368.549 1434.8,365.767 1437.3,363.516 1439.81,361.716 1442.31,360.305 1444.82,359.234 \n 1447.32,358.465 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"\nM1065.48 296.183 L1440.64 296.183 L1440.64 114.743 L1065.48 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1065.48,296.183 1440.64,296.183 1440.64,114.743 1065.48,114.743 1065.48,296.183 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1080.23,175.223 1168.75,175.223 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M1205.21 176.855 L1205.21 192.503 L1200.95 192.503 L1200.95 176.993 Q1200.95 173.313 1199.52 171.484 Q1198.08 169.656 1195.21 169.656 Q1191.76 169.656 1189.77 171.855 Q1187.78 174.054 1187.78 177.85 L1187.78 192.503 L1183.5 192.503 L1183.5 166.577 L1187.78 166.577 L1187.78 170.605 Q1189.31 168.267 1191.37 167.109 Q1193.45 165.952 1196.16 165.952 Q1200.63 165.952 1202.92 168.73 Q1205.21 171.484 1205.21 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1213.27 182.271 L1213.27 166.577 L1217.53 166.577 L1217.53 182.109 Q1217.53 185.79 1218.96 187.642 Q1220.4 189.47 1223.27 189.47 Q1226.72 189.47 1228.71 187.271 Q1230.72 185.072 1230.72 181.276 L1230.72 166.577 L1234.98 166.577 L1234.98 192.503 L1230.72 192.503 L1230.72 188.521 Q1229.17 190.882 1227.11 192.04 Q1225.07 193.174 1222.36 193.174 Q1217.9 193.174 1215.58 190.396 Q1213.27 187.618 1213.27 182.271 M1223.98 165.952 L1223.98 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1263.94 171.554 Q1265.53 168.683 1267.76 167.318 Q1269.98 165.952 1272.99 165.952 Q1277.04 165.952 1279.24 168.799 Q1281.44 171.623 1281.44 176.855 L1281.44 192.503 L1277.16 192.503 L1277.16 176.993 Q1277.16 173.267 1275.84 171.461 Q1274.52 169.656 1271.81 169.656 Q1268.5 169.656 1266.58 171.855 Q1264.66 174.054 1264.66 177.85 L1264.66 192.503 L1260.37 192.503 L1260.37 176.993 Q1260.37 173.243 1259.05 171.461 Q1257.73 169.656 1254.98 169.656 Q1251.72 169.656 1249.79 171.878 Q1247.87 174.077 1247.87 177.85 L1247.87 192.503 L1243.59 192.503 L1243.59 166.577 L1247.87 166.577 L1247.87 170.605 Q1249.33 168.22 1251.37 167.086 Q1253.41 165.952 1256.21 165.952 Q1259.03 165.952 1261 167.387 Q1262.99 168.822 1263.94 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1312.11 178.475 L1312.11 180.558 L1292.53 180.558 Q1292.8 184.956 1295.16 187.271 Q1297.55 189.563 1301.78 189.563 Q1304.24 189.563 1306.53 188.961 Q1308.84 188.359 1311.11 187.155 L1311.11 191.183 Q1308.82 192.155 1306.41 192.665 Q1304.01 193.174 1301.53 193.174 Q1295.33 193.174 1291.69 189.563 Q1288.08 185.952 1288.08 179.794 Q1288.08 173.429 1291.51 169.702 Q1294.96 165.952 1300.79 165.952 Q1306.02 165.952 1309.05 169.331 Q1312.11 172.688 1312.11 178.475 M1307.85 177.225 Q1307.8 173.73 1305.88 171.646 Q1303.98 169.563 1300.84 169.563 Q1297.27 169.563 1295.12 171.577 Q1292.99 173.591 1292.66 177.248 L1307.85 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1334.12 170.558 Q1333.4 170.142 1332.55 169.956 Q1331.72 169.748 1330.7 169.748 Q1327.09 169.748 1325.14 172.109 Q1323.22 174.447 1323.22 178.845 L1323.22 192.503 L1318.94 192.503 L1318.94 166.577 L1323.22 166.577 L1323.22 170.605 Q1324.56 168.244 1326.72 167.109 Q1328.87 165.952 1331.95 165.952 Q1332.39 165.952 1332.92 166.021 Q1333.45 166.068 1334.1 166.183 L1334.12 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1338.59 166.577 L1342.85 166.577 L1342.85 192.503 L1338.59 192.503 L1338.59 166.577 M1338.59 156.484 L1342.85 156.484 L1342.85 161.878 L1338.59 161.878 L1338.59 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1370.42 167.572 L1370.42 171.554 Q1368.61 170.558 1366.78 170.072 Q1364.98 169.563 1363.13 169.563 Q1358.98 169.563 1356.69 172.202 Q1354.4 174.818 1354.4 179.563 Q1354.4 184.308 1356.69 186.947 Q1358.98 189.563 1363.13 189.563 Q1364.98 189.563 1366.78 189.077 Q1368.61 188.567 1370.42 187.572 L1370.42 191.507 Q1368.64 192.341 1366.71 192.757 Q1364.82 193.174 1362.66 193.174 Q1356.81 193.174 1353.36 189.493 Q1349.91 185.813 1349.91 179.563 Q1349.91 173.22 1353.38 169.586 Q1356.88 165.952 1362.94 165.952 Q1364.91 165.952 1366.78 166.369 Q1368.66 166.762 1370.42 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1389.61 179.47 Q1384.45 179.47 1382.46 180.651 Q1380.46 181.831 1380.46 184.679 Q1380.46 186.947 1381.95 188.29 Q1383.45 189.609 1386.02 189.609 Q1389.56 189.609 1391.69 187.109 Q1393.84 184.586 1393.84 180.419 L1393.84 179.47 L1389.61 179.47 M1398.1 177.711 L1398.1 192.503 L1393.84 192.503 L1393.84 188.567 Q1392.39 190.929 1390.21 192.063 Q1388.03 193.174 1384.89 193.174 Q1380.9 193.174 1378.54 190.952 Q1376.21 188.706 1376.21 184.956 Q1376.21 180.581 1379.12 178.359 Q1382.06 176.137 1387.87 176.137 L1393.84 176.137 L1393.84 175.72 Q1393.84 172.781 1391.9 171.183 Q1389.98 169.563 1386.48 169.563 Q1384.26 169.563 1382.15 170.095 Q1380.05 170.628 1378.1 171.693 L1378.1 167.757 Q1380.44 166.855 1382.64 166.415 Q1384.84 165.952 1386.92 165.952 Q1392.55 165.952 1395.33 168.869 Q1398.1 171.785 1398.1 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1406.88 156.484 L1411.14 156.484 L1411.14 192.503 L1406.88 192.503 L1406.88 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip770)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1080.23,235.703 1168.75,235.703 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M1207.53 238.955 L1207.53 241.038 L1187.94 241.038 Q1188.22 245.436 1190.58 247.751 Q1192.97 250.043 1197.2 250.043 Q1199.66 250.043 1201.95 249.441 Q1204.26 248.839 1206.53 247.635 L1206.53 251.663 Q1204.24 252.635 1201.83 253.145 Q1199.42 253.654 1196.95 253.654 Q1190.74 253.654 1187.11 250.043 Q1183.5 246.432 1183.5 240.274 Q1183.5 233.909 1186.92 230.182 Q1190.37 226.432 1196.21 226.432 Q1201.44 226.432 1204.47 229.811 Q1207.53 233.168 1207.53 238.955 M1203.27 237.705 Q1203.22 234.21 1201.3 232.126 Q1199.4 230.043 1196.25 230.043 Q1192.69 230.043 1190.54 232.057 Q1188.41 234.071 1188.08 237.728 L1203.27 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1235.23 227.057 L1225.86 239.673 L1235.72 252.983 L1230.7 252.983 L1223.15 242.798 L1215.6 252.983 L1210.58 252.983 L1220.65 239.418 L1211.44 227.057 L1216.46 227.057 L1223.34 236.293 L1230.21 227.057 L1235.23 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1253.52 239.95 Q1248.36 239.95 1246.37 241.131 Q1244.38 242.311 1244.38 245.159 Q1244.38 247.427 1245.86 248.77 Q1247.36 250.089 1249.93 250.089 Q1253.47 250.089 1255.6 247.589 Q1257.76 245.066 1257.76 240.899 L1257.76 239.95 L1253.52 239.95 M1262.02 238.191 L1262.02 252.983 L1257.76 252.983 L1257.76 249.047 Q1256.3 251.409 1254.12 252.543 Q1251.95 253.654 1248.8 253.654 Q1244.82 253.654 1242.46 251.432 Q1240.12 249.186 1240.12 245.436 Q1240.12 241.061 1243.04 238.839 Q1245.97 236.617 1251.78 236.617 L1257.76 236.617 L1257.76 236.2 Q1257.76 233.261 1255.81 231.663 Q1253.89 230.043 1250.4 230.043 Q1248.17 230.043 1246.07 230.575 Q1243.96 231.108 1242.02 232.173 L1242.02 228.237 Q1244.35 227.335 1246.55 226.895 Q1248.75 226.432 1250.84 226.432 Q1256.46 226.432 1259.24 229.349 Q1262.02 232.265 1262.02 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1289.45 228.052 L1289.45 232.034 Q1287.64 231.038 1285.81 230.552 Q1284.01 230.043 1282.16 230.043 Q1278.01 230.043 1275.72 232.682 Q1273.43 235.298 1273.43 240.043 Q1273.43 244.788 1275.72 247.427 Q1278.01 250.043 1282.16 250.043 Q1284.01 250.043 1285.81 249.557 Q1287.64 249.047 1289.45 248.052 L1289.45 251.987 Q1287.66 252.821 1285.74 253.237 Q1283.85 253.654 1281.69 253.654 Q1275.84 253.654 1272.39 249.973 Q1268.94 246.293 1268.94 240.043 Q1268.94 233.7 1272.41 230.066 Q1275.91 226.432 1281.97 226.432 Q1283.94 226.432 1285.81 226.849 Q1287.69 227.242 1289.45 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1301.07 219.696 L1301.07 227.057 L1309.84 227.057 L1309.84 230.367 L1301.07 230.367 L1301.07 244.441 Q1301.07 247.612 1301.92 248.515 Q1302.8 249.418 1305.47 249.418 L1309.84 249.418 L1309.84 252.983 L1305.47 252.983 Q1300.53 252.983 1298.66 251.154 Q1296.78 249.302 1296.78 244.441 L1296.78 230.367 L1293.66 230.367 L1293.66 227.057 L1296.78 227.057 L1296.78 219.696 L1301.07 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"\nM1825.05 910.808 L3152.76 910.808 L3152.76 87.2921 L1825.05 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip773\">\n <rect x=\"1825\" y=\"87\" width=\"1329\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1862.63,910.808 1862.63,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1946.13,910.808 1946.13,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2029.63,910.808 2029.63,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2113.14,910.808 2113.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2196.64,910.808 2196.64,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2280.14,910.808 2280.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2363.65,910.808 2363.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2447.15,910.808 2447.15,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2530.65,910.808 2530.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2614.16,910.808 2614.16,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2697.66,910.808 2697.66,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2781.17,910.808 2781.17,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2864.67,910.808 2864.67,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2948.17,910.808 2948.17,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3031.68,910.808 3031.68,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3115.18,910.808 3115.18,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1862.63,910.808 1862.63,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1946.13,910.808 1946.13,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2029.63,910.808 2029.63,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2113.14,910.808 2113.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2196.64,910.808 2196.64,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2280.14,910.808 2280.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2363.65,910.808 2363.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2447.15,910.808 2447.15,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2530.65,910.808 2530.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2614.16,910.808 2614.16,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2697.66,910.808 2697.66,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2781.17,910.808 2781.17,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2864.67,910.808 2864.67,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2948.17,910.808 2948.17,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3031.68,910.808 3031.68,900.926 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3115.18,910.808 3115.18,900.926 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M1862.63 946.399 Q1859.01 946.399 1857.19 949.963 Q1855.38 953.505 1855.38 960.635 Q1855.38 967.741 1857.19 971.306 Q1859.01 974.847 1862.63 974.847 Q1866.26 974.847 1868.07 971.306 Q1869.89 967.741 1869.89 960.635 Q1869.89 953.505 1868.07 949.963 Q1866.26 946.399 1862.63 946.399 M1862.63 942.695 Q1868.44 942.695 1871.49 947.301 Q1874.57 951.885 1874.57 960.635 Q1874.57 969.361 1871.49 973.968 Q1868.44 978.551 1862.63 978.551 Q1856.82 978.551 1853.74 973.968 Q1850.68 969.361 1850.68 960.635 Q1850.68 951.885 1853.74 947.301 Q1856.82 942.695 1862.63 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1940.78 973.945 L1957.1 973.945 L1957.1 977.88 L1935.16 977.88 L1935.16 973.945 Q1937.82 971.19 1942.4 966.56 Q1947.01 961.908 1948.19 960.565 Q1950.43 958.042 1951.31 956.306 Q1952.22 954.547 1952.22 952.857 Q1952.22 950.102 1950.27 948.366 Q1948.35 946.63 1945.25 946.63 Q1943.05 946.63 1940.6 947.394 Q1938.17 948.158 1935.39 949.709 L1935.39 944.987 Q1938.21 943.852 1940.67 943.274 Q1943.12 942.695 1945.16 942.695 Q1950.53 942.695 1953.72 945.38 Q1956.92 948.065 1956.92 952.556 Q1956.92 954.686 1956.11 956.607 Q1955.32 958.505 1953.21 961.098 Q1952.63 961.769 1949.53 964.986 Q1946.43 968.181 1940.78 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2032.64 947.394 L2020.84 965.843 L2032.64 965.843 L2032.64 947.394 M2031.42 943.32 L2037.3 943.32 L2037.3 965.843 L2042.23 965.843 L2042.23 969.732 L2037.3 969.732 L2037.3 977.88 L2032.64 977.88 L2032.64 969.732 L2017.04 969.732 L2017.04 965.218 L2031.42 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2113.54 958.736 Q2110.39 958.736 2108.54 960.889 Q2106.71 963.042 2106.71 966.792 Q2106.71 970.519 2108.54 972.695 Q2110.39 974.847 2113.54 974.847 Q2116.69 974.847 2118.52 972.695 Q2120.37 970.519 2120.37 966.792 Q2120.37 963.042 2118.52 960.889 Q2116.69 958.736 2113.54 958.736 M2122.82 944.084 L2122.82 948.343 Q2121.06 947.51 2119.26 947.07 Q2117.48 946.63 2115.72 946.63 Q2111.09 946.63 2108.63 949.755 Q2106.2 952.88 2105.86 959.199 Q2107.22 957.186 2109.28 956.121 Q2111.34 955.033 2113.82 955.033 Q2119.03 955.033 2122.04 958.204 Q2125.07 961.352 2125.07 966.792 Q2125.07 972.116 2121.92 975.334 Q2118.77 978.551 2113.54 978.551 Q2107.55 978.551 2104.38 973.968 Q2101.2 969.361 2101.2 960.635 Q2101.2 952.44 2105.09 947.579 Q2108.98 942.695 2115.53 942.695 Q2117.29 942.695 2119.07 943.042 Q2120.88 943.389 2122.82 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2196.64 961.468 Q2193.31 961.468 2191.39 963.25 Q2189.49 965.033 2189.49 968.158 Q2189.49 971.283 2191.39 973.065 Q2193.31 974.847 2196.64 974.847 Q2199.97 974.847 2201.89 973.065 Q2203.82 971.26 2203.82 968.158 Q2203.82 965.033 2201.89 963.25 Q2200 961.468 2196.64 961.468 M2191.96 959.477 Q2188.95 958.736 2187.27 956.676 Q2185.6 954.616 2185.6 951.653 Q2185.6 947.51 2188.54 945.102 Q2191.5 942.695 2196.64 942.695 Q2201.8 942.695 2204.74 945.102 Q2207.68 947.51 2207.68 951.653 Q2207.68 954.616 2205.99 956.676 Q2204.33 958.736 2201.34 959.477 Q2204.72 960.264 2206.59 962.556 Q2208.49 964.848 2208.49 968.158 Q2208.49 973.181 2205.41 975.866 Q2202.36 978.551 2196.64 978.551 Q2190.92 978.551 2187.84 975.866 Q2184.79 973.181 2184.79 968.158 Q2184.79 964.848 2186.69 962.556 Q2188.58 960.264 2191.96 959.477 M2190.25 952.093 Q2190.25 954.778 2191.92 956.283 Q2193.61 957.787 2196.64 957.787 Q2199.65 957.787 2201.34 956.283 Q2203.05 954.778 2203.05 952.093 Q2203.05 949.408 2201.34 947.903 Q2199.65 946.399 2196.64 946.399 Q2193.61 946.399 2191.92 947.903 Q2190.25 949.408 2190.25 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2254.83 973.945 L2262.47 973.945 L2262.47 947.579 L2254.16 949.246 L2254.16 944.987 L2262.42 943.32 L2267.1 943.32 L2267.1 973.945 L2274.74 973.945 L2274.74 977.88 L2254.83 977.88 L2254.83 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2294.18 946.399 Q2290.57 946.399 2288.74 949.963 Q2286.94 953.505 2286.94 960.635 Q2286.94 967.741 2288.74 971.306 Q2290.57 974.847 2294.18 974.847 Q2297.82 974.847 2299.62 971.306 Q2301.45 967.741 2301.45 960.635 Q2301.45 953.505 2299.62 949.963 Q2297.82 946.399 2294.18 946.399 M2294.18 942.695 Q2299.99 942.695 2303.05 947.301 Q2306.13 951.885 2306.13 960.635 Q2306.13 969.361 2303.05 973.968 Q2299.99 978.551 2294.18 978.551 Q2288.37 978.551 2285.29 973.968 Q2282.24 969.361 2282.24 960.635 Q2282.24 951.885 2285.29 947.301 Q2288.37 942.695 2294.18 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2339.13 973.945 L2346.77 973.945 L2346.77 947.579 L2338.46 949.246 L2338.46 944.987 L2346.73 943.32 L2351.4 943.32 L2351.4 973.945 L2359.04 973.945 L2359.04 977.88 L2339.13 977.88 L2339.13 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2372.51 973.945 L2388.83 973.945 L2388.83 977.88 L2366.89 977.88 L2366.89 973.945 Q2369.55 971.19 2374.13 966.56 Q2378.74 961.908 2379.92 960.565 Q2382.17 958.042 2383.05 956.306 Q2383.95 954.547 2383.95 952.857 Q2383.95 950.102 2382 948.366 Q2380.08 946.63 2376.98 946.63 Q2374.78 946.63 2372.33 947.394 Q2369.9 948.158 2367.12 949.709 L2367.12 944.987 Q2369.94 943.852 2372.4 943.274 Q2374.85 942.695 2376.89 942.695 Q2382.26 942.695 2385.45 945.38 Q2388.65 948.065 2388.65 952.556 Q2388.65 954.686 2387.84 956.607 Q2387.05 958.505 2384.94 961.098 Q2384.36 961.769 2381.26 964.986 Q2378.16 968.181 2372.51 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2421.6 973.945 L2429.23 973.945 L2429.23 947.579 L2420.92 949.246 L2420.92 944.987 L2429.19 943.32 L2433.86 943.32 L2433.86 973.945 L2441.5 973.945 L2441.5 977.88 L2421.6 977.88 L2421.6 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2463.79 947.394 L2451.99 965.843 L2463.79 965.843 L2463.79 947.394 M2462.57 943.32 L2468.45 943.32 L2468.45 965.843 L2473.38 965.843 L2473.38 969.732 L2468.45 969.732 L2468.45 977.88 L2463.79 977.88 L2463.79 969.732 L2448.19 969.732 L2448.19 965.218 L2462.57 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2505.26 973.945 L2512.9 973.945 L2512.9 947.579 L2504.59 949.246 L2504.59 944.987 L2512.85 943.32 L2517.53 943.32 L2517.53 973.945 L2525.17 973.945 L2525.17 977.88 L2505.26 977.88 L2505.26 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2545.19 958.736 Q2542.04 958.736 2540.19 960.889 Q2538.36 963.042 2538.36 966.792 Q2538.36 970.519 2540.19 972.695 Q2542.04 974.847 2545.19 974.847 Q2548.34 974.847 2550.17 972.695 Q2552.02 970.519 2552.02 966.792 Q2552.02 963.042 2550.17 960.889 Q2548.34 958.736 2545.19 958.736 M2554.47 944.084 L2554.47 948.343 Q2552.71 947.51 2550.91 947.07 Q2549.13 946.63 2547.37 946.63 Q2542.74 946.63 2540.28 949.755 Q2537.85 952.88 2537.51 959.199 Q2538.87 957.186 2540.93 956.121 Q2542.99 955.033 2545.47 955.033 Q2550.68 955.033 2553.69 958.204 Q2556.72 961.352 2556.72 966.792 Q2556.72 972.116 2553.57 975.334 Q2550.42 978.551 2545.19 978.551 Q2539.2 978.551 2536.02 973.968 Q2532.85 969.361 2532.85 960.635 Q2532.85 952.44 2536.74 947.579 Q2540.63 942.695 2547.18 942.695 Q2548.94 942.695 2550.72 943.042 Q2552.53 943.389 2554.47 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2588.89 973.945 L2596.53 973.945 L2596.53 947.579 L2588.22 949.246 L2588.22 944.987 L2596.48 943.32 L2601.16 943.32 L2601.16 973.945 L2608.8 973.945 L2608.8 977.88 L2588.89 977.88 L2588.89 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2628.24 961.468 Q2624.91 961.468 2622.99 963.25 Q2621.09 965.033 2621.09 968.158 Q2621.09 971.283 2622.99 973.065 Q2624.91 974.847 2628.24 974.847 Q2631.58 974.847 2633.5 973.065 Q2635.42 971.26 2635.42 968.158 Q2635.42 965.033 2633.5 963.25 Q2631.6 961.468 2628.24 961.468 M2623.57 959.477 Q2620.56 958.736 2618.87 956.676 Q2617.2 954.616 2617.2 951.653 Q2617.2 947.51 2620.14 945.102 Q2623.1 942.695 2628.24 942.695 Q2633.41 942.695 2636.35 945.102 Q2639.29 947.51 2639.29 951.653 Q2639.29 954.616 2637.6 956.676 Q2635.93 958.736 2632.94 959.477 Q2636.32 960.264 2638.2 962.556 Q2640.1 964.848 2640.1 968.158 Q2640.1 973.181 2637.02 975.866 Q2633.96 978.551 2628.24 978.551 Q2622.53 978.551 2619.45 975.866 Q2616.39 973.181 2616.39 968.158 Q2616.39 964.848 2618.29 962.556 Q2620.19 960.264 2623.57 959.477 M2621.85 952.093 Q2621.85 954.778 2623.52 956.283 Q2625.21 957.787 2628.24 957.787 Q2631.25 957.787 2632.94 956.283 Q2634.66 954.778 2634.66 952.093 Q2634.66 949.408 2632.94 947.903 Q2631.25 946.399 2628.24 946.399 Q2625.21 946.399 2623.52 947.903 Q2621.85 949.408 2621.85 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2676.43 973.945 L2692.75 973.945 L2692.75 977.88 L2670.81 977.88 L2670.81 973.945 Q2673.47 971.19 2678.06 966.56 Q2682.66 961.908 2683.84 960.565 Q2686.09 958.042 2686.97 956.306 Q2687.87 954.547 2687.87 952.857 Q2687.87 950.102 2685.93 948.366 Q2684 946.63 2680.9 946.63 Q2678.7 946.63 2676.25 947.394 Q2673.82 948.158 2671.04 949.709 L2671.04 944.987 Q2673.87 943.852 2676.32 943.274 Q2678.77 942.695 2680.81 942.695 Q2686.18 942.695 2689.37 945.38 Q2692.57 948.065 2692.57 952.556 Q2692.57 954.686 2691.76 956.607 Q2690.97 958.505 2688.87 961.098 Q2688.29 961.769 2685.18 964.986 Q2682.08 968.181 2676.43 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2712.57 946.399 Q2708.96 946.399 2707.13 949.963 Q2705.32 953.505 2705.32 960.635 Q2705.32 967.741 2707.13 971.306 Q2708.96 974.847 2712.57 974.847 Q2716.2 974.847 2718.01 971.306 Q2719.84 967.741 2719.84 960.635 Q2719.84 953.505 2718.01 949.963 Q2716.2 946.399 2712.57 946.399 M2712.57 942.695 Q2718.38 942.695 2721.43 947.301 Q2724.51 951.885 2724.51 960.635 Q2724.51 969.361 2721.43 973.968 Q2718.38 978.551 2712.57 978.551 Q2706.76 978.551 2703.68 973.968 Q2700.62 969.361 2700.62 960.635 Q2700.62 951.885 2703.68 947.301 Q2706.76 942.695 2712.57 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2760.74 973.945 L2777.06 973.945 L2777.06 977.88 L2755.11 977.88 L2755.11 973.945 Q2757.77 971.19 2762.36 966.56 Q2766.96 961.908 2768.14 960.565 Q2770.39 958.042 2771.27 956.306 Q2772.17 954.547 2772.17 952.857 Q2772.17 950.102 2770.23 948.366 Q2768.31 946.63 2765.2 946.63 Q2763.01 946.63 2760.55 947.394 Q2758.12 948.158 2755.34 949.709 L2755.34 944.987 Q2758.17 943.852 2760.62 943.274 Q2763.07 942.695 2765.11 942.695 Q2770.48 942.695 2773.68 945.38 Q2776.87 948.065 2776.87 952.556 Q2776.87 954.686 2776.06 956.607 Q2775.27 958.505 2773.17 961.098 Q2772.59 961.769 2769.49 964.986 Q2766.39 968.181 2760.74 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2790.9 973.945 L2807.22 973.945 L2807.22 977.88 L2785.27 977.88 L2785.27 973.945 Q2787.94 971.19 2792.52 966.56 Q2797.13 961.908 2798.31 960.565 Q2800.55 958.042 2801.43 956.306 Q2802.33 954.547 2802.33 952.857 Q2802.33 950.102 2800.39 948.366 Q2798.47 946.63 2795.37 946.63 Q2793.17 946.63 2790.71 947.394 Q2788.28 948.158 2785.51 949.709 L2785.51 944.987 Q2788.33 943.852 2790.78 943.274 Q2793.24 942.695 2795.27 942.695 Q2800.64 942.695 2803.84 945.38 Q2807.03 948.065 2807.03 952.556 Q2807.03 954.686 2806.22 956.607 Q2805.44 958.505 2803.33 961.098 Q2802.75 961.769 2799.65 964.986 Q2796.55 968.181 2790.9 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2843.2 973.945 L2859.52 973.945 L2859.52 977.88 L2837.57 977.88 L2837.57 973.945 Q2840.24 971.19 2844.82 966.56 Q2849.43 961.908 2850.61 960.565 Q2852.85 958.042 2853.73 956.306 Q2854.63 954.547 2854.63 952.857 Q2854.63 950.102 2852.69 948.366 Q2850.77 946.63 2847.67 946.63 Q2845.47 946.63 2843.01 947.394 Q2840.58 948.158 2837.81 949.709 L2837.81 944.987 Q2840.63 943.852 2843.08 943.274 Q2845.54 942.695 2847.57 942.695 Q2852.94 942.695 2856.14 945.38 Q2859.33 948.065 2859.33 952.556 Q2859.33 954.686 2858.52 956.607 Q2857.74 958.505 2855.63 961.098 Q2855.05 961.769 2851.95 964.986 Q2848.85 968.181 2843.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2882.18 947.394 L2870.37 965.843 L2882.18 965.843 L2882.18 947.394 M2880.95 943.32 L2886.83 943.32 L2886.83 965.843 L2891.76 965.843 L2891.76 969.732 L2886.83 969.732 L2886.83 977.88 L2882.18 977.88 L2882.18 969.732 L2866.58 969.732 L2866.58 965.218 L2880.95 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2926.86 973.945 L2943.18 973.945 L2943.18 977.88 L2921.24 977.88 L2921.24 973.945 Q2923.9 971.19 2928.48 966.56 Q2933.09 961.908 2934.27 960.565 Q2936.52 958.042 2937.4 956.306 Q2938.3 954.547 2938.3 952.857 Q2938.3 950.102 2936.36 948.366 Q2934.43 946.63 2931.33 946.63 Q2929.13 946.63 2926.68 947.394 Q2924.25 948.158 2921.47 949.709 L2921.47 944.987 Q2924.29 943.852 2926.75 943.274 Q2929.2 942.695 2931.24 942.695 Q2936.61 942.695 2939.8 945.38 Q2943 948.065 2943 952.556 Q2943 954.686 2942.19 956.607 Q2941.4 958.505 2939.29 961.098 Q2938.72 961.769 2935.61 964.986 Q2932.51 968.181 2926.86 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2963.58 958.736 Q2960.43 958.736 2958.58 960.889 Q2956.75 963.042 2956.75 966.792 Q2956.75 970.519 2958.58 972.695 Q2960.43 974.847 2963.58 974.847 Q2966.73 974.847 2968.55 972.695 Q2970.41 970.519 2970.41 966.792 Q2970.41 963.042 2968.55 960.889 Q2966.73 958.736 2963.58 958.736 M2972.86 944.084 L2972.86 948.343 Q2971.1 947.51 2969.29 947.07 Q2967.51 946.63 2965.75 946.63 Q2961.12 946.63 2958.67 949.755 Q2956.24 952.88 2955.89 959.199 Q2957.26 957.186 2959.32 956.121 Q2961.38 955.033 2963.85 955.033 Q2969.06 955.033 2972.07 958.204 Q2975.1 961.352 2975.1 966.792 Q2975.1 972.116 2971.96 975.334 Q2968.81 978.551 2963.58 978.551 Q2957.58 978.551 2954.41 973.968 Q2951.24 969.361 2951.24 960.635 Q2951.24 952.44 2955.13 947.579 Q2959.02 942.695 2965.57 942.695 Q2967.33 942.695 2969.11 943.042 Q2970.92 943.389 2972.86 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M3010.5 973.945 L3026.81 973.945 L3026.81 977.88 L3004.87 977.88 L3004.87 973.945 Q3007.53 971.19 3012.12 966.56 Q3016.72 961.908 3017.9 960.565 Q3020.15 958.042 3021.03 956.306 Q3021.93 954.547 3021.93 952.857 Q3021.93 950.102 3019.99 948.366 Q3018.06 946.63 3014.96 946.63 Q3012.76 946.63 3010.31 947.394 Q3007.88 948.158 3005.1 949.709 L3005.1 944.987 Q3007.93 943.852 3010.38 943.274 Q3012.83 942.695 3014.87 942.695 Q3020.24 942.695 3023.44 945.38 Q3026.63 948.065 3026.63 952.556 Q3026.63 954.686 3025.82 956.607 Q3025.03 958.505 3022.93 961.098 Q3022.35 961.769 3019.25 964.986 Q3016.14 968.181 3010.5 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M3046.63 961.468 Q3043.3 961.468 3041.37 963.25 Q3039.48 965.033 3039.48 968.158 Q3039.48 971.283 3041.37 973.065 Q3043.3 974.847 3046.63 974.847 Q3049.96 974.847 3051.88 973.065 Q3053.81 971.26 3053.81 968.158 Q3053.81 965.033 3051.88 963.25 Q3049.99 961.468 3046.63 961.468 M3041.95 959.477 Q3038.94 958.736 3037.25 956.676 Q3035.59 954.616 3035.59 951.653 Q3035.59 947.51 3038.53 945.102 Q3041.49 942.695 3046.63 942.695 Q3051.79 942.695 3054.73 945.102 Q3057.67 947.51 3057.67 951.653 Q3057.67 954.616 3055.98 956.676 Q3054.31 958.736 3051.33 959.477 Q3054.71 960.264 3056.58 962.556 Q3058.48 964.848 3058.48 968.158 Q3058.48 973.181 3055.4 975.866 Q3052.35 978.551 3046.63 978.551 Q3040.91 978.551 3037.83 975.866 Q3034.78 973.181 3034.78 968.158 Q3034.78 964.848 3036.68 962.556 Q3038.57 960.264 3041.95 959.477 M3040.24 952.093 Q3040.24 954.778 3041.91 956.283 Q3043.6 957.787 3046.63 957.787 Q3049.64 957.787 3051.33 956.283 Q3053.04 954.778 3053.04 952.093 Q3053.04 949.408 3051.33 947.903 Q3049.64 946.399 3046.63 946.399 Q3043.6 946.399 3041.91 947.903 Q3040.24 949.408 3040.24 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M3104.02 959.246 Q3107.38 959.963 3109.25 962.232 Q3111.15 964.5 3111.15 967.834 Q3111.15 972.949 3107.63 975.75 Q3104.11 978.551 3097.63 978.551 Q3095.46 978.551 3093.14 978.111 Q3090.85 977.695 3088.4 976.838 L3088.4 972.324 Q3090.34 973.459 3092.66 974.037 Q3094.97 974.616 3097.49 974.616 Q3101.89 974.616 3104.18 972.88 Q3106.5 971.144 3106.5 967.834 Q3106.5 964.778 3104.35 963.065 Q3102.22 961.329 3098.4 961.329 L3094.37 961.329 L3094.37 957.486 L3098.58 957.486 Q3102.03 957.486 3103.86 956.121 Q3105.69 954.732 3105.69 952.139 Q3105.69 949.477 3103.79 948.065 Q3101.92 946.63 3098.4 946.63 Q3096.48 946.63 3094.28 947.047 Q3092.08 947.463 3089.44 948.343 L3089.44 944.176 Q3092.1 943.436 3094.42 943.065 Q3096.75 942.695 3098.81 942.695 Q3104.14 942.695 3107.24 945.125 Q3110.34 947.533 3110.34 951.653 Q3110.34 954.524 3108.7 956.514 Q3107.05 958.482 3104.02 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M3130.02 946.399 Q3126.41 946.399 3124.58 949.963 Q3122.77 953.505 3122.77 960.635 Q3122.77 967.741 3124.58 971.306 Q3126.41 974.847 3130.02 974.847 Q3133.65 974.847 3135.46 971.306 Q3137.29 967.741 3137.29 960.635 Q3137.29 953.505 3135.46 949.963 Q3133.65 946.399 3130.02 946.399 M3130.02 942.695 Q3135.83 942.695 3138.88 947.301 Q3141.96 951.885 3141.96 960.635 Q3141.96 969.361 3138.88 973.968 Q3135.83 978.551 3130.02 978.551 Q3124.21 978.551 3121.13 973.968 Q3118.07 969.361 3118.07 960.635 Q3118.07 951.885 3121.13 947.301 Q3124.21 942.695 3130.02 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,840.275 3152.76,840.275 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,657.856 3152.76,657.856 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,475.437 3152.76,475.437 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,293.018 3152.76,293.018 \n \"/>\n<polyline clip-path=\"url(#clip773)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,110.599 3152.76,110.599 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,910.808 1825.05,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,840.275 1840.98,840.275 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,657.856 1840.98,657.856 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,475.437 1840.98,475.437 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,293.018 1840.98,293.018 \n \"/>\n<polyline clip-path=\"url(#clip770)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,110.599 1840.98,110.599 \n \"/>\n<path clip-path=\"url(#clip770)\" d=\"M1579.71 840.727 L1609.39 840.727 L1609.39 844.662 L1579.71 844.662 L1579.71 840.727 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1629.48 826.074 Q1625.87 826.074 1624.04 829.639 Q1622.24 833.18 1622.24 840.31 Q1622.24 847.416 1624.04 850.981 Q1625.87 854.523 1629.48 854.523 Q1633.11 854.523 1634.92 850.981 Q1636.75 847.416 1636.75 840.31 Q1636.75 833.18 1634.92 829.639 Q1633.11 826.074 1629.48 826.074 M1629.48 822.37 Q1635.29 822.37 1638.35 826.977 Q1641.43 831.56 1641.43 840.31 Q1641.43 849.037 1638.35 853.643 Q1635.29 858.227 1629.48 858.227 Q1623.67 858.227 1620.59 853.643 Q1617.54 849.037 1617.54 840.31 Q1617.54 831.56 1620.59 826.977 Q1623.67 822.37 1629.48 822.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1649.64 851.676 L1654.53 851.676 L1654.53 857.555 L1649.64 857.555 L1649.64 851.676 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1674.71 826.074 Q1671.1 826.074 1669.27 829.639 Q1667.47 833.18 1667.47 840.31 Q1667.47 847.416 1669.27 850.981 Q1671.1 854.523 1674.71 854.523 Q1678.35 854.523 1680.15 850.981 Q1681.98 847.416 1681.98 840.31 Q1681.98 833.18 1680.15 829.639 Q1678.35 826.074 1674.71 826.074 M1674.71 822.37 Q1680.52 822.37 1683.58 826.977 Q1686.66 831.56 1686.66 840.31 Q1686.66 849.037 1683.58 853.643 Q1680.52 858.227 1674.71 858.227 Q1668.9 858.227 1665.82 853.643 Q1662.77 849.037 1662.77 840.31 Q1662.77 831.56 1665.82 826.977 Q1668.9 822.37 1674.71 822.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1704.87 826.074 Q1701.26 826.074 1699.43 829.639 Q1697.63 833.18 1697.63 840.31 Q1697.63 847.416 1699.43 850.981 Q1701.26 854.523 1704.87 854.523 Q1708.51 854.523 1710.31 850.981 Q1712.14 847.416 1712.14 840.31 Q1712.14 833.18 1710.31 829.639 Q1708.51 826.074 1704.87 826.074 M1704.87 822.37 Q1710.68 822.37 1713.74 826.977 Q1716.82 831.56 1716.82 840.31 Q1716.82 849.037 1713.74 853.643 Q1710.68 858.227 1704.87 858.227 Q1699.06 858.227 1695.98 853.643 Q1692.93 849.037 1692.93 840.31 Q1692.93 831.56 1695.98 826.977 Q1699.06 822.37 1704.87 822.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1735.04 826.074 Q1731.42 826.074 1729.6 829.639 Q1727.79 833.18 1727.79 840.31 Q1727.79 847.416 1729.6 850.981 Q1731.42 854.523 1735.04 854.523 Q1738.67 854.523 1740.48 850.981 Q1742.3 847.416 1742.3 840.31 Q1742.3 833.18 1740.48 829.639 Q1738.67 826.074 1735.04 826.074 M1735.04 822.37 Q1740.85 822.37 1743.9 826.977 Q1746.98 831.56 1746.98 840.31 Q1746.98 849.037 1743.9 853.643 Q1740.85 858.227 1735.04 858.227 Q1729.23 858.227 1726.15 853.643 Q1723.09 849.037 1723.09 840.31 Q1723.09 831.56 1726.15 826.977 Q1729.23 822.37 1735.04 822.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1765.2 841.143 Q1761.86 841.143 1759.94 842.926 Q1758.04 844.708 1758.04 847.833 Q1758.04 850.958 1759.94 852.74 Q1761.86 854.523 1765.2 854.523 Q1768.53 854.523 1770.45 852.74 Q1772.37 850.935 1772.37 847.833 Q1772.37 844.708 1770.45 842.926 Q1768.55 841.143 1765.2 841.143 M1760.52 839.153 Q1757.51 838.412 1755.82 836.352 Q1754.16 834.291 1754.16 831.328 Q1754.16 827.185 1757.1 824.778 Q1760.06 822.37 1765.2 822.37 Q1770.36 822.37 1773.3 824.778 Q1776.24 827.185 1776.24 831.328 Q1776.24 834.291 1774.55 836.352 Q1772.88 838.412 1769.9 839.153 Q1773.28 839.94 1775.15 842.231 Q1777.05 844.523 1777.05 847.833 Q1777.05 852.856 1773.97 855.541 Q1770.92 858.227 1765.2 858.227 Q1759.48 858.227 1756.4 855.541 Q1753.35 852.856 1753.35 847.833 Q1753.35 844.523 1755.24 842.231 Q1757.14 839.94 1760.52 839.153 M1758.81 831.768 Q1758.81 834.453 1760.48 835.958 Q1762.17 837.463 1765.2 837.463 Q1768.21 837.463 1769.9 835.958 Q1771.61 834.453 1771.61 831.768 Q1771.61 829.083 1769.9 827.579 Q1768.21 826.074 1765.2 826.074 Q1762.17 826.074 1760.48 827.579 Q1758.81 829.083 1758.81 831.768 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1579.46 658.308 L1609.13 658.308 L1609.13 662.243 L1579.46 662.243 L1579.46 658.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1629.23 643.655 Q1625.61 643.655 1623.79 647.22 Q1621.98 650.761 1621.98 657.891 Q1621.98 664.997 1623.79 668.562 Q1625.61 672.104 1629.23 672.104 Q1632.86 672.104 1634.67 668.562 Q1636.49 664.997 1636.49 657.891 Q1636.49 650.761 1634.67 647.22 Q1632.86 643.655 1629.23 643.655 M1629.23 639.951 Q1635.04 639.951 1638.09 644.558 Q1641.17 649.141 1641.17 657.891 Q1641.17 666.618 1638.09 671.224 Q1635.04 675.807 1629.23 675.807 Q1623.42 675.807 1620.34 671.224 Q1617.28 666.618 1617.28 657.891 Q1617.28 649.141 1620.34 644.558 Q1623.42 639.951 1629.23 639.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1649.39 669.257 L1654.27 669.257 L1654.27 675.136 L1649.39 675.136 L1649.39 669.257 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1674.46 643.655 Q1670.85 643.655 1669.02 647.22 Q1667.21 650.761 1667.21 657.891 Q1667.21 664.997 1669.02 668.562 Q1670.85 672.104 1674.46 672.104 Q1678.09 672.104 1679.9 668.562 Q1681.73 664.997 1681.73 657.891 Q1681.73 650.761 1679.9 647.22 Q1678.09 643.655 1674.46 643.655 M1674.46 639.951 Q1680.27 639.951 1683.32 644.558 Q1686.4 649.141 1686.4 657.891 Q1686.4 666.618 1683.32 671.224 Q1680.27 675.807 1674.46 675.807 Q1668.65 675.807 1665.57 671.224 Q1662.51 666.618 1662.51 657.891 Q1662.51 649.141 1665.57 644.558 Q1668.65 639.951 1674.46 639.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1704.62 643.655 Q1701.01 643.655 1699.18 647.22 Q1697.37 650.761 1697.37 657.891 Q1697.37 664.997 1699.18 668.562 Q1701.01 672.104 1704.62 672.104 Q1708.25 672.104 1710.06 668.562 Q1711.89 664.997 1711.89 657.891 Q1711.89 650.761 1710.06 647.22 Q1708.25 643.655 1704.62 643.655 M1704.62 639.951 Q1710.43 639.951 1713.48 644.558 Q1716.56 649.141 1716.56 657.891 Q1716.56 666.618 1713.48 671.224 Q1710.43 675.807 1704.62 675.807 Q1698.81 675.807 1695.73 671.224 Q1692.67 666.618 1692.67 657.891 Q1692.67 649.141 1695.73 644.558 Q1698.81 639.951 1704.62 639.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1734.78 643.655 Q1731.17 643.655 1729.34 647.22 Q1727.54 650.761 1727.54 657.891 Q1727.54 664.997 1729.34 668.562 Q1731.17 672.104 1734.78 672.104 Q1738.42 672.104 1740.22 668.562 Q1742.05 664.997 1742.05 657.891 Q1742.05 650.761 1740.22 647.22 Q1738.42 643.655 1734.78 643.655 M1734.78 639.951 Q1740.59 639.951 1743.65 644.558 Q1746.73 649.141 1746.73 657.891 Q1746.73 666.618 1743.65 671.224 Q1740.59 675.807 1734.78 675.807 Q1728.97 675.807 1725.89 671.224 Q1722.84 666.618 1722.84 657.891 Q1722.84 649.141 1725.89 644.558 Q1728.97 639.951 1734.78 639.951 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1765.52 655.993 Q1762.37 655.993 1760.52 658.146 Q1758.69 660.298 1758.69 664.048 Q1758.69 667.775 1760.52 669.951 Q1762.37 672.104 1765.52 672.104 Q1768.67 672.104 1770.5 669.951 Q1772.35 667.775 1772.35 664.048 Q1772.35 660.298 1770.5 658.146 Q1768.67 655.993 1765.52 655.993 M1774.8 641.34 L1774.8 645.599 Q1773.04 644.766 1771.24 644.326 Q1769.46 643.886 1767.7 643.886 Q1763.07 643.886 1760.61 647.011 Q1758.18 650.136 1757.84 656.456 Q1759.2 654.442 1761.26 653.377 Q1763.32 652.289 1765.8 652.289 Q1771.01 652.289 1774.02 655.46 Q1777.05 658.609 1777.05 664.048 Q1777.05 669.372 1773.9 672.59 Q1770.75 675.807 1765.52 675.807 Q1759.53 675.807 1756.35 671.224 Q1753.18 666.618 1753.18 657.891 Q1753.18 649.697 1757.07 644.835 Q1760.96 639.951 1767.51 639.951 Q1769.27 639.951 1771.05 640.298 Q1772.86 640.646 1774.8 641.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1579.13 475.889 L1608.81 475.889 L1608.81 479.824 L1579.13 479.824 L1579.13 475.889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1628.9 461.236 Q1625.29 461.236 1623.46 464.801 Q1621.66 468.342 1621.66 475.472 Q1621.66 482.578 1623.46 486.143 Q1625.29 489.685 1628.9 489.685 Q1632.54 489.685 1634.34 486.143 Q1636.17 482.578 1636.17 475.472 Q1636.17 468.342 1634.34 464.801 Q1632.54 461.236 1628.9 461.236 M1628.9 457.532 Q1634.71 457.532 1637.77 462.139 Q1640.85 466.722 1640.85 475.472 Q1640.85 484.199 1637.77 488.805 Q1634.71 493.388 1628.9 493.388 Q1623.09 493.388 1620.01 488.805 Q1616.96 484.199 1616.96 475.472 Q1616.96 466.722 1620.01 462.139 Q1623.09 457.532 1628.9 457.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1649.06 486.838 L1653.95 486.838 L1653.95 492.717 L1649.06 492.717 L1649.06 486.838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1674.13 461.236 Q1670.52 461.236 1668.69 464.801 Q1666.89 468.342 1666.89 475.472 Q1666.89 482.578 1668.69 486.143 Q1670.52 489.685 1674.13 489.685 Q1677.77 489.685 1679.57 486.143 Q1681.4 482.578 1681.4 475.472 Q1681.4 468.342 1679.57 464.801 Q1677.77 461.236 1674.13 461.236 M1674.13 457.532 Q1679.94 457.532 1683 462.139 Q1686.08 466.722 1686.08 475.472 Q1686.08 484.199 1683 488.805 Q1679.94 493.388 1674.13 493.388 Q1668.32 493.388 1665.24 488.805 Q1662.19 484.199 1662.19 475.472 Q1662.19 466.722 1665.24 462.139 Q1668.32 457.532 1674.13 457.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1704.3 461.236 Q1700.68 461.236 1698.86 464.801 Q1697.05 468.342 1697.05 475.472 Q1697.05 482.578 1698.86 486.143 Q1700.68 489.685 1704.3 489.685 Q1707.93 489.685 1709.73 486.143 Q1711.56 482.578 1711.56 475.472 Q1711.56 468.342 1709.73 464.801 Q1707.93 461.236 1704.3 461.236 M1704.3 457.532 Q1710.11 457.532 1713.16 462.139 Q1716.24 466.722 1716.24 475.472 Q1716.24 484.199 1713.16 488.805 Q1710.11 493.388 1704.3 493.388 Q1698.48 493.388 1695.41 488.805 Q1692.35 484.199 1692.35 475.472 Q1692.35 466.722 1695.41 462.139 Q1698.48 457.532 1704.3 457.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1734.46 461.236 Q1730.85 461.236 1729.02 464.801 Q1727.21 468.342 1727.21 475.472 Q1727.21 482.578 1729.02 486.143 Q1730.85 489.685 1734.46 489.685 Q1738.09 489.685 1739.9 486.143 Q1741.73 482.578 1741.73 475.472 Q1741.73 468.342 1739.9 464.801 Q1738.09 461.236 1734.46 461.236 M1734.46 457.532 Q1740.27 457.532 1743.32 462.139 Q1746.4 466.722 1746.4 475.472 Q1746.4 484.199 1743.32 488.805 Q1740.27 493.388 1734.46 493.388 Q1728.65 493.388 1725.57 488.805 Q1722.51 484.199 1722.51 475.472 Q1722.51 466.722 1725.57 462.139 Q1728.65 457.532 1734.46 457.532 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1767.47 462.231 L1755.66 480.68 L1767.47 480.68 L1767.47 462.231 M1766.24 458.157 L1772.12 458.157 L1772.12 480.68 L1777.05 480.68 L1777.05 484.569 L1772.12 484.569 L1772.12 492.717 L1767.47 492.717 L1767.47 484.569 L1751.86 484.569 L1751.86 480.055 L1766.24 458.157 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1581.22 293.47 L1610.89 293.47 L1610.89 297.405 L1581.22 297.405 L1581.22 293.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1630.99 278.817 Q1627.37 278.817 1625.55 282.382 Q1623.74 285.923 1623.74 293.053 Q1623.74 300.159 1625.55 303.724 Q1627.37 307.266 1630.99 307.266 Q1634.62 307.266 1636.43 303.724 Q1638.25 300.159 1638.25 293.053 Q1638.25 285.923 1636.43 282.382 Q1634.62 278.817 1630.99 278.817 M1630.99 275.113 Q1636.8 275.113 1639.85 279.72 Q1642.93 284.303 1642.93 293.053 Q1642.93 301.78 1639.85 306.386 Q1636.8 310.969 1630.99 310.969 Q1625.18 310.969 1622.1 306.386 Q1619.04 301.78 1619.04 293.053 Q1619.04 284.303 1622.1 279.72 Q1625.18 275.113 1630.99 275.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1651.15 304.419 L1656.03 304.419 L1656.03 310.298 L1651.15 310.298 L1651.15 304.419 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1676.22 278.817 Q1672.61 278.817 1670.78 282.382 Q1668.97 285.923 1668.97 293.053 Q1668.97 300.159 1670.78 303.724 Q1672.61 307.266 1676.22 307.266 Q1679.85 307.266 1681.66 303.724 Q1683.48 300.159 1683.48 293.053 Q1683.48 285.923 1681.66 282.382 Q1679.85 278.817 1676.22 278.817 M1676.22 275.113 Q1682.03 275.113 1685.08 279.72 Q1688.16 284.303 1688.16 293.053 Q1688.16 301.78 1685.08 306.386 Q1682.03 310.969 1676.22 310.969 Q1670.41 310.969 1667.33 306.386 Q1664.27 301.78 1664.27 293.053 Q1664.27 284.303 1667.33 279.72 Q1670.41 275.113 1676.22 275.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1706.38 278.817 Q1702.77 278.817 1700.94 282.382 Q1699.13 285.923 1699.13 293.053 Q1699.13 300.159 1700.94 303.724 Q1702.77 307.266 1706.38 307.266 Q1710.01 307.266 1711.82 303.724 Q1713.65 300.159 1713.65 293.053 Q1713.65 285.923 1711.82 282.382 Q1710.01 278.817 1706.38 278.817 M1706.38 275.113 Q1712.19 275.113 1715.24 279.72 Q1718.32 284.303 1718.32 293.053 Q1718.32 301.78 1715.24 306.386 Q1712.19 310.969 1706.38 310.969 Q1700.57 310.969 1697.49 306.386 Q1694.43 301.78 1694.43 293.053 Q1694.43 284.303 1697.49 279.72 Q1700.57 275.113 1706.38 275.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1736.54 278.817 Q1732.93 278.817 1731.1 282.382 Q1729.29 285.923 1729.29 293.053 Q1729.29 300.159 1731.1 303.724 Q1732.93 307.266 1736.54 307.266 Q1740.17 307.266 1741.98 303.724 Q1743.81 300.159 1743.81 293.053 Q1743.81 285.923 1741.98 282.382 Q1740.17 278.817 1736.54 278.817 M1736.54 275.113 Q1742.35 275.113 1745.41 279.72 Q1748.48 284.303 1748.48 293.053 Q1748.48 301.78 1745.41 306.386 Q1742.35 310.969 1736.54 310.969 Q1730.73 310.969 1727.65 306.386 Q1724.6 301.78 1724.6 293.053 Q1724.6 284.303 1727.65 279.72 Q1730.73 275.113 1736.54 275.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1760.73 306.363 L1777.05 306.363 L1777.05 310.298 L1755.1 310.298 L1755.1 306.363 Q1757.77 303.608 1762.35 298.979 Q1766.96 294.326 1768.14 292.983 Q1770.38 290.46 1771.26 288.724 Q1772.17 286.965 1772.17 285.275 Q1772.17 282.521 1770.22 280.784 Q1768.3 279.048 1765.2 279.048 Q1763 279.048 1760.54 279.812 Q1758.11 280.576 1755.34 282.127 L1755.34 277.405 Q1758.16 276.271 1760.61 275.692 Q1763.07 275.113 1765.1 275.113 Q1770.48 275.113 1773.67 277.798 Q1776.86 280.484 1776.86 284.974 Q1776.86 287.104 1776.05 289.025 Q1775.27 290.923 1773.16 293.516 Q1772.58 294.187 1769.48 297.405 Q1766.38 300.599 1760.73 306.363 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1629.39 96.3979 Q1625.78 96.3979 1623.95 99.9627 Q1622.14 103.504 1622.14 110.634 Q1622.14 117.74 1623.95 121.305 Q1625.78 124.847 1629.39 124.847 Q1633.02 124.847 1634.83 121.305 Q1636.66 117.74 1636.66 110.634 Q1636.66 103.504 1634.83 99.9627 Q1633.02 96.3979 1629.39 96.3979 M1629.39 92.6942 Q1635.2 92.6942 1638.25 97.3006 Q1641.33 101.884 1641.33 110.634 Q1641.33 119.361 1638.25 123.967 Q1635.2 128.55 1629.39 128.55 Q1623.58 128.55 1620.5 123.967 Q1617.44 119.361 1617.44 110.634 Q1617.44 101.884 1620.5 97.3006 Q1623.58 92.6942 1629.39 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1649.55 122 L1654.43 122 L1654.43 127.879 L1649.55 127.879 L1649.55 122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1674.62 96.3979 Q1671.01 96.3979 1669.18 99.9627 Q1667.37 103.504 1667.37 110.634 Q1667.37 117.74 1669.18 121.305 Q1671.01 124.847 1674.62 124.847 Q1678.25 124.847 1680.06 121.305 Q1681.89 117.74 1681.89 110.634 Q1681.89 103.504 1680.06 99.9627 Q1678.25 96.3979 1674.62 96.3979 M1674.62 92.6942 Q1680.43 92.6942 1683.48 97.3006 Q1686.56 101.884 1686.56 110.634 Q1686.56 119.361 1683.48 123.967 Q1680.43 128.55 1674.62 128.55 Q1668.81 128.55 1665.73 123.967 Q1662.67 119.361 1662.67 110.634 Q1662.67 101.884 1665.73 97.3006 Q1668.81 92.6942 1674.62 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1704.78 96.3979 Q1701.17 96.3979 1699.34 99.9627 Q1697.54 103.504 1697.54 110.634 Q1697.54 117.74 1699.34 121.305 Q1701.17 124.847 1704.78 124.847 Q1708.42 124.847 1710.22 121.305 Q1712.05 117.74 1712.05 110.634 Q1712.05 103.504 1710.22 99.9627 Q1708.42 96.3979 1704.78 96.3979 M1704.78 92.6942 Q1710.59 92.6942 1713.65 97.3006 Q1716.73 101.884 1716.73 110.634 Q1716.73 119.361 1713.65 123.967 Q1710.59 128.55 1704.78 128.55 Q1698.97 128.55 1695.89 123.967 Q1692.84 119.361 1692.84 110.634 Q1692.84 101.884 1695.89 97.3006 Q1698.97 92.6942 1704.78 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1734.94 96.3979 Q1731.33 96.3979 1729.5 99.9627 Q1727.7 103.504 1727.7 110.634 Q1727.7 117.74 1729.5 121.305 Q1731.33 124.847 1734.94 124.847 Q1738.58 124.847 1740.38 121.305 Q1742.21 117.74 1742.21 110.634 Q1742.21 103.504 1740.38 99.9627 Q1738.58 96.3979 1734.94 96.3979 M1734.94 92.6942 Q1740.75 92.6942 1743.81 97.3006 Q1746.89 101.884 1746.89 110.634 Q1746.89 119.361 1743.81 123.967 Q1740.75 128.55 1734.94 128.55 Q1729.13 128.55 1726.05 123.967 Q1723 119.361 1723 110.634 Q1723 101.884 1726.05 97.3006 Q1729.13 92.6942 1734.94 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M1765.1 96.3979 Q1761.49 96.3979 1759.67 99.9627 Q1757.86 103.504 1757.86 110.634 Q1757.86 117.74 1759.67 121.305 Q1761.49 124.847 1765.1 124.847 Q1768.74 124.847 1770.54 121.305 Q1772.37 117.74 1772.37 110.634 Q1772.37 103.504 1770.54 99.9627 Q1768.74 96.3979 1765.1 96.3979 M1765.1 92.6942 Q1770.92 92.6942 1773.97 97.3006 Q1777.05 101.884 1777.05 110.634 Q1777.05 119.361 1773.97 123.967 Q1770.92 128.55 1765.1 128.55 Q1759.29 128.55 1756.22 123.967 Q1753.16 119.361 1753.16 110.634 Q1753.16 101.884 1756.22 97.3006 Q1759.29 92.6942 1765.1 92.6942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2187.1 12.2777 L2187.1 23.3193 L2200.26 23.3193 L2200.26 28.2846 L2187.1 28.2846 L2187.1 49.3956 Q2187.1 54.1525 2188.38 55.5066 Q2189.7 56.8608 2193.7 56.8608 L2200.26 56.8608 L2200.26 62.208 L2193.7 62.208 Q2186.3 62.208 2183.49 59.465 Q2180.68 56.6872 2180.68 49.3956 L2180.68 28.2846 L2175.99 28.2846 L2175.99 23.3193 L2180.68 23.3193 L2180.68 12.2777 L2187.1 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2223.73 27.7985 Q2218.59 27.7985 2215.61 31.8262 Q2212.62 35.8193 2212.62 42.7984 Q2212.62 49.7775 2215.57 53.8053 Q2218.56 57.7983 2223.73 57.7983 Q2228.83 57.7983 2231.82 53.7705 Q2234.81 49.7428 2234.81 42.7984 Q2234.81 35.8887 2231.82 31.8609 Q2228.83 27.7985 2223.73 27.7985 M2223.73 22.3818 Q2232.06 22.3818 2236.82 27.7985 Q2241.58 33.2151 2241.58 42.7984 Q2241.58 52.3469 2236.82 57.7983 Q2232.06 63.2149 2223.73 63.2149 Q2215.36 63.2149 2210.61 57.7983 Q2205.88 52.3469 2205.88 42.7984 Q2205.88 33.2151 2210.61 27.7985 Q2215.36 22.3818 2223.73 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2258.49 12.2777 L2258.49 23.3193 L2271.65 23.3193 L2271.65 28.2846 L2258.49 28.2846 L2258.49 49.3956 Q2258.49 54.1525 2259.77 55.5066 Q2261.09 56.8608 2265.08 56.8608 L2271.65 56.8608 L2271.65 62.208 L2265.08 62.208 Q2257.69 62.208 2254.88 59.465 Q2252.06 56.6872 2252.06 49.3956 L2252.06 28.2846 L2247.38 28.2846 L2247.38 23.3193 L2252.06 23.3193 L2252.06 12.2777 L2258.49 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2297.72 42.6595 Q2289.98 42.6595 2286.99 44.4303 Q2284.01 46.2011 2284.01 50.472 Q2284.01 53.8747 2286.23 55.8886 Q2288.49 57.8677 2292.34 57.8677 Q2297.65 57.8677 2300.85 54.1178 Q2304.08 50.3331 2304.08 44.0831 L2304.08 42.6595 L2297.72 42.6595 M2310.47 40.0206 L2310.47 62.208 L2304.08 62.208 L2304.08 56.3053 Q2301.89 59.8469 2298.63 61.5483 Q2295.36 63.2149 2290.64 63.2149 Q2284.67 63.2149 2281.13 59.8816 Q2277.62 56.5136 2277.62 50.8886 Q2277.62 44.3262 2281.99 40.9928 Q2286.4 37.6595 2295.12 37.6595 L2304.08 37.6595 L2304.08 37.0345 Q2304.08 32.6248 2301.16 30.229 Q2298.28 27.7985 2293.04 27.7985 Q2289.7 27.7985 2286.54 28.5971 Q2283.38 29.3957 2280.47 30.9929 L2280.47 25.0901 Q2283.97 23.736 2287.27 23.0763 Q2290.57 22.3818 2293.7 22.3818 Q2302.13 22.3818 2306.3 26.7568 Q2310.47 31.1318 2310.47 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2323.63 8.18051 L2330.01 8.18051 L2330.01 62.208 L2323.63 62.208 L2323.63 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2399.25 41.1664 L2399.25 44.2914 L2369.88 44.2914 Q2370.29 50.8886 2373.83 54.3608 Q2377.41 57.7983 2383.76 57.7983 Q2387.44 57.7983 2390.88 56.8955 Q2394.35 55.9928 2397.76 54.1872 L2397.76 60.2288 Q2394.32 61.6872 2390.71 62.4511 Q2387.1 63.2149 2383.38 63.2149 Q2374.08 63.2149 2368.63 57.7983 Q2363.21 52.3817 2363.21 43.1456 Q2363.21 33.597 2368.35 28.0068 Q2373.52 22.3818 2382.27 22.3818 Q2390.12 22.3818 2394.67 27.4512 Q2399.25 32.4859 2399.25 41.1664 M2392.86 39.2915 Q2392.79 34.0484 2389.91 30.9234 Q2387.06 27.7985 2382.34 27.7985 Q2376.99 27.7985 2373.76 30.8193 Q2370.57 33.8401 2370.08 39.3262 L2392.86 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2442.06 38.7359 L2442.06 62.208 L2435.67 62.208 L2435.67 38.9442 Q2435.67 33.4234 2433.52 30.6804 Q2431.37 27.9374 2427.06 27.9374 Q2421.89 27.9374 2418.9 31.2359 Q2415.92 34.5345 2415.92 40.229 L2415.92 62.208 L2409.49 62.208 L2409.49 23.3193 L2415.92 23.3193 L2415.92 29.361 Q2418.21 25.854 2421.3 24.1179 Q2424.42 22.3818 2428.49 22.3818 Q2435.19 22.3818 2438.63 26.5485 Q2442.06 30.6804 2442.06 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2488.07 41.1664 L2488.07 44.2914 L2458.69 44.2914 Q2459.11 50.8886 2462.65 54.3608 Q2466.23 57.7983 2472.58 57.7983 Q2476.26 57.7983 2479.7 56.8955 Q2483.17 55.9928 2486.58 54.1872 L2486.58 60.2288 Q2483.14 61.6872 2479.53 62.4511 Q2475.92 63.2149 2472.2 63.2149 Q2462.9 63.2149 2457.44 57.7983 Q2452.03 52.3817 2452.03 43.1456 Q2452.03 33.597 2457.17 28.0068 Q2462.34 22.3818 2471.09 22.3818 Q2478.94 22.3818 2483.49 27.4512 Q2488.07 32.4859 2488.07 41.1664 M2481.68 39.2915 Q2481.61 34.0484 2478.73 30.9234 Q2475.88 27.7985 2471.16 27.7985 Q2465.81 27.7985 2462.58 30.8193 Q2459.39 33.8401 2458.9 39.3262 L2481.68 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2521.09 29.2915 Q2520.01 28.6665 2518.73 28.3887 Q2517.48 28.0762 2515.95 28.0762 Q2510.53 28.0762 2507.62 31.6179 Q2504.74 35.1248 2504.74 41.722 L2504.74 62.208 L2498.31 62.208 L2498.31 23.3193 L2504.74 23.3193 L2504.74 29.361 Q2506.75 25.8193 2509.98 24.1179 Q2513.21 22.3818 2517.83 22.3818 Q2518.49 22.3818 2519.28 22.486 Q2520.08 22.5554 2521.06 22.729 L2521.09 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2552.13 42.3123 Q2552.13 35.3679 2549.25 31.5484 Q2546.4 27.729 2541.23 27.729 Q2536.09 27.729 2533.21 31.5484 Q2530.36 35.3679 2530.36 42.3123 Q2530.36 49.222 2533.21 53.0414 Q2536.09 56.8608 2541.23 56.8608 Q2546.4 56.8608 2549.25 53.0414 Q2552.13 49.222 2552.13 42.3123 M2558.52 57.3816 Q2558.52 67.3121 2554.11 72.1385 Q2549.7 76.9996 2540.6 76.9996 Q2537.24 76.9996 2534.25 76.4788 Q2531.26 75.9926 2528.45 74.951 L2528.45 68.7357 Q2531.26 70.2635 2534.01 70.9927 Q2536.75 71.7218 2539.6 71.7218 Q2545.88 71.7218 2549.01 68.4232 Q2552.13 65.1594 2552.13 58.5275 L2552.13 55.3678 Q2550.15 58.8052 2547.06 60.5066 Q2543.97 62.208 2539.67 62.208 Q2532.51 62.208 2528.14 56.7566 Q2523.76 51.3053 2523.76 42.3123 Q2523.76 33.2845 2528.14 27.8332 Q2532.51 22.3818 2539.67 22.3818 Q2543.97 22.3818 2547.06 24.0832 Q2550.15 25.7846 2552.13 29.2221 L2552.13 23.3193 L2558.52 23.3193 L2558.52 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2587.86 65.8191 Q2585.15 72.7635 2582.58 74.8815 Q2580.01 76.9996 2575.71 76.9996 L2570.6 76.9996 L2570.6 71.6524 L2574.35 71.6524 Q2576.99 71.6524 2578.45 70.4024 Q2579.91 69.1524 2581.68 64.4997 L2582.83 61.583 L2567.1 23.3193 L2573.87 23.3193 L2586.02 53.7358 L2598.17 23.3193 L2604.94 23.3193 L2587.86 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2669.63 41.1664 L2669.63 44.2914 L2640.26 44.2914 Q2640.67 50.8886 2644.21 54.3608 Q2647.79 57.7983 2654.14 57.7983 Q2657.83 57.7983 2661.26 56.8955 Q2664.73 55.9928 2668.14 54.1872 L2668.14 60.2288 Q2664.7 61.6872 2661.09 62.4511 Q2657.48 63.2149 2653.76 63.2149 Q2644.46 63.2149 2639.01 57.7983 Q2633.59 52.3817 2633.59 43.1456 Q2633.59 33.597 2638.73 28.0068 Q2643.9 22.3818 2652.65 22.3818 Q2660.5 22.3818 2665.05 27.4512 Q2669.63 32.4859 2669.63 41.1664 M2663.24 39.2915 Q2663.17 34.0484 2660.29 30.9234 Q2657.44 27.7985 2652.72 27.7985 Q2647.37 27.7985 2644.14 30.8193 Q2640.95 33.8401 2640.46 39.3262 L2663.24 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2702.65 29.2915 Q2701.58 28.6665 2700.29 28.3887 Q2699.04 28.0762 2697.51 28.0762 Q2692.1 28.0762 2689.18 31.6179 Q2686.3 35.1248 2686.3 41.722 L2686.3 62.208 L2679.87 62.208 L2679.87 23.3193 L2686.3 23.3193 L2686.3 29.361 Q2688.31 25.8193 2691.54 24.1179 Q2694.77 22.3818 2699.39 22.3818 Q2700.05 22.3818 2700.85 22.486 Q2701.64 22.5554 2702.62 22.729 L2702.65 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2730.64 29.2915 Q2729.56 28.6665 2728.28 28.3887 Q2727.03 28.0762 2725.5 28.0762 Q2720.08 28.0762 2717.17 31.6179 Q2714.28 35.1248 2714.28 41.722 L2714.28 62.208 L2707.86 62.208 L2707.86 23.3193 L2714.28 23.3193 L2714.28 29.361 Q2716.3 25.8193 2719.53 24.1179 Q2722.76 22.3818 2727.37 22.3818 Q2728.03 22.3818 2728.83 22.486 Q2729.63 22.5554 2730.6 22.729 L2730.64 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2750.85 27.7985 Q2745.71 27.7985 2742.72 31.8262 Q2739.73 35.8193 2739.73 42.7984 Q2739.73 49.7775 2742.69 53.8053 Q2745.67 57.7983 2750.85 57.7983 Q2755.95 57.7983 2758.94 53.7705 Q2761.92 49.7428 2761.92 42.7984 Q2761.92 35.8887 2758.94 31.8609 Q2755.95 27.7985 2750.85 27.7985 M2750.85 22.3818 Q2759.18 22.3818 2763.94 27.7985 Q2768.69 33.2151 2768.69 42.7984 Q2768.69 52.3469 2763.94 57.7983 Q2759.18 63.2149 2750.85 63.2149 Q2742.48 63.2149 2737.72 57.7983 Q2733 52.3469 2733 42.7984 Q2733 33.2151 2737.72 27.7985 Q2742.48 22.3818 2750.85 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip770)\" d=\"M2801.82 29.2915 Q2800.74 28.6665 2799.46 28.3887 Q2798.21 28.0762 2796.68 28.0762 Q2791.26 28.0762 2788.35 31.6179 Q2785.46 35.1248 2785.46 41.722 L2785.46 62.208 L2779.04 62.208 L2779.04 23.3193 L2785.46 23.3193 L2785.46 29.361 Q2787.48 25.8193 2790.71 24.1179 Q2793.94 22.3818 2798.55 22.3818 Q2799.21 22.3818 2800.01 22.486 Q2800.81 22.5554 2801.78 22.729 L2801.82 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip773)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1862.63,110.599 1865.13,221.91 1867.64,287.372 1870.14,247.759 1872.65,230.857 1875.15,237.25 1877.66,204.437 1880.16,179.771 1882.67,178.666 1885.17,184.407 \n 1887.68,185.486 1890.18,182.734 1892.69,181.462 1895.19,181.464 1897.7,181.725 1900.2,181.804 1902.71,181.692 1905.21,181.613 1907.72,181.621 1910.22,181.691 \n 1912.73,181.745 1915.23,181.706 1917.74,181.656 1920.24,181.666 1922.75,181.733 1925.25,181.787 1927.76,181.749 1930.26,181.7 1932.77,181.71 1935.27,181.779 \n 1937.78,181.841 1940.28,181.8 1942.79,181.728 1945.29,181.734 1947.8,181.945 1950.3,182.348 1952.81,182.139 1955.31,181.091 1957.82,181.015 1960.33,186.091 \n 1962.83,196.307 1965.34,192.31 1967.84,178.001 1970.35,187.377 1972.85,229.012 1975.36,239.803 1977.86,274.688 1980.37,400.971 1982.87,423.399 1985.38,299.526 \n 1987.88,253.536 1990.39,279.914 1992.89,249.686 1995.4,235.542 1997.9,250.957 2000.41,255.956 2002.91,240.802 2005.42,232.747 2007.92,232.646 2010.43,234.195 \n 2012.93,234.478 2015.44,233.838 2017.94,233.531 2020.45,233.538 2022.95,233.642 2025.46,233.699 2027.96,233.647 2030.47,233.593 2032.97,233.602 2035.48,233.669 \n 2037.98,233.723 2040.49,233.684 2042.99,233.636 2045.5,233.645 2048,233.712 2050.51,233.767 2053.01,233.729 2055.52,233.679 2058.02,233.688 2060.53,233.771 \n 2063.03,233.867 2065.54,233.81 2068.04,233.633 2070.55,233.624 2073.05,234.404 2075.56,236.098 2078.07,235.281 2080.57,231.163 2083.08,231.361 2085.58,249.177 \n 2088.09,277.252 2090.59,271.066 2093.1,273.017 2095.6,314.382 2098.11,301.513 2100.61,219.058 2103.12,326.594 2105.62,430.661 2108.13,390.843 2110.63,346.333 \n 2113.14,348.9 2115.64,315.516 2118.15,283.997 2120.65,281.813 2123.16,289.963 2125.66,291.592 2128.17,287.313 2130.67,285.305 2133.18,285.302 2135.68,285.69 \n 2138.19,285.788 2140.69,285.627 2143.2,285.527 2145.7,285.535 2148.21,285.608 2150.71,285.662 2153.22,285.621 2155.72,285.572 2158.23,285.581 2160.73,285.648 \n 2163.24,285.702 2165.74,285.664 2168.25,285.615 2170.75,285.625 2173.26,285.694 2175.76,285.753 2178.27,285.713 2180.77,285.65 2183.28,285.658 2185.78,285.813 \n 2188.29,286.081 2190.79,285.938 2193.3,285.261 2195.81,285.203 2198.31,288.514 2200.82,295.429 2203.32,292.519 2205.83,280.589 2208.33,285.48 2210.84,324.961 \n 2213.34,352.619 2215.85,369.117 2218.35,466.294 2220.86,509.707 2223.36,391.697 2225.87,322.302 2228.37,383.101 2230.88,371.224 2233.38,349.391 2235.89,362.554 \n 2238.39,368.851 2240.9,348.151 2243.4,336.337 2245.91,336.119 2248.41,338.48 2250.92,338.904 2253.42,337.901 2255.93,337.433 2258.43,337.439 2260.94,337.568 \n 2263.44,337.629 2265.95,337.567 2268.45,337.508 2270.96,337.517 2273.46,337.585 2275.97,337.639 2278.47,337.6 2280.98,337.551 2283.48,337.561 2285.99,337.628 \n 2288.49,337.683 2291,337.645 2293.5,337.595 2296.01,337.604 2298.51,337.681 2301.02,337.761 2303.52,337.711 2306.03,337.584 2308.53,337.582 2311.04,338.095 \n 2313.55,339.192 2316.05,338.65 2318.56,335.864 2321.06,335.856 2323.57,348.493 2326.07,370.49 2328.58,364.14 2331.08,354.425 2333.59,384.138 2336.09,399.433 \n 2338.6,342.725 2341.1,433.086 2343.61,564.268 2346.11,533.98 2348.62,458.6 2351.12,453.155 2353.63,426.297 2356.13,389.425 2358.64,385.39 2361.14,396.251 \n 2363.65,398.619 2366.15,392.2 2368.66,389.115 2371.16,389.102 2373.67,389.683 2376.17,389.81 2378.68,389.573 2381.18,389.441 2383.69,389.448 2386.19,389.526 \n 2388.7,389.581 2391.2,389.538 2393.71,389.488 2396.21,389.497 2398.72,389.564 2401.22,389.619 2403.73,389.58 2406.23,389.531 2408.74,389.541 2411.24,389.609 \n 2413.75,389.666 2416.25,389.627 2418.76,389.57 2421.26,389.579 2423.77,389.7 2426.27,389.889 2428.78,389.785 2431.29,389.336 2433.79,389.297 2436.3,391.479 \n 2438.8,396.148 2441.31,394.078 2443.81,384.809 2446.32,387.208 2448.82,421.055 2451.33,455.603 2453.83,460.24 2456.34,524.329 2458.84,578.082 2461.35,482.203 \n 2463.85,394.285 2466.36,484.466 2468.86,500.433 2471.37,470.141 2473.87,475.733 2476.38,482.885 2478.88,456.443 2481.39,439.905 2483.89,439.465 2486.4,442.949 \n 2488.9,443.577 2491.41,442.037 2493.91,441.326 2496.42,441.331 2498.92,441.499 2501.43,441.566 2503.93,441.489 2506.44,441.424 2508.94,441.433 2511.45,441.501 \n 2513.95,441.556 2516.46,441.517 2518.96,441.468 2521.47,441.477 2523.97,441.544 2526.48,441.599 2528.98,441.561 2531.49,441.511 2533.99,441.521 2536.5,441.594 \n 2539,441.665 2541.51,441.62 2544.01,441.522 2546.52,441.524 2549.03,441.875 2551.53,442.602 2554.04,442.235 2556.54,440.347 2559.05,440.274 2561.55,449.137 \n 2564.06,465.697 2566.56,460.106 2569.07,445.738 2571.57,465.491 2574.08,498.056 2576.58,470.965 2579.09,538.67 2581.59,680.37 2584.1,668.273 2586.6,565.697 \n 2589.11,547.472 2591.61,535.7 2594.12,496.975 2596.62,490.022 2599.13,503.455 2601.63,506.748 2604.14,497.483 2606.64,492.884 2609.15,492.852 2611.65,493.714 \n 2614.16,493.885 2616.66,493.535 2619.17,493.353 2621.67,493.361 2624.18,493.446 2626.68,493.502 2629.19,493.456 2631.69,493.404 2634.2,493.413 2636.7,493.481 \n 2639.21,493.535 2641.71,493.497 2644.22,493.448 2646.72,493.458 2649.23,493.525 2651.73,493.582 2654.24,493.543 2656.74,493.489 2659.25,493.498 2661.75,493.6 \n 2664.26,493.74 2666.77,493.66 2669.27,493.353 2671.78,493.328 2674.28,494.789 2676.79,497.958 2679.29,496.498 2681.8,489.56 2684.3,490.65 2686.81,518.004 \n 2689.31,552.702 2691.82,550.634 2694.32,585.323 2696.83,639.262 2699.33,574.385 2701.84,478.263 2704.34,586.122 2706.85,635.698 2709.35,598.242 2711.86,589.859 \n 2714.36,596.85 2716.87,565.569 2719.37,543.552 2721.88,542.714 2724.38,547.665 2726.89,548.58 2729.39,546.273 2731.9,545.209 2734.4,545.212 2736.91,545.439 \n 2739.41,545.514 2741.92,545.415 2744.42,545.341 2746.93,545.349 2749.43,545.419 2751.94,545.474 2754.44,545.434 2756.95,545.384 2759.45,545.394 2761.96,545.461 \n 2764.46,545.516 2766.97,545.478 2769.47,545.428 2771.98,545.438 2774.48,545.509 2776.99,545.574 2779.49,545.532 2782,545.452 2784.51,545.457 2787.01,545.708 \n 2789.52,546.203 2792.02,545.948 2794.53,544.657 2797.03,544.576 2799.54,550.78 2802.04,562.985 2804.55,558.417 2807.05,543.47 2809.56,555.898 2812.06,596.256 \n 2814.57,595.311 2817.07,641.046 2819.58,776.682 2822.08,786.848 2824.59,666.998 2827.09,631.811 2829.6,642.889 2832.1,607.722 2834.61,596.561 2837.11,611.717 \n 2839.62,616.08 2842.12,603.245 2844.63,596.606 2847.13,596.538 2849.64,597.799 2852.14,598.034 2854.65,597.518 2857.15,597.264 2859.66,597.272 2862.16,597.367 \n 2864.67,597.425 2867.17,597.375 2869.68,597.321 2872.18,597.331 2874.69,597.398 2877.19,597.453 2879.7,597.414 2882.2,597.365 2884.71,597.375 2887.21,597.443 \n 2889.72,597.498 2892.22,597.46 2894.73,597.408 2897.24,597.417 2899.74,597.507 2902.25,597.617 2904.75,597.552 2907.26,597.334 2909.76,597.319 2912.27,598.318 \n 2914.77,600.492 2917.28,599.46 2919.78,594.359 2922.29,594.795 2924.79,616.148 2927.3,647.425 2929.8,642.151 2932.31,654.75 2934.81,702.275 2937.32,669.605 \n 2939.82,577.781 2942.33,689.543 2944.83,773.054 2947.34,732.252 2949.84,703.876 2952.35,709.016 2954.85,675.234 2957.36,647.455 2959.86,645.946 2962.37,652.702 \n 2964.87,654.004 2967.38,650.641 2969.88,649.078 2972.39,649.078 2974.89,649.39 2977.4,649.477 2979.9,649.345 2982.41,649.257 2984.91,649.266 2987.42,649.337 \n 2989.92,649.392 2992.43,649.352 2994.93,649.302 2997.44,649.311 2999.94,649.379 3002.45,649.434 3004.95,649.395 3007.46,649.346 3009.96,649.356 3012.47,649.426 \n 3014.98,649.487 3017.48,649.446 3019.99,649.377 3022.49,649.384 3025,649.573 3027.5,649.921 3030.01,649.738 3032.51,648.841 3035.02,648.771 3037.52,653.138 \n 3040.03,662.054 3042.53,658.465 3045.04,644.89 3047.54,652.404 3050.05,693.902 3052.55,711.895 3055.06,739.543 3057.56,856.68 3060.07,887.501 3062.57,763.499 \n 3065.08,709.145 3067.58,747.63 3070.09,722.641 3072.59,705.977 3075.1,721.098 3077.6,726.574 3080.11,709.546 3082.61,700.285 3085.12,700.152 3087.62,701.954 \n 3090.13,702.281 3092.63,701.53 3095.14,701.173 3097.64,701.18 3100.15,701.292 3102.65,701.351 3105.16,701.295 3107.66,701.239 3110.17,701.248 3112.67,701.316 \n 3115.18,701.371 \n \"/>\n</svg>\n"
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "sol = solve(ODEProblem(f!, U0(p), tspan, p), RK4())\n@show length(sol.t)\nplot_pendulum(sol; title=\"adaptive RK4\")",
"execution_count": 9,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 287\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip810\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip810)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip811\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip810)\" d=\"\nM157.191 910.808 L1500.22 910.808 L1500.22 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip812\">\n <rect x=\"157\" y=\"87\" width=\"1344\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 195.201,910.808 195.201,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 279.668,910.808 279.668,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 364.136,910.808 364.136,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 448.603,910.808 448.603,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 533.07,910.808 533.07,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 617.538,910.808 617.538,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 702.005,910.808 702.005,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 786.472,910.808 786.472,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 870.94,910.808 870.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 955.407,910.808 955.407,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1039.87,910.808 1039.87,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1124.34,910.808 1124.34,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1208.81,910.808 1208.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1293.28,910.808 1293.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1377.74,910.808 1377.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1462.21,910.808 1462.21,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1500.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 195.201,910.808 195.201,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 279.668,910.808 279.668,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 364.136,910.808 364.136,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 448.603,910.808 448.603,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 533.07,910.808 533.07,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 617.538,910.808 617.538,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 702.005,910.808 702.005,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 786.472,910.808 786.472,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 870.94,910.808 870.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 955.407,910.808 955.407,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1039.87,910.808 1039.87,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1124.34,910.808 1124.34,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1208.81,910.808 1208.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1293.28,910.808 1293.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1377.74,910.808 1377.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1462.21,910.808 1462.21,900.926 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M195.201 946.399 Q191.59 946.399 189.761 949.963 Q187.956 953.505 187.956 960.635 Q187.956 967.741 189.761 971.306 Q191.59 974.847 195.201 974.847 Q198.835 974.847 200.641 971.306 Q202.47 967.741 202.47 960.635 Q202.47 953.505 200.641 949.963 Q198.835 946.399 195.201 946.399 M195.201 942.695 Q201.011 942.695 204.067 947.301 Q207.146 951.885 207.146 960.635 Q207.146 969.361 204.067 973.968 Q201.011 978.551 195.201 978.551 Q189.391 978.551 186.312 973.968 Q183.257 969.361 183.257 960.635 Q183.257 951.885 186.312 947.301 Q189.391 942.695 195.201 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M274.321 973.945 L290.641 973.945 L290.641 977.88 L268.696 977.88 L268.696 973.945 Q271.358 971.19 275.942 966.56 Q280.548 961.908 281.729 960.565 Q283.974 958.042 284.854 956.306 Q285.756 954.547 285.756 952.857 Q285.756 950.102 283.812 948.366 Q281.891 946.63 278.789 946.63 Q276.59 946.63 274.136 947.394 Q271.706 948.158 268.928 949.709 L268.928 944.987 Q271.752 943.852 274.206 943.274 Q276.659 942.695 278.696 942.695 Q284.067 942.695 287.261 945.38 Q290.455 948.065 290.455 952.556 Q290.455 954.686 289.645 956.607 Q288.858 958.505 286.752 961.098 Q286.173 961.769 283.071 964.986 Q279.969 968.181 274.321 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M367.145 947.394 L355.34 965.843 L367.145 965.843 L367.145 947.394 M365.918 943.32 L371.798 943.32 L371.798 965.843 L376.728 965.843 L376.728 969.732 L371.798 969.732 L371.798 977.88 L367.145 977.88 L367.145 969.732 L351.543 969.732 L351.543 965.218 L365.918 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M449.008 958.736 Q445.86 958.736 444.008 960.889 Q442.18 963.042 442.18 966.792 Q442.18 970.519 444.008 972.695 Q445.86 974.847 449.008 974.847 Q452.156 974.847 453.985 972.695 Q455.837 970.519 455.837 966.792 Q455.837 963.042 453.985 960.889 Q452.156 958.736 449.008 958.736 M458.291 944.084 L458.291 948.343 Q456.531 947.51 454.726 947.07 Q452.943 946.63 451.184 946.63 Q446.555 946.63 444.101 949.755 Q441.67 952.88 441.323 959.199 Q442.689 957.186 444.749 956.121 Q446.809 955.033 449.286 955.033 Q454.494 955.033 457.504 958.204 Q460.536 961.352 460.536 966.792 Q460.536 972.116 457.388 975.334 Q454.24 978.551 449.008 978.551 Q443.013 978.551 439.842 973.968 Q436.67 969.361 436.67 960.635 Q436.67 952.44 440.559 947.579 Q444.448 942.695 450.999 942.695 Q452.758 942.695 454.541 943.042 Q456.346 943.389 458.291 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M533.07 961.468 Q529.737 961.468 527.816 963.25 Q525.918 965.033 525.918 968.158 Q525.918 971.283 527.816 973.065 Q529.737 974.847 533.07 974.847 Q536.404 974.847 538.325 973.065 Q540.246 971.26 540.246 968.158 Q540.246 965.033 538.325 963.25 Q536.427 961.468 533.07 961.468 M528.395 959.477 Q525.385 958.736 523.696 956.676 Q522.029 954.616 522.029 951.653 Q522.029 947.51 524.969 945.102 Q527.932 942.695 533.07 942.695 Q538.233 942.695 541.172 945.102 Q544.112 947.51 544.112 951.653 Q544.112 954.616 542.422 956.676 Q540.756 958.736 537.77 959.477 Q541.149 960.264 543.024 962.556 Q544.922 964.848 544.922 968.158 Q544.922 973.181 541.844 975.866 Q538.788 978.551 533.07 978.551 Q527.353 978.551 524.274 975.866 Q521.219 973.181 521.219 968.158 Q521.219 964.848 523.117 962.556 Q525.015 960.264 528.395 959.477 M526.682 952.093 Q526.682 954.778 528.348 956.283 Q530.038 957.787 533.07 957.787 Q536.08 957.787 537.77 956.283 Q539.483 954.778 539.483 952.093 Q539.483 949.408 537.77 947.903 Q536.08 946.399 533.07 946.399 Q530.038 946.399 528.348 947.903 Q526.682 949.408 526.682 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M592.225 973.945 L599.864 973.945 L599.864 947.579 L591.554 949.246 L591.554 944.987 L599.818 943.32 L604.494 943.32 L604.494 973.945 L612.133 973.945 L612.133 977.88 L592.225 977.88 L592.225 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M631.577 946.399 Q627.966 946.399 626.137 949.963 Q624.332 953.505 624.332 960.635 Q624.332 967.741 626.137 971.306 Q627.966 974.847 631.577 974.847 Q635.211 974.847 637.017 971.306 Q638.846 967.741 638.846 960.635 Q638.846 953.505 637.017 949.963 Q635.211 946.399 631.577 946.399 M631.577 942.695 Q637.387 942.695 640.443 947.301 Q643.521 951.885 643.521 960.635 Q643.521 969.361 640.443 973.968 Q637.387 978.551 631.577 978.551 Q625.767 978.551 622.688 973.968 Q619.633 969.361 619.633 960.635 Q619.633 951.885 622.688 947.301 Q625.767 942.695 631.577 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M677.491 973.945 L685.13 973.945 L685.13 947.579 L676.82 949.246 L676.82 944.987 L685.084 943.32 L689.76 943.32 L689.76 973.945 L697.399 973.945 L697.399 977.88 L677.491 977.88 L677.491 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M710.871 973.945 L727.19 973.945 L727.19 977.88 L705.246 977.88 L705.246 973.945 Q707.908 971.19 712.491 966.56 Q717.098 961.908 718.278 960.565 Q720.524 958.042 721.403 956.306 Q722.306 954.547 722.306 952.857 Q722.306 950.102 720.362 948.366 Q718.44 946.63 715.338 946.63 Q713.139 946.63 710.686 947.394 Q708.255 948.158 705.477 949.709 L705.477 944.987 Q708.301 943.852 710.755 943.274 Q713.209 942.695 715.246 942.695 Q720.616 942.695 723.811 945.38 Q727.005 948.065 727.005 952.556 Q727.005 954.686 726.195 956.607 Q725.408 958.505 723.301 961.098 Q722.723 961.769 719.621 964.986 Q716.519 968.181 710.871 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M760.917 973.945 L768.556 973.945 L768.556 947.579 L760.246 949.246 L760.246 944.987 L768.51 943.32 L773.186 943.32 L773.186 973.945 L780.824 973.945 L780.824 977.88 L760.917 977.88 L760.917 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M803.116 947.394 L791.31 965.843 L803.116 965.843 L803.116 947.394 M801.889 943.32 L807.769 943.32 L807.769 965.843 L812.699 965.843 L812.699 969.732 L807.769 969.732 L807.769 977.88 L803.116 977.88 L803.116 969.732 L787.514 969.732 L787.514 965.218 L801.889 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M845.546 973.945 L853.185 973.945 L853.185 947.579 L844.875 949.246 L844.875 944.987 L853.139 943.32 L857.815 943.32 L857.815 973.945 L865.454 973.945 L865.454 977.88 L845.546 977.88 L845.546 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M885.477 958.736 Q882.329 958.736 880.477 960.889 Q878.648 963.042 878.648 966.792 Q878.648 970.519 880.477 972.695 Q882.329 974.847 885.477 974.847 Q888.625 974.847 890.454 972.695 Q892.305 970.519 892.305 966.792 Q892.305 963.042 890.454 960.889 Q888.625 958.736 885.477 958.736 M894.759 944.084 L894.759 948.343 Q893 947.51 891.194 947.07 Q889.412 946.63 887.653 946.63 Q883.023 946.63 880.569 949.755 Q878.139 952.88 877.792 959.199 Q879.157 957.186 881.218 956.121 Q883.278 955.033 885.755 955.033 Q890.963 955.033 893.972 958.204 Q897.005 961.352 897.005 966.792 Q897.005 972.116 893.856 975.334 Q890.708 978.551 885.477 978.551 Q879.481 978.551 876.31 973.968 Q873.139 969.361 873.139 960.635 Q873.139 952.44 877.028 947.579 Q880.917 942.695 887.468 942.695 Q889.227 942.695 891.009 943.042 Q892.815 943.389 894.759 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M930.141 973.945 L937.78 973.945 L937.78 947.579 L929.47 949.246 L929.47 944.987 L937.734 943.32 L942.41 943.32 L942.41 973.945 L950.048 973.945 L950.048 977.88 L930.141 977.88 L930.141 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M969.493 961.468 Q966.159 961.468 964.238 963.25 Q962.34 965.033 962.34 968.158 Q962.34 971.283 964.238 973.065 Q966.159 974.847 969.493 974.847 Q972.826 974.847 974.747 973.065 Q976.669 971.26 976.669 968.158 Q976.669 965.033 974.747 963.25 Q972.849 961.468 969.493 961.468 M964.817 959.477 Q961.808 958.736 960.118 956.676 Q958.451 954.616 958.451 951.653 Q958.451 947.51 961.391 945.102 Q964.354 942.695 969.493 942.695 Q974.655 942.695 977.595 945.102 Q980.534 947.51 980.534 951.653 Q980.534 954.616 978.845 956.676 Q977.178 958.736 974.192 959.477 Q977.571 960.264 979.446 962.556 Q981.345 964.848 981.345 968.158 Q981.345 973.181 978.266 975.866 Q975.21 978.551 969.493 978.551 Q963.775 978.551 960.696 975.866 Q957.641 973.181 957.641 968.158 Q957.641 964.848 959.539 962.556 Q961.437 960.264 964.817 959.477 M963.104 952.093 Q963.104 954.778 964.771 956.283 Q966.46 957.787 969.493 957.787 Q972.502 957.787 974.192 956.283 Q975.905 954.778 975.905 952.093 Q975.905 949.408 974.192 947.903 Q972.502 946.399 969.493 946.399 Q966.46 946.399 964.771 947.903 Q963.104 949.408 963.104 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1018.65 973.945 L1034.97 973.945 L1034.97 977.88 L1013.02 977.88 L1013.02 973.945 Q1015.68 971.19 1020.27 966.56 Q1024.87 961.908 1026.06 960.565 Q1028.3 958.042 1029.18 956.306 Q1030.08 954.547 1030.08 952.857 Q1030.08 950.102 1028.14 948.366 Q1026.22 946.63 1023.12 946.63 Q1020.92 946.63 1018.46 947.394 Q1016.03 948.158 1013.25 949.709 L1013.25 944.987 Q1016.08 943.852 1018.53 943.274 Q1020.99 942.695 1023.02 942.695 Q1028.39 942.695 1031.59 945.38 Q1034.78 948.065 1034.78 952.556 Q1034.78 954.686 1033.97 956.607 Q1033.18 958.505 1031.08 961.098 Q1030.5 961.769 1027.4 964.986 Q1024.3 968.181 1018.65 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1054.78 946.399 Q1051.17 946.399 1049.34 949.963 Q1047.54 953.505 1047.54 960.635 Q1047.54 967.741 1049.34 971.306 Q1051.17 974.847 1054.78 974.847 Q1058.42 974.847 1060.22 971.306 Q1062.05 967.741 1062.05 960.635 Q1062.05 953.505 1060.22 949.963 Q1058.42 946.399 1054.78 946.399 M1054.78 942.695 Q1060.59 942.695 1063.65 947.301 Q1066.73 951.885 1066.73 960.635 Q1066.73 969.361 1063.65 973.968 Q1060.59 978.551 1054.78 978.551 Q1048.97 978.551 1045.89 973.968 Q1042.84 969.361 1042.84 960.635 Q1042.84 951.885 1045.89 947.301 Q1048.97 942.695 1054.78 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1103.91 973.945 L1120.23 973.945 L1120.23 977.88 L1098.29 977.88 L1098.29 973.945 Q1100.95 971.19 1105.53 966.56 Q1110.14 961.908 1111.32 960.565 Q1113.57 958.042 1114.45 956.306 Q1115.35 954.547 1115.35 952.857 Q1115.35 950.102 1113.4 948.366 Q1111.48 946.63 1108.38 946.63 Q1106.18 946.63 1103.73 947.394 Q1101.3 948.158 1098.52 949.709 L1098.52 944.987 Q1101.34 943.852 1103.8 943.274 Q1106.25 942.695 1108.29 942.695 Q1113.66 942.695 1116.85 945.38 Q1120.05 948.065 1120.05 952.556 Q1120.05 954.686 1119.24 956.607 Q1118.45 958.505 1116.34 961.098 Q1115.77 961.769 1112.66 964.986 Q1109.56 968.181 1103.91 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1134.08 973.945 L1150.39 973.945 L1150.39 977.88 L1128.45 977.88 L1128.45 973.945 Q1131.11 971.19 1135.7 966.56 Q1140.3 961.908 1141.48 960.565 Q1143.73 958.042 1144.61 956.306 Q1145.51 954.547 1145.51 952.857 Q1145.51 950.102 1143.57 948.366 Q1141.64 946.63 1138.54 946.63 Q1136.34 946.63 1133.89 947.394 Q1131.46 948.158 1128.68 949.709 L1128.68 944.987 Q1131.51 943.852 1133.96 943.274 Q1136.41 942.695 1138.45 942.695 Q1143.82 942.695 1147.02 945.38 Q1150.21 948.065 1150.21 952.556 Q1150.21 954.686 1149.4 956.607 Q1148.61 958.505 1146.51 961.098 Q1145.93 961.769 1142.83 964.986 Q1139.72 968.181 1134.08 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1187.34 973.945 L1203.66 973.945 L1203.66 977.88 L1181.71 977.88 L1181.71 973.945 Q1184.38 971.19 1188.96 966.56 Q1193.57 961.908 1194.75 960.565 Q1196.99 958.042 1197.87 956.306 Q1198.77 954.547 1198.77 952.857 Q1198.77 950.102 1196.83 948.366 Q1194.91 946.63 1191.81 946.63 Q1189.61 946.63 1187.15 947.394 Q1184.72 948.158 1181.95 949.709 L1181.95 944.987 Q1184.77 943.852 1187.22 943.274 Q1189.68 942.695 1191.71 942.695 Q1197.08 942.695 1200.28 945.38 Q1203.47 948.065 1203.47 952.556 Q1203.47 954.686 1202.66 956.607 Q1201.88 958.505 1199.77 961.098 Q1199.19 961.769 1196.09 964.986 Q1192.99 968.181 1187.34 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1226.32 947.394 L1214.52 965.843 L1226.32 965.843 L1226.32 947.394 M1225.09 943.32 L1230.97 943.32 L1230.97 965.843 L1235.9 965.843 L1235.9 969.732 L1230.97 969.732 L1230.97 977.88 L1226.32 977.88 L1226.32 969.732 L1210.72 969.732 L1210.72 965.218 L1225.09 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1271.97 973.945 L1288.29 973.945 L1288.29 977.88 L1266.34 977.88 L1266.34 973.945 Q1269.01 971.19 1273.59 966.56 Q1278.2 961.908 1279.38 960.565 Q1281.62 958.042 1282.5 956.306 Q1283.4 954.547 1283.4 952.857 Q1283.4 950.102 1281.46 948.366 Q1279.54 946.63 1276.44 946.63 Q1274.24 946.63 1271.78 947.394 Q1269.35 948.158 1266.58 949.709 L1266.58 944.987 Q1269.4 943.852 1271.85 943.274 Q1274.31 942.695 1276.34 942.695 Q1281.71 942.695 1284.91 945.38 Q1288.1 948.065 1288.1 952.556 Q1288.1 954.686 1287.29 956.607 Q1286.51 958.505 1284.4 961.098 Q1283.82 961.769 1280.72 964.986 Q1277.62 968.181 1271.97 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1308.68 958.736 Q1305.53 958.736 1303.68 960.889 Q1301.85 963.042 1301.85 966.792 Q1301.85 970.519 1303.68 972.695 Q1305.53 974.847 1308.68 974.847 Q1311.83 974.847 1313.66 972.695 Q1315.51 970.519 1315.51 966.792 Q1315.51 963.042 1313.66 960.889 Q1311.83 958.736 1308.68 958.736 M1317.96 944.084 L1317.96 948.343 Q1316.2 947.51 1314.4 947.07 Q1312.62 946.63 1310.86 946.63 Q1306.23 946.63 1303.77 949.755 Q1301.34 952.88 1301 959.199 Q1302.36 957.186 1304.42 956.121 Q1306.48 955.033 1308.96 955.033 Q1314.17 955.033 1317.18 958.204 Q1320.21 961.352 1320.21 966.792 Q1320.21 972.116 1317.06 975.334 Q1313.91 978.551 1308.68 978.551 Q1302.69 978.551 1299.51 973.968 Q1296.34 969.361 1296.34 960.635 Q1296.34 952.44 1300.23 947.579 Q1304.12 942.695 1310.67 942.695 Q1312.43 942.695 1314.21 943.042 Q1316.02 943.389 1317.96 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1356.56 973.945 L1372.88 973.945 L1372.88 977.88 L1350.94 977.88 L1350.94 973.945 Q1353.6 971.19 1358.18 966.56 Q1362.79 961.908 1363.97 960.565 Q1366.22 958.042 1367.1 956.306 Q1368 954.547 1368 952.857 Q1368 950.102 1366.05 948.366 Q1364.13 946.63 1361.03 946.63 Q1358.83 946.63 1356.38 947.394 Q1353.95 948.158 1351.17 949.709 L1351.17 944.987 Q1353.99 943.852 1356.45 943.274 Q1358.9 942.695 1360.94 942.695 Q1366.31 942.695 1369.5 945.38 Q1372.7 948.065 1372.7 952.556 Q1372.7 954.686 1371.89 956.607 Q1371.1 958.505 1368.99 961.098 Q1368.42 961.769 1365.31 964.986 Q1362.21 968.181 1356.56 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1392.7 961.468 Q1389.36 961.468 1387.44 963.25 Q1385.54 965.033 1385.54 968.158 Q1385.54 971.283 1387.44 973.065 Q1389.36 974.847 1392.7 974.847 Q1396.03 974.847 1397.95 973.065 Q1399.87 971.26 1399.87 968.158 Q1399.87 965.033 1397.95 963.25 Q1396.05 961.468 1392.7 961.468 M1388.02 959.477 Q1385.01 958.736 1383.32 956.676 Q1381.66 954.616 1381.66 951.653 Q1381.66 947.51 1384.6 945.102 Q1387.56 942.695 1392.7 942.695 Q1397.86 942.695 1400.8 945.102 Q1403.74 947.51 1403.74 951.653 Q1403.74 954.616 1402.05 956.676 Q1400.38 958.736 1397.4 959.477 Q1400.78 960.264 1402.65 962.556 Q1404.55 964.848 1404.55 968.158 Q1404.55 973.181 1401.47 975.866 Q1398.42 978.551 1392.7 978.551 Q1386.98 978.551 1383.9 975.866 Q1380.85 973.181 1380.85 968.158 Q1380.85 964.848 1382.74 962.556 Q1384.64 960.264 1388.02 959.477 M1386.31 952.093 Q1386.31 954.778 1387.98 956.283 Q1389.67 957.787 1392.7 957.787 Q1395.71 957.787 1397.4 956.283 Q1399.11 954.778 1399.11 952.093 Q1399.11 949.408 1397.4 947.903 Q1395.71 946.399 1392.7 946.399 Q1389.67 946.399 1387.98 947.903 Q1386.31 949.408 1386.31 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1451.05 959.246 Q1454.41 959.963 1456.29 962.232 Q1458.18 964.5 1458.18 967.834 Q1458.18 972.949 1454.66 975.75 Q1451.15 978.551 1444.66 978.551 Q1442.49 978.551 1440.17 978.111 Q1437.88 977.695 1435.43 976.838 L1435.43 972.324 Q1437.37 973.459 1439.69 974.037 Q1442 974.616 1444.53 974.616 Q1448.92 974.616 1451.22 972.88 Q1453.53 971.144 1453.53 967.834 Q1453.53 964.778 1451.38 963.065 Q1449.25 961.329 1445.43 961.329 L1441.4 961.329 L1441.4 957.486 L1445.61 957.486 Q1449.06 957.486 1450.89 956.121 Q1452.72 954.732 1452.72 952.139 Q1452.72 949.477 1450.82 948.065 Q1448.95 946.63 1445.43 946.63 Q1443.51 946.63 1441.31 947.047 Q1439.11 947.463 1436.47 948.343 L1436.47 944.176 Q1439.13 943.436 1441.45 943.065 Q1443.79 942.695 1445.85 942.695 Q1451.17 942.695 1454.27 945.125 Q1457.37 947.533 1457.37 951.653 Q1457.37 954.524 1455.73 956.514 Q1454.09 958.482 1451.05 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1477.05 946.399 Q1473.44 946.399 1471.61 949.963 Q1469.8 953.505 1469.8 960.635 Q1469.8 967.741 1471.61 971.306 Q1473.44 974.847 1477.05 974.847 Q1480.68 974.847 1482.49 971.306 Q1484.32 967.741 1484.32 960.635 Q1484.32 953.505 1482.49 949.963 Q1480.68 946.399 1477.05 946.399 M1477.05 942.695 Q1482.86 942.695 1485.91 947.301 Q1488.99 951.885 1488.99 960.635 Q1488.99 969.361 1485.91 973.968 Q1482.86 978.551 1477.05 978.551 Q1471.24 978.551 1468.16 973.968 Q1465.1 969.361 1465.1 960.635 Q1465.1 951.885 1468.16 947.301 Q1471.24 942.695 1477.05 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1500.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1500.22,832.378 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1500.22,753.948 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1500.22,675.518 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1500.22,597.088 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1500.22,518.658 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1500.22,440.227 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1500.22,361.797 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1500.22,283.367 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1500.22,204.937 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1500.22,126.507 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 173.307,910.808 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 173.307,832.378 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 173.307,753.948 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 173.307,675.518 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 173.307,597.088 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 173.307,518.658 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 173.307,440.227 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 173.307,361.797 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 173.307,283.367 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 173.307,204.937 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 173.307,126.507 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M651.074 35.5496 Q644.622 35.5496 642.133 37.0253 Q639.645 38.501 639.645 42.06 Q639.645 44.8956 641.497 46.5738 Q643.377 48.2231 646.589 48.2231 Q651.016 48.2231 653.678 45.0981 Q656.369 41.9442 656.369 36.7359 L656.369 35.5496 L651.074 35.5496 M661.693 33.3505 L661.693 51.84 L656.369 51.84 L656.369 46.921 Q654.546 49.8724 651.826 51.2902 Q649.106 52.6791 645.171 52.6791 Q640.194 52.6791 637.243 49.9014 Q634.321 47.0947 634.321 42.4072 Q634.321 36.9385 637.966 34.1607 Q641.641 31.3829 648.904 31.3829 L656.369 31.3829 L656.369 30.8621 Q656.369 27.1874 653.939 25.1908 Q651.537 23.1654 647.168 23.1654 Q644.39 23.1654 641.757 23.8309 Q639.124 24.4964 636.693 25.8274 L636.693 20.9085 Q639.616 19.78 642.365 19.2302 Q645.113 18.6515 647.718 18.6515 Q654.749 18.6515 658.221 22.2973 Q661.693 25.9431 661.693 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M693.985 24.3517 L693.985 6.81709 L699.309 6.81709 L699.309 51.84 L693.985 51.84 L693.985 46.9789 Q692.306 49.8724 689.731 51.2902 Q687.185 52.6791 683.597 52.6791 Q677.723 52.6791 674.019 47.9916 Q670.345 43.3042 670.345 35.6653 Q670.345 28.0265 674.019 23.339 Q677.723 18.6515 683.597 18.6515 Q687.185 18.6515 689.731 20.0693 Q692.306 21.4582 693.985 24.3517 M675.842 35.6653 Q675.842 41.5391 678.244 44.8956 Q680.675 48.2231 684.899 48.2231 Q689.124 48.2231 691.554 44.8956 Q693.985 41.5391 693.985 35.6653 Q693.985 29.7915 691.554 26.464 Q689.124 23.1075 684.899 23.1075 Q680.675 23.1075 678.244 26.464 Q675.842 29.7915 675.842 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M725.003 35.5496 Q718.551 35.5496 716.062 37.0253 Q713.574 38.501 713.574 42.06 Q713.574 44.8956 715.426 46.5738 Q717.306 48.2231 720.518 48.2231 Q724.945 48.2231 727.607 45.0981 Q730.298 41.9442 730.298 36.7359 L730.298 35.5496 L725.003 35.5496 M735.622 33.3505 L735.622 51.84 L730.298 51.84 L730.298 46.921 Q728.475 49.8724 725.755 51.2902 Q723.035 52.6791 719.1 52.6791 Q714.123 52.6791 711.172 49.9014 Q708.25 47.0947 708.25 42.4072 Q708.25 36.9385 711.895 34.1607 Q715.57 31.3829 722.833 31.3829 L730.298 31.3829 L730.298 30.8621 Q730.298 27.1874 727.868 25.1908 Q725.466 23.1654 721.097 23.1654 Q718.319 23.1654 715.686 23.8309 Q713.053 24.4964 710.622 25.8274 L710.622 20.9085 Q713.545 19.78 716.294 19.2302 Q719.042 18.6515 721.647 18.6515 Q728.678 18.6515 732.15 22.2973 Q735.622 25.9431 735.622 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M751.739 46.9789 L751.739 64.1663 L746.386 64.1663 L746.386 19.4328 L751.739 19.4328 L751.739 24.3517 Q753.417 21.4582 755.964 20.0693 Q758.539 18.6515 762.098 18.6515 Q768 18.6515 771.675 23.339 Q775.379 28.0265 775.379 35.6653 Q775.379 43.3042 771.675 47.9916 Q768 52.6791 762.098 52.6791 Q758.539 52.6791 755.964 51.2902 Q753.417 49.8724 751.739 46.9789 M769.852 35.6653 Q769.852 29.7915 767.422 26.464 Q765.02 23.1075 760.796 23.1075 Q756.571 23.1075 754.141 26.464 Q751.739 29.7915 751.739 35.6653 Q751.739 41.5391 754.141 44.8956 Q756.571 48.2231 760.796 48.2231 Q765.02 48.2231 767.422 44.8956 Q769.852 41.5391 769.852 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M789.47 10.2314 L789.47 19.4328 L800.437 19.4328 L800.437 23.5705 L789.47 23.5705 L789.47 41.163 Q789.47 45.1271 790.541 46.2555 Q791.64 47.384 794.968 47.384 L800.437 47.384 L800.437 51.84 L794.968 51.84 Q788.805 51.84 786.461 49.5541 Q784.117 47.2393 784.117 41.163 L784.117 23.5705 L780.211 23.5705 L780.211 19.4328 L784.117 19.4328 L784.117 10.2314 L789.47 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M807.439 19.4328 L812.763 19.4328 L812.763 51.84 L807.439 51.84 L807.439 19.4328 M807.439 6.81709 L812.763 6.81709 L812.763 13.559 L807.439 13.559 L807.439 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M820.084 19.4328 L825.726 19.4328 L835.853 46.6317 L845.98 19.4328 L851.623 19.4328 L839.47 51.84 L832.236 51.84 L820.084 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M886.692 34.3054 L886.692 36.9095 L862.213 36.9095 Q862.56 42.4072 865.512 45.3007 Q868.492 48.1653 873.787 48.1653 Q876.854 48.1653 879.719 47.4129 Q882.612 46.6606 885.448 45.156 L885.448 50.1907 Q882.583 51.406 879.574 52.0425 Q876.565 52.6791 873.469 52.6791 Q865.714 52.6791 861.171 48.1653 Q856.657 43.6514 856.657 35.9547 Q856.657 27.9975 860.94 23.339 Q865.251 18.6515 872.543 18.6515 Q879.082 18.6515 882.873 22.876 Q886.692 27.0716 886.692 34.3054 M881.368 32.7429 Q881.31 28.3737 878.908 25.7695 Q876.536 23.1654 872.601 23.1654 Q868.145 23.1654 865.454 25.6827 Q862.792 28.2001 862.387 32.7718 L881.368 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M934.985 31.5855 Q936.865 32.222 938.63 34.3054 Q940.424 36.3887 942.218 40.0345 L948.15 51.84 L941.871 51.84 L936.344 40.7579 Q934.203 36.4176 932.178 34.9998 Q930.181 33.582 926.709 33.582 L920.343 33.582 L920.343 51.84 L914.499 51.84 L914.499 8.64 L927.693 8.64 Q935.1 8.64 938.746 11.736 Q942.392 14.8321 942.392 21.0821 Q942.392 25.1619 940.482 27.8529 Q938.601 30.5438 934.985 31.5855 M920.343 13.4432 L920.343 28.7788 L927.693 28.7788 Q931.917 28.7788 934.059 26.8401 Q936.229 24.8726 936.229 21.0821 Q936.229 17.2916 934.059 15.3819 Q931.917 13.4432 927.693 13.4432 L920.343 13.4432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M955.673 8.64 L961.518 8.64 L961.518 26.898 L980.904 8.64 L988.428 8.64 L966.987 28.7788 L989.961 51.84 L982.264 51.84 L961.518 31.0357 L961.518 51.84 L955.673 51.84 L955.673 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1011.11 13.7326 L996.356 36.7938 L1011.11 36.7938 L1011.11 13.7326 M1009.58 8.64 L1016.93 8.64 L1016.93 36.7938 L1023.09 36.7938 L1023.09 41.6549 L1016.93 41.6549 L1016.93 51.84 L1011.11 51.84 L1011.11 41.6549 L991.61 41.6549 L991.61 36.0125 L1009.58 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip812)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 195.201,597.088 197.735,567.816 200.269,539.54 202.803,513.095 205.337,489.056 207.871,467.714 210.405,449.118 212.939,433.145 215.473,419.572 218.007,408.13 \n 220.541,398.54 223.075,390.539 225.609,383.887 228.143,378.375 230.677,373.823 233.211,370.077 235.745,367.011 238.28,364.517 240.814,362.511 243.348,360.921 \n 245.882,359.692 248.416,358.781 250.95,358.156 253.484,357.795 256.018,357.685 258.552,357.822 261.086,358.211 263.62,358.866 266.154,359.81 268.688,361.076 \n 271.222,362.708 273.756,364.764 276.29,367.315 278.824,370.451 281.358,374.277 283.892,378.927 286.426,384.553 288.96,391.342 291.494,399.502 294.028,409.28 \n 296.562,420.941 299.096,434.762 301.63,451.012 304.164,469.9 306.698,491.546 309.232,515.86 311.766,542.537 314.3,570.96 316.834,600.276 319.368,629.482 \n 321.902,657.594 324.436,683.801 326.97,707.553 329.504,728.598 332.038,746.902 334.572,762.601 337.106,775.929 339.64,787.156 342.174,796.56 344.708,804.401 \n 347.242,810.918 349.776,816.314 352.31,820.769 354.844,824.43 357.378,827.425 359.912,829.855 362.446,831.805 364.981,833.343 367.515,834.524 370.049,835.388 \n 372.583,835.966 375.117,836.278 377.651,836.336 380.185,836.141 382.719,835.687 385.253,834.957 387.787,833.925 390.321,832.557 392.855,830.802 395.389,828.602 \n 397.923,825.876 400.457,822.535 402.991,818.459 405.525,813.514 408.059,807.533 410.593,800.326 413.127,791.667 415.661,781.308 418.195,768.977 420.729,754.393 \n 423.263,737.307 425.797,717.522 428.331,694.996 430.865,669.859 433.399,642.537 435.933,613.721 438.467,584.329 441.001,555.377 443.535,527.81 446.069,502.36 \n 448.603,479.47 451.137,459.327 453.671,441.893 456.205,426.994 458.739,414.383 461.273,403.781 463.807,394.916 466.341,387.531 468.875,381.404 471.409,376.335 \n 473.943,372.159 476.477,368.73 479.011,365.936 481.545,363.677 484.079,361.876 486.613,360.47 489.147,359.408 491.682,358.655 494.216,358.183 496.75,357.975 \n 499.284,358.025 501.818,358.335 504.352,358.914 506.886,359.784 509.42,360.974 511.954,362.529 514.488,364.499 517.022,366.957 519.556,369.986 522.09,373.691 \n 524.624,378.197 527.158,383.659 529.692,390.251 532.226,398.185 534.76,407.696 537.294,419.048 539.828,432.521 542.362,448.38 544.896,466.859 547.43,488.074 \n 549.964,512.001 552.498,538.342 555.032,566.548 557.566,595.788 560.1,625.077 562.634,653.409 565.168,679.944 567.702,704.098 570.236,725.556 572.77,744.271 \n 575.304,760.353 577.838,774.023 580.372,785.549 582.906,795.21 585.44,803.27 587.974,809.969 590.508,815.519 593.042,820.099 595.576,823.865 598.11,826.943 \n 600.644,829.441 603.178,831.444 605.712,833.023 608.246,834.232 610.78,835.115 613.314,835.703 615.848,836.015 618.383,836.063 620.917,835.85 623.451,835.366 \n 625.985,834.596 628.519,833.512 631.053,832.075 633.587,830.237 636.121,827.931 638.655,825.079 641.189,821.581 643.723,817.319 646.257,812.147 648.791,805.897 \n 651.325,798.367 653.859,789.328 656.393,778.525 658.927,765.681 661.461,750.522 663.995,732.802 666.529,712.366 669.063,689.187 671.597,663.488 674.131,635.731 \n 676.665,606.691 679.199,577.313 681.733,548.618 684.267,521.503 686.801,496.636 689.335,474.404 691.869,454.919 694.403,438.115 696.937,423.791 699.471,411.689 \n 702.005,401.531 704.539,393.046 707.073,385.989 709.607,380.136 712.141,375.303 714.675,371.325 717.209,368.07 719.743,365.424 722.277,363.297 724.811,361.614 \n 727.345,360.316 729.879,359.358 732.413,358.706 734.947,358.337 737.481,358.239 740.015,358.407 742.549,358.847 745.084,359.576 747.618,360.619 750.152,362.012 \n 752.686,363.804 755.22,366.059 757.754,368.854 760.288,372.286 762.822,376.472 765.356,381.555 767.89,387.7 770.424,395.108 772.958,404.003 775.492,414.64 \n 778.026,427.293 780.56,442.239 783.094,459.725 785.628,479.922 788.162,502.865 790.696,528.357 793.23,555.961 795.764,584.923 798.298,614.31 800.832,643.102 \n 803.366,670.387 805.9,695.466 808.434,717.935 810.968,737.66 813.502,754.689 816.036,769.218 818.57,781.502 821.104,791.817 823.638,800.435 826.172,807.606 \n 828.706,813.553 831.24,818.465 833.774,822.507 836.308,825.816 838.842,828.505 841.376,830.667 843.91,832.377 846.444,833.696 848.978,834.669 851.512,835.331 \n 854.046,835.705 856.58,835.803 859.114,835.631 861.648,835.181 864.182,834.438 866.716,833.375 869.25,831.955 871.785,830.129 874.319,827.833 876.853,824.986 \n 879.387,821.491 881.921,817.227 884.455,812.052 886.989,805.794 889.523,798.255 892.057,789.202 894.591,778.381 897.125,765.517 899.659,750.334 902.193,732.59 \n 904.727,712.123 907.261,688.92 909.795,663.198 912.329,635.425 914.863,606.379 917.397,577.006 919.931,548.325 922.465,521.231 924.999,496.395 927.533,474.193 \n 930.067,454.739 932.601,437.965 935.135,423.668 937.669,411.591 940.203,401.455 942.737,392.991 945.271,385.951 947.805,380.117 950.339,375.3 952.873,371.339 \n 955.407,368.101 957.941,365.473 960.475,363.366 963.009,361.704 965.543,360.432 968.077,359.503 970.611,358.886 973.145,358.558 975.679,358.509 978.213,358.735 \n 980.747,359.245 983.281,360.058 985.815,361.201 988.349,362.716 990.883,364.654 993.417,367.084 995.951,370.09 998.486,373.775 1001.02,378.265 1003.55,383.711 \n 1006.09,390.291 1008.62,398.212 1011.16,407.713 1013.69,419.056 1016.22,432.516 1018.76,448.368 1021.29,466.832 1023.83,488.042 1026.36,511.956 1028.89,538.287 \n 1031.43,566.488 1033.96,595.721 1036.5,625.004 1039.03,653.336 1041.56,679.875 1044.1,704.026 1046.63,725.489 1049.17,744.206 1051.7,760.289 1054.23,773.959 \n 1056.77,785.484 1059.3,795.142 1061.84,803.198 1064.37,809.89 1066.9,815.43 1069.44,819.998 1071.97,823.748 1074.51,826.806 1077.04,829.28 1079.57,831.252 \n 1082.11,832.795 1084.64,833.959 1087.18,834.788 1089.71,835.309 1092.24,835.542 1094.78,835.494 1097.31,835.164 1099.85,834.539 1102.38,833.6 1104.91,832.31 \n 1107.45,830.627 1109.98,828.491 1112.52,825.828 1115.05,822.544 1117.58,818.529 1120.12,813.645 1122.65,807.732 1125.19,800.595 1127.72,792.02 1130.25,781.75 \n 1132.79,769.519 1135.32,755.051 1137.86,738.082 1140.39,718.431 1142.92,696.026 1145.46,671.006 1147.99,643.778 1150.53,615.013 1153.06,585.633 1155.59,556.648 \n 1158.13,529.011 1160.66,503.457 1163.2,480.457 1165.73,460.198 1168.26,442.651 1170.8,427.653 1173.33,414.953 1175.87,404.278 1178.4,395.351 1180.93,387.92 \n 1183.47,381.757 1186,376.665 1188.54,372.475 1191.07,369.045 1193.61,366.26 1196.14,364.021 1198.67,362.253 1201.21,360.891 1203.74,359.89 1206.28,359.214 \n 1208.81,358.839 1211.34,358.751 1213.88,358.949 1216.41,359.437 1218.95,360.235 1221.48,361.37 1224.01,362.882 1226.55,364.823 1229.08,367.262 1231.62,370.283 \n 1234.15,373.991 1236.68,378.51 1239.22,383.994 1241.75,390.619 1244.29,398.599 1246.82,408.166 1249.35,419.588 1251.89,433.141 1254.42,449.092 1256.96,467.671 \n 1259.49,488.99 1262.02,513.009 1264.56,539.434 1267.09,567.686 1269.63,596.942 1272.16,626.203 1274.69,654.475 1277.23,680.917 1279.76,704.962 1282.3,726.309 \n 1284.83,744.91 1287.36,760.886 1289.9,774.459 1292.43,785.899 1294.97,795.481 1297.5,803.472 1300.03,810.107 1302.57,815.597 1305.1,820.12 1307.64,823.83 \n 1310.17,826.851 1312.7,829.288 1315.24,831.225 1317.77,832.73 1320.31,833.856 1322.84,834.642 1325.37,835.115 1327.91,835.293 1330.44,835.182 1332.98,834.777 \n 1335.51,834.065 1338.04,833.02 1340.58,831.606 1343.11,829.773 1345.65,827.458 1348.18,824.578 1350.71,821.038 1353.25,816.711 1355.78,811.459 1358.32,805.101 \n 1360.85,797.444 1363.38,788.247 1365.92,777.257 1368.45,764.198 1370.99,748.793 1373.52,730.812 1376.05,710.093 1378.59,686.655 1381.12,660.721 1383.66,632.804 \n 1386.19,603.69 1388.72,574.344 1391.26,545.777 1393.79,518.871 1396.33,494.271 1398.86,472.32 1401.39,453.122 1403.93,436.588 1406.46,422.511 1409,410.628 \n 1411.53,400.663 1414.06,392.347 1416.6,385.435 1419.13,379.713 1421.67,374.994 1424.2,371.123 1426.73,367.965 1429.27,365.414 1431.8,363.381 1434.34,361.795 \n 1436.87,360.601 1439.4,359.756 1441.94,359.232 1444.47,359.009 1447.01,359.08 1449.54,359.447 1452.08,360.124 1454.61,361.133 1457.14,362.512 1459.68,364.307 \n 1462.21,366.582 \n \"/>\n<polyline clip-path=\"url(#clip812)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 195.201,597.088 197.735,567.816 200.269,539.54 202.803,513.095 205.337,489.056 207.871,467.714 210.405,449.117 212.939,433.145 215.473,419.572 218.007,408.13 \n 220.541,398.541 223.075,390.54 225.609,383.889 228.143,378.377 230.677,373.825 233.211,370.08 235.745,367.014 238.28,364.522 240.814,362.517 243.348,360.929 \n 245.882,359.702 248.416,358.794 250.95,358.172 253.484,357.814 256.018,357.709 258.552,357.851 261.086,358.246 263.62,358.909 266.154,359.862 268.688,361.139 \n 271.222,362.784 273.756,364.857 276.29,367.427 278.824,370.586 281.358,374.442 283.892,379.125 286.426,384.793 288.96,391.629 291.494,399.848 294.028,409.694 \n 296.562,421.432 299.096,435.342 301.63,451.689 304.164,470.685 306.698,492.433 309.232,516.852 311.766,543.609 314.3,572.09 316.834,601.426 319.368,630.612 \n 321.902,658.665 324.436,684.784 326.97,708.438 329.504,729.373 332.038,747.572 334.572,763.175 337.106,776.416 339.64,787.568 342.174,796.907 344.708,804.695 \n 347.242,811.166 349.776,816.525 352.31,820.95 354.844,824.587 357.378,827.562 359.912,829.978 362.446,831.917 364.981,833.449 367.515,834.626 370.049,835.49 \n 372.583,836.072 375.117,836.392 377.651,836.461 380.185,836.282 382.719,835.848 385.253,835.145 387.787,834.146 390.321,832.818 392.855,831.114 395.389,828.973 \n 397.923,826.322 400.457,823.067 402.991,819.099 405.525,814.281 408.059,808.453 410.593,801.427 413.127,792.984 415.661,782.877 418.195,770.836 420.729,756.583 \n 423.263,739.857 425.797,720.458 428.331,698.306 430.865,673.515 433.399,646.458 435.933,617.792 438.467,588.413 441.001,559.336 443.535,531.523 446.069,505.741 \n 448.603,482.478 451.137,461.95 453.671,444.145 456.205,428.906 458.739,415.991 461.273,405.123 463.807,396.029 466.341,388.449 468.875,382.154 471.409,376.943 \n 473.943,372.643 476.477,369.111 479.011,366.224 481.545,363.884 484.079,362.008 486.613,360.532 489.147,359.403 491.682,358.582 494.216,358.04 496.75,357.757 \n 499.284,357.725 501.818,357.941 504.352,358.413 506.886,359.158 509.42,360.203 511.954,361.583 514.488,363.348 517.022,365.559 519.556,368.293 522.09,371.645 \n 524.624,375.73 527.158,380.686 529.692,386.677 532.226,393.898 534.76,402.57 537.294,412.945 539.828,425.294 542.362,439.896 544.896,457.006 547.43,476.809 \n 549.964,499.363 552.498,524.518 555.032,551.86 557.566,580.692 560.1,610.091 562.634,639.039 565.168,666.594 567.702,692.029 570.236,714.896 572.77,735.018 \n 575.304,752.432 577.838,767.312 580.372,779.908 582.906,790.497 585.44,799.353 587.974,806.729 590.508,812.853 593.042,817.92 595.576,822.098 598.11,825.528 \n 600.644,828.328 603.178,830.596 605.712,832.408 608.246,833.831 610.78,834.912 613.314,835.69 615.848,836.193 618.383,836.438 620.917,836.434 623.451,836.181 \n 625.985,835.67 628.519,834.882 631.053,833.791 633.587,832.357 636.121,830.531 638.655,828.248 641.189,825.43 643.723,821.977 646.257,817.774 648.791,812.676 \n 651.325,806.516 653.859,799.096 656.393,790.19 658.927,779.541 661.461,766.877 663.995,751.92 666.529,734.423 669.063,714.214 671.597,691.262 674.131,665.751 \n 676.665,638.139 679.199,609.162 681.733,579.765 684.267,550.967 686.801,523.685 689.335,498.607 691.869,476.14 694.403,456.423 696.937,439.397 699.471,424.87 \n 702.005,412.587 704.539,402.27 707.073,393.648 709.607,386.47 712.141,380.514 714.675,375.588 717.209,371.528 719.743,368.197 722.277,365.481 724.811,363.286 \n 727.345,361.534 729.879,360.165 732.413,359.13 734.947,358.394 737.481,357.93 740.015,357.722 742.549,357.762 745.084,358.053 747.618,358.603 750.152,359.434 \n 752.686,360.573 755.22,362.061 757.754,363.95 760.288,366.306 762.822,369.212 765.356,372.767 767.89,377.093 770.424,382.336 772.958,388.668 775.492,396.292 \n 778.026,405.439 780.56,416.367 783.094,429.352 785.628,444.669 788.162,462.557 790.696,483.173 793.23,506.52 795.764,532.376 798.298,560.242 800.832,589.344 \n 803.366,618.716 805.9,647.344 808.434,674.338 810.968,699.049 813.502,721.114 816.036,740.427 818.57,757.071 821.104,771.25 823.638,783.225 826.172,793.276 \n 828.706,801.67 831.24,808.655 833.774,814.448 836.308,819.237 838.842,823.181 841.376,826.414 843.91,829.048 846.444,831.174 848.978,832.866 851.512,834.183 \n 854.046,835.171 856.58,835.866 859.114,836.292 861.648,836.463 864.182,836.386 866.716,836.058 869.25,835.468 871.785,834.594 874.319,833.406 876.853,831.862 \n 879.387,829.909 881.921,827.477 884.455,824.483 886.989,820.822 889.523,816.371 892.057,810.979 894.591,804.47 897.125,796.637 899.659,787.244 902.193,776.03 \n 904.727,762.719 907.261,747.037 909.795,728.753 912.329,707.73 914.863,683.993 917.397,657.803 919.931,629.7 922.465,600.495 924.999,571.17 927.533,542.732 \n 930.067,516.04 932.601,491.703 935.135,470.042 937.669,451.132 940.203,434.866 942.737,421.029 945.271,409.354 947.805,399.565 950.339,391.393 952.873,384.596 \n 955.407,378.963 957.941,374.308 960.475,370.476 963.009,367.337 965.543,364.784 968.077,362.726 970.611,361.093 973.145,359.827 975.679,358.884 978.213,358.23 \n 980.747,357.843 983.281,357.708 985.815,357.822 988.349,358.187 990.883,358.818 993.417,359.736 995.951,360.973 998.486,362.573 1001.02,364.593 1003.55,367.102 \n 1006.09,370.187 1008.62,373.956 1011.16,378.536 1013.69,384.081 1016.22,390.771 1018.76,398.819 1021.29,408.463 1023.83,419.968 1026.36,433.613 1028.89,449.665 \n 1031.43,468.347 1033.96,489.776 1036.5,513.897 1039.03,540.411 1041.56,568.732 1044.1,598.02 1046.63,627.275 1049.17,655.505 1051.7,681.881 1054.23,705.837 \n 1056.77,727.092 1059.3,745.603 1061.84,761.495 1064.37,774.996 1066.9,786.375 1069.44,795.911 1071.97,803.865 1074.51,810.478 1077.04,815.956 1079.57,820.481 \n 1082.11,824.202 1084.64,827.248 1087.18,829.724 1089.71,831.715 1092.24,833.291 1094.78,834.507 1097.31,835.405 1099.85,836.019 1102.38,836.368 1104.91,836.466 \n 1107.45,836.316 1109.98,835.912 1112.52,835.241 1115.05,834.278 1117.58,832.99 1120.12,831.332 1122.65,829.245 1125.19,826.657 1127.72,823.478 1130.25,819.599 \n 1132.79,814.887 1135.32,809.185 1137.86,802.308 1140.39,794.041 1142.92,784.14 1145.46,772.337 1147.99,758.354 1150.53,741.926 1153.06,722.844 1155.59,701.009 \n 1158.13,676.51 1160.66,649.687 1163.2,621.164 1165.73,591.817 1168.26,562.653 1170.8,534.65 1173.33,508.602 1175.87,485.032 1178.4,464.184 1180.93,446.07 \n 1183.47,430.546 1186,417.375 1188.54,406.285 1191.07,396.999 1193.61,389.256 1196.14,382.824 1198.67,377.496 1201.21,373.099 1203.74,369.484 1206.28,366.528 \n 1208.81,364.129 1211.34,362.203 1213.88,360.684 1216.41,359.517 1218.95,358.662 1221.48,358.089 1224.01,357.777 1226.55,357.716 1229.08,357.903 1231.62,358.345 \n 1234.15,359.057 1236.68,360.066 1239.22,361.405 1241.75,363.122 1244.29,365.278 1246.82,367.947 1249.35,371.222 1251.89,375.215 1254.42,380.062 1256.96,385.925 \n 1259.49,392.992 1262.02,401.484 1264.56,411.648 1267.09,423.755 1269.63,438.083 1272.16,454.891 1274.69,474.376 1277.23,496.615 1279.76,521.484 1282.3,548.604 \n 1284.83,577.308 1287.36,606.692 1289.9,635.744 1292.43,663.503 1294.97,689.211 1297.5,712.389 1300.03,732.83 1302.57,750.55 1305.1,765.712 1307.64,778.558 \n 1310.17,789.365 1312.7,798.408 1315.24,805.944 1317.77,812.202 1320.31,817.382 1322.84,821.655 1325.37,825.165 1327.91,828.033 1330.44,830.358 1332.98,832.22 \n 1335.51,833.684 1338.04,834.803 1340.58,835.615 1343.11,836.148 1345.65,836.423 1348.18,836.448 1350.71,836.224 1353.25,835.743 1355.78,834.989 1358.32,833.934 \n 1360.85,832.542 1363.38,830.764 1365.92,828.538 1368.45,825.786 1370.99,822.413 1373.52,818.303 1376.05,813.317 1378.59,807.289 1381.12,800.027 1383.66,791.304 \n 1386.19,780.871 1388.72,768.455 1391.26,753.777 1393.79,736.585 1396.33,716.694 1398.86,694.054 1401.39,668.822 1403.93,641.421 1406.46,612.556 1409,583.156 \n 1411.53,554.238 1414.06,526.74 1416.6,501.381 1419.13,478.6 1421.67,458.565 1424.2,441.235 1426.73,426.431 1429.27,413.903 1431.8,403.373 1434.34,394.567 \n 1436.87,387.234 1439.4,381.147 1441.94,376.111 1444.47,371.958 1447.01,368.549 1449.54,365.767 1452.08,363.516 1454.61,361.716 1457.14,360.305 1459.68,359.234 \n 1462.21,358.465 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"\nM1078.59 296.183 L1455.45 296.183 L1455.45 114.743 L1078.59 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1078.59,296.183 1455.45,296.183 1455.45,114.743 1078.59,114.743 1078.59,296.183 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1093.51,175.223 1183.05,175.223 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M1219.68 176.855 L1219.68 192.503 L1215.42 192.503 L1215.42 176.993 Q1215.42 173.313 1213.99 171.484 Q1212.55 169.656 1209.68 169.656 Q1206.23 169.656 1204.24 171.855 Q1202.25 174.054 1202.25 177.85 L1202.25 192.503 L1197.97 192.503 L1197.97 166.577 L1202.25 166.577 L1202.25 170.605 Q1203.78 168.267 1205.84 167.109 Q1207.92 165.952 1210.63 165.952 Q1215.1 165.952 1217.39 168.73 Q1219.68 171.484 1219.68 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1227.74 182.271 L1227.74 166.577 L1232 166.577 L1232 182.109 Q1232 185.79 1233.43 187.642 Q1234.87 189.47 1237.74 189.47 Q1241.19 189.47 1243.18 187.271 Q1245.19 185.072 1245.19 181.276 L1245.19 166.577 L1249.45 166.577 L1249.45 192.503 L1245.19 192.503 L1245.19 188.521 Q1243.64 190.882 1241.58 192.04 Q1239.54 193.174 1236.84 193.174 Q1232.37 193.174 1230.05 190.396 Q1227.74 187.618 1227.74 182.271 M1238.46 165.952 L1238.46 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1278.41 171.554 Q1280.01 168.683 1282.23 167.318 Q1284.45 165.952 1287.46 165.952 Q1291.51 165.952 1293.71 168.799 Q1295.91 171.623 1295.91 176.855 L1295.91 192.503 L1291.63 192.503 L1291.63 176.993 Q1291.63 173.267 1290.31 171.461 Q1288.99 169.656 1286.28 169.656 Q1282.97 169.656 1281.05 171.855 Q1279.13 174.054 1279.13 177.85 L1279.13 192.503 L1274.85 192.503 L1274.85 176.993 Q1274.85 173.243 1273.53 171.461 Q1272.21 169.656 1269.45 169.656 Q1266.19 169.656 1264.27 171.878 Q1262.35 174.077 1262.35 177.85 L1262.35 192.503 L1258.06 192.503 L1258.06 166.577 L1262.35 166.577 L1262.35 170.605 Q1263.8 168.22 1265.84 167.086 Q1267.88 165.952 1270.68 165.952 Q1273.5 165.952 1275.47 167.387 Q1277.46 168.822 1278.41 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1326.58 178.475 L1326.58 180.558 L1307 180.558 Q1307.28 184.956 1309.64 187.271 Q1312.02 189.563 1316.26 189.563 Q1318.71 189.563 1321 188.961 Q1323.32 188.359 1325.59 187.155 L1325.59 191.183 Q1323.29 192.155 1320.89 192.665 Q1318.48 193.174 1316 193.174 Q1309.8 193.174 1306.16 189.563 Q1302.55 185.952 1302.55 179.794 Q1302.55 173.429 1305.98 169.702 Q1309.43 165.952 1315.26 165.952 Q1320.49 165.952 1323.53 169.331 Q1326.58 172.688 1326.58 178.475 M1322.32 177.225 Q1322.28 173.73 1320.35 171.646 Q1318.46 169.563 1315.31 169.563 Q1311.74 169.563 1309.59 171.577 Q1307.46 173.591 1307.14 177.248 L1322.32 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1348.6 170.558 Q1347.88 170.142 1347.02 169.956 Q1346.19 169.748 1345.17 169.748 Q1341.56 169.748 1339.61 172.109 Q1337.69 174.447 1337.69 178.845 L1337.69 192.503 L1333.41 192.503 L1333.41 166.577 L1337.69 166.577 L1337.69 170.605 Q1339.04 168.244 1341.19 167.109 Q1343.34 165.952 1346.42 165.952 Q1346.86 165.952 1347.39 166.021 Q1347.92 166.068 1348.57 166.183 L1348.6 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1353.06 166.577 L1357.32 166.577 L1357.32 192.503 L1353.06 192.503 L1353.06 166.577 M1353.06 156.484 L1357.32 156.484 L1357.32 161.878 L1353.06 161.878 L1353.06 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1384.89 167.572 L1384.89 171.554 Q1383.09 170.558 1381.26 170.072 Q1379.45 169.563 1377.6 169.563 Q1373.46 169.563 1371.16 172.202 Q1368.87 174.818 1368.87 179.563 Q1368.87 184.308 1371.16 186.947 Q1373.46 189.563 1377.6 189.563 Q1379.45 189.563 1381.26 189.077 Q1383.09 188.567 1384.89 187.572 L1384.89 191.507 Q1383.11 192.341 1381.19 192.757 Q1379.29 193.174 1377.14 193.174 Q1371.28 193.174 1367.83 189.493 Q1364.38 185.813 1364.38 179.563 Q1364.38 173.22 1367.85 169.586 Q1371.35 165.952 1377.41 165.952 Q1379.38 165.952 1381.26 166.369 Q1383.13 166.762 1384.89 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1404.08 179.47 Q1398.92 179.47 1396.93 180.651 Q1394.94 181.831 1394.94 184.679 Q1394.94 186.947 1396.42 188.29 Q1397.92 189.609 1400.49 189.609 Q1404.03 189.609 1406.16 187.109 Q1408.32 184.586 1408.32 180.419 L1408.32 179.47 L1404.08 179.47 M1412.58 177.711 L1412.58 192.503 L1408.32 192.503 L1408.32 188.567 Q1406.86 190.929 1404.68 192.063 Q1402.51 193.174 1399.36 193.174 Q1395.38 193.174 1393.02 190.952 Q1390.68 188.706 1390.68 184.956 Q1390.68 180.581 1393.59 178.359 Q1396.53 176.137 1402.34 176.137 L1408.32 176.137 L1408.32 175.72 Q1408.32 172.781 1406.37 171.183 Q1404.45 169.563 1400.96 169.563 Q1398.73 169.563 1396.63 170.095 Q1394.52 170.628 1392.58 171.693 L1392.58 167.757 Q1394.91 166.855 1397.11 166.415 Q1399.31 165.952 1401.4 165.952 Q1407.02 165.952 1409.8 168.869 Q1412.58 171.785 1412.58 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1421.35 156.484 L1425.61 156.484 L1425.61 192.503 L1421.35 192.503 L1421.35 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip810)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1093.51,235.703 1183.05,235.703 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M1222 238.955 L1222 241.038 L1202.42 241.038 Q1202.69 245.436 1205.05 247.751 Q1207.44 250.043 1211.67 250.043 Q1214.13 250.043 1216.42 249.441 Q1218.73 248.839 1221 247.635 L1221 251.663 Q1218.71 252.635 1216.3 253.145 Q1213.9 253.654 1211.42 253.654 Q1205.22 253.654 1201.58 250.043 Q1197.97 246.432 1197.97 240.274 Q1197.97 233.909 1201.4 230.182 Q1204.85 226.432 1210.68 226.432 Q1215.91 226.432 1218.94 229.811 Q1222 233.168 1222 238.955 M1217.74 237.705 Q1217.69 234.21 1215.77 232.126 Q1213.87 230.043 1210.73 230.043 Q1207.16 230.043 1205.01 232.057 Q1202.88 234.071 1202.55 237.728 L1217.74 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1249.71 227.057 L1240.33 239.673 L1250.19 252.983 L1245.17 252.983 L1237.62 242.798 L1230.08 252.983 L1225.05 252.983 L1235.12 239.418 L1225.91 227.057 L1230.93 227.057 L1237.81 236.293 L1244.68 227.057 L1249.71 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1267.99 239.95 Q1262.83 239.95 1260.84 241.131 Q1258.85 242.311 1258.85 245.159 Q1258.85 247.427 1260.33 248.77 Q1261.84 250.089 1264.41 250.089 Q1267.95 250.089 1270.08 247.589 Q1272.23 245.066 1272.23 240.899 L1272.23 239.95 L1267.99 239.95 M1276.49 238.191 L1276.49 252.983 L1272.23 252.983 L1272.23 249.047 Q1270.77 251.409 1268.6 252.543 Q1266.42 253.654 1263.27 253.654 Q1259.29 253.654 1256.93 251.432 Q1254.59 249.186 1254.59 245.436 Q1254.59 241.061 1257.51 238.839 Q1260.45 236.617 1266.26 236.617 L1272.23 236.617 L1272.23 236.2 Q1272.23 233.261 1270.29 231.663 Q1268.36 230.043 1264.87 230.043 Q1262.65 230.043 1260.54 230.575 Q1258.43 231.108 1256.49 232.173 L1256.49 228.237 Q1258.83 227.335 1261.03 226.895 Q1263.23 226.432 1265.31 226.432 Q1270.93 226.432 1273.71 229.349 Q1276.49 232.265 1276.49 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1303.92 228.052 L1303.92 232.034 Q1302.11 231.038 1300.29 230.552 Q1298.48 230.043 1296.63 230.043 Q1292.48 230.043 1290.19 232.682 Q1287.9 235.298 1287.9 240.043 Q1287.9 244.788 1290.19 247.427 Q1292.48 250.043 1296.63 250.043 Q1298.48 250.043 1300.29 249.557 Q1302.11 249.047 1303.92 248.052 L1303.92 251.987 Q1302.14 252.821 1300.22 253.237 Q1298.32 253.654 1296.16 253.654 Q1290.31 253.654 1286.86 249.973 Q1283.41 246.293 1283.41 240.043 Q1283.41 233.7 1286.88 230.066 Q1290.38 226.432 1296.44 226.432 Q1298.41 226.432 1300.29 226.849 Q1302.16 227.242 1303.92 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1315.54 219.696 L1315.54 227.057 L1324.31 227.057 L1324.31 230.367 L1315.54 230.367 L1315.54 244.441 Q1315.54 247.612 1316.4 248.515 Q1317.28 249.418 1319.94 249.418 L1324.31 249.418 L1324.31 252.983 L1319.94 252.983 Q1315.01 252.983 1313.13 251.154 Q1311.26 249.302 1311.26 244.441 L1311.26 230.367 L1308.13 230.367 L1308.13 227.057 L1311.26 227.057 L1311.26 219.696 L1315.54 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"\nM1809.73 910.808 L3152.76 910.808 L3152.76 87.2921 L1809.73 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip813\">\n <rect x=\"1809\" y=\"87\" width=\"1344\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1847.74,910.808 1847.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1932.2,910.808 1932.2,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2016.67,910.808 2016.67,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2101.14,910.808 2101.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2185.6,910.808 2185.6,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2270.07,910.808 2270.07,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2354.54,910.808 2354.54,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2439.01,910.808 2439.01,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2523.47,910.808 2523.47,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2607.94,910.808 2607.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2692.41,910.808 2692.41,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2776.88,910.808 2776.88,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2861.34,910.808 2861.34,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2945.81,910.808 2945.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3030.28,910.808 3030.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3114.75,910.808 3114.75,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1847.74,910.808 1847.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1932.2,910.808 1932.2,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2016.67,910.808 2016.67,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2101.14,910.808 2101.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2185.6,910.808 2185.6,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2270.07,910.808 2270.07,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2354.54,910.808 2354.54,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2439.01,910.808 2439.01,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2523.47,910.808 2523.47,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2607.94,910.808 2607.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2692.41,910.808 2692.41,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2776.88,910.808 2776.88,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2861.34,910.808 2861.34,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2945.81,910.808 2945.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3030.28,910.808 3030.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3114.75,910.808 3114.75,900.926 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M1847.74 946.399 Q1844.12 946.399 1842.3 949.963 Q1840.49 953.505 1840.49 960.635 Q1840.49 967.741 1842.3 971.306 Q1844.12 974.847 1847.74 974.847 Q1851.37 974.847 1853.18 971.306 Q1855 967.741 1855 960.635 Q1855 953.505 1853.18 949.963 Q1851.37 946.399 1847.74 946.399 M1847.74 942.695 Q1853.55 942.695 1856.6 947.301 Q1859.68 951.885 1859.68 960.635 Q1859.68 969.361 1856.6 973.968 Q1853.55 978.551 1847.74 978.551 Q1841.93 978.551 1838.85 973.968 Q1835.79 969.361 1835.79 960.635 Q1835.79 951.885 1838.85 947.301 Q1841.93 942.695 1847.74 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1926.86 973.945 L1943.18 973.945 L1943.18 977.88 L1921.23 977.88 L1921.23 973.945 Q1923.89 971.19 1928.48 966.56 Q1933.08 961.908 1934.26 960.565 Q1936.51 958.042 1937.39 956.306 Q1938.29 954.547 1938.29 952.857 Q1938.29 950.102 1936.35 948.366 Q1934.43 946.63 1931.32 946.63 Q1929.12 946.63 1926.67 947.394 Q1924.24 948.158 1921.46 949.709 L1921.46 944.987 Q1924.29 943.852 1926.74 943.274 Q1929.19 942.695 1931.23 942.695 Q1936.6 942.695 1939.8 945.38 Q1942.99 948.065 1942.99 952.556 Q1942.99 954.686 1942.18 956.607 Q1941.39 958.505 1939.29 961.098 Q1938.71 961.769 1935.61 964.986 Q1932.5 968.181 1926.86 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2019.68 947.394 L2007.87 965.843 L2019.68 965.843 L2019.68 947.394 M2018.45 943.32 L2024.33 943.32 L2024.33 965.843 L2029.26 965.843 L2029.26 969.732 L2024.33 969.732 L2024.33 977.88 L2019.68 977.88 L2019.68 969.732 L2004.08 969.732 L2004.08 965.218 L2018.45 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2101.54 958.736 Q2098.39 958.736 2096.54 960.889 Q2094.71 963.042 2094.71 966.792 Q2094.71 970.519 2096.54 972.695 Q2098.39 974.847 2101.54 974.847 Q2104.69 974.847 2106.52 972.695 Q2108.37 970.519 2108.37 966.792 Q2108.37 963.042 2106.52 960.889 Q2104.69 958.736 2101.54 958.736 M2110.83 944.084 L2110.83 948.343 Q2109.07 947.51 2107.26 947.07 Q2105.48 946.63 2103.72 946.63 Q2099.09 946.63 2096.64 949.755 Q2094.2 952.88 2093.86 959.199 Q2095.22 957.186 2097.28 956.121 Q2099.34 955.033 2101.82 955.033 Q2107.03 955.033 2110.04 958.204 Q2113.07 961.352 2113.07 966.792 Q2113.07 972.116 2109.92 975.334 Q2106.77 978.551 2101.54 978.551 Q2095.55 978.551 2092.38 973.968 Q2089.2 969.361 2089.2 960.635 Q2089.2 952.44 2093.09 947.579 Q2096.98 942.695 2103.53 942.695 Q2105.29 942.695 2107.08 943.042 Q2108.88 943.389 2110.83 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2185.6 961.468 Q2182.27 961.468 2180.35 963.25 Q2178.45 965.033 2178.45 968.158 Q2178.45 971.283 2180.35 973.065 Q2182.27 974.847 2185.6 974.847 Q2188.94 974.847 2190.86 973.065 Q2192.78 971.26 2192.78 968.158 Q2192.78 965.033 2190.86 963.25 Q2188.96 961.468 2185.6 961.468 M2180.93 959.477 Q2177.92 958.736 2176.23 956.676 Q2174.56 954.616 2174.56 951.653 Q2174.56 947.51 2177.5 945.102 Q2180.47 942.695 2185.6 942.695 Q2190.77 942.695 2193.71 945.102 Q2196.65 947.51 2196.65 951.653 Q2196.65 954.616 2194.96 956.676 Q2193.29 958.736 2190.3 959.477 Q2193.68 960.264 2195.56 962.556 Q2197.46 964.848 2197.46 968.158 Q2197.46 973.181 2194.38 975.866 Q2191.32 978.551 2185.6 978.551 Q2179.89 978.551 2176.81 975.866 Q2173.75 973.181 2173.75 968.158 Q2173.75 964.848 2175.65 962.556 Q2177.55 960.264 2180.93 959.477 M2179.22 952.093 Q2179.22 954.778 2180.88 956.283 Q2182.57 957.787 2185.6 957.787 Q2188.61 957.787 2190.3 956.283 Q2192.02 954.778 2192.02 952.093 Q2192.02 949.408 2190.3 947.903 Q2188.61 946.399 2185.6 946.399 Q2182.57 946.399 2180.88 947.903 Q2179.22 949.408 2179.22 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2244.76 973.945 L2252.4 973.945 L2252.4 947.579 L2244.09 949.246 L2244.09 944.987 L2252.35 943.32 L2257.03 943.32 L2257.03 973.945 L2264.67 973.945 L2264.67 977.88 L2244.76 977.88 L2244.76 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2284.11 946.399 Q2280.5 946.399 2278.67 949.963 Q2276.87 953.505 2276.87 960.635 Q2276.87 967.741 2278.67 971.306 Q2280.5 974.847 2284.11 974.847 Q2287.75 974.847 2289.55 971.306 Q2291.38 967.741 2291.38 960.635 Q2291.38 953.505 2289.55 949.963 Q2287.75 946.399 2284.11 946.399 M2284.11 942.695 Q2289.92 942.695 2292.98 947.301 Q2296.06 951.885 2296.06 960.635 Q2296.06 969.361 2292.98 973.968 Q2289.92 978.551 2284.11 978.551 Q2278.3 978.551 2275.22 973.968 Q2272.17 969.361 2272.17 960.635 Q2272.17 951.885 2275.22 947.301 Q2278.3 942.695 2284.11 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2330.03 973.945 L2337.66 973.945 L2337.66 947.579 L2329.35 949.246 L2329.35 944.987 L2337.62 943.32 L2342.29 943.32 L2342.29 973.945 L2349.93 973.945 L2349.93 977.88 L2330.03 977.88 L2330.03 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2363.41 973.945 L2379.72 973.945 L2379.72 977.88 L2357.78 977.88 L2357.78 973.945 Q2360.44 971.19 2365.03 966.56 Q2369.63 961.908 2370.81 960.565 Q2373.06 958.042 2373.94 956.306 Q2374.84 954.547 2374.84 952.857 Q2374.84 950.102 2372.9 948.366 Q2370.97 946.63 2367.87 946.63 Q2365.67 946.63 2363.22 947.394 Q2360.79 948.158 2358.01 949.709 L2358.01 944.987 Q2360.84 943.852 2363.29 943.274 Q2365.74 942.695 2367.78 942.695 Q2373.15 942.695 2376.35 945.38 Q2379.54 948.065 2379.54 952.556 Q2379.54 954.686 2378.73 956.607 Q2377.94 958.505 2375.84 961.098 Q2375.26 961.769 2372.16 964.986 Q2369.05 968.181 2363.41 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2413.45 973.945 L2421.09 973.945 L2421.09 947.579 L2412.78 949.246 L2412.78 944.987 L2421.04 943.32 L2425.72 943.32 L2425.72 973.945 L2433.36 973.945 L2433.36 977.88 L2413.45 977.88 L2413.45 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2455.65 947.394 L2443.84 965.843 L2455.65 965.843 L2455.65 947.394 M2454.42 943.32 L2460.3 943.32 L2460.3 965.843 L2465.23 965.843 L2465.23 969.732 L2460.3 969.732 L2460.3 977.88 L2455.65 977.88 L2455.65 969.732 L2440.05 969.732 L2440.05 965.218 L2454.42 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2498.08 973.945 L2505.72 973.945 L2505.72 947.579 L2497.41 949.246 L2497.41 944.987 L2505.67 943.32 L2510.35 943.32 L2510.35 973.945 L2517.99 973.945 L2517.99 977.88 L2498.08 977.88 L2498.08 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2538.01 958.736 Q2534.86 958.736 2533.01 960.889 Q2531.18 963.042 2531.18 966.792 Q2531.18 970.519 2533.01 972.695 Q2534.86 974.847 2538.01 974.847 Q2541.16 974.847 2542.99 972.695 Q2544.84 970.519 2544.84 966.792 Q2544.84 963.042 2542.99 960.889 Q2541.16 958.736 2538.01 958.736 M2547.29 944.084 L2547.29 948.343 Q2545.53 947.51 2543.73 947.07 Q2541.95 946.63 2540.19 946.63 Q2535.56 946.63 2533.1 949.755 Q2530.67 952.88 2530.33 959.199 Q2531.69 957.186 2533.75 956.121 Q2535.81 955.033 2538.29 955.033 Q2543.5 955.033 2546.51 958.204 Q2549.54 961.352 2549.54 966.792 Q2549.54 972.116 2546.39 975.334 Q2543.24 978.551 2538.01 978.551 Q2532.02 978.551 2528.84 973.968 Q2525.67 969.361 2525.67 960.635 Q2525.67 952.44 2529.56 947.579 Q2533.45 942.695 2540 942.695 Q2541.76 942.695 2543.54 943.042 Q2545.35 943.389 2547.29 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2582.68 973.945 L2590.31 973.945 L2590.31 947.579 L2582 949.246 L2582 944.987 L2590.27 943.32 L2594.94 943.32 L2594.94 973.945 L2602.58 973.945 L2602.58 977.88 L2582.68 977.88 L2582.68 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2622.03 961.468 Q2618.69 961.468 2616.77 963.25 Q2614.87 965.033 2614.87 968.158 Q2614.87 971.283 2616.77 973.065 Q2618.69 974.847 2622.03 974.847 Q2625.36 974.847 2627.28 973.065 Q2629.2 971.26 2629.2 968.158 Q2629.2 965.033 2627.28 963.25 Q2625.38 961.468 2622.03 961.468 M2617.35 959.477 Q2614.34 958.736 2612.65 956.676 Q2610.99 954.616 2610.99 951.653 Q2610.99 947.51 2613.93 945.102 Q2616.89 942.695 2622.03 942.695 Q2627.19 942.695 2630.13 945.102 Q2633.07 947.51 2633.07 951.653 Q2633.07 954.616 2631.38 956.676 Q2629.71 958.736 2626.73 959.477 Q2630.11 960.264 2631.98 962.556 Q2633.88 964.848 2633.88 968.158 Q2633.88 973.181 2630.8 975.866 Q2627.74 978.551 2622.03 978.551 Q2616.31 978.551 2613.23 975.866 Q2610.18 973.181 2610.18 968.158 Q2610.18 964.848 2612.07 962.556 Q2613.97 960.264 2617.35 959.477 M2615.64 952.093 Q2615.64 954.778 2617.3 956.283 Q2618.99 957.787 2622.03 957.787 Q2625.04 957.787 2626.73 956.283 Q2628.44 954.778 2628.44 952.093 Q2628.44 949.408 2626.73 947.903 Q2625.04 946.399 2622.03 946.399 Q2618.99 946.399 2617.3 947.903 Q2615.64 949.408 2615.64 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2671.18 973.945 L2687.5 973.945 L2687.5 977.88 L2665.56 977.88 L2665.56 973.945 Q2668.22 971.19 2672.8 966.56 Q2677.41 961.908 2678.59 960.565 Q2680.83 958.042 2681.71 956.306 Q2682.62 954.547 2682.62 952.857 Q2682.62 950.102 2680.67 948.366 Q2678.75 946.63 2675.65 946.63 Q2673.45 946.63 2671 947.394 Q2668.57 948.158 2665.79 949.709 L2665.79 944.987 Q2668.61 943.852 2671.07 943.274 Q2673.52 942.695 2675.56 942.695 Q2680.93 942.695 2684.12 945.38 Q2687.32 948.065 2687.32 952.556 Q2687.32 954.686 2686.51 956.607 Q2685.72 958.505 2683.61 961.098 Q2683.03 961.769 2679.93 964.986 Q2676.83 968.181 2671.18 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2707.32 946.399 Q2703.71 946.399 2701.88 949.963 Q2700.07 953.505 2700.07 960.635 Q2700.07 967.741 2701.88 971.306 Q2703.71 974.847 2707.32 974.847 Q2710.95 974.847 2712.76 971.306 Q2714.58 967.741 2714.58 960.635 Q2714.58 953.505 2712.76 949.963 Q2710.95 946.399 2707.32 946.399 M2707.32 942.695 Q2713.13 942.695 2716.18 947.301 Q2719.26 951.885 2719.26 960.635 Q2719.26 969.361 2716.18 973.968 Q2713.13 978.551 2707.32 978.551 Q2701.51 978.551 2698.43 973.968 Q2695.37 969.361 2695.37 960.635 Q2695.37 951.885 2698.43 947.301 Q2701.51 942.695 2707.32 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2756.45 973.945 L2772.77 973.945 L2772.77 977.88 L2750.82 977.88 L2750.82 973.945 Q2753.49 971.19 2758.07 966.56 Q2762.67 961.908 2763.86 960.565 Q2766.1 958.042 2766.98 956.306 Q2767.88 954.547 2767.88 952.857 Q2767.88 950.102 2765.94 948.366 Q2764.02 946.63 2760.92 946.63 Q2758.72 946.63 2756.26 947.394 Q2753.83 948.158 2751.05 949.709 L2751.05 944.987 Q2753.88 943.852 2756.33 943.274 Q2758.79 942.695 2760.82 942.695 Q2766.19 942.695 2769.39 945.38 Q2772.58 948.065 2772.58 952.556 Q2772.58 954.686 2771.77 956.607 Q2770.99 958.505 2768.88 961.098 Q2768.3 961.769 2765.2 964.986 Q2762.1 968.181 2756.45 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2786.61 973.945 L2802.93 973.945 L2802.93 977.88 L2780.99 977.88 L2780.99 973.945 Q2783.65 971.19 2788.23 966.56 Q2792.84 961.908 2794.02 960.565 Q2796.26 958.042 2797.14 956.306 Q2798.05 954.547 2798.05 952.857 Q2798.05 950.102 2796.1 948.366 Q2794.18 946.63 2791.08 946.63 Q2788.88 946.63 2786.42 947.394 Q2783.99 948.158 2781.22 949.709 L2781.22 944.987 Q2784.04 943.852 2786.49 943.274 Q2788.95 942.695 2790.98 942.695 Q2796.36 942.695 2799.55 945.38 Q2802.74 948.065 2802.74 952.556 Q2802.74 954.686 2801.93 956.607 Q2801.15 958.505 2799.04 961.098 Q2798.46 961.769 2795.36 964.986 Q2792.26 968.181 2786.61 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2839.87 973.945 L2856.19 973.945 L2856.19 977.88 L2834.25 977.88 L2834.25 973.945 Q2836.91 971.19 2841.49 966.56 Q2846.1 961.908 2847.28 960.565 Q2849.53 958.042 2850.41 956.306 Q2851.31 954.547 2851.31 952.857 Q2851.31 950.102 2849.36 948.366 Q2847.44 946.63 2844.34 946.63 Q2842.14 946.63 2839.69 947.394 Q2837.26 948.158 2834.48 949.709 L2834.48 944.987 Q2837.3 943.852 2839.76 943.274 Q2842.21 942.695 2844.25 942.695 Q2849.62 942.695 2852.81 945.38 Q2856.01 948.065 2856.01 952.556 Q2856.01 954.686 2855.2 956.607 Q2854.41 958.505 2852.3 961.098 Q2851.73 961.769 2848.62 964.986 Q2845.52 968.181 2839.87 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2878.86 947.394 L2867.05 965.843 L2878.86 965.843 L2878.86 947.394 M2877.63 943.32 L2883.51 943.32 L2883.51 965.843 L2888.44 965.843 L2888.44 969.732 L2883.51 969.732 L2883.51 977.88 L2878.86 977.88 L2878.86 969.732 L2863.25 969.732 L2863.25 965.218 L2877.63 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2924.5 973.945 L2940.82 973.945 L2940.82 977.88 L2918.88 977.88 L2918.88 973.945 Q2921.54 971.19 2926.12 966.56 Q2930.73 961.908 2931.91 960.565 Q2934.16 958.042 2935.04 956.306 Q2935.94 954.547 2935.94 952.857 Q2935.94 950.102 2933.99 948.366 Q2932.07 946.63 2928.97 946.63 Q2926.77 946.63 2924.32 947.394 Q2921.89 948.158 2919.11 949.709 L2919.11 944.987 Q2921.93 943.852 2924.39 943.274 Q2926.84 942.695 2928.88 942.695 Q2934.25 942.695 2937.44 945.38 Q2940.64 948.065 2940.64 952.556 Q2940.64 954.686 2939.83 956.607 Q2939.04 958.505 2936.93 961.098 Q2936.35 961.769 2933.25 964.986 Q2930.15 968.181 2924.5 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2961.22 958.736 Q2958.07 958.736 2956.22 960.889 Q2954.39 963.042 2954.39 966.792 Q2954.39 970.519 2956.22 972.695 Q2958.07 974.847 2961.22 974.847 Q2964.36 974.847 2966.19 972.695 Q2968.04 970.519 2968.04 966.792 Q2968.04 963.042 2966.19 960.889 Q2964.36 958.736 2961.22 958.736 M2970.5 944.084 L2970.5 948.343 Q2968.74 947.51 2966.93 947.07 Q2965.15 946.63 2963.39 946.63 Q2958.76 946.63 2956.31 949.755 Q2953.88 952.88 2953.53 959.199 Q2954.9 957.186 2956.96 956.121 Q2959.02 955.033 2961.49 955.033 Q2966.7 955.033 2969.71 958.204 Q2972.74 961.352 2972.74 966.792 Q2972.74 972.116 2969.6 975.334 Q2966.45 978.551 2961.22 978.551 Q2955.22 978.551 2952.05 973.968 Q2948.88 969.361 2948.88 960.635 Q2948.88 952.44 2952.77 947.579 Q2956.66 942.695 2963.21 942.695 Q2964.97 942.695 2966.75 943.042 Q2968.55 943.389 2970.5 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3009.1 973.945 L3025.42 973.945 L3025.42 977.88 L3003.47 977.88 L3003.47 973.945 Q3006.13 971.19 3010.72 966.56 Q3015.32 961.908 3016.51 960.565 Q3018.75 958.042 3019.63 956.306 Q3020.53 954.547 3020.53 952.857 Q3020.53 950.102 3018.59 948.366 Q3016.67 946.63 3013.57 946.63 Q3011.37 946.63 3008.91 947.394 Q3006.48 948.158 3003.7 949.709 L3003.7 944.987 Q3006.53 943.852 3008.98 943.274 Q3011.44 942.695 3013.47 942.695 Q3018.84 942.695 3022.04 945.38 Q3025.23 948.065 3025.23 952.556 Q3025.23 954.686 3024.42 956.607 Q3023.63 958.505 3021.53 961.098 Q3020.95 961.769 3017.85 964.986 Q3014.75 968.181 3009.1 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3045.23 961.468 Q3041.9 961.468 3039.98 963.25 Q3038.08 965.033 3038.08 968.158 Q3038.08 971.283 3039.98 973.065 Q3041.9 974.847 3045.23 974.847 Q3048.57 974.847 3050.49 973.065 Q3052.41 971.26 3052.41 968.158 Q3052.41 965.033 3050.49 963.25 Q3048.59 961.468 3045.23 961.468 M3040.56 959.477 Q3037.55 958.736 3035.86 956.676 Q3034.19 954.616 3034.19 951.653 Q3034.19 947.51 3037.13 945.102 Q3040.09 942.695 3045.23 942.695 Q3050.39 942.695 3053.33 945.102 Q3056.27 947.51 3056.27 951.653 Q3056.27 954.616 3054.58 956.676 Q3052.92 958.736 3049.93 959.477 Q3053.31 960.264 3055.19 962.556 Q3057.08 964.848 3057.08 968.158 Q3057.08 973.181 3054 975.866 Q3050.95 978.551 3045.23 978.551 Q3039.51 978.551 3036.44 975.866 Q3033.38 973.181 3033.38 968.158 Q3033.38 964.848 3035.28 962.556 Q3037.18 960.264 3040.56 959.477 M3038.84 952.093 Q3038.84 954.778 3040.51 956.283 Q3042.2 957.787 3045.23 957.787 Q3048.24 957.787 3049.93 956.283 Q3051.64 954.778 3051.64 952.093 Q3051.64 949.408 3049.93 947.903 Q3048.24 946.399 3045.23 946.399 Q3042.2 946.399 3040.51 947.903 Q3038.84 949.408 3038.84 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3103.59 959.246 Q3106.94 959.963 3108.82 962.232 Q3110.72 964.5 3110.72 967.834 Q3110.72 972.949 3107.2 975.75 Q3103.68 978.551 3097.2 978.551 Q3095.02 978.551 3092.71 978.111 Q3090.42 977.695 3087.96 976.838 L3087.96 972.324 Q3089.91 973.459 3092.22 974.037 Q3094.54 974.616 3097.06 974.616 Q3101.46 974.616 3103.75 972.88 Q3106.07 971.144 3106.07 967.834 Q3106.07 964.778 3103.91 963.065 Q3101.78 961.329 3097.96 961.329 L3093.94 961.329 L3093.94 957.486 L3098.15 957.486 Q3101.6 957.486 3103.43 956.121 Q3105.25 954.732 3105.25 952.139 Q3105.25 949.477 3103.36 948.065 Q3101.48 946.63 3097.96 946.63 Q3096.04 946.63 3093.84 947.047 Q3091.64 947.463 3089.01 948.343 L3089.01 944.176 Q3091.67 943.436 3093.98 943.065 Q3096.32 942.695 3098.38 942.695 Q3103.7 942.695 3106.81 945.125 Q3109.91 947.533 3109.91 951.653 Q3109.91 954.524 3108.26 956.514 Q3106.62 958.482 3103.59 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3129.58 946.399 Q3125.97 946.399 3124.14 949.963 Q3122.34 953.505 3122.34 960.635 Q3122.34 967.741 3124.14 971.306 Q3125.97 974.847 3129.58 974.847 Q3133.22 974.847 3135.02 971.306 Q3136.85 967.741 3136.85 960.635 Q3136.85 953.505 3135.02 949.963 Q3133.22 946.399 3129.58 946.399 M3129.58 942.695 Q3135.39 942.695 3138.45 947.301 Q3141.53 951.885 3141.53 960.635 Q3141.53 969.361 3138.45 973.968 Q3135.39 978.551 3129.58 978.551 Q3123.77 978.551 3120.69 973.968 Q3117.64 969.361 3117.64 960.635 Q3117.64 951.885 3120.69 947.301 Q3123.77 942.695 3129.58 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,737.066 3152.76,737.066 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,533.563 3152.76,533.563 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,330.059 3152.76,330.059 \n \"/>\n<polyline clip-path=\"url(#clip813)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1809.73,126.556 3152.76,126.556 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,910.808 1809.73,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,737.066 1825.84,737.066 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,533.563 1825.84,533.563 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,330.059 1825.84,330.059 \n \"/>\n<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1809.73,126.556 1825.84,126.556 \n \"/>\n<path clip-path=\"url(#clip810)\" d=\"M1595.45 737.517 L1625.13 737.517 L1625.13 741.453 L1595.45 741.453 L1595.45 737.517 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1645.22 722.865 Q1641.61 722.865 1639.78 726.429 Q1637.98 729.971 1637.98 737.101 Q1637.98 744.207 1639.78 747.772 Q1641.61 751.314 1645.22 751.314 Q1648.86 751.314 1650.66 747.772 Q1652.49 744.207 1652.49 737.101 Q1652.49 729.971 1650.66 726.429 Q1648.86 722.865 1645.22 722.865 M1645.22 719.161 Q1651.03 719.161 1654.09 723.767 Q1657.17 728.351 1657.17 737.101 Q1657.17 745.828 1654.09 750.434 Q1651.03 755.017 1645.22 755.017 Q1639.41 755.017 1636.33 750.434 Q1633.28 745.828 1633.28 737.101 Q1633.28 728.351 1636.33 723.767 Q1639.41 719.161 1645.22 719.161 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1665.38 748.466 L1670.27 748.466 L1670.27 754.346 L1665.38 754.346 L1665.38 748.466 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1690.45 722.865 Q1686.84 722.865 1685.01 726.429 Q1683.21 729.971 1683.21 737.101 Q1683.21 744.207 1685.01 747.772 Q1686.84 751.314 1690.45 751.314 Q1694.09 751.314 1695.89 747.772 Q1697.72 744.207 1697.72 737.101 Q1697.72 729.971 1695.89 726.429 Q1694.09 722.865 1690.45 722.865 M1690.45 719.161 Q1696.26 719.161 1699.32 723.767 Q1702.4 728.351 1702.4 737.101 Q1702.4 745.828 1699.32 750.434 Q1696.26 755.017 1690.45 755.017 Q1684.64 755.017 1681.56 750.434 Q1678.51 745.828 1678.51 737.101 Q1678.51 728.351 1681.56 723.767 Q1684.64 719.161 1690.45 719.161 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1711.42 750.411 L1719.06 750.411 L1719.06 724.045 L1710.75 725.712 L1710.75 721.453 L1719.02 719.786 L1723.69 719.786 L1723.69 750.411 L1731.33 750.411 L1731.33 754.346 L1711.42 754.346 L1711.42 750.411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1740.82 719.786 L1759.18 719.786 L1759.18 723.721 L1745.11 723.721 L1745.11 732.193 Q1746.12 731.846 1747.14 731.684 Q1748.16 731.499 1749.18 731.499 Q1754.97 731.499 1758.35 734.67 Q1761.73 737.841 1761.73 743.258 Q1761.73 748.837 1758.25 751.939 Q1754.78 755.017 1748.46 755.017 Q1746.29 755.017 1744.02 754.647 Q1741.77 754.277 1739.36 753.536 L1739.36 748.837 Q1741.45 749.971 1743.67 750.527 Q1745.89 751.082 1748.37 751.082 Q1752.37 751.082 1754.71 748.976 Q1757.05 746.869 1757.05 743.258 Q1757.05 739.647 1754.71 737.541 Q1752.37 735.434 1748.37 735.434 Q1746.49 735.434 1744.62 735.851 Q1742.77 736.267 1740.82 737.147 L1740.82 719.786 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1594.46 534.014 L1624.13 534.014 L1624.13 537.949 L1594.46 537.949 L1594.46 534.014 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1644.23 519.361 Q1640.61 519.361 1638.79 522.926 Q1636.98 526.468 1636.98 533.597 Q1636.98 540.704 1638.79 544.269 Q1640.61 547.81 1644.23 547.81 Q1647.86 547.81 1649.67 544.269 Q1651.49 540.704 1651.49 533.597 Q1651.49 526.468 1649.67 522.926 Q1647.86 519.361 1644.23 519.361 M1644.23 515.658 Q1650.04 515.658 1653.09 520.264 Q1656.17 524.848 1656.17 533.597 Q1656.17 542.324 1653.09 546.931 Q1650.04 551.514 1644.23 551.514 Q1638.42 551.514 1635.34 546.931 Q1632.28 542.324 1632.28 533.597 Q1632.28 524.848 1635.34 520.264 Q1638.42 515.658 1644.23 515.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1664.39 544.963 L1669.27 544.963 L1669.27 550.843 L1664.39 550.843 L1664.39 544.963 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1689.46 519.361 Q1685.85 519.361 1684.02 522.926 Q1682.21 526.468 1682.21 533.597 Q1682.21 540.704 1684.02 544.269 Q1685.85 547.81 1689.46 547.81 Q1693.09 547.81 1694.9 544.269 Q1696.73 540.704 1696.73 533.597 Q1696.73 526.468 1694.9 522.926 Q1693.09 519.361 1689.46 519.361 M1689.46 515.658 Q1695.27 515.658 1698.32 520.264 Q1701.4 524.848 1701.4 533.597 Q1701.4 542.324 1698.32 546.931 Q1695.27 551.514 1689.46 551.514 Q1683.65 551.514 1680.57 546.931 Q1677.51 542.324 1677.51 533.597 Q1677.51 524.848 1680.57 520.264 Q1683.65 515.658 1689.46 515.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1710.43 546.908 L1718.07 546.908 L1718.07 520.542 L1709.76 522.209 L1709.76 517.949 L1718.02 516.283 L1722.7 516.283 L1722.7 546.908 L1730.34 546.908 L1730.34 550.843 L1710.43 550.843 L1710.43 546.908 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1749.78 519.361 Q1746.17 519.361 1744.34 522.926 Q1742.54 526.468 1742.54 533.597 Q1742.54 540.704 1744.34 544.269 Q1746.17 547.81 1749.78 547.81 Q1753.42 547.81 1755.22 544.269 Q1757.05 540.704 1757.05 533.597 Q1757.05 526.468 1755.22 522.926 Q1753.42 519.361 1749.78 519.361 M1749.78 515.658 Q1755.59 515.658 1758.65 520.264 Q1761.73 524.848 1761.73 533.597 Q1761.73 542.324 1758.65 546.931 Q1755.59 551.514 1749.78 551.514 Q1743.97 551.514 1740.89 546.931 Q1737.84 542.324 1737.84 533.597 Q1737.84 524.848 1740.89 520.264 Q1743.97 515.658 1749.78 515.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1595.45 330.511 L1625.13 330.511 L1625.13 334.446 L1595.45 334.446 L1595.45 330.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1645.22 315.858 Q1641.61 315.858 1639.78 319.423 Q1637.98 322.965 1637.98 330.094 Q1637.98 337.201 1639.78 340.765 Q1641.61 344.307 1645.22 344.307 Q1648.86 344.307 1650.66 340.765 Q1652.49 337.201 1652.49 330.094 Q1652.49 322.965 1650.66 319.423 Q1648.86 315.858 1645.22 315.858 M1645.22 312.155 Q1651.03 312.155 1654.09 316.761 Q1657.17 321.344 1657.17 330.094 Q1657.17 338.821 1654.09 343.427 Q1651.03 348.011 1645.22 348.011 Q1639.41 348.011 1636.33 343.427 Q1633.28 338.821 1633.28 330.094 Q1633.28 321.344 1636.33 316.761 Q1639.41 312.155 1645.22 312.155 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1665.38 341.46 L1670.27 341.46 L1670.27 347.339 L1665.38 347.339 L1665.38 341.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1690.45 315.858 Q1686.84 315.858 1685.01 319.423 Q1683.21 322.965 1683.21 330.094 Q1683.21 337.201 1685.01 340.765 Q1686.84 344.307 1690.45 344.307 Q1694.09 344.307 1695.89 340.765 Q1697.72 337.201 1697.72 330.094 Q1697.72 322.965 1695.89 319.423 Q1694.09 315.858 1690.45 315.858 M1690.45 312.155 Q1696.26 312.155 1699.32 316.761 Q1702.4 321.344 1702.4 330.094 Q1702.4 338.821 1699.32 343.427 Q1696.26 348.011 1690.45 348.011 Q1684.64 348.011 1681.56 343.427 Q1678.51 338.821 1678.51 330.094 Q1678.51 321.344 1681.56 316.761 Q1684.64 312.155 1690.45 312.155 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1720.61 315.858 Q1717 315.858 1715.17 319.423 Q1713.37 322.965 1713.37 330.094 Q1713.37 337.201 1715.17 340.765 Q1717 344.307 1720.61 344.307 Q1724.25 344.307 1726.05 340.765 Q1727.88 337.201 1727.88 330.094 Q1727.88 322.965 1726.05 319.423 Q1724.25 315.858 1720.61 315.858 M1720.61 312.155 Q1726.42 312.155 1729.48 316.761 Q1732.56 321.344 1732.56 330.094 Q1732.56 338.821 1729.48 343.427 Q1726.42 348.011 1720.61 348.011 Q1714.8 348.011 1711.73 343.427 Q1708.67 338.821 1708.67 330.094 Q1708.67 321.344 1711.73 316.761 Q1714.8 312.155 1720.61 312.155 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1740.82 312.779 L1759.18 312.779 L1759.18 316.715 L1745.11 316.715 L1745.11 325.187 Q1746.12 324.84 1747.14 324.678 Q1748.16 324.492 1749.18 324.492 Q1754.97 324.492 1758.35 327.664 Q1761.73 330.835 1761.73 336.252 Q1761.73 341.83 1758.25 344.932 Q1754.78 348.011 1748.46 348.011 Q1746.29 348.011 1744.02 347.64 Q1741.77 347.27 1739.36 346.529 L1739.36 341.83 Q1741.45 342.965 1743.67 343.52 Q1745.89 344.076 1748.37 344.076 Q1752.37 344.076 1754.71 341.969 Q1757.05 339.863 1757.05 336.252 Q1757.05 332.641 1754.71 330.534 Q1752.37 328.428 1748.37 328.428 Q1746.49 328.428 1744.62 328.844 Q1742.77 329.261 1740.82 330.141 L1740.82 312.779 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1644.23 112.355 Q1640.61 112.355 1638.79 115.92 Q1636.98 119.461 1636.98 126.591 Q1636.98 133.697 1638.79 137.262 Q1640.61 140.804 1644.23 140.804 Q1647.86 140.804 1649.67 137.262 Q1651.49 133.697 1651.49 126.591 Q1651.49 119.461 1649.67 115.92 Q1647.86 112.355 1644.23 112.355 M1644.23 108.651 Q1650.04 108.651 1653.09 113.258 Q1656.17 117.841 1656.17 126.591 Q1656.17 135.318 1653.09 139.924 Q1650.04 144.508 1644.23 144.508 Q1638.42 144.508 1635.34 139.924 Q1632.28 135.318 1632.28 126.591 Q1632.28 117.841 1635.34 113.258 Q1638.42 108.651 1644.23 108.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1664.39 137.957 L1669.27 137.957 L1669.27 143.836 L1664.39 143.836 L1664.39 137.957 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1689.46 112.355 Q1685.85 112.355 1684.02 115.92 Q1682.21 119.461 1682.21 126.591 Q1682.21 133.697 1684.02 137.262 Q1685.85 140.804 1689.46 140.804 Q1693.09 140.804 1694.9 137.262 Q1696.73 133.697 1696.73 126.591 Q1696.73 119.461 1694.9 115.92 Q1693.09 112.355 1689.46 112.355 M1689.46 108.651 Q1695.27 108.651 1698.32 113.258 Q1701.4 117.841 1701.4 126.591 Q1701.4 135.318 1698.32 139.924 Q1695.27 144.508 1689.46 144.508 Q1683.65 144.508 1680.57 139.924 Q1677.51 135.318 1677.51 126.591 Q1677.51 117.841 1680.57 113.258 Q1683.65 108.651 1689.46 108.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1719.62 112.355 Q1716.01 112.355 1714.18 115.92 Q1712.37 119.461 1712.37 126.591 Q1712.37 133.697 1714.18 137.262 Q1716.01 140.804 1719.62 140.804 Q1723.25 140.804 1725.06 137.262 Q1726.89 133.697 1726.89 126.591 Q1726.89 119.461 1725.06 115.92 Q1723.25 112.355 1719.62 112.355 M1719.62 108.651 Q1725.43 108.651 1728.48 113.258 Q1731.56 117.841 1731.56 126.591 Q1731.56 135.318 1728.48 139.924 Q1725.43 144.508 1719.62 144.508 Q1713.81 144.508 1710.73 139.924 Q1707.67 135.318 1707.67 126.591 Q1707.67 117.841 1710.73 113.258 Q1713.81 108.651 1719.62 108.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1749.78 112.355 Q1746.17 112.355 1744.34 115.92 Q1742.54 119.461 1742.54 126.591 Q1742.54 133.697 1744.34 137.262 Q1746.17 140.804 1749.78 140.804 Q1753.42 140.804 1755.22 137.262 Q1757.05 133.697 1757.05 126.591 Q1757.05 119.461 1755.22 115.92 Q1753.42 112.355 1749.78 112.355 M1749.78 108.651 Q1755.59 108.651 1758.65 113.258 Q1761.73 117.841 1761.73 126.591 Q1761.73 135.318 1758.65 139.924 Q1755.59 144.508 1749.78 144.508 Q1743.97 144.508 1740.89 139.924 Q1737.84 135.318 1737.84 126.591 Q1737.84 117.841 1740.89 113.258 Q1743.97 108.651 1749.78 108.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2179.44 12.2777 L2179.44 23.3193 L2192.6 23.3193 L2192.6 28.2846 L2179.44 28.2846 L2179.44 49.3956 Q2179.44 54.1525 2180.72 55.5066 Q2182.04 56.8608 2186.03 56.8608 L2192.6 56.8608 L2192.6 62.208 L2186.03 62.208 Q2178.64 62.208 2175.83 59.465 Q2173.01 56.6872 2173.01 49.3956 L2173.01 28.2846 L2168.33 28.2846 L2168.33 23.3193 L2173.01 23.3193 L2173.01 12.2777 L2179.44 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2216.07 27.7985 Q2210.93 27.7985 2207.94 31.8262 Q2204.96 35.8193 2204.96 42.7984 Q2204.96 49.7775 2207.91 53.8053 Q2210.89 57.7983 2216.07 57.7983 Q2221.17 57.7983 2224.16 53.7705 Q2227.14 49.7428 2227.14 42.7984 Q2227.14 35.8887 2224.16 31.8609 Q2221.17 27.7985 2216.07 27.7985 M2216.07 22.3818 Q2224.4 22.3818 2229.16 27.7985 Q2233.92 33.2151 2233.92 42.7984 Q2233.92 52.3469 2229.16 57.7983 Q2224.4 63.2149 2216.07 63.2149 Q2207.7 63.2149 2202.94 57.7983 Q2198.22 52.3469 2198.22 42.7984 Q2198.22 33.2151 2202.94 27.7985 Q2207.7 22.3818 2216.07 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2250.83 12.2777 L2250.83 23.3193 L2263.98 23.3193 L2263.98 28.2846 L2250.83 28.2846 L2250.83 49.3956 Q2250.83 54.1525 2252.11 55.5066 Q2253.43 56.8608 2257.42 56.8608 L2263.98 56.8608 L2263.98 62.208 L2257.42 62.208 Q2250.03 62.208 2247.21 59.465 Q2244.4 56.6872 2244.4 49.3956 L2244.4 28.2846 L2239.71 28.2846 L2239.71 23.3193 L2244.4 23.3193 L2244.4 12.2777 L2250.83 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2290.06 42.6595 Q2282.32 42.6595 2279.33 44.4303 Q2276.35 46.2011 2276.35 50.472 Q2276.35 53.8747 2278.57 55.8886 Q2280.83 57.8677 2284.68 57.8677 Q2289.99 57.8677 2293.19 54.1178 Q2296.42 50.3331 2296.42 44.0831 L2296.42 42.6595 L2290.06 42.6595 M2302.8 40.0206 L2302.8 62.208 L2296.42 62.208 L2296.42 56.3053 Q2294.23 59.8469 2290.96 61.5483 Q2287.7 63.2149 2282.98 63.2149 Q2277.01 63.2149 2273.46 59.8816 Q2269.96 56.5136 2269.96 50.8886 Q2269.96 44.3262 2274.33 40.9928 Q2278.74 37.6595 2287.46 37.6595 L2296.42 37.6595 L2296.42 37.0345 Q2296.42 32.6248 2293.5 30.229 Q2290.62 27.7985 2285.37 27.7985 Q2282.04 27.7985 2278.88 28.5971 Q2275.72 29.3957 2272.8 30.9929 L2272.8 25.0901 Q2276.31 23.736 2279.61 23.0763 Q2282.91 22.3818 2286.03 22.3818 Q2294.47 22.3818 2298.64 26.7568 Q2302.8 31.1318 2302.8 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2315.96 8.18051 L2322.35 8.18051 L2322.35 62.208 L2315.96 62.208 L2315.96 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2391.59 41.1664 L2391.59 44.2914 L2362.21 44.2914 Q2362.63 50.8886 2366.17 54.3608 Q2369.75 57.7983 2376.1 57.7983 Q2379.78 57.7983 2383.22 56.8955 Q2386.69 55.9928 2390.1 54.1872 L2390.1 60.2288 Q2386.66 61.6872 2383.05 62.4511 Q2379.44 63.2149 2375.72 63.2149 Q2366.41 63.2149 2360.96 57.7983 Q2355.55 52.3817 2355.55 43.1456 Q2355.55 33.597 2360.69 28.0068 Q2365.86 22.3818 2374.61 22.3818 Q2382.46 22.3818 2387.01 27.4512 Q2391.59 32.4859 2391.59 41.1664 M2385.2 39.2915 Q2385.13 34.0484 2382.25 30.9234 Q2379.4 27.7985 2374.68 27.7985 Q2369.33 27.7985 2366.1 30.8193 Q2362.91 33.8401 2362.42 39.3262 L2385.2 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2434.4 38.7359 L2434.4 62.208 L2428.01 62.208 L2428.01 38.9442 Q2428.01 33.4234 2425.86 30.6804 Q2423.71 27.9374 2419.4 27.9374 Q2414.23 27.9374 2411.24 31.2359 Q2408.25 34.5345 2408.25 40.229 L2408.25 62.208 L2401.83 62.208 L2401.83 23.3193 L2408.25 23.3193 L2408.25 29.361 Q2410.55 25.854 2413.64 24.1179 Q2416.76 22.3818 2420.82 22.3818 Q2427.53 22.3818 2430.96 26.5485 Q2434.4 30.6804 2434.4 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2480.41 41.1664 L2480.41 44.2914 L2451.03 44.2914 Q2451.45 50.8886 2454.99 54.3608 Q2458.57 57.7983 2464.92 57.7983 Q2468.6 57.7983 2472.04 56.8955 Q2475.51 55.9928 2478.91 54.1872 L2478.91 60.2288 Q2475.48 61.6872 2471.87 62.4511 Q2468.25 63.2149 2464.54 63.2149 Q2455.23 63.2149 2449.78 57.7983 Q2444.37 52.3817 2444.37 43.1456 Q2444.37 33.597 2449.5 28.0068 Q2454.68 22.3818 2463.43 22.3818 Q2471.28 22.3818 2475.82 27.4512 Q2480.41 32.4859 2480.41 41.1664 M2474.02 39.2915 Q2473.95 34.0484 2471.07 30.9234 Q2468.22 27.7985 2463.5 27.7985 Q2458.15 27.7985 2454.92 30.8193 Q2451.73 33.8401 2451.24 39.3262 L2474.02 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2513.43 29.2915 Q2512.35 28.6665 2511.07 28.3887 Q2509.82 28.0762 2508.29 28.0762 Q2502.87 28.0762 2499.96 31.6179 Q2497.07 35.1248 2497.07 41.722 L2497.07 62.208 L2490.65 62.208 L2490.65 23.3193 L2497.07 23.3193 L2497.07 29.361 Q2499.09 25.8193 2502.32 24.1179 Q2505.55 22.3818 2510.16 22.3818 Q2510.82 22.3818 2511.62 22.486 Q2512.42 22.5554 2513.39 22.729 L2513.43 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2544.47 42.3123 Q2544.47 35.3679 2541.59 31.5484 Q2538.74 27.729 2533.57 27.729 Q2528.43 27.729 2525.55 31.5484 Q2522.7 35.3679 2522.7 42.3123 Q2522.7 49.222 2525.55 53.0414 Q2528.43 56.8608 2533.57 56.8608 Q2538.74 56.8608 2541.59 53.0414 Q2544.47 49.222 2544.47 42.3123 M2550.86 57.3816 Q2550.86 67.3121 2546.45 72.1385 Q2542.04 76.9996 2532.94 76.9996 Q2529.57 76.9996 2526.59 76.4788 Q2523.6 75.9926 2520.79 74.951 L2520.79 68.7357 Q2523.6 70.2635 2526.34 70.9927 Q2529.09 71.7218 2531.93 71.7218 Q2538.22 71.7218 2541.34 68.4232 Q2544.47 65.1594 2544.47 58.5275 L2544.47 55.3678 Q2542.49 58.8052 2539.4 60.5066 Q2536.31 62.208 2532 62.208 Q2524.85 62.208 2520.48 56.7566 Q2516.1 51.3053 2516.1 42.3123 Q2516.1 33.2845 2520.48 27.8332 Q2524.85 22.3818 2532 22.3818 Q2536.31 22.3818 2539.4 24.0832 Q2542.49 25.7846 2544.47 29.2221 L2544.47 23.3193 L2550.86 23.3193 L2550.86 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2580.2 65.8191 Q2577.49 72.7635 2574.92 74.8815 Q2572.35 76.9996 2568.05 76.9996 L2562.94 76.9996 L2562.94 71.6524 L2566.69 71.6524 Q2569.33 71.6524 2570.79 70.4024 Q2572.25 69.1524 2574.02 64.4997 L2575.16 61.583 L2559.43 23.3193 L2566.21 23.3193 L2578.36 53.7358 L2590.51 23.3193 L2597.28 23.3193 L2580.2 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2661.97 41.1664 L2661.97 44.2914 L2632.59 44.2914 Q2633.01 50.8886 2636.55 54.3608 Q2640.13 57.7983 2646.48 57.7983 Q2650.16 57.7983 2653.6 56.8955 Q2657.07 55.9928 2660.48 54.1872 L2660.48 60.2288 Q2657.04 61.6872 2653.43 62.4511 Q2649.82 63.2149 2646.1 63.2149 Q2636.8 63.2149 2631.34 57.7983 Q2625.93 52.3817 2625.93 43.1456 Q2625.93 33.597 2631.07 28.0068 Q2636.24 22.3818 2644.99 22.3818 Q2652.84 22.3818 2657.39 27.4512 Q2661.97 32.4859 2661.97 41.1664 M2655.58 39.2915 Q2655.51 34.0484 2652.63 30.9234 Q2649.78 27.7985 2645.06 27.7985 Q2639.71 27.7985 2636.48 30.8193 Q2633.29 33.8401 2632.8 39.3262 L2655.58 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2694.99 29.2915 Q2693.91 28.6665 2692.63 28.3887 Q2691.38 28.0762 2689.85 28.0762 Q2684.43 28.0762 2681.52 31.6179 Q2678.64 35.1248 2678.64 41.722 L2678.64 62.208 L2672.21 62.208 L2672.21 23.3193 L2678.64 23.3193 L2678.64 29.361 Q2680.65 25.8193 2683.88 24.1179 Q2687.11 22.3818 2691.73 22.3818 Q2692.39 22.3818 2693.18 22.486 Q2693.98 22.5554 2694.95 22.729 L2694.99 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2722.98 29.2915 Q2721.9 28.6665 2720.61 28.3887 Q2719.36 28.0762 2717.84 28.0762 Q2712.42 28.0762 2709.5 31.6179 Q2706.62 35.1248 2706.62 41.722 L2706.62 62.208 L2700.2 62.208 L2700.2 23.3193 L2706.62 23.3193 L2706.62 29.361 Q2708.64 25.8193 2711.86 24.1179 Q2715.09 22.3818 2719.71 22.3818 Q2720.37 22.3818 2721.17 22.486 Q2721.97 22.5554 2722.94 22.729 L2722.98 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2743.18 27.7985 Q2738.04 27.7985 2735.06 31.8262 Q2732.07 35.8193 2732.07 42.7984 Q2732.07 49.7775 2735.02 53.8053 Q2738.01 57.7983 2743.18 57.7983 Q2748.29 57.7983 2751.27 53.7705 Q2754.26 49.7428 2754.26 42.7984 Q2754.26 35.8887 2751.27 31.8609 Q2748.29 27.7985 2743.18 27.7985 M2743.18 22.3818 Q2751.52 22.3818 2756.27 27.7985 Q2761.03 33.2151 2761.03 42.7984 Q2761.03 52.3469 2756.27 57.7983 Q2751.52 63.2149 2743.18 63.2149 Q2734.82 63.2149 2730.06 57.7983 Q2725.34 52.3469 2725.34 42.7984 Q2725.34 33.2151 2730.06 27.7985 Q2734.82 22.3818 2743.18 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2794.16 29.2915 Q2793.08 28.6665 2791.79 28.3887 Q2790.54 28.0762 2789.02 28.0762 Q2783.6 28.0762 2780.68 31.6179 Q2777.8 35.1248 2777.8 41.722 L2777.8 62.208 L2771.38 62.208 L2771.38 23.3193 L2777.8 23.3193 L2777.8 29.361 Q2779.82 25.8193 2783.04 24.1179 Q2786.27 22.3818 2790.89 22.3818 Q2791.55 22.3818 2792.35 22.486 Q2793.15 22.5554 2794.12 22.729 L2794.16 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip813)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1847.74,126.556 1850.27,126.909 1852.8,127.458 1855.34,128.024 1857.87,125.663 1860.41,123.933 1862.94,123.723 1865.47,123.493 1868.01,120.414 1870.54,116.983 \n 1873.08,116.85 1875.61,117.504 1878.14,115.854 1880.68,116.218 1883.21,115.848 1885.75,115.93 1888.28,115.982 1890.81,115.876 1893.35,116.017 1895.88,115.912 \n 1898.42,116.041 1900.95,115.955 1903.48,116.055 1906.02,116.022 1908.55,116.064 1911.09,116.096 1913.62,116.073 1916.15,116.169 1918.69,116.077 1921.22,116.235 \n 1923.76,116.114 1926.29,116.313 1928.82,116.13 1931.36,116.469 1933.89,116.07 1936.43,117 1938.96,115.473 1941.49,119.434 1944.03,110.599 1946.56,129.209 \n 1949.1,121.827 1951.63,149.378 1954.16,126.579 1956.7,187.758 1959.23,163.045 1961.77,206.912 1964.3,225.966 1966.83,260.173 1969.37,170.9 1971.9,266.585 \n 1974.44,205.217 1976.97,215.42 1979.5,189.803 1982.04,203.156 1984.57,196.026 1987.11,182.918 1989.64,190.491 1992.17,184.662 1994.71,183.209 1997.24,184.295 \n 1999.78,182.052 2002.31,182.888 2004.84,182.12 2007.38,182.485 2009.91,182.266 2012.45,182.419 2014.98,182.326 2017.51,182.43 2020.05,182.402 2022.58,182.449 \n 2025.12,182.473 2027.65,182.477 2030.19,182.551 2032.72,182.512 2035.25,182.628 2037.79,182.512 2040.32,182.691 2042.86,182.562 2045.39,182.758 2047.92,182.592 \n 2050.46,182.872 2052.99,182.593 2055.53,183.197 2058.06,182.327 2060.59,184.644 2063.13,180.083 2065.66,191.606 2068.2,177.982 2070.73,208.745 2073.26,190.371 \n 2075.8,242.419 2078.33,209.272 2080.87,266.128 2083.4,264.54 2085.93,335.815 2088.47,263.287 2091,335.873 2093.54,252.097 2096.07,282.612 2098.6,266.294 \n 2101.14,272.611 2103.67,255.443 2106.21,247.451 2108.74,257.227 2111.27,246.728 2113.81,246.554 2116.34,247.513 2118.88,244.644 2121.41,245.715 2123.94,244.232 \n 2126.48,244.859 2129.01,244.571 2131.55,244.741 2134.08,244.602 2136.61,244.752 2139.15,244.694 2141.68,244.764 2144.22,244.76 2146.75,244.797 2149.28,244.842 \n 2151.82,244.826 2154.35,244.924 2156.89,244.84 2159.42,244.995 2161.95,244.873 2164.49,245.068 2167.02,244.911 2169.56,245.172 2172.09,244.916 2174.62,245.435 \n 2177.16,244.728 2179.69,246.465 2182.23,243.26 2184.76,251.034 2187.29,238.863 2189.83,263.003 2192.36,257.671 2194.9,292.499 2197.43,265.53 2199.96,328.674 \n 2202.5,320.879 2205.03,354.535 2207.57,378.852 2210.1,384.18 2212.63,289.514 2215.17,371.558 2217.7,334.67 2220.24,346.797 2222.77,309.935 2225.3,320.526 \n 2227.84,323.051 2230.37,309.333 2232.91,313.659 2235.44,311.231 2237.97,309.453 2240.51,310.306 2243.04,308.7 2245.58,309.284 2248.11,308.934 2250.64,309.168 \n 2253.18,308.967 2255.71,309.164 2258.25,309.049 2260.78,309.183 2263.31,309.114 2265.85,309.213 2268.38,309.194 2270.92,309.238 2273.45,309.28 2275.98,309.253 \n 2278.52,309.359 2281.05,309.272 2283.59,309.436 2286.12,309.311 2288.66,309.539 2291.19,309.316 2293.72,309.766 2296.26,309.163 2298.79,310.576 2301.33,308.033 \n 2303.86,313.763 2306.39,304.267 2308.93,319.997 2311.46,328.322 2314,345.095 2316.53,333.697 2319.06,384.801 2321.6,382.428 2324.13,392.161 2326.67,478.469 \n 2329.2,411.898 2331.73,369.986 2334.27,452.224 2336.8,399.349 2339.34,412.99 2341.87,372.896 2344.4,397.001 2346.94,384.961 2349.47,376.672 2352.01,382.624 \n 2354.54,376.74 2357.07,376.85 2359.61,376.649 2362.14,375.507 2364.68,375.783 2367.21,375.55 2369.74,375.758 2372.28,375.555 2374.81,375.77 2377.35,375.623 \n 2379.88,375.806 2382.41,375.68 2384.95,375.844 2387.48,375.755 2390.02,375.872 2392.55,375.839 2395.08,375.886 2397.62,375.918 2400.15,375.901 2402.69,375.995 \n 2405.22,375.939 2407.75,376.096 2410.29,375.949 2412.82,376.291 2415.36,375.834 2417.89,376.916 2420.42,375.017 2422.96,378.87 2425.49,374.424 2428.03,379.957 \n 2430.56,400.46 2433.09,401.348 2435.63,409.249 2438.16,438.026 2440.7,451.344 2443.23,449.775 2445.76,567.16 2448.3,440.781 2450.83,465.568 2453.37,514.068 \n 2455.9,462.859 2458.43,477.225 2460.97,439.805 2463.5,467 2466.04,446.522 2468.57,444.048 2471.1,448.67 2473.64,441.675 2476.17,443.007 2478.71,441.798 \n 2481.24,441.245 2483.77,441.129 2486.31,441.108 2488.84,441.221 2491.38,441.072 2493.91,441.258 2496.44,441.128 2498.98,441.318 2501.51,441.175 2504.05,441.372 \n 2506.58,441.243 2509.11,441.411 2511.65,441.323 2514.18,441.428 2516.72,441.393 2519.25,441.45 2521.78,441.468 2524.32,441.489 2526.85,441.564 2529.39,441.514 \n 2531.92,441.729 2534.46,441.461 2536.99,442.182 2539.52,441.077 2542.06,442.896 2544.59,444.887 2547.13,441.646 2549.66,469.942 2552.19,460.177 2554.73,483.583 \n 2557.26,495.977 2559.8,522.993 2562.33,509.847 2564.86,648.727 2567.4,486.036 2569.93,542.772 2572.47,567.793 2575,526.628 2577.53,537.365 2580.07,504.54 \n 2582.6,529.478 2585.14,507.884 2587.67,507.616 2590.2,510.955 2592.74,504.345 2595.27,505.988 2597.81,504.388 2600.34,504.178 2602.87,503.807 2605.41,503.964 \n 2607.94,503.999 2610.48,503.898 2613.01,504.048 2615.54,503.953 2618.08,504.126 2620.61,503.99 2623.15,504.194 2625.68,504.056 2628.21,504.247 2630.75,504.132 \n 2633.28,504.269 2635.82,504.189 2638.35,504.304 2640.88,504.266 2643.42,504.346 2645.95,504.353 2648.49,504.393 2651.02,504.495 2653.55,504.422 2656.09,504.786 \n 2658.62,504.633 2661.16,503.98 2663.69,514.008 2666.22,503.577 2668.76,537.123 2671.29,519.519 2673.83,555.569 2676.36,558.337 2678.89,598.384 2681.43,565.324 \n 2683.96,718.988 2686.5,548.063 2689.03,605.295 2691.56,622.114 2694.1,591.388 2696.63,596.138 2699.17,568.087 2701.7,589.917 2704.23,570.776 2706.77,569.949 \n 2709.3,573.114 2711.84,567.227 2714.37,568.688 2716.9,567.165 2719.44,567.139 2721.97,566.732 2724.51,566.946 2727.04,566.955 2729.57,566.878 2732.11,567.011 \n 2734.64,566.936 2737.18,567.098 2739.71,566.97 2742.24,567.174 2744.78,567.036 2747.31,567.234 2749.85,567.117 2752.38,567.253 2754.91,567.157 2757.45,567.302 \n 2759.98,567.244 2762.52,567.343 2765.05,567.329 2767.58,567.408 2770.12,567.475 2772.65,567.492 2775.19,567.66 2777.72,568.354 2780.25,564.614 2782.79,585.525 \n 2785.32,569.952 2787.86,607.039 2790.39,583.535 2792.93,630.014 2795.46,628.487 2797.99,687.512 2800.53,620.439 2803.06,769.604 2805.6,628.081 2808.13,664.676 \n 2810.66,678.711 2813.2,656.946 2815.73,656.779 2818.27,634.316 2820.8,651.91 2823.33,636.966 2825.87,635.065 2828.4,638.071 2830.94,633.154 2833.47,634.366 \n 2836,632.973 2838.54,633.221 2841.07,632.947 2843.61,633.057 2846.14,633.09 2848.67,633.028 2851.21,633.164 2853.74,633.075 2856.28,633.251 2858.81,633.118 \n 2861.34,633.328 2863.88,633.186 2866.41,633.384 2868.95,633.268 2871.48,633.399 2874.01,633.309 2876.55,633.455 2879.08,633.405 2881.62,633.497 2884.15,633.499 \n 2886.68,633.571 2889.22,633.678 2891.75,633.7 2894.29,633.717 2896.82,635.958 2899.35,626.827 2901.89,664.59 2904.42,645.194 2906.96,686.495 2909.49,658.001 \n 2912.02,713.506 2914.56,708.066 2917.09,800.02 2919.63,683.669 2922.16,810.623 2924.69,719.612 2927.23,736.808 2929.76,738.491 2932.3,726.285 2934.83,719.137 \n 2937.36,705.874 2939.9,718.546 2942.43,706.343 2944.97,705.451 2947.5,707.276 2950.03,703.511 2952.57,704.747 2955.1,703.174 2957.64,703.81 2960.17,703.473 \n 2962.7,703.637 2965.24,703.567 2967.77,703.637 2970.31,703.668 2972.84,703.661 2975.37,703.763 2977.91,703.704 2980.44,703.86 2982.98,703.757 2985.51,703.946 \n 2988.04,703.789 2990.58,704.016 2993.11,703.844 2995.65,704.092 2998.18,703.903 3000.71,704.216 3003.25,703.926 3005.78,704.572 3008.32,703.684 3010.85,706.286 \n 3013.38,700.787 3015.92,716.083 3018.45,700.852 3020.99,737.054 3023.52,710.469 3026.05,769.482 3028.59,739.93 3031.12,793.029 3033.66,783.526 3036.19,887.501 \n 3038.73,744.497 3041.26,850.425 3043.79,796.284 3046.33,795.602 3048.86,786.477 3051.4,783.584 3053.93,785.382 3056.46,767.82 3059,775.576 3061.53,771.004 \n 3064.07,767.866 3066.6,769.79 3069.13,767.047 3071.67,767.92 3074.2,766.878 3076.74,767.396 3079.27,767.181 3081.8,767.296 3084.34,767.247 3086.87,767.329 \n 3089.41,767.36 3091.94,767.35 3094.47,767.455 3097.01,767.4 3099.54,767.557 3102.08,767.46 3104.61,767.64 3107.14,767.459 3109.68,767.72 3112.21,767.544 \n 3114.75,767.816 \n \"/>\n</svg>\n"
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dtmax = 0.05\nsol = solve(ODEProblem(f!, U0(p), tspan, p), RK4(); dtmax)\n@show length(sol.t)\nplot_pendulum(sol; title=\"adaptive RK4 with dtmax = $dtmax\")",
"execution_count": 10,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 606\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip850\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip850)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip851\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip850)\" d=\"\nM157.191 910.808 L1484.9 910.808 L1484.9 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip852\">\n <rect x=\"157\" y=\"87\" width=\"1329\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 194.767,910.808 194.767,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 278.271,910.808 278.271,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 361.775,910.808 361.775,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 445.278,910.808 445.278,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 528.782,910.808 528.782,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 612.285,910.808 612.285,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 695.789,910.808 695.789,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 779.292,910.808 779.292,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 862.796,910.808 862.796,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 946.3,910.808 946.3,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1029.8,910.808 1029.8,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1113.31,910.808 1113.31,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1196.81,910.808 1196.81,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1280.31,910.808 1280.31,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1363.82,910.808 1363.82,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1447.32,910.808 1447.32,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1484.9,910.808 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 194.767,910.808 194.767,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 278.271,910.808 278.271,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 361.775,910.808 361.775,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 445.278,910.808 445.278,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 528.782,910.808 528.782,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 612.285,910.808 612.285,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 695.789,910.808 695.789,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 779.292,910.808 779.292,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 862.796,910.808 862.796,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 946.3,910.808 946.3,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1029.8,910.808 1029.8,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1113.31,910.808 1113.31,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1196.81,910.808 1196.81,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1280.31,910.808 1280.31,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1363.82,910.808 1363.82,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1447.32,910.808 1447.32,900.926 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M194.767 946.399 Q191.156 946.399 189.328 949.963 Q187.522 953.505 187.522 960.635 Q187.522 967.741 189.328 971.306 Q191.156 974.847 194.767 974.847 Q198.402 974.847 200.207 971.306 Q202.036 967.741 202.036 960.635 Q202.036 953.505 200.207 949.963 Q198.402 946.399 194.767 946.399 M194.767 942.695 Q200.578 942.695 203.633 947.301 Q206.712 951.885 206.712 960.635 Q206.712 969.361 203.633 973.968 Q200.578 978.551 194.767 978.551 Q188.957 978.551 185.879 973.968 Q182.823 969.361 182.823 960.635 Q182.823 951.885 185.879 947.301 Q188.957 942.695 194.767 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M272.924 973.945 L289.243 973.945 L289.243 977.88 L267.299 977.88 L267.299 973.945 Q269.961 971.19 274.544 966.56 Q279.151 961.908 280.331 960.565 Q282.577 958.042 283.456 956.306 Q284.359 954.547 284.359 952.857 Q284.359 950.102 282.415 948.366 Q280.493 946.63 277.391 946.63 Q275.192 946.63 272.739 947.394 Q270.308 948.158 267.53 949.709 L267.53 944.987 Q270.354 943.852 272.808 943.274 Q275.262 942.695 277.299 942.695 Q282.669 942.695 285.864 945.38 Q289.058 948.065 289.058 952.556 Q289.058 954.686 288.248 956.607 Q287.461 958.505 285.354 961.098 Q284.776 961.769 281.674 964.986 Q278.572 968.181 272.924 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M364.784 947.394 L352.978 965.843 L364.784 965.843 L364.784 947.394 M363.557 943.32 L369.437 943.32 L369.437 965.843 L374.367 965.843 L374.367 969.732 L369.437 969.732 L369.437 977.88 L364.784 977.88 L364.784 969.732 L349.182 969.732 L349.182 965.218 L363.557 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M445.683 958.736 Q442.535 958.736 440.683 960.889 Q438.855 963.042 438.855 966.792 Q438.855 970.519 440.683 972.695 Q442.535 974.847 445.683 974.847 Q448.831 974.847 450.66 972.695 Q452.512 970.519 452.512 966.792 Q452.512 963.042 450.66 960.889 Q448.831 958.736 445.683 958.736 M454.966 944.084 L454.966 948.343 Q453.206 947.51 451.401 947.07 Q449.618 946.63 447.859 946.63 Q443.23 946.63 440.776 949.755 Q438.345 952.88 437.998 959.199 Q439.364 957.186 441.424 956.121 Q443.484 955.033 445.961 955.033 Q451.169 955.033 454.179 958.204 Q457.211 961.352 457.211 966.792 Q457.211 972.116 454.063 975.334 Q450.915 978.551 445.683 978.551 Q439.688 978.551 436.517 973.968 Q433.345 969.361 433.345 960.635 Q433.345 952.44 437.234 947.579 Q441.123 942.695 447.674 942.695 Q449.433 942.695 451.216 943.042 Q453.021 943.389 454.966 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M528.782 961.468 Q525.448 961.468 523.527 963.25 Q521.629 965.033 521.629 968.158 Q521.629 971.283 523.527 973.065 Q525.448 974.847 528.782 974.847 Q532.115 974.847 534.036 973.065 Q535.958 971.26 535.958 968.158 Q535.958 965.033 534.036 963.25 Q532.138 961.468 528.782 961.468 M524.106 959.477 Q521.097 958.736 519.407 956.676 Q517.74 954.616 517.74 951.653 Q517.74 947.51 520.68 945.102 Q523.643 942.695 528.782 942.695 Q533.944 942.695 536.884 945.102 Q539.823 947.51 539.823 951.653 Q539.823 954.616 538.134 956.676 Q536.467 958.736 533.481 959.477 Q536.86 960.264 538.735 962.556 Q540.633 964.848 540.633 968.158 Q540.633 973.181 537.555 975.866 Q534.499 978.551 528.782 978.551 Q523.064 978.551 519.985 975.866 Q516.93 973.181 516.93 968.158 Q516.93 964.848 518.828 962.556 Q520.726 960.264 524.106 959.477 M522.393 952.093 Q522.393 954.778 524.06 956.283 Q525.749 957.787 528.782 957.787 Q531.791 957.787 533.481 956.283 Q535.194 954.778 535.194 952.093 Q535.194 949.408 533.481 947.903 Q531.791 946.399 528.782 946.399 Q525.749 946.399 524.06 947.903 Q522.393 949.408 522.393 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M586.973 973.945 L594.612 973.945 L594.612 947.579 L586.302 949.246 L586.302 944.987 L594.565 943.32 L599.241 943.32 L599.241 973.945 L606.88 973.945 L606.88 977.88 L586.973 977.88 L586.973 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M626.325 946.399 Q622.713 946.399 620.885 949.963 Q619.079 953.505 619.079 960.635 Q619.079 967.741 620.885 971.306 Q622.713 974.847 626.325 974.847 Q629.959 974.847 631.764 971.306 Q633.593 967.741 633.593 960.635 Q633.593 953.505 631.764 949.963 Q629.959 946.399 626.325 946.399 M626.325 942.695 Q632.135 942.695 635.19 947.301 Q638.269 951.885 638.269 960.635 Q638.269 969.361 635.19 973.968 Q632.135 978.551 626.325 978.551 Q620.514 978.551 617.436 973.968 Q614.38 969.361 614.38 960.635 Q614.38 951.885 617.436 947.301 Q620.514 942.695 626.325 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M671.275 973.945 L678.914 973.945 L678.914 947.579 L670.604 949.246 L670.604 944.987 L678.868 943.32 L683.544 943.32 L683.544 973.945 L691.182 973.945 L691.182 977.88 L671.275 977.88 L671.275 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M704.655 973.945 L720.974 973.945 L720.974 977.88 L699.03 977.88 L699.03 973.945 Q701.692 971.19 706.275 966.56 Q710.881 961.908 712.062 960.565 Q714.307 958.042 715.187 956.306 Q716.09 954.547 716.09 952.857 Q716.09 950.102 714.145 948.366 Q712.224 946.63 709.122 946.63 Q706.923 946.63 704.469 947.394 Q702.039 948.158 699.261 949.709 L699.261 944.987 Q702.085 943.852 704.539 943.274 Q706.992 942.695 709.029 942.695 Q714.4 942.695 717.594 945.38 Q720.789 948.065 720.789 952.556 Q720.789 954.686 719.979 956.607 Q719.191 958.505 717.085 961.098 Q716.506 961.769 713.404 964.986 Q710.303 968.181 704.655 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M753.737 973.945 L761.376 973.945 L761.376 947.579 L753.066 949.246 L753.066 944.987 L761.33 943.32 L766.005 943.32 L766.005 973.945 L773.644 973.945 L773.644 977.88 L753.737 977.88 L753.737 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M795.936 947.394 L784.13 965.843 L795.936 965.843 L795.936 947.394 M794.709 943.32 L800.589 943.32 L800.589 965.843 L805.519 965.843 L805.519 969.732 L800.589 969.732 L800.589 977.88 L795.936 977.88 L795.936 969.732 L780.334 969.732 L780.334 965.218 L794.709 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M837.403 973.945 L845.041 973.945 L845.041 947.579 L836.731 949.246 L836.731 944.987 L844.995 943.32 L849.671 943.32 L849.671 973.945 L857.31 973.945 L857.31 977.88 L837.403 977.88 L837.403 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M877.333 958.736 Q874.185 958.736 872.333 960.889 Q870.504 963.042 870.504 966.792 Q870.504 970.519 872.333 972.695 Q874.185 974.847 877.333 974.847 Q880.481 974.847 882.31 972.695 Q884.162 970.519 884.162 966.792 Q884.162 963.042 882.31 960.889 Q880.481 958.736 877.333 958.736 M886.615 944.084 L886.615 948.343 Q884.856 947.51 883.05 947.07 Q881.268 946.63 879.509 946.63 Q874.879 946.63 872.426 949.755 Q869.995 952.88 869.648 959.199 Q871.013 957.186 873.074 956.121 Q875.134 955.033 877.611 955.033 Q882.819 955.033 885.828 958.204 Q888.861 961.352 888.861 966.792 Q888.861 972.116 885.712 975.334 Q882.564 978.551 877.333 978.551 Q871.338 978.551 868.166 973.968 Q864.995 969.361 864.995 960.635 Q864.995 952.44 868.884 947.579 Q872.773 942.695 879.324 942.695 Q881.083 942.695 882.865 943.042 Q884.671 943.389 886.615 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M921.033 973.945 L928.672 973.945 L928.672 947.579 L920.362 949.246 L920.362 944.987 L928.626 943.32 L933.302 943.32 L933.302 973.945 L940.941 973.945 L940.941 977.88 L921.033 977.88 L921.033 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M960.385 961.468 Q957.052 961.468 955.13 963.25 Q953.232 965.033 953.232 968.158 Q953.232 971.283 955.13 973.065 Q957.052 974.847 960.385 974.847 Q963.718 974.847 965.64 973.065 Q967.561 971.26 967.561 968.158 Q967.561 965.033 965.64 963.25 Q963.742 961.468 960.385 961.468 M955.709 959.477 Q952.7 958.736 951.01 956.676 Q949.343 954.616 949.343 951.653 Q949.343 947.51 952.283 945.102 Q955.246 942.695 960.385 942.695 Q965.547 942.695 968.487 945.102 Q971.427 947.51 971.427 951.653 Q971.427 954.616 969.737 956.676 Q968.07 958.736 965.084 959.477 Q968.464 960.264 970.339 962.556 Q972.237 964.848 972.237 968.158 Q972.237 973.181 969.158 975.866 Q966.103 978.551 960.385 978.551 Q954.668 978.551 951.589 975.866 Q948.533 973.181 948.533 968.158 Q948.533 964.848 950.431 962.556 Q952.33 960.264 955.709 959.477 M953.996 952.093 Q953.996 954.778 955.663 956.283 Q957.353 957.787 960.385 957.787 Q963.394 957.787 965.084 956.283 Q966.797 954.778 966.797 952.093 Q966.797 949.408 965.084 947.903 Q963.394 946.399 960.385 946.399 Q957.353 946.399 955.663 947.903 Q953.996 949.408 953.996 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1008.58 973.945 L1024.9 973.945 L1024.9 977.88 L1002.95 977.88 L1002.95 973.945 Q1005.61 971.19 1010.2 966.56 Q1014.8 961.908 1015.98 960.565 Q1018.23 958.042 1019.11 956.306 Q1020.01 954.547 1020.01 952.857 Q1020.01 950.102 1018.07 948.366 Q1016.15 946.63 1013.04 946.63 Q1010.84 946.63 1008.39 947.394 Q1005.96 948.158 1003.18 949.709 L1003.18 944.987 Q1006.01 943.852 1008.46 943.274 Q1010.91 942.695 1012.95 942.695 Q1018.32 942.695 1021.52 945.38 Q1024.71 948.065 1024.71 952.556 Q1024.71 954.686 1023.9 956.607 Q1023.11 958.505 1021.01 961.098 Q1020.43 961.769 1017.33 964.986 Q1014.22 968.181 1008.58 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1044.71 946.399 Q1041.1 946.399 1039.27 949.963 Q1037.47 953.505 1037.47 960.635 Q1037.47 967.741 1039.27 971.306 Q1041.1 974.847 1044.71 974.847 Q1048.34 974.847 1050.15 971.306 Q1051.98 967.741 1051.98 960.635 Q1051.98 953.505 1050.15 949.963 Q1048.34 946.399 1044.71 946.399 M1044.71 942.695 Q1050.52 942.695 1053.58 947.301 Q1056.65 951.885 1056.65 960.635 Q1056.65 969.361 1053.58 973.968 Q1050.52 978.551 1044.71 978.551 Q1038.9 978.551 1035.82 973.968 Q1032.77 969.361 1032.77 960.635 Q1032.77 951.885 1035.82 947.301 Q1038.9 942.695 1044.71 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1092.88 973.945 L1109.2 973.945 L1109.2 977.88 L1087.25 977.88 L1087.25 973.945 Q1089.92 971.19 1094.5 966.56 Q1099.11 961.908 1100.29 960.565 Q1102.53 958.042 1103.41 956.306 Q1104.31 954.547 1104.31 952.857 Q1104.31 950.102 1102.37 948.366 Q1100.45 946.63 1097.35 946.63 Q1095.15 946.63 1092.69 947.394 Q1090.26 948.158 1087.49 949.709 L1087.49 944.987 Q1090.31 943.852 1092.76 943.274 Q1095.22 942.695 1097.25 942.695 Q1102.62 942.695 1105.82 945.38 Q1109.01 948.065 1109.01 952.556 Q1109.01 954.686 1108.2 956.607 Q1107.42 958.505 1105.31 961.098 Q1104.73 961.769 1101.63 964.986 Q1098.53 968.181 1092.88 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1123.04 973.945 L1139.36 973.945 L1139.36 977.88 L1117.42 977.88 L1117.42 973.945 Q1120.08 971.19 1124.66 966.56 Q1129.27 961.908 1130.45 960.565 Q1132.69 958.042 1133.57 956.306 Q1134.48 954.547 1134.48 952.857 Q1134.48 950.102 1132.53 948.366 Q1130.61 946.63 1127.51 946.63 Q1125.31 946.63 1122.86 947.394 Q1120.42 948.158 1117.65 949.709 L1117.65 944.987 Q1120.47 943.852 1122.92 943.274 Q1125.38 942.695 1127.42 942.695 Q1132.79 942.695 1135.98 945.38 Q1139.17 948.065 1139.17 952.556 Q1139.17 954.686 1138.36 956.607 Q1137.58 958.505 1135.47 961.098 Q1134.89 961.769 1131.79 964.986 Q1128.69 968.181 1123.04 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1175.34 973.945 L1191.66 973.945 L1191.66 977.88 L1169.72 977.88 L1169.72 973.945 Q1172.38 971.19 1176.96 966.56 Q1181.57 961.908 1182.75 960.565 Q1184.99 958.042 1185.87 956.306 Q1186.78 954.547 1186.78 952.857 Q1186.78 950.102 1184.83 948.366 Q1182.91 946.63 1179.81 946.63 Q1177.61 946.63 1175.16 947.394 Q1172.72 948.158 1169.95 949.709 L1169.95 944.987 Q1172.77 943.852 1175.22 943.274 Q1177.68 942.695 1179.72 942.695 Q1185.09 942.695 1188.28 945.38 Q1191.47 948.065 1191.47 952.556 Q1191.47 954.686 1190.66 956.607 Q1189.88 958.505 1187.77 961.098 Q1187.19 961.769 1184.09 964.986 Q1180.99 968.181 1175.34 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1214.32 947.394 L1202.52 965.843 L1214.32 965.843 L1214.32 947.394 M1213.09 943.32 L1218.97 943.32 L1218.97 965.843 L1223.9 965.843 L1223.9 969.732 L1218.97 969.732 L1218.97 977.88 L1214.32 977.88 L1214.32 969.732 L1198.72 969.732 L1198.72 965.218 L1213.09 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1259.01 973.945 L1275.33 973.945 L1275.33 977.88 L1253.38 977.88 L1253.38 973.945 Q1256.04 971.19 1260.63 966.56 Q1265.23 961.908 1266.41 960.565 Q1268.66 958.042 1269.54 956.306 Q1270.44 954.547 1270.44 952.857 Q1270.44 950.102 1268.5 948.366 Q1266.58 946.63 1263.47 946.63 Q1261.27 946.63 1258.82 947.394 Q1256.39 948.158 1253.61 949.709 L1253.61 944.987 Q1256.44 943.852 1258.89 943.274 Q1261.34 942.695 1263.38 942.695 Q1268.75 942.695 1271.95 945.38 Q1275.14 948.065 1275.14 952.556 Q1275.14 954.686 1274.33 956.607 Q1273.54 958.505 1271.44 961.098 Q1270.86 961.769 1267.76 964.986 Q1264.65 968.181 1259.01 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1295.72 958.736 Q1292.57 958.736 1290.72 960.889 Q1288.89 963.042 1288.89 966.792 Q1288.89 970.519 1290.72 972.695 Q1292.57 974.847 1295.72 974.847 Q1298.87 974.847 1300.7 972.695 Q1302.55 970.519 1302.55 966.792 Q1302.55 963.042 1300.7 960.889 Q1298.87 958.736 1295.72 958.736 M1305 944.084 L1305 948.343 Q1303.24 947.51 1301.44 947.07 Q1299.65 946.63 1297.89 946.63 Q1293.27 946.63 1290.81 949.755 Q1288.38 952.88 1288.03 959.199 Q1289.4 957.186 1291.46 956.121 Q1293.52 955.033 1296 955.033 Q1301.2 955.033 1304.21 958.204 Q1307.25 961.352 1307.25 966.792 Q1307.25 972.116 1304.1 975.334 Q1300.95 978.551 1295.72 978.551 Q1289.72 978.551 1286.55 973.968 Q1283.38 969.361 1283.38 960.635 Q1283.38 952.44 1287.27 947.579 Q1291.16 942.695 1297.71 942.695 Q1299.47 942.695 1301.25 943.042 Q1303.06 943.389 1305 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1342.64 973.945 L1358.96 973.945 L1358.96 977.88 L1337.01 977.88 L1337.01 973.945 Q1339.67 971.19 1344.26 966.56 Q1348.86 961.908 1350.04 960.565 Q1352.29 958.042 1353.17 956.306 Q1354.07 954.547 1354.07 952.857 Q1354.07 950.102 1352.13 948.366 Q1350.21 946.63 1347.1 946.63 Q1344.91 946.63 1342.45 947.394 Q1340.02 948.158 1337.24 949.709 L1337.24 944.987 Q1340.07 943.852 1342.52 943.274 Q1344.97 942.695 1347.01 942.695 Q1352.38 942.695 1355.58 945.38 Q1358.77 948.065 1358.77 952.556 Q1358.77 954.686 1357.96 956.607 Q1357.17 958.505 1355.07 961.098 Q1354.49 961.769 1351.39 964.986 Q1348.28 968.181 1342.64 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1378.77 961.468 Q1375.44 961.468 1373.52 963.25 Q1371.62 965.033 1371.62 968.158 Q1371.62 971.283 1373.52 973.065 Q1375.44 974.847 1378.77 974.847 Q1382.1 974.847 1384.03 973.065 Q1385.95 971.26 1385.95 968.158 Q1385.95 965.033 1384.03 963.25 Q1382.13 961.468 1378.77 961.468 M1374.1 959.477 Q1371.09 958.736 1369.4 956.676 Q1367.73 954.616 1367.73 951.653 Q1367.73 947.51 1370.67 945.102 Q1373.63 942.695 1378.77 942.695 Q1383.93 942.695 1386.87 945.102 Q1389.81 947.51 1389.81 951.653 Q1389.81 954.616 1388.12 956.676 Q1386.46 958.736 1383.47 959.477 Q1386.85 960.264 1388.72 962.556 Q1390.62 964.848 1390.62 968.158 Q1390.62 973.181 1387.54 975.866 Q1384.49 978.551 1378.77 978.551 Q1373.05 978.551 1369.97 975.866 Q1366.92 973.181 1366.92 968.158 Q1366.92 964.848 1368.82 962.556 Q1370.72 960.264 1374.1 959.477 M1372.38 952.093 Q1372.38 954.778 1374.05 956.283 Q1375.74 957.787 1378.77 957.787 Q1381.78 957.787 1383.47 956.283 Q1385.18 954.778 1385.18 952.093 Q1385.18 949.408 1383.47 947.903 Q1381.78 946.399 1378.77 946.399 Q1375.74 946.399 1374.05 947.903 Q1372.38 949.408 1372.38 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1436.16 959.246 Q1439.52 959.963 1441.39 962.232 Q1443.29 964.5 1443.29 967.834 Q1443.29 972.949 1439.77 975.75 Q1436.26 978.551 1429.77 978.551 Q1427.6 978.551 1425.28 978.111 Q1422.99 977.695 1420.54 976.838 L1420.54 972.324 Q1422.48 973.459 1424.8 974.037 Q1427.11 974.616 1429.64 974.616 Q1434.03 974.616 1436.33 972.88 Q1438.64 971.144 1438.64 967.834 Q1438.64 964.778 1436.49 963.065 Q1434.36 961.329 1430.54 961.329 L1426.51 961.329 L1426.51 957.486 L1430.72 957.486 Q1434.17 957.486 1436 956.121 Q1437.83 954.732 1437.83 952.139 Q1437.83 949.477 1435.93 948.065 Q1434.06 946.63 1430.54 946.63 Q1428.62 946.63 1426.42 947.047 Q1424.22 947.463 1421.58 948.343 L1421.58 944.176 Q1424.24 943.436 1426.56 943.065 Q1428.9 942.695 1430.96 942.695 Q1436.28 942.695 1439.38 945.125 Q1442.48 947.533 1442.48 951.653 Q1442.48 954.524 1440.84 956.514 Q1439.2 958.482 1436.16 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1462.16 946.399 Q1458.55 946.399 1456.72 949.963 Q1454.91 953.505 1454.91 960.635 Q1454.91 967.741 1456.72 971.306 Q1458.55 974.847 1462.16 974.847 Q1465.79 974.847 1467.6 971.306 Q1469.43 967.741 1469.43 960.635 Q1469.43 953.505 1467.6 949.963 Q1465.79 946.399 1462.16 946.399 M1462.16 942.695 Q1467.97 942.695 1471.02 947.301 Q1474.1 951.885 1474.1 960.635 Q1474.1 969.361 1471.02 973.968 Q1467.97 978.551 1462.16 978.551 Q1456.35 978.551 1453.27 973.968 Q1450.21 969.361 1450.21 960.635 Q1450.21 951.885 1453.27 947.301 Q1456.35 942.695 1462.16 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1484.9,910.808 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1484.9,832.378 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1484.9,753.948 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1484.9,675.518 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1484.9,597.088 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1484.9,518.658 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1484.9,440.227 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1484.9,361.797 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1484.9,283.367 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1484.9,204.937 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1484.9,126.507 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 173.123,910.808 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 173.123,832.378 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 173.123,753.948 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 173.123,675.518 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 173.123,597.088 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 173.123,518.658 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 173.123,440.227 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 173.123,361.797 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 173.123,283.367 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 173.123,204.937 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 173.123,126.507 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M358.026 35.5496 Q351.573 35.5496 349.085 37.0253 Q346.596 38.501 346.596 42.06 Q346.596 44.8956 348.448 46.5738 Q350.329 48.2231 353.541 48.2231 Q357.968 48.2231 360.63 45.0981 Q363.321 41.9442 363.321 36.7359 L363.321 35.5496 L358.026 35.5496 M368.645 33.3505 L368.645 51.84 L363.321 51.84 L363.321 46.921 Q361.498 49.8724 358.778 51.2902 Q356.058 52.6791 352.123 52.6791 Q347.146 52.6791 344.195 49.9014 Q341.272 47.0947 341.272 42.4072 Q341.272 36.9385 344.918 34.1607 Q348.593 31.3829 355.856 31.3829 L363.321 31.3829 L363.321 30.8621 Q363.321 27.1874 360.89 25.1908 Q358.489 23.1654 354.12 23.1654 Q351.342 23.1654 348.709 23.8309 Q346.076 24.4964 343.645 25.8274 L343.645 20.9085 Q346.568 19.78 349.316 19.2302 Q352.065 18.6515 354.669 18.6515 Q361.701 18.6515 365.173 22.2973 Q368.645 25.9431 368.645 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M400.936 24.3517 L400.936 6.81709 L406.261 6.81709 L406.261 51.84 L400.936 51.84 L400.936 46.9789 Q399.258 49.8724 396.683 51.2902 Q394.137 52.6791 390.549 52.6791 Q384.675 52.6791 380.971 47.9916 Q377.297 43.3042 377.297 35.6653 Q377.297 28.0265 380.971 23.339 Q384.675 18.6515 390.549 18.6515 Q394.137 18.6515 396.683 20.0693 Q399.258 21.4582 400.936 24.3517 M382.794 35.6653 Q382.794 41.5391 385.196 44.8956 Q387.626 48.2231 391.851 48.2231 Q396.075 48.2231 398.506 44.8956 Q400.936 41.5391 400.936 35.6653 Q400.936 29.7915 398.506 26.464 Q396.075 23.1075 391.851 23.1075 Q387.626 23.1075 385.196 26.464 Q382.794 29.7915 382.794 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M431.955 35.5496 Q425.502 35.5496 423.014 37.0253 Q420.525 38.501 420.525 42.06 Q420.525 44.8956 422.377 46.5738 Q424.258 48.2231 427.47 48.2231 Q431.897 48.2231 434.559 45.0981 Q437.25 41.9442 437.25 36.7359 L437.25 35.5496 L431.955 35.5496 M442.574 33.3505 L442.574 51.84 L437.25 51.84 L437.25 46.921 Q435.427 49.8724 432.707 51.2902 Q429.987 52.6791 426.052 52.6791 Q421.075 52.6791 418.124 49.9014 Q415.201 47.0947 415.201 42.4072 Q415.201 36.9385 418.847 34.1607 Q422.522 31.3829 429.785 31.3829 L437.25 31.3829 L437.25 30.8621 Q437.25 27.1874 434.819 25.1908 Q432.418 23.1654 428.049 23.1654 Q425.271 23.1654 422.638 23.8309 Q420.005 24.4964 417.574 25.8274 L417.574 20.9085 Q420.497 19.78 423.245 19.2302 Q425.994 18.6515 428.598 18.6515 Q435.63 18.6515 439.102 22.2973 Q442.574 25.9431 442.574 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M458.691 46.9789 L458.691 64.1663 L453.338 64.1663 L453.338 19.4328 L458.691 19.4328 L458.691 24.3517 Q460.369 21.4582 462.915 20.0693 Q465.491 18.6515 469.05 18.6515 Q474.952 18.6515 478.627 23.339 Q482.331 28.0265 482.331 35.6653 Q482.331 43.3042 478.627 47.9916 Q474.952 52.6791 469.05 52.6791 Q465.491 52.6791 462.915 51.2902 Q460.369 49.8724 458.691 46.9789 M476.804 35.6653 Q476.804 29.7915 474.374 26.464 Q471.972 23.1075 467.747 23.1075 Q463.523 23.1075 461.092 26.464 Q458.691 29.7915 458.691 35.6653 Q458.691 41.5391 461.092 44.8956 Q463.523 48.2231 467.747 48.2231 Q471.972 48.2231 474.374 44.8956 Q476.804 41.5391 476.804 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M496.422 10.2314 L496.422 19.4328 L507.388 19.4328 L507.388 23.5705 L496.422 23.5705 L496.422 41.163 Q496.422 45.1271 497.493 46.2555 Q498.592 47.384 501.92 47.384 L507.388 47.384 L507.388 51.84 L501.92 51.84 Q495.757 51.84 493.413 49.5541 Q491.069 47.2393 491.069 41.163 L491.069 23.5705 L487.163 23.5705 L487.163 19.4328 L491.069 19.4328 L491.069 10.2314 L496.422 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M514.391 19.4328 L519.715 19.4328 L519.715 51.84 L514.391 51.84 L514.391 19.4328 M514.391 6.81709 L519.715 6.81709 L519.715 13.559 L514.391 13.559 L514.391 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M527.035 19.4328 L532.678 19.4328 L542.805 46.6317 L552.932 19.4328 L558.575 19.4328 L546.422 51.84 L539.188 51.84 L527.035 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M593.644 34.3054 L593.644 36.9095 L569.165 36.9095 Q569.512 42.4072 572.463 45.3007 Q575.444 48.1653 580.739 48.1653 Q583.806 48.1653 586.67 47.4129 Q589.564 46.6606 592.4 45.156 L592.4 50.1907 Q589.535 51.406 586.526 52.0425 Q583.517 52.6791 580.42 52.6791 Q572.666 52.6791 568.123 48.1653 Q563.609 43.6514 563.609 35.9547 Q563.609 27.9975 567.892 23.339 Q572.203 18.6515 579.495 18.6515 Q586.034 18.6515 589.824 22.876 Q593.644 27.0716 593.644 34.3054 M588.32 32.7429 Q588.262 28.3737 585.86 25.7695 Q583.488 23.1654 579.552 23.1654 Q575.096 23.1654 572.405 25.6827 Q569.743 28.2001 569.338 32.7718 L588.32 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M641.936 31.5855 Q643.817 32.222 645.582 34.3054 Q647.376 36.3887 649.17 40.0345 L655.102 51.84 L648.823 51.84 L643.296 40.7579 Q641.155 36.4176 639.13 34.9998 Q637.133 33.582 633.661 33.582 L627.295 33.582 L627.295 51.84 L621.45 51.84 L621.45 8.64 L634.645 8.64 Q642.052 8.64 645.698 11.736 Q649.344 14.8321 649.344 21.0821 Q649.344 25.1619 647.434 27.8529 Q645.553 30.5438 641.936 31.5855 M627.295 13.4432 L627.295 28.7788 L634.645 28.7788 Q638.869 28.7788 641.01 26.8401 Q643.181 24.8726 643.181 21.0821 Q643.181 17.2916 641.01 15.3819 Q638.869 13.4432 634.645 13.4432 L627.295 13.4432 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M662.625 8.64 L668.47 8.64 L668.47 26.898 L687.856 8.64 L695.379 8.64 L673.938 28.7788 L696.913 51.84 L689.216 51.84 L668.47 31.0357 L668.47 51.84 L662.625 51.84 L662.625 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M718.064 13.7326 L703.308 36.7938 L718.064 36.7938 L718.064 13.7326 M716.531 8.64 L723.88 8.64 L723.88 36.7938 L730.044 36.7938 L730.044 41.6549 L723.88 41.6549 L723.88 51.84 L718.064 51.84 L718.064 41.6549 L698.562 41.6549 L698.562 36.0125 L716.531 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M754.696 19.4328 L760.02 19.4328 L766.675 44.722 L773.301 19.4328 L779.58 19.4328 L786.235 44.722 L792.861 19.4328 L798.185 19.4328 L789.708 51.84 L783.429 51.84 L776.455 25.2776 L769.453 51.84 L763.174 51.84 L754.696 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M806.258 19.4328 L811.582 19.4328 L811.582 51.84 L806.258 51.84 L806.258 19.4328 M806.258 6.81709 L811.582 6.81709 L811.582 13.559 L806.258 13.559 L806.258 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M827.989 10.2314 L827.989 19.4328 L838.955 19.4328 L838.955 23.5705 L827.989 23.5705 L827.989 41.163 Q827.989 45.1271 829.059 46.2555 Q830.159 47.384 833.486 47.384 L838.955 47.384 L838.955 51.84 L833.486 51.84 Q827.323 51.84 824.979 49.5541 Q822.636 47.2393 822.636 41.163 L822.636 23.5705 L818.729 23.5705 L818.729 19.4328 L822.636 19.4328 L822.636 10.2314 L827.989 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M872.896 32.2799 L872.896 51.84 L867.572 51.84 L867.572 32.4535 Q867.572 27.8529 865.778 25.567 Q863.984 23.2811 860.396 23.2811 Q856.084 23.2811 853.596 26.03 Q851.108 28.7788 851.108 33.5241 L851.108 51.84 L845.755 51.84 L845.755 6.81709 L851.108 6.81709 L851.108 24.4675 Q853.017 21.545 855.593 20.0983 Q858.197 18.6515 861.582 18.6515 Q867.167 18.6515 870.031 22.1237 Q872.896 25.567 872.896 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M923.677 24.3517 L923.677 6.81709 L929.001 6.81709 L929.001 51.84 L923.677 51.84 L923.677 46.9789 Q921.998 49.8724 919.423 51.2902 Q916.877 52.6791 913.289 52.6791 Q907.415 52.6791 903.712 47.9916 Q900.037 43.3042 900.037 35.6653 Q900.037 28.0265 903.712 23.339 Q907.415 18.6515 913.289 18.6515 Q916.877 18.6515 919.423 20.0693 Q921.998 21.4582 923.677 24.3517 M905.534 35.6653 Q905.534 41.5391 907.936 44.8956 Q910.367 48.2231 914.591 48.2231 Q918.816 48.2231 921.246 44.8956 Q923.677 41.5391 923.677 35.6653 Q923.677 29.7915 921.246 26.464 Q918.816 23.1075 914.591 23.1075 Q910.367 23.1075 907.936 26.464 Q905.534 29.7915 905.534 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M945.233 10.2314 L945.233 19.4328 L956.2 19.4328 L956.2 23.5705 L945.233 23.5705 L945.233 41.163 Q945.233 45.1271 946.304 46.2555 Q947.403 47.384 950.731 47.384 L956.2 47.384 L956.2 51.84 L950.731 51.84 Q944.568 51.84 942.224 49.5541 Q939.88 47.2393 939.88 41.163 L939.88 23.5705 L935.974 23.5705 L935.974 19.4328 L939.88 19.4328 L939.88 10.2314 L945.233 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M988.433 25.6538 Q990.43 22.0659 993.208 20.3587 Q995.985 18.6515 999.747 18.6515 Q1004.81 18.6515 1007.56 22.2105 Q1010.31 25.7406 1010.31 32.2799 L1010.31 51.84 L1004.96 51.84 L1004.96 32.4535 Q1004.96 27.795 1003.31 25.5381 Q1001.66 23.2811 998.271 23.2811 Q994.134 23.2811 991.732 26.03 Q989.33 28.7788 989.33 33.5241 L989.33 51.84 L983.977 51.84 L983.977 32.4535 Q983.977 27.7661 982.328 25.5381 Q980.679 23.2811 977.235 23.2811 Q973.156 23.2811 970.754 26.0589 Q968.352 28.8077 968.352 33.5241 L968.352 51.84 L962.999 51.84 L962.999 19.4328 L968.352 19.4328 L968.352 24.4675 Q970.175 21.4872 972.722 20.0693 Q975.268 18.6515 978.769 18.6515 Q982.299 18.6515 984.759 20.4455 Q987.247 22.2395 988.433 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1035.66 35.5496 Q1029.2 35.5496 1026.71 37.0253 Q1024.23 38.501 1024.23 42.06 Q1024.23 44.8956 1026.08 46.5738 Q1027.96 48.2231 1031.17 48.2231 Q1035.6 48.2231 1038.26 45.0981 Q1040.95 41.9442 1040.95 36.7359 L1040.95 35.5496 L1035.66 35.5496 M1046.27 33.3505 L1046.27 51.84 L1040.95 51.84 L1040.95 46.921 Q1039.13 49.8724 1036.41 51.2902 Q1033.69 52.6791 1029.75 52.6791 Q1024.78 52.6791 1021.82 49.9014 Q1018.9 47.0947 1018.9 42.4072 Q1018.9 36.9385 1022.55 34.1607 Q1026.22 31.3829 1033.49 31.3829 L1040.95 31.3829 L1040.95 30.8621 Q1040.95 27.1874 1038.52 25.1908 Q1036.12 23.1654 1031.75 23.1654 Q1028.97 23.1654 1026.34 23.8309 Q1023.71 24.4964 1021.27 25.8274 L1021.27 20.9085 Q1024.2 19.78 1026.95 19.2302 Q1029.69 18.6515 1032.3 18.6515 Q1039.33 18.6515 1042.8 22.2973 Q1046.27 25.9431 1046.27 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1084.18 19.4328 L1072.46 35.2024 L1084.79 51.84 L1078.51 51.84 L1069.08 39.1086 L1059.64 51.84 L1053.36 51.84 L1065.95 34.8841 L1054.43 19.4328 L1060.71 19.4328 L1069.31 30.9778 L1077.9 19.4328 L1084.18 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1111.84 24.9304 L1148.94 24.9304 L1148.94 29.7915 L1111.84 29.7915 L1111.84 24.9304 M1111.84 36.7359 L1148.94 36.7359 L1148.94 41.6549 L1111.84 41.6549 L1111.84 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1192.89 12.4884 Q1188.37 12.4884 1186.09 16.9444 Q1183.83 21.3714 1183.83 30.2834 Q1183.83 39.1665 1186.09 43.6225 Q1188.37 48.0495 1192.89 48.0495 Q1197.43 48.0495 1199.69 43.6225 Q1201.97 39.1665 1201.97 30.2834 Q1201.97 21.3714 1199.69 16.9444 Q1197.43 12.4884 1192.89 12.4884 M1192.89 7.85875 Q1200.15 7.85875 1203.97 13.6168 Q1207.82 19.346 1207.82 30.2834 Q1207.82 41.1919 1203.97 46.95 Q1200.15 52.6791 1192.89 52.6791 Q1185.63 52.6791 1181.78 46.95 Q1177.96 41.1919 1177.96 30.2834 Q1177.96 19.346 1181.78 13.6168 Q1185.63 7.85875 1192.89 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1218.09 44.4905 L1224.2 44.4905 L1224.2 51.84 L1218.09 51.84 L1218.09 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1249.43 12.4884 Q1244.91 12.4884 1242.63 16.9444 Q1240.37 21.3714 1240.37 30.2834 Q1240.37 39.1665 1242.63 43.6225 Q1244.91 48.0495 1249.43 48.0495 Q1253.97 48.0495 1256.23 43.6225 Q1258.51 39.1665 1258.51 30.2834 Q1258.51 21.3714 1256.23 16.9444 Q1253.97 12.4884 1249.43 12.4884 M1249.43 7.85875 Q1256.69 7.85875 1260.51 13.6168 Q1264.36 19.346 1264.36 30.2834 Q1264.36 41.1919 1260.51 46.95 Q1256.69 52.6791 1249.43 52.6791 Q1242.16 52.6791 1238.32 46.95 Q1234.5 41.1919 1234.5 30.2834 Q1234.5 19.346 1238.32 13.6168 Q1242.16 7.85875 1249.43 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1274.69 8.64 L1297.63 8.64 L1297.63 13.559 L1280.04 13.559 L1280.04 24.1492 Q1281.31 23.7152 1282.59 23.5126 Q1283.86 23.2811 1285.13 23.2811 Q1292.37 23.2811 1296.59 27.2452 Q1300.82 31.2093 1300.82 37.9801 Q1300.82 44.9535 1296.48 48.8308 Q1292.14 52.6791 1284.24 52.6791 Q1281.52 52.6791 1278.68 52.2162 Q1275.87 51.7532 1272.86 50.8273 L1272.86 44.9535 Q1275.47 46.3713 1278.25 47.0657 Q1281.02 47.7602 1284.12 47.7602 Q1289.13 47.7602 1292.05 45.1271 Q1294.97 42.494 1294.97 37.9801 Q1294.97 33.4663 1292.05 30.8332 Q1289.13 28.2001 1284.12 28.2001 Q1281.78 28.2001 1279.43 28.7209 Q1277.12 29.2417 1274.69 30.3413 L1274.69 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip852)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 194.767,597.088 197.273,567.816 199.778,539.54 202.283,513.095 204.788,489.056 207.293,467.714 209.798,449.118 212.303,433.145 214.808,419.573 217.313,408.13 \n 219.819,398.541 222.324,390.54 224.829,383.889 227.334,378.377 229.839,373.825 232.344,370.08 234.849,367.014 237.354,364.522 239.859,362.516 242.364,360.928 \n 244.87,359.702 247.375,358.793 249.88,358.171 252.385,357.813 254.89,357.707 257.395,357.849 259.9,358.245 262.405,358.907 264.91,359.859 267.416,361.135 \n 269.921,362.78 272.426,364.852 274.931,367.422 277.436,370.579 279.941,374.433 282.446,379.115 284.951,384.78 287.456,391.614 289.962,399.83 292.467,409.672 \n 294.972,421.407 297.477,435.312 299.982,451.654 302.487,470.645 304.992,492.387 307.497,516.801 310.002,543.554 312.507,572.032 315.013,601.367 317.518,630.554 \n 320.023,658.61 322.528,684.734 325.033,708.392 327.538,729.334 330.043,747.538 332.548,763.146 335.053,776.391 337.559,787.547 340.064,796.89 342.569,804.68 \n 345.074,811.153 347.579,816.515 350.084,820.941 352.589,824.58 355.094,827.556 357.599,829.972 360.105,831.912 362.61,833.444 365.115,834.622 367.62,835.487 \n 370.125,836.069 372.63,836.388 375.135,836.457 377.64,836.278 380.145,835.844 382.65,835.139 385.156,834.14 387.661,832.811 390.166,831.105 392.671,828.963 \n 395.176,826.31 397.681,823.053 400.186,819.082 402.691,814.261 405.196,808.429 407.702,801.398 410.207,792.95 412.712,782.836 415.217,770.787 417.722,756.525 \n 420.227,739.79 422.732,720.381 425.237,698.219 427.742,673.419 430.248,646.355 432.753,617.684 435.258,588.305 437.763,559.231 440.268,531.425 442.773,505.651 \n 445.278,482.399 447.783,461.88 450.288,444.085 452.793,428.856 455.299,415.948 457.804,405.088 460.309,395.999 462.814,388.425 465.319,382.134 467.824,376.927 \n 470.329,372.631 472.834,369.101 475.339,366.217 477.845,363.879 480.35,362.005 482.855,360.531 485.36,359.404 487.865,358.585 490.37,358.045 492.875,357.765 \n 495.38,357.735 497.885,357.954 500.39,358.429 502.896,359.178 505.401,360.227 507.906,361.613 510.411,363.385 512.916,365.603 515.421,368.347 517.926,371.71 \n 520.431,375.808 522.936,380.78 525.442,386.791 527.947,394.034 530.452,402.733 532.957,413.139 535.462,425.524 537.967,440.167 540.472,457.321 542.977,477.172 \n 545.482,499.772 547.988,524.968 550.493,552.342 552.998,581.192 555.503,610.591 558.008,639.523 560.513,667.047 563.018,692.441 565.523,715.262 568.028,735.337 \n 570.533,752.705 573.039,767.544 575.544,780.103 578.049,790.661 580.554,799.489 583.059,806.842 585.564,812.946 588.069,817.996 590.574,822.159 593.079,825.578 \n 595.585,828.368 598.09,830.626 600.595,832.431 603.1,833.846 605.605,834.92 608.11,835.692 610.615,836.189 613.12,836.427 615.625,836.417 618.131,836.156 \n 620.636,835.636 623.141,834.839 625.646,833.737 628.151,832.29 630.656,830.449 633.161,828.148 635.666,825.307 638.171,821.829 640.676,817.594 643.182,812.46 \n 645.687,806.256 648.192,798.784 650.697,789.816 653.202,779.096 655.707,766.349 658.212,751.3 660.717,733.702 663.222,713.388 665.728,690.333 668.233,664.732 \n 670.738,637.053 673.243,608.042 675.748,578.65 678.253,549.895 680.758,522.686 683.263,497.702 685.768,475.339 688.274,455.727 690.779,438.8 693.284,424.364 \n 695.789,412.161 698.294,401.914 700.799,393.351 703.304,386.224 705.809,380.311 708.314,375.421 710.819,371.392 713.325,368.088 715.83,365.394 718.335,363.217 \n 720.84,361.482 723.345,360.128 725.85,359.107 728.355,358.384 730.86,357.933 733.365,357.737 735.871,357.791 738.376,358.095 740.881,358.662 743.386,359.509 \n 745.891,360.669 748.396,362.181 750.901,364.098 753.406,366.487 755.911,369.432 758.416,373.034 760.922,377.416 763.427,382.726 765.932,389.138 768.437,396.855 \n 770.942,406.113 773.447,417.169 775.952,430.302 778.457,445.784 780.962,463.851 783.468,484.652 785.973,508.176 788.478,534.185 790.983,562.16 793.488,591.311 \n 795.993,620.664 798.498,649.208 801.003,676.066 803.508,700.608 806.014,722.49 808.519,741.62 811.024,758.092 813.529,772.114 816.034,783.952 818.539,793.884 \n 821.044,802.176 823.549,809.075 826.054,814.794 828.559,819.521 831.065,823.413 833.57,826.602 836.075,829.199 838.58,831.292 841.085,832.956 843.59,834.247 \n 846.095,835.213 848.6,835.886 851.105,836.291 853.611,836.442 856.116,836.343 858.621,835.992 861.126,835.377 863.631,834.475 866.136,833.254 868.641,831.673 \n 871.146,829.674 873.651,827.19 876.157,824.133 878.662,820.397 881.167,815.857 883.672,810.359 886.177,803.723 888.682,795.741 891.187,786.173 893.692,774.756 \n 896.197,761.212 898.702,745.271 901.208,726.708 903.713,705.4 906.218,681.394 908.723,654.976 911.228,626.719 913.733,597.454 916.238,568.176 918.743,539.883 \n 921.248,513.411 923.754,489.34 926.259,467.964 928.764,449.334 931.269,433.33 933.774,419.73 936.279,408.263 938.784,398.653 941.289,390.634 943.794,383.968 \n 946.3,378.443 948.805,373.881 951.31,370.128 953.815,367.055 956.32,364.558 958.825,362.549 961.33,360.958 963.835,359.729 966.34,358.82 968.845,358.198 \n 971.351,357.842 973.856,357.738 976.361,357.883 978.866,358.283 981.371,358.951 983.876,359.911 986.381,361.196 988.886,362.853 991.391,364.938 993.897,367.524 \n 996.402,370.702 998.907,374.581 1001.41,379.292 1003.92,384.993 1006.42,391.869 1008.93,400.136 1011.43,410.037 1013.94,421.839 1016.44,435.822 1018.95,452.25 \n 1021.45,471.332 1023.96,493.167 1026.46,517.665 1028.97,544.488 1031.47,573.01 1033.98,602.357 1036.48,631.52 1038.99,659.523 1041.49,685.571 1044,709.14 \n 1046.5,729.988 1049.01,748.102 1051.51,763.626 1054.02,776.797 1056.52,787.887 1059.03,797.173 1061.53,804.915 1064.04,811.347 1066.54,816.674 1069.05,821.07 \n 1071.55,824.684 1074.06,827.638 1076.57,830.036 1079.07,831.96 1081.58,833.477 1084.08,834.641 1086.59,835.492 1089.09,836.061 1091.6,836.368 1094.1,836.423 \n 1096.61,836.229 1099.11,835.778 1101.62,835.055 1104.12,834.033 1106.63,832.678 1109.13,830.942 1111.64,828.764 1114.14,826.067 1116.65,822.759 1119.15,818.726 \n 1121.66,813.832 1124.16,807.913 1126.67,800.778 1129.17,792.206 1131.68,781.949 1134.18,769.735 1136.69,755.285 1139.19,738.343 1141.7,718.716 1144.2,696.336 \n 1146.71,671.339 1149.21,644.12 1151.72,615.358 1154.22,585.965 1156.73,556.959 1159.23,529.29 1161.74,503.703 1164.24,480.664 1166.75,460.366 1169.25,442.783 \n 1171.76,427.748 1174.26,415.014 1176.77,404.305 1179.27,395.347 1181.78,387.883 1184.28,381.686 1186.79,376.558 1189.29,372.329 1191.8,368.855 1194.31,366.019 \n 1196.81,363.722 1199.32,361.885 1201.82,360.442 1204.33,359.344 1206.83,358.551 1209.34,358.036 1211.84,357.781 1214.35,357.776 1216.85,358.022 1219.36,358.527 \n 1221.86,359.309 1224.37,360.395 1226.87,361.824 1229.38,363.646 1231.88,365.925 1234.39,368.739 1236.89,372.187 1239.4,376.386 1241.9,381.478 1244.41,387.631 \n 1246.91,395.044 1249.42,403.943 1251.92,414.582 1254.43,427.235 1256.93,442.18 1259.44,459.665 1261.94,479.861 1264.45,502.8 1266.95,528.299 1269.46,555.902 \n 1271.96,584.875 1274.47,614.271 1276.97,643.073 1279.48,670.364 1281.98,695.453 1284.49,717.933 1286.99,737.662 1289.5,754.701 1292,769.239 1294.51,781.531 \n 1297.01,791.856 1299.52,800.486 1302.02,807.669 1304.53,813.63 1307.03,818.559 1309.54,822.621 1312.05,825.954 1314.55,828.671 1317.06,830.866 1319.56,832.617 \n 1322.07,833.985 1324.57,835.017 1327.08,835.749 1329.58,836.209 1332.09,836.411 1334.59,836.363 1337.1,836.064 1339.6,835.502 1342.11,834.658 1344.61,833.502 \n 1347.12,831.994 1349.62,830.08 1352.13,827.694 1354.63,824.753 1357.14,821.155 1359.64,816.778 1362.15,811.474 1364.65,805.068 1367.16,797.357 1369.66,788.108 \n 1372.17,777.06 1374.67,763.938 1377.18,748.469 1379.68,730.414 1382.19,709.626 1384.69,686.114 1387.2,660.117 1389.7,632.149 1392.21,603.001 1394.71,573.648 \n 1397.22,545.098 1399.72,518.23 1402.23,493.676 1404.73,471.782 1407.24,452.64 1409.74,436.156 1412.25,422.122 1414.75,410.275 1417.26,400.336 1419.76,392.037 \n 1422.27,385.133 1424.77,379.409 1427.28,374.678 1429.79,370.783 1432.29,367.592 1434.8,364.994 1437.3,362.9 1439.81,361.236 1442.31,359.945 1444.82,358.98 \n 1447.32,358.308 \n \"/>\n<polyline clip-path=\"url(#clip852)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 194.767,597.088 197.273,567.816 199.778,539.54 202.283,513.095 204.788,489.056 207.293,467.714 209.798,449.117 212.303,433.145 214.808,419.572 217.313,408.13 \n 219.819,398.541 222.324,390.54 224.829,383.889 227.334,378.377 229.839,373.825 232.344,370.08 234.849,367.014 237.354,364.522 239.859,362.517 242.364,360.929 \n 244.87,359.702 247.375,358.794 249.88,358.172 252.385,357.814 254.89,357.709 257.395,357.851 259.9,358.246 262.405,358.909 264.91,359.862 267.416,361.139 \n 269.921,362.784 272.426,364.857 274.931,367.427 277.436,370.586 279.941,374.442 282.446,379.125 284.951,384.793 287.456,391.629 289.962,399.848 292.467,409.694 \n 294.972,421.432 297.477,435.342 299.982,451.689 302.487,470.685 304.992,492.433 307.497,516.852 310.002,543.609 312.507,572.09 315.013,601.426 317.518,630.612 \n 320.023,658.665 322.528,684.784 325.033,708.438 327.538,729.373 330.043,747.572 332.548,763.175 335.053,776.416 337.559,787.568 340.064,796.907 342.569,804.695 \n 345.074,811.166 347.579,816.525 350.084,820.95 352.589,824.587 355.094,827.562 357.599,829.978 360.105,831.917 362.61,833.449 365.115,834.626 367.62,835.49 \n 370.125,836.072 372.63,836.392 375.135,836.461 377.64,836.282 380.145,835.848 382.65,835.145 385.156,834.146 387.661,832.818 390.166,831.114 392.671,828.973 \n 395.176,826.322 397.681,823.067 400.186,819.099 402.691,814.281 405.196,808.453 407.702,801.427 410.207,792.984 412.712,782.877 415.217,770.836 417.722,756.583 \n 420.227,739.857 422.732,720.458 425.237,698.306 427.742,673.515 430.248,646.458 432.753,617.792 435.258,588.413 437.763,559.336 440.268,531.523 442.773,505.741 \n 445.278,482.478 447.783,461.95 450.288,444.145 452.793,428.906 455.299,415.991 457.804,405.123 460.309,396.029 462.814,388.449 465.319,382.154 467.824,376.943 \n 470.329,372.643 472.834,369.111 475.339,366.224 477.845,363.884 480.35,362.008 482.855,360.532 485.36,359.403 487.865,358.582 490.37,358.04 492.875,357.757 \n 495.38,357.725 497.885,357.941 500.39,358.413 502.896,359.158 505.401,360.203 507.906,361.583 510.411,363.348 512.916,365.559 515.421,368.293 517.926,371.645 \n 520.431,375.73 522.936,380.686 525.442,386.677 527.947,393.898 530.452,402.57 532.957,412.945 535.462,425.294 537.967,439.896 540.472,457.006 542.977,476.809 \n 545.482,499.363 547.988,524.518 550.493,551.86 552.998,580.692 555.503,610.091 558.008,639.039 560.513,666.594 563.018,692.029 565.523,714.896 568.028,735.018 \n 570.533,752.432 573.039,767.312 575.544,779.908 578.049,790.497 580.554,799.353 583.059,806.729 585.564,812.853 588.069,817.92 590.574,822.098 593.079,825.528 \n 595.585,828.328 598.09,830.596 600.595,832.408 603.1,833.831 605.605,834.912 608.11,835.69 610.615,836.193 613.12,836.438 615.625,836.434 618.131,836.181 \n 620.636,835.67 623.141,834.882 625.646,833.791 628.151,832.357 630.656,830.531 633.161,828.248 635.666,825.43 638.171,821.977 640.676,817.774 643.182,812.676 \n 645.687,806.516 648.192,799.096 650.697,790.19 653.202,779.541 655.707,766.877 658.212,751.92 660.717,734.423 663.222,714.214 665.728,691.262 668.233,665.751 \n 670.738,638.139 673.243,609.162 675.748,579.765 678.253,550.967 680.758,523.685 683.263,498.607 685.768,476.14 688.274,456.423 690.779,439.397 693.284,424.87 \n 695.789,412.587 698.294,402.27 700.799,393.648 703.304,386.47 705.809,380.514 708.314,375.588 710.819,371.528 713.325,368.197 715.83,365.481 718.335,363.286 \n 720.84,361.534 723.345,360.165 725.85,359.13 728.355,358.394 730.86,357.93 733.365,357.722 735.871,357.762 738.376,358.053 740.881,358.603 743.386,359.434 \n 745.891,360.573 748.396,362.061 750.901,363.95 753.406,366.306 755.911,369.212 758.416,372.767 760.922,377.093 763.427,382.336 765.932,388.668 768.437,396.292 \n 770.942,405.439 773.447,416.367 775.952,429.352 778.457,444.669 780.962,462.557 783.468,483.173 785.973,506.52 788.478,532.376 790.983,560.242 793.488,589.344 \n 795.993,618.716 798.498,647.344 801.003,674.338 803.508,699.049 806.014,721.114 808.519,740.427 811.024,757.071 813.529,771.25 816.034,783.225 818.539,793.276 \n 821.044,801.67 823.549,808.655 826.054,814.448 828.559,819.237 831.065,823.181 833.57,826.414 836.075,829.048 838.58,831.174 841.085,832.866 843.59,834.183 \n 846.095,835.171 848.6,835.866 851.105,836.292 853.611,836.463 856.116,836.386 858.621,836.058 861.126,835.468 863.631,834.594 866.136,833.406 868.641,831.862 \n 871.146,829.909 873.651,827.477 876.157,824.483 878.662,820.822 881.167,816.371 883.672,810.979 886.177,804.47 888.682,796.637 891.187,787.244 893.692,776.03 \n 896.197,762.719 898.702,747.037 901.208,728.753 903.713,707.73 906.218,683.993 908.723,657.803 911.228,629.7 913.733,600.495 916.238,571.17 918.743,542.732 \n 921.248,516.04 923.754,491.703 926.259,470.042 928.764,451.132 931.269,434.866 933.774,421.029 936.279,409.354 938.784,399.565 941.289,391.393 943.794,384.596 \n 946.3,378.963 948.805,374.308 951.31,370.476 953.815,367.337 956.32,364.784 958.825,362.726 961.33,361.093 963.835,359.827 966.34,358.884 968.845,358.23 \n 971.351,357.843 973.856,357.708 976.361,357.822 978.866,358.187 981.371,358.818 983.876,359.736 986.381,360.973 988.886,362.573 991.391,364.593 993.897,367.102 \n 996.402,370.187 998.907,373.956 1001.41,378.536 1003.92,384.081 1006.42,390.771 1008.93,398.819 1011.43,408.463 1013.94,419.968 1016.44,433.613 1018.95,449.665 \n 1021.45,468.347 1023.96,489.776 1026.46,513.897 1028.97,540.411 1031.47,568.732 1033.98,598.02 1036.48,627.275 1038.99,655.505 1041.49,681.881 1044,705.837 \n 1046.5,727.092 1049.01,745.603 1051.51,761.495 1054.02,774.996 1056.52,786.375 1059.03,795.911 1061.53,803.865 1064.04,810.478 1066.54,815.956 1069.05,820.481 \n 1071.55,824.202 1074.06,827.248 1076.57,829.724 1079.07,831.715 1081.58,833.291 1084.08,834.507 1086.59,835.405 1089.09,836.019 1091.6,836.368 1094.1,836.466 \n 1096.61,836.316 1099.11,835.912 1101.62,835.241 1104.12,834.278 1106.63,832.99 1109.13,831.332 1111.64,829.245 1114.14,826.657 1116.65,823.478 1119.15,819.599 \n 1121.66,814.887 1124.16,809.185 1126.67,802.308 1129.17,794.041 1131.68,784.14 1134.18,772.337 1136.69,758.354 1139.19,741.926 1141.7,722.844 1144.2,701.009 \n 1146.71,676.51 1149.21,649.687 1151.72,621.164 1154.22,591.817 1156.73,562.653 1159.23,534.65 1161.74,508.602 1164.24,485.032 1166.75,464.184 1169.25,446.07 \n 1171.76,430.546 1174.26,417.375 1176.77,406.285 1179.27,396.999 1181.78,389.256 1184.28,382.824 1186.79,377.496 1189.29,373.099 1191.8,369.484 1194.31,366.528 \n 1196.81,364.129 1199.32,362.203 1201.82,360.684 1204.33,359.517 1206.83,358.662 1209.34,358.089 1211.84,357.777 1214.35,357.716 1216.85,357.903 1219.36,358.345 \n 1221.86,359.057 1224.37,360.066 1226.87,361.405 1229.38,363.122 1231.88,365.278 1234.39,367.947 1236.89,371.222 1239.4,375.215 1241.9,380.062 1244.41,385.925 \n 1246.91,392.992 1249.42,401.484 1251.92,411.648 1254.43,423.755 1256.93,438.083 1259.44,454.891 1261.94,474.376 1264.45,496.615 1266.95,521.484 1269.46,548.604 \n 1271.96,577.308 1274.47,606.692 1276.97,635.744 1279.48,663.503 1281.98,689.211 1284.49,712.389 1286.99,732.83 1289.5,750.55 1292,765.712 1294.51,778.558 \n 1297.01,789.365 1299.52,798.408 1302.02,805.944 1304.53,812.202 1307.03,817.382 1309.54,821.655 1312.05,825.165 1314.55,828.033 1317.06,830.358 1319.56,832.22 \n 1322.07,833.684 1324.57,834.803 1327.08,835.615 1329.58,836.148 1332.09,836.423 1334.59,836.448 1337.1,836.224 1339.6,835.743 1342.11,834.989 1344.61,833.934 \n 1347.12,832.542 1349.62,830.764 1352.13,828.538 1354.63,825.786 1357.14,822.413 1359.64,818.303 1362.15,813.317 1364.65,807.289 1367.16,800.027 1369.66,791.304 \n 1372.17,780.871 1374.67,768.455 1377.18,753.777 1379.68,736.585 1382.19,716.694 1384.69,694.054 1387.2,668.822 1389.7,641.421 1392.21,612.556 1394.71,583.156 \n 1397.22,554.238 1399.72,526.74 1402.23,501.381 1404.73,478.6 1407.24,458.565 1409.74,441.235 1412.25,426.431 1414.75,413.903 1417.26,403.373 1419.76,394.567 \n 1422.27,387.234 1424.77,381.147 1427.28,376.111 1429.79,371.958 1432.29,368.549 1434.8,365.767 1437.3,363.516 1439.81,361.716 1442.31,360.305 1444.82,359.234 \n 1447.32,358.465 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"\nM1065.48 296.183 L1440.64 296.183 L1440.64 114.743 L1065.48 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1065.48,296.183 1440.64,296.183 1440.64,114.743 1065.48,114.743 1065.48,296.183 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1080.23,175.223 1168.75,175.223 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M1205.21 176.855 L1205.21 192.503 L1200.95 192.503 L1200.95 176.993 Q1200.95 173.313 1199.52 171.484 Q1198.08 169.656 1195.21 169.656 Q1191.76 169.656 1189.77 171.855 Q1187.78 174.054 1187.78 177.85 L1187.78 192.503 L1183.5 192.503 L1183.5 166.577 L1187.78 166.577 L1187.78 170.605 Q1189.31 168.267 1191.37 167.109 Q1193.45 165.952 1196.16 165.952 Q1200.63 165.952 1202.92 168.73 Q1205.21 171.484 1205.21 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1213.27 182.271 L1213.27 166.577 L1217.53 166.577 L1217.53 182.109 Q1217.53 185.79 1218.96 187.642 Q1220.4 189.47 1223.27 189.47 Q1226.72 189.47 1228.71 187.271 Q1230.72 185.072 1230.72 181.276 L1230.72 166.577 L1234.98 166.577 L1234.98 192.503 L1230.72 192.503 L1230.72 188.521 Q1229.17 190.882 1227.11 192.04 Q1225.07 193.174 1222.36 193.174 Q1217.9 193.174 1215.58 190.396 Q1213.27 187.618 1213.27 182.271 M1223.98 165.952 L1223.98 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1263.94 171.554 Q1265.53 168.683 1267.76 167.318 Q1269.98 165.952 1272.99 165.952 Q1277.04 165.952 1279.24 168.799 Q1281.44 171.623 1281.44 176.855 L1281.44 192.503 L1277.16 192.503 L1277.16 176.993 Q1277.16 173.267 1275.84 171.461 Q1274.52 169.656 1271.81 169.656 Q1268.5 169.656 1266.58 171.855 Q1264.66 174.054 1264.66 177.85 L1264.66 192.503 L1260.37 192.503 L1260.37 176.993 Q1260.37 173.243 1259.05 171.461 Q1257.73 169.656 1254.98 169.656 Q1251.72 169.656 1249.79 171.878 Q1247.87 174.077 1247.87 177.85 L1247.87 192.503 L1243.59 192.503 L1243.59 166.577 L1247.87 166.577 L1247.87 170.605 Q1249.33 168.22 1251.37 167.086 Q1253.41 165.952 1256.21 165.952 Q1259.03 165.952 1261 167.387 Q1262.99 168.822 1263.94 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1312.11 178.475 L1312.11 180.558 L1292.53 180.558 Q1292.8 184.956 1295.16 187.271 Q1297.55 189.563 1301.78 189.563 Q1304.24 189.563 1306.53 188.961 Q1308.84 188.359 1311.11 187.155 L1311.11 191.183 Q1308.82 192.155 1306.41 192.665 Q1304.01 193.174 1301.53 193.174 Q1295.33 193.174 1291.69 189.563 Q1288.08 185.952 1288.08 179.794 Q1288.08 173.429 1291.51 169.702 Q1294.96 165.952 1300.79 165.952 Q1306.02 165.952 1309.05 169.331 Q1312.11 172.688 1312.11 178.475 M1307.85 177.225 Q1307.8 173.73 1305.88 171.646 Q1303.98 169.563 1300.84 169.563 Q1297.27 169.563 1295.12 171.577 Q1292.99 173.591 1292.66 177.248 L1307.85 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1334.12 170.558 Q1333.4 170.142 1332.55 169.956 Q1331.72 169.748 1330.7 169.748 Q1327.09 169.748 1325.14 172.109 Q1323.22 174.447 1323.22 178.845 L1323.22 192.503 L1318.94 192.503 L1318.94 166.577 L1323.22 166.577 L1323.22 170.605 Q1324.56 168.244 1326.72 167.109 Q1328.87 165.952 1331.95 165.952 Q1332.39 165.952 1332.92 166.021 Q1333.45 166.068 1334.1 166.183 L1334.12 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1338.59 166.577 L1342.85 166.577 L1342.85 192.503 L1338.59 192.503 L1338.59 166.577 M1338.59 156.484 L1342.85 156.484 L1342.85 161.878 L1338.59 161.878 L1338.59 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1370.42 167.572 L1370.42 171.554 Q1368.61 170.558 1366.78 170.072 Q1364.98 169.563 1363.13 169.563 Q1358.98 169.563 1356.69 172.202 Q1354.4 174.818 1354.4 179.563 Q1354.4 184.308 1356.69 186.947 Q1358.98 189.563 1363.13 189.563 Q1364.98 189.563 1366.78 189.077 Q1368.61 188.567 1370.42 187.572 L1370.42 191.507 Q1368.64 192.341 1366.71 192.757 Q1364.82 193.174 1362.66 193.174 Q1356.81 193.174 1353.36 189.493 Q1349.91 185.813 1349.91 179.563 Q1349.91 173.22 1353.38 169.586 Q1356.88 165.952 1362.94 165.952 Q1364.91 165.952 1366.78 166.369 Q1368.66 166.762 1370.42 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1389.61 179.47 Q1384.45 179.47 1382.46 180.651 Q1380.46 181.831 1380.46 184.679 Q1380.46 186.947 1381.95 188.29 Q1383.45 189.609 1386.02 189.609 Q1389.56 189.609 1391.69 187.109 Q1393.84 184.586 1393.84 180.419 L1393.84 179.47 L1389.61 179.47 M1398.1 177.711 L1398.1 192.503 L1393.84 192.503 L1393.84 188.567 Q1392.39 190.929 1390.21 192.063 Q1388.03 193.174 1384.89 193.174 Q1380.9 193.174 1378.54 190.952 Q1376.21 188.706 1376.21 184.956 Q1376.21 180.581 1379.12 178.359 Q1382.06 176.137 1387.87 176.137 L1393.84 176.137 L1393.84 175.72 Q1393.84 172.781 1391.9 171.183 Q1389.98 169.563 1386.48 169.563 Q1384.26 169.563 1382.15 170.095 Q1380.05 170.628 1378.1 171.693 L1378.1 167.757 Q1380.44 166.855 1382.64 166.415 Q1384.84 165.952 1386.92 165.952 Q1392.55 165.952 1395.33 168.869 Q1398.1 171.785 1398.1 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1406.88 156.484 L1411.14 156.484 L1411.14 192.503 L1406.88 192.503 L1406.88 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip850)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1080.23,235.703 1168.75,235.703 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M1207.53 238.955 L1207.53 241.038 L1187.94 241.038 Q1188.22 245.436 1190.58 247.751 Q1192.97 250.043 1197.2 250.043 Q1199.66 250.043 1201.95 249.441 Q1204.26 248.839 1206.53 247.635 L1206.53 251.663 Q1204.24 252.635 1201.83 253.145 Q1199.42 253.654 1196.95 253.654 Q1190.74 253.654 1187.11 250.043 Q1183.5 246.432 1183.5 240.274 Q1183.5 233.909 1186.92 230.182 Q1190.37 226.432 1196.21 226.432 Q1201.44 226.432 1204.47 229.811 Q1207.53 233.168 1207.53 238.955 M1203.27 237.705 Q1203.22 234.21 1201.3 232.126 Q1199.4 230.043 1196.25 230.043 Q1192.69 230.043 1190.54 232.057 Q1188.41 234.071 1188.08 237.728 L1203.27 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1235.23 227.057 L1225.86 239.673 L1235.72 252.983 L1230.7 252.983 L1223.15 242.798 L1215.6 252.983 L1210.58 252.983 L1220.65 239.418 L1211.44 227.057 L1216.46 227.057 L1223.34 236.293 L1230.21 227.057 L1235.23 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1253.52 239.95 Q1248.36 239.95 1246.37 241.131 Q1244.38 242.311 1244.38 245.159 Q1244.38 247.427 1245.86 248.77 Q1247.36 250.089 1249.93 250.089 Q1253.47 250.089 1255.6 247.589 Q1257.76 245.066 1257.76 240.899 L1257.76 239.95 L1253.52 239.95 M1262.02 238.191 L1262.02 252.983 L1257.76 252.983 L1257.76 249.047 Q1256.3 251.409 1254.12 252.543 Q1251.95 253.654 1248.8 253.654 Q1244.82 253.654 1242.46 251.432 Q1240.12 249.186 1240.12 245.436 Q1240.12 241.061 1243.04 238.839 Q1245.97 236.617 1251.78 236.617 L1257.76 236.617 L1257.76 236.2 Q1257.76 233.261 1255.81 231.663 Q1253.89 230.043 1250.4 230.043 Q1248.17 230.043 1246.07 230.575 Q1243.96 231.108 1242.02 232.173 L1242.02 228.237 Q1244.35 227.335 1246.55 226.895 Q1248.75 226.432 1250.84 226.432 Q1256.46 226.432 1259.24 229.349 Q1262.02 232.265 1262.02 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1289.45 228.052 L1289.45 232.034 Q1287.64 231.038 1285.81 230.552 Q1284.01 230.043 1282.16 230.043 Q1278.01 230.043 1275.72 232.682 Q1273.43 235.298 1273.43 240.043 Q1273.43 244.788 1275.72 247.427 Q1278.01 250.043 1282.16 250.043 Q1284.01 250.043 1285.81 249.557 Q1287.64 249.047 1289.45 248.052 L1289.45 251.987 Q1287.66 252.821 1285.74 253.237 Q1283.85 253.654 1281.69 253.654 Q1275.84 253.654 1272.39 249.973 Q1268.94 246.293 1268.94 240.043 Q1268.94 233.7 1272.41 230.066 Q1275.91 226.432 1281.97 226.432 Q1283.94 226.432 1285.81 226.849 Q1287.69 227.242 1289.45 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1301.07 219.696 L1301.07 227.057 L1309.84 227.057 L1309.84 230.367 L1301.07 230.367 L1301.07 244.441 Q1301.07 247.612 1301.92 248.515 Q1302.8 249.418 1305.47 249.418 L1309.84 249.418 L1309.84 252.983 L1305.47 252.983 Q1300.53 252.983 1298.66 251.154 Q1296.78 249.302 1296.78 244.441 L1296.78 230.367 L1293.66 230.367 L1293.66 227.057 L1296.78 227.057 L1296.78 219.696 L1301.07 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"\nM1825.05 910.808 L3152.76 910.808 L3152.76 87.2921 L1825.05 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip853\">\n <rect x=\"1825\" y=\"87\" width=\"1329\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1862.63,910.808 1862.63,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1946.13,910.808 1946.13,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2029.63,910.808 2029.63,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2113.14,910.808 2113.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2196.64,910.808 2196.64,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2280.14,910.808 2280.14,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2363.65,910.808 2363.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2447.15,910.808 2447.15,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2530.65,910.808 2530.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2614.16,910.808 2614.16,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2697.66,910.808 2697.66,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2781.17,910.808 2781.17,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2864.67,910.808 2864.67,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2948.17,910.808 2948.17,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3031.68,910.808 3031.68,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3115.18,910.808 3115.18,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1862.63,910.808 1862.63,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1946.13,910.808 1946.13,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2029.63,910.808 2029.63,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2113.14,910.808 2113.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2196.64,910.808 2196.64,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2280.14,910.808 2280.14,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2363.65,910.808 2363.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2447.15,910.808 2447.15,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2530.65,910.808 2530.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2614.16,910.808 2614.16,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2697.66,910.808 2697.66,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2781.17,910.808 2781.17,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2864.67,910.808 2864.67,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2948.17,910.808 2948.17,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3031.68,910.808 3031.68,900.926 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3115.18,910.808 3115.18,900.926 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M1862.63 946.399 Q1859.01 946.399 1857.19 949.963 Q1855.38 953.505 1855.38 960.635 Q1855.38 967.741 1857.19 971.306 Q1859.01 974.847 1862.63 974.847 Q1866.26 974.847 1868.07 971.306 Q1869.89 967.741 1869.89 960.635 Q1869.89 953.505 1868.07 949.963 Q1866.26 946.399 1862.63 946.399 M1862.63 942.695 Q1868.44 942.695 1871.49 947.301 Q1874.57 951.885 1874.57 960.635 Q1874.57 969.361 1871.49 973.968 Q1868.44 978.551 1862.63 978.551 Q1856.82 978.551 1853.74 973.968 Q1850.68 969.361 1850.68 960.635 Q1850.68 951.885 1853.74 947.301 Q1856.82 942.695 1862.63 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1940.78 973.945 L1957.1 973.945 L1957.1 977.88 L1935.16 977.88 L1935.16 973.945 Q1937.82 971.19 1942.4 966.56 Q1947.01 961.908 1948.19 960.565 Q1950.43 958.042 1951.31 956.306 Q1952.22 954.547 1952.22 952.857 Q1952.22 950.102 1950.27 948.366 Q1948.35 946.63 1945.25 946.63 Q1943.05 946.63 1940.6 947.394 Q1938.17 948.158 1935.39 949.709 L1935.39 944.987 Q1938.21 943.852 1940.67 943.274 Q1943.12 942.695 1945.16 942.695 Q1950.53 942.695 1953.72 945.38 Q1956.92 948.065 1956.92 952.556 Q1956.92 954.686 1956.11 956.607 Q1955.32 958.505 1953.21 961.098 Q1952.63 961.769 1949.53 964.986 Q1946.43 968.181 1940.78 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2032.64 947.394 L2020.84 965.843 L2032.64 965.843 L2032.64 947.394 M2031.42 943.32 L2037.3 943.32 L2037.3 965.843 L2042.23 965.843 L2042.23 969.732 L2037.3 969.732 L2037.3 977.88 L2032.64 977.88 L2032.64 969.732 L2017.04 969.732 L2017.04 965.218 L2031.42 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2113.54 958.736 Q2110.39 958.736 2108.54 960.889 Q2106.71 963.042 2106.71 966.792 Q2106.71 970.519 2108.54 972.695 Q2110.39 974.847 2113.54 974.847 Q2116.69 974.847 2118.52 972.695 Q2120.37 970.519 2120.37 966.792 Q2120.37 963.042 2118.52 960.889 Q2116.69 958.736 2113.54 958.736 M2122.82 944.084 L2122.82 948.343 Q2121.06 947.51 2119.26 947.07 Q2117.48 946.63 2115.72 946.63 Q2111.09 946.63 2108.63 949.755 Q2106.2 952.88 2105.86 959.199 Q2107.22 957.186 2109.28 956.121 Q2111.34 955.033 2113.82 955.033 Q2119.03 955.033 2122.04 958.204 Q2125.07 961.352 2125.07 966.792 Q2125.07 972.116 2121.92 975.334 Q2118.77 978.551 2113.54 978.551 Q2107.55 978.551 2104.38 973.968 Q2101.2 969.361 2101.2 960.635 Q2101.2 952.44 2105.09 947.579 Q2108.98 942.695 2115.53 942.695 Q2117.29 942.695 2119.07 943.042 Q2120.88 943.389 2122.82 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2196.64 961.468 Q2193.31 961.468 2191.39 963.25 Q2189.49 965.033 2189.49 968.158 Q2189.49 971.283 2191.39 973.065 Q2193.31 974.847 2196.64 974.847 Q2199.97 974.847 2201.89 973.065 Q2203.82 971.26 2203.82 968.158 Q2203.82 965.033 2201.89 963.25 Q2200 961.468 2196.64 961.468 M2191.96 959.477 Q2188.95 958.736 2187.27 956.676 Q2185.6 954.616 2185.6 951.653 Q2185.6 947.51 2188.54 945.102 Q2191.5 942.695 2196.64 942.695 Q2201.8 942.695 2204.74 945.102 Q2207.68 947.51 2207.68 951.653 Q2207.68 954.616 2205.99 956.676 Q2204.33 958.736 2201.34 959.477 Q2204.72 960.264 2206.59 962.556 Q2208.49 964.848 2208.49 968.158 Q2208.49 973.181 2205.41 975.866 Q2202.36 978.551 2196.64 978.551 Q2190.92 978.551 2187.84 975.866 Q2184.79 973.181 2184.79 968.158 Q2184.79 964.848 2186.69 962.556 Q2188.58 960.264 2191.96 959.477 M2190.25 952.093 Q2190.25 954.778 2191.92 956.283 Q2193.61 957.787 2196.64 957.787 Q2199.65 957.787 2201.34 956.283 Q2203.05 954.778 2203.05 952.093 Q2203.05 949.408 2201.34 947.903 Q2199.65 946.399 2196.64 946.399 Q2193.61 946.399 2191.92 947.903 Q2190.25 949.408 2190.25 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2254.83 973.945 L2262.47 973.945 L2262.47 947.579 L2254.16 949.246 L2254.16 944.987 L2262.42 943.32 L2267.1 943.32 L2267.1 973.945 L2274.74 973.945 L2274.74 977.88 L2254.83 977.88 L2254.83 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2294.18 946.399 Q2290.57 946.399 2288.74 949.963 Q2286.94 953.505 2286.94 960.635 Q2286.94 967.741 2288.74 971.306 Q2290.57 974.847 2294.18 974.847 Q2297.82 974.847 2299.62 971.306 Q2301.45 967.741 2301.45 960.635 Q2301.45 953.505 2299.62 949.963 Q2297.82 946.399 2294.18 946.399 M2294.18 942.695 Q2299.99 942.695 2303.05 947.301 Q2306.13 951.885 2306.13 960.635 Q2306.13 969.361 2303.05 973.968 Q2299.99 978.551 2294.18 978.551 Q2288.37 978.551 2285.29 973.968 Q2282.24 969.361 2282.24 960.635 Q2282.24 951.885 2285.29 947.301 Q2288.37 942.695 2294.18 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2339.13 973.945 L2346.77 973.945 L2346.77 947.579 L2338.46 949.246 L2338.46 944.987 L2346.73 943.32 L2351.4 943.32 L2351.4 973.945 L2359.04 973.945 L2359.04 977.88 L2339.13 977.88 L2339.13 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2372.51 973.945 L2388.83 973.945 L2388.83 977.88 L2366.89 977.88 L2366.89 973.945 Q2369.55 971.19 2374.13 966.56 Q2378.74 961.908 2379.92 960.565 Q2382.17 958.042 2383.05 956.306 Q2383.95 954.547 2383.95 952.857 Q2383.95 950.102 2382 948.366 Q2380.08 946.63 2376.98 946.63 Q2374.78 946.63 2372.33 947.394 Q2369.9 948.158 2367.12 949.709 L2367.12 944.987 Q2369.94 943.852 2372.4 943.274 Q2374.85 942.695 2376.89 942.695 Q2382.26 942.695 2385.45 945.38 Q2388.65 948.065 2388.65 952.556 Q2388.65 954.686 2387.84 956.607 Q2387.05 958.505 2384.94 961.098 Q2384.36 961.769 2381.26 964.986 Q2378.16 968.181 2372.51 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2421.6 973.945 L2429.23 973.945 L2429.23 947.579 L2420.92 949.246 L2420.92 944.987 L2429.19 943.32 L2433.86 943.32 L2433.86 973.945 L2441.5 973.945 L2441.5 977.88 L2421.6 977.88 L2421.6 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2463.79 947.394 L2451.99 965.843 L2463.79 965.843 L2463.79 947.394 M2462.57 943.32 L2468.45 943.32 L2468.45 965.843 L2473.38 965.843 L2473.38 969.732 L2468.45 969.732 L2468.45 977.88 L2463.79 977.88 L2463.79 969.732 L2448.19 969.732 L2448.19 965.218 L2462.57 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2505.26 973.945 L2512.9 973.945 L2512.9 947.579 L2504.59 949.246 L2504.59 944.987 L2512.85 943.32 L2517.53 943.32 L2517.53 973.945 L2525.17 973.945 L2525.17 977.88 L2505.26 977.88 L2505.26 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2545.19 958.736 Q2542.04 958.736 2540.19 960.889 Q2538.36 963.042 2538.36 966.792 Q2538.36 970.519 2540.19 972.695 Q2542.04 974.847 2545.19 974.847 Q2548.34 974.847 2550.17 972.695 Q2552.02 970.519 2552.02 966.792 Q2552.02 963.042 2550.17 960.889 Q2548.34 958.736 2545.19 958.736 M2554.47 944.084 L2554.47 948.343 Q2552.71 947.51 2550.91 947.07 Q2549.13 946.63 2547.37 946.63 Q2542.74 946.63 2540.28 949.755 Q2537.85 952.88 2537.51 959.199 Q2538.87 957.186 2540.93 956.121 Q2542.99 955.033 2545.47 955.033 Q2550.68 955.033 2553.69 958.204 Q2556.72 961.352 2556.72 966.792 Q2556.72 972.116 2553.57 975.334 Q2550.42 978.551 2545.19 978.551 Q2539.2 978.551 2536.02 973.968 Q2532.85 969.361 2532.85 960.635 Q2532.85 952.44 2536.74 947.579 Q2540.63 942.695 2547.18 942.695 Q2548.94 942.695 2550.72 943.042 Q2552.53 943.389 2554.47 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2588.89 973.945 L2596.53 973.945 L2596.53 947.579 L2588.22 949.246 L2588.22 944.987 L2596.48 943.32 L2601.16 943.32 L2601.16 973.945 L2608.8 973.945 L2608.8 977.88 L2588.89 977.88 L2588.89 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2628.24 961.468 Q2624.91 961.468 2622.99 963.25 Q2621.09 965.033 2621.09 968.158 Q2621.09 971.283 2622.99 973.065 Q2624.91 974.847 2628.24 974.847 Q2631.58 974.847 2633.5 973.065 Q2635.42 971.26 2635.42 968.158 Q2635.42 965.033 2633.5 963.25 Q2631.6 961.468 2628.24 961.468 M2623.57 959.477 Q2620.56 958.736 2618.87 956.676 Q2617.2 954.616 2617.2 951.653 Q2617.2 947.51 2620.14 945.102 Q2623.1 942.695 2628.24 942.695 Q2633.41 942.695 2636.35 945.102 Q2639.29 947.51 2639.29 951.653 Q2639.29 954.616 2637.6 956.676 Q2635.93 958.736 2632.94 959.477 Q2636.32 960.264 2638.2 962.556 Q2640.1 964.848 2640.1 968.158 Q2640.1 973.181 2637.02 975.866 Q2633.96 978.551 2628.24 978.551 Q2622.53 978.551 2619.45 975.866 Q2616.39 973.181 2616.39 968.158 Q2616.39 964.848 2618.29 962.556 Q2620.19 960.264 2623.57 959.477 M2621.85 952.093 Q2621.85 954.778 2623.52 956.283 Q2625.21 957.787 2628.24 957.787 Q2631.25 957.787 2632.94 956.283 Q2634.66 954.778 2634.66 952.093 Q2634.66 949.408 2632.94 947.903 Q2631.25 946.399 2628.24 946.399 Q2625.21 946.399 2623.52 947.903 Q2621.85 949.408 2621.85 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2676.43 973.945 L2692.75 973.945 L2692.75 977.88 L2670.81 977.88 L2670.81 973.945 Q2673.47 971.19 2678.06 966.56 Q2682.66 961.908 2683.84 960.565 Q2686.09 958.042 2686.97 956.306 Q2687.87 954.547 2687.87 952.857 Q2687.87 950.102 2685.93 948.366 Q2684 946.63 2680.9 946.63 Q2678.7 946.63 2676.25 947.394 Q2673.82 948.158 2671.04 949.709 L2671.04 944.987 Q2673.87 943.852 2676.32 943.274 Q2678.77 942.695 2680.81 942.695 Q2686.18 942.695 2689.37 945.38 Q2692.57 948.065 2692.57 952.556 Q2692.57 954.686 2691.76 956.607 Q2690.97 958.505 2688.87 961.098 Q2688.29 961.769 2685.18 964.986 Q2682.08 968.181 2676.43 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2712.57 946.399 Q2708.96 946.399 2707.13 949.963 Q2705.32 953.505 2705.32 960.635 Q2705.32 967.741 2707.13 971.306 Q2708.96 974.847 2712.57 974.847 Q2716.2 974.847 2718.01 971.306 Q2719.84 967.741 2719.84 960.635 Q2719.84 953.505 2718.01 949.963 Q2716.2 946.399 2712.57 946.399 M2712.57 942.695 Q2718.38 942.695 2721.43 947.301 Q2724.51 951.885 2724.51 960.635 Q2724.51 969.361 2721.43 973.968 Q2718.38 978.551 2712.57 978.551 Q2706.76 978.551 2703.68 973.968 Q2700.62 969.361 2700.62 960.635 Q2700.62 951.885 2703.68 947.301 Q2706.76 942.695 2712.57 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2760.74 973.945 L2777.06 973.945 L2777.06 977.88 L2755.11 977.88 L2755.11 973.945 Q2757.77 971.19 2762.36 966.56 Q2766.96 961.908 2768.14 960.565 Q2770.39 958.042 2771.27 956.306 Q2772.17 954.547 2772.17 952.857 Q2772.17 950.102 2770.23 948.366 Q2768.31 946.63 2765.2 946.63 Q2763.01 946.63 2760.55 947.394 Q2758.12 948.158 2755.34 949.709 L2755.34 944.987 Q2758.17 943.852 2760.62 943.274 Q2763.07 942.695 2765.11 942.695 Q2770.48 942.695 2773.68 945.38 Q2776.87 948.065 2776.87 952.556 Q2776.87 954.686 2776.06 956.607 Q2775.27 958.505 2773.17 961.098 Q2772.59 961.769 2769.49 964.986 Q2766.39 968.181 2760.74 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2790.9 973.945 L2807.22 973.945 L2807.22 977.88 L2785.27 977.88 L2785.27 973.945 Q2787.94 971.19 2792.52 966.56 Q2797.13 961.908 2798.31 960.565 Q2800.55 958.042 2801.43 956.306 Q2802.33 954.547 2802.33 952.857 Q2802.33 950.102 2800.39 948.366 Q2798.47 946.63 2795.37 946.63 Q2793.17 946.63 2790.71 947.394 Q2788.28 948.158 2785.51 949.709 L2785.51 944.987 Q2788.33 943.852 2790.78 943.274 Q2793.24 942.695 2795.27 942.695 Q2800.64 942.695 2803.84 945.38 Q2807.03 948.065 2807.03 952.556 Q2807.03 954.686 2806.22 956.607 Q2805.44 958.505 2803.33 961.098 Q2802.75 961.769 2799.65 964.986 Q2796.55 968.181 2790.9 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2843.2 973.945 L2859.52 973.945 L2859.52 977.88 L2837.57 977.88 L2837.57 973.945 Q2840.24 971.19 2844.82 966.56 Q2849.43 961.908 2850.61 960.565 Q2852.85 958.042 2853.73 956.306 Q2854.63 954.547 2854.63 952.857 Q2854.63 950.102 2852.69 948.366 Q2850.77 946.63 2847.67 946.63 Q2845.47 946.63 2843.01 947.394 Q2840.58 948.158 2837.81 949.709 L2837.81 944.987 Q2840.63 943.852 2843.08 943.274 Q2845.54 942.695 2847.57 942.695 Q2852.94 942.695 2856.14 945.38 Q2859.33 948.065 2859.33 952.556 Q2859.33 954.686 2858.52 956.607 Q2857.74 958.505 2855.63 961.098 Q2855.05 961.769 2851.95 964.986 Q2848.85 968.181 2843.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2882.18 947.394 L2870.37 965.843 L2882.18 965.843 L2882.18 947.394 M2880.95 943.32 L2886.83 943.32 L2886.83 965.843 L2891.76 965.843 L2891.76 969.732 L2886.83 969.732 L2886.83 977.88 L2882.18 977.88 L2882.18 969.732 L2866.58 969.732 L2866.58 965.218 L2880.95 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2926.86 973.945 L2943.18 973.945 L2943.18 977.88 L2921.24 977.88 L2921.24 973.945 Q2923.9 971.19 2928.48 966.56 Q2933.09 961.908 2934.27 960.565 Q2936.52 958.042 2937.4 956.306 Q2938.3 954.547 2938.3 952.857 Q2938.3 950.102 2936.36 948.366 Q2934.43 946.63 2931.33 946.63 Q2929.13 946.63 2926.68 947.394 Q2924.25 948.158 2921.47 949.709 L2921.47 944.987 Q2924.29 943.852 2926.75 943.274 Q2929.2 942.695 2931.24 942.695 Q2936.61 942.695 2939.8 945.38 Q2943 948.065 2943 952.556 Q2943 954.686 2942.19 956.607 Q2941.4 958.505 2939.29 961.098 Q2938.72 961.769 2935.61 964.986 Q2932.51 968.181 2926.86 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2963.58 958.736 Q2960.43 958.736 2958.58 960.889 Q2956.75 963.042 2956.75 966.792 Q2956.75 970.519 2958.58 972.695 Q2960.43 974.847 2963.58 974.847 Q2966.73 974.847 2968.55 972.695 Q2970.41 970.519 2970.41 966.792 Q2970.41 963.042 2968.55 960.889 Q2966.73 958.736 2963.58 958.736 M2972.86 944.084 L2972.86 948.343 Q2971.1 947.51 2969.29 947.07 Q2967.51 946.63 2965.75 946.63 Q2961.12 946.63 2958.67 949.755 Q2956.24 952.88 2955.89 959.199 Q2957.26 957.186 2959.32 956.121 Q2961.38 955.033 2963.85 955.033 Q2969.06 955.033 2972.07 958.204 Q2975.1 961.352 2975.1 966.792 Q2975.1 972.116 2971.96 975.334 Q2968.81 978.551 2963.58 978.551 Q2957.58 978.551 2954.41 973.968 Q2951.24 969.361 2951.24 960.635 Q2951.24 952.44 2955.13 947.579 Q2959.02 942.695 2965.57 942.695 Q2967.33 942.695 2969.11 943.042 Q2970.92 943.389 2972.86 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M3010.5 973.945 L3026.81 973.945 L3026.81 977.88 L3004.87 977.88 L3004.87 973.945 Q3007.53 971.19 3012.12 966.56 Q3016.72 961.908 3017.9 960.565 Q3020.15 958.042 3021.03 956.306 Q3021.93 954.547 3021.93 952.857 Q3021.93 950.102 3019.99 948.366 Q3018.06 946.63 3014.96 946.63 Q3012.76 946.63 3010.31 947.394 Q3007.88 948.158 3005.1 949.709 L3005.1 944.987 Q3007.93 943.852 3010.38 943.274 Q3012.83 942.695 3014.87 942.695 Q3020.24 942.695 3023.44 945.38 Q3026.63 948.065 3026.63 952.556 Q3026.63 954.686 3025.82 956.607 Q3025.03 958.505 3022.93 961.098 Q3022.35 961.769 3019.25 964.986 Q3016.14 968.181 3010.5 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M3046.63 961.468 Q3043.3 961.468 3041.37 963.25 Q3039.48 965.033 3039.48 968.158 Q3039.48 971.283 3041.37 973.065 Q3043.3 974.847 3046.63 974.847 Q3049.96 974.847 3051.88 973.065 Q3053.81 971.26 3053.81 968.158 Q3053.81 965.033 3051.88 963.25 Q3049.99 961.468 3046.63 961.468 M3041.95 959.477 Q3038.94 958.736 3037.25 956.676 Q3035.59 954.616 3035.59 951.653 Q3035.59 947.51 3038.53 945.102 Q3041.49 942.695 3046.63 942.695 Q3051.79 942.695 3054.73 945.102 Q3057.67 947.51 3057.67 951.653 Q3057.67 954.616 3055.98 956.676 Q3054.31 958.736 3051.33 959.477 Q3054.71 960.264 3056.58 962.556 Q3058.48 964.848 3058.48 968.158 Q3058.48 973.181 3055.4 975.866 Q3052.35 978.551 3046.63 978.551 Q3040.91 978.551 3037.83 975.866 Q3034.78 973.181 3034.78 968.158 Q3034.78 964.848 3036.68 962.556 Q3038.57 960.264 3041.95 959.477 M3040.24 952.093 Q3040.24 954.778 3041.91 956.283 Q3043.6 957.787 3046.63 957.787 Q3049.64 957.787 3051.33 956.283 Q3053.04 954.778 3053.04 952.093 Q3053.04 949.408 3051.33 947.903 Q3049.64 946.399 3046.63 946.399 Q3043.6 946.399 3041.91 947.903 Q3040.24 949.408 3040.24 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M3104.02 959.246 Q3107.38 959.963 3109.25 962.232 Q3111.15 964.5 3111.15 967.834 Q3111.15 972.949 3107.63 975.75 Q3104.11 978.551 3097.63 978.551 Q3095.46 978.551 3093.14 978.111 Q3090.85 977.695 3088.4 976.838 L3088.4 972.324 Q3090.34 973.459 3092.66 974.037 Q3094.97 974.616 3097.49 974.616 Q3101.89 974.616 3104.18 972.88 Q3106.5 971.144 3106.5 967.834 Q3106.5 964.778 3104.35 963.065 Q3102.22 961.329 3098.4 961.329 L3094.37 961.329 L3094.37 957.486 L3098.58 957.486 Q3102.03 957.486 3103.86 956.121 Q3105.69 954.732 3105.69 952.139 Q3105.69 949.477 3103.79 948.065 Q3101.92 946.63 3098.4 946.63 Q3096.48 946.63 3094.28 947.047 Q3092.08 947.463 3089.44 948.343 L3089.44 944.176 Q3092.1 943.436 3094.42 943.065 Q3096.75 942.695 3098.81 942.695 Q3104.14 942.695 3107.24 945.125 Q3110.34 947.533 3110.34 951.653 Q3110.34 954.524 3108.7 956.514 Q3107.05 958.482 3104.02 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M3130.02 946.399 Q3126.41 946.399 3124.58 949.963 Q3122.77 953.505 3122.77 960.635 Q3122.77 967.741 3124.58 971.306 Q3126.41 974.847 3130.02 974.847 Q3133.65 974.847 3135.46 971.306 Q3137.29 967.741 3137.29 960.635 Q3137.29 953.505 3135.46 949.963 Q3133.65 946.399 3130.02 946.399 M3130.02 942.695 Q3135.83 942.695 3138.88 947.301 Q3141.96 951.885 3141.96 960.635 Q3141.96 969.361 3138.88 973.968 Q3135.83 978.551 3130.02 978.551 Q3124.21 978.551 3121.13 973.968 Q3118.07 969.361 3118.07 960.635 Q3118.07 951.885 3121.13 947.301 Q3124.21 942.695 3130.02 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,735.832 3152.76,735.832 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,535.085 3152.76,535.085 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,334.339 3152.76,334.339 \n \"/>\n<polyline clip-path=\"url(#clip853)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1825.05,133.593 3152.76,133.593 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,910.808 1825.05,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,735.832 1840.98,735.832 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,535.085 1840.98,535.085 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,334.339 1840.98,334.339 \n \"/>\n<polyline clip-path=\"url(#clip850)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1825.05,133.593 1840.98,133.593 \n \"/>\n<path clip-path=\"url(#clip850)\" d=\"M1579.46 736.283 L1609.13 736.283 L1609.13 740.218 L1579.46 740.218 L1579.46 736.283 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1629.23 721.63 Q1625.61 721.63 1623.79 725.195 Q1621.98 728.737 1621.98 735.867 Q1621.98 742.973 1623.79 746.538 Q1625.61 750.079 1629.23 750.079 Q1632.86 750.079 1634.67 746.538 Q1636.49 742.973 1636.49 735.867 Q1636.49 728.737 1634.67 725.195 Q1632.86 721.63 1629.23 721.63 M1629.23 717.927 Q1635.04 717.927 1638.09 722.533 Q1641.17 727.117 1641.17 735.867 Q1641.17 744.593 1638.09 749.2 Q1635.04 753.783 1629.23 753.783 Q1623.42 753.783 1620.34 749.2 Q1617.28 744.593 1617.28 735.867 Q1617.28 727.117 1620.34 722.533 Q1623.42 717.927 1629.23 717.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1649.39 747.232 L1654.27 747.232 L1654.27 753.112 L1649.39 753.112 L1649.39 747.232 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1674.46 721.63 Q1670.85 721.63 1669.02 725.195 Q1667.21 728.737 1667.21 735.867 Q1667.21 742.973 1669.02 746.538 Q1670.85 750.079 1674.46 750.079 Q1678.09 750.079 1679.9 746.538 Q1681.73 742.973 1681.73 735.867 Q1681.73 728.737 1679.9 725.195 Q1678.09 721.63 1674.46 721.63 M1674.46 717.927 Q1680.27 717.927 1683.32 722.533 Q1686.4 727.117 1686.4 735.867 Q1686.4 744.593 1683.32 749.2 Q1680.27 753.783 1674.46 753.783 Q1668.65 753.783 1665.57 749.2 Q1662.51 744.593 1662.51 735.867 Q1662.51 727.117 1665.57 722.533 Q1668.65 717.927 1674.46 717.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1704.62 721.63 Q1701.01 721.63 1699.18 725.195 Q1697.37 728.737 1697.37 735.867 Q1697.37 742.973 1699.18 746.538 Q1701.01 750.079 1704.62 750.079 Q1708.25 750.079 1710.06 746.538 Q1711.89 742.973 1711.89 735.867 Q1711.89 728.737 1710.06 725.195 Q1708.25 721.63 1704.62 721.63 M1704.62 717.927 Q1710.43 717.927 1713.48 722.533 Q1716.56 727.117 1716.56 735.867 Q1716.56 744.593 1713.48 749.2 Q1710.43 753.783 1704.62 753.783 Q1698.81 753.783 1695.73 749.2 Q1692.67 744.593 1692.67 735.867 Q1692.67 727.117 1695.73 722.533 Q1698.81 717.927 1704.62 717.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1734.78 721.63 Q1731.17 721.63 1729.34 725.195 Q1727.54 728.737 1727.54 735.867 Q1727.54 742.973 1729.34 746.538 Q1731.17 750.079 1734.78 750.079 Q1738.42 750.079 1740.22 746.538 Q1742.05 742.973 1742.05 735.867 Q1742.05 728.737 1740.22 725.195 Q1738.42 721.63 1734.78 721.63 M1734.78 717.927 Q1740.59 717.927 1743.65 722.533 Q1746.73 727.117 1746.73 735.867 Q1746.73 744.593 1743.65 749.2 Q1740.59 753.783 1734.78 753.783 Q1728.97 753.783 1725.89 749.2 Q1722.84 744.593 1722.84 735.867 Q1722.84 727.117 1725.89 722.533 Q1728.97 717.927 1734.78 717.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1765.52 733.968 Q1762.37 733.968 1760.52 736.121 Q1758.69 738.274 1758.69 742.024 Q1758.69 745.751 1760.52 747.927 Q1762.37 750.079 1765.52 750.079 Q1768.67 750.079 1770.5 747.927 Q1772.35 745.751 1772.35 742.024 Q1772.35 738.274 1770.5 736.121 Q1768.67 733.968 1765.52 733.968 M1774.8 719.316 L1774.8 723.575 Q1773.04 722.742 1771.24 722.302 Q1769.46 721.862 1767.7 721.862 Q1763.07 721.862 1760.61 724.987 Q1758.18 728.112 1757.84 734.431 Q1759.2 732.417 1761.26 731.353 Q1763.32 730.265 1765.8 730.265 Q1771.01 730.265 1774.02 733.436 Q1777.05 736.584 1777.05 742.024 Q1777.05 747.348 1773.9 750.566 Q1770.75 753.783 1765.52 753.783 Q1759.53 753.783 1756.35 749.2 Q1753.18 744.593 1753.18 735.867 Q1753.18 727.672 1757.07 722.811 Q1760.96 717.927 1767.51 717.927 Q1769.27 717.927 1771.05 718.274 Q1772.86 718.621 1774.8 719.316 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1579.13 535.537 L1608.81 535.537 L1608.81 539.472 L1579.13 539.472 L1579.13 535.537 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1628.9 520.884 Q1625.29 520.884 1623.46 524.449 Q1621.66 527.991 1621.66 535.12 Q1621.66 542.227 1623.46 545.791 Q1625.29 549.333 1628.9 549.333 Q1632.54 549.333 1634.34 545.791 Q1636.17 542.227 1636.17 535.12 Q1636.17 527.991 1634.34 524.449 Q1632.54 520.884 1628.9 520.884 M1628.9 517.18 Q1634.71 517.18 1637.77 521.787 Q1640.85 526.37 1640.85 535.12 Q1640.85 543.847 1637.77 548.453 Q1634.71 553.037 1628.9 553.037 Q1623.09 553.037 1620.01 548.453 Q1616.96 543.847 1616.96 535.12 Q1616.96 526.37 1620.01 521.787 Q1623.09 517.18 1628.9 517.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1649.06 546.486 L1653.95 546.486 L1653.95 552.365 L1649.06 552.365 L1649.06 546.486 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1674.13 520.884 Q1670.52 520.884 1668.69 524.449 Q1666.89 527.991 1666.89 535.12 Q1666.89 542.227 1668.69 545.791 Q1670.52 549.333 1674.13 549.333 Q1677.77 549.333 1679.57 545.791 Q1681.4 542.227 1681.4 535.12 Q1681.4 527.991 1679.57 524.449 Q1677.77 520.884 1674.13 520.884 M1674.13 517.18 Q1679.94 517.18 1683 521.787 Q1686.08 526.37 1686.08 535.12 Q1686.08 543.847 1683 548.453 Q1679.94 553.037 1674.13 553.037 Q1668.32 553.037 1665.24 548.453 Q1662.19 543.847 1662.19 535.12 Q1662.19 526.37 1665.24 521.787 Q1668.32 517.18 1674.13 517.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1704.3 520.884 Q1700.68 520.884 1698.86 524.449 Q1697.05 527.991 1697.05 535.12 Q1697.05 542.227 1698.86 545.791 Q1700.68 549.333 1704.3 549.333 Q1707.93 549.333 1709.73 545.791 Q1711.56 542.227 1711.56 535.12 Q1711.56 527.991 1709.73 524.449 Q1707.93 520.884 1704.3 520.884 M1704.3 517.18 Q1710.11 517.18 1713.16 521.787 Q1716.24 526.37 1716.24 535.12 Q1716.24 543.847 1713.16 548.453 Q1710.11 553.037 1704.3 553.037 Q1698.48 553.037 1695.41 548.453 Q1692.35 543.847 1692.35 535.12 Q1692.35 526.37 1695.41 521.787 Q1698.48 517.18 1704.3 517.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1734.46 520.884 Q1730.85 520.884 1729.02 524.449 Q1727.21 527.991 1727.21 535.12 Q1727.21 542.227 1729.02 545.791 Q1730.85 549.333 1734.46 549.333 Q1738.09 549.333 1739.9 545.791 Q1741.73 542.227 1741.73 535.12 Q1741.73 527.991 1739.9 524.449 Q1738.09 520.884 1734.46 520.884 M1734.46 517.18 Q1740.27 517.18 1743.32 521.787 Q1746.4 526.37 1746.4 535.12 Q1746.4 543.847 1743.32 548.453 Q1740.27 553.037 1734.46 553.037 Q1728.65 553.037 1725.57 548.453 Q1722.51 543.847 1722.51 535.12 Q1722.51 526.37 1725.57 521.787 Q1728.65 517.18 1734.46 517.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1767.47 521.88 L1755.66 540.328 L1767.47 540.328 L1767.47 521.88 M1766.24 517.805 L1772.12 517.805 L1772.12 540.328 L1777.05 540.328 L1777.05 544.217 L1772.12 544.217 L1772.12 552.365 L1767.47 552.365 L1767.47 544.217 L1751.86 544.217 L1751.86 539.703 L1766.24 517.805 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1581.22 334.79 L1610.89 334.79 L1610.89 338.726 L1581.22 338.726 L1581.22 334.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1630.99 320.138 Q1627.37 320.138 1625.55 323.703 Q1623.74 327.244 1623.74 334.374 Q1623.74 341.48 1625.55 345.045 Q1627.37 348.587 1630.99 348.587 Q1634.62 348.587 1636.43 345.045 Q1638.25 341.48 1638.25 334.374 Q1638.25 327.244 1636.43 323.703 Q1634.62 320.138 1630.99 320.138 M1630.99 316.434 Q1636.8 316.434 1639.85 321.041 Q1642.93 325.624 1642.93 334.374 Q1642.93 343.101 1639.85 347.707 Q1636.8 352.29 1630.99 352.29 Q1625.18 352.29 1622.1 347.707 Q1619.04 343.101 1619.04 334.374 Q1619.04 325.624 1622.1 321.041 Q1625.18 316.434 1630.99 316.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1651.15 345.74 L1656.03 345.74 L1656.03 351.619 L1651.15 351.619 L1651.15 345.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1676.22 320.138 Q1672.61 320.138 1670.78 323.703 Q1668.97 327.244 1668.97 334.374 Q1668.97 341.48 1670.78 345.045 Q1672.61 348.587 1676.22 348.587 Q1679.85 348.587 1681.66 345.045 Q1683.48 341.48 1683.48 334.374 Q1683.48 327.244 1681.66 323.703 Q1679.85 320.138 1676.22 320.138 M1676.22 316.434 Q1682.03 316.434 1685.08 321.041 Q1688.16 325.624 1688.16 334.374 Q1688.16 343.101 1685.08 347.707 Q1682.03 352.29 1676.22 352.29 Q1670.41 352.29 1667.33 347.707 Q1664.27 343.101 1664.27 334.374 Q1664.27 325.624 1667.33 321.041 Q1670.41 316.434 1676.22 316.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1706.38 320.138 Q1702.77 320.138 1700.94 323.703 Q1699.13 327.244 1699.13 334.374 Q1699.13 341.48 1700.94 345.045 Q1702.77 348.587 1706.38 348.587 Q1710.01 348.587 1711.82 345.045 Q1713.65 341.48 1713.65 334.374 Q1713.65 327.244 1711.82 323.703 Q1710.01 320.138 1706.38 320.138 M1706.38 316.434 Q1712.19 316.434 1715.24 321.041 Q1718.32 325.624 1718.32 334.374 Q1718.32 343.101 1715.24 347.707 Q1712.19 352.29 1706.38 352.29 Q1700.57 352.29 1697.49 347.707 Q1694.43 343.101 1694.43 334.374 Q1694.43 325.624 1697.49 321.041 Q1700.57 316.434 1706.38 316.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1736.54 320.138 Q1732.93 320.138 1731.1 323.703 Q1729.29 327.244 1729.29 334.374 Q1729.29 341.48 1731.1 345.045 Q1732.93 348.587 1736.54 348.587 Q1740.17 348.587 1741.98 345.045 Q1743.81 341.48 1743.81 334.374 Q1743.81 327.244 1741.98 323.703 Q1740.17 320.138 1736.54 320.138 M1736.54 316.434 Q1742.35 316.434 1745.41 321.041 Q1748.48 325.624 1748.48 334.374 Q1748.48 343.101 1745.41 347.707 Q1742.35 352.29 1736.54 352.29 Q1730.73 352.29 1727.65 347.707 Q1724.6 343.101 1724.6 334.374 Q1724.6 325.624 1727.65 321.041 Q1730.73 316.434 1736.54 316.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1760.73 347.684 L1777.05 347.684 L1777.05 351.619 L1755.1 351.619 L1755.1 347.684 Q1757.77 344.929 1762.35 340.3 Q1766.96 335.647 1768.14 334.304 Q1770.38 331.781 1771.26 330.045 Q1772.17 328.286 1772.17 326.596 Q1772.17 323.841 1770.22 322.105 Q1768.3 320.369 1765.2 320.369 Q1763 320.369 1760.54 321.133 Q1758.11 321.897 1755.34 323.448 L1755.34 318.726 Q1758.16 317.592 1760.61 317.013 Q1763.07 316.434 1765.1 316.434 Q1770.48 316.434 1773.67 319.119 Q1776.86 321.804 1776.86 326.295 Q1776.86 328.425 1776.05 330.346 Q1775.27 332.244 1773.16 334.837 Q1772.58 335.508 1769.48 338.726 Q1766.38 341.92 1760.73 347.684 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1629.39 119.391 Q1625.78 119.391 1623.95 122.956 Q1622.14 126.498 1622.14 133.627 Q1622.14 140.734 1623.95 144.299 Q1625.78 147.84 1629.39 147.84 Q1633.02 147.84 1634.83 144.299 Q1636.66 140.734 1636.66 133.627 Q1636.66 126.498 1634.83 122.956 Q1633.02 119.391 1629.39 119.391 M1629.39 115.688 Q1635.2 115.688 1638.25 120.294 Q1641.33 124.878 1641.33 133.627 Q1641.33 142.354 1638.25 146.961 Q1635.2 151.544 1629.39 151.544 Q1623.58 151.544 1620.5 146.961 Q1617.44 142.354 1617.44 133.627 Q1617.44 124.878 1620.5 120.294 Q1623.58 115.688 1629.39 115.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1649.55 144.993 L1654.43 144.993 L1654.43 150.873 L1649.55 150.873 L1649.55 144.993 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1674.62 119.391 Q1671.01 119.391 1669.18 122.956 Q1667.37 126.498 1667.37 133.627 Q1667.37 140.734 1669.18 144.299 Q1671.01 147.84 1674.62 147.84 Q1678.25 147.84 1680.06 144.299 Q1681.89 140.734 1681.89 133.627 Q1681.89 126.498 1680.06 122.956 Q1678.25 119.391 1674.62 119.391 M1674.62 115.688 Q1680.43 115.688 1683.48 120.294 Q1686.56 124.878 1686.56 133.627 Q1686.56 142.354 1683.48 146.961 Q1680.43 151.544 1674.62 151.544 Q1668.81 151.544 1665.73 146.961 Q1662.67 142.354 1662.67 133.627 Q1662.67 124.878 1665.73 120.294 Q1668.81 115.688 1674.62 115.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1704.78 119.391 Q1701.17 119.391 1699.34 122.956 Q1697.54 126.498 1697.54 133.627 Q1697.54 140.734 1699.34 144.299 Q1701.17 147.84 1704.78 147.84 Q1708.42 147.84 1710.22 144.299 Q1712.05 140.734 1712.05 133.627 Q1712.05 126.498 1710.22 122.956 Q1708.42 119.391 1704.78 119.391 M1704.78 115.688 Q1710.59 115.688 1713.65 120.294 Q1716.73 124.878 1716.73 133.627 Q1716.73 142.354 1713.65 146.961 Q1710.59 151.544 1704.78 151.544 Q1698.97 151.544 1695.89 146.961 Q1692.84 142.354 1692.84 133.627 Q1692.84 124.878 1695.89 120.294 Q1698.97 115.688 1704.78 115.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1734.94 119.391 Q1731.33 119.391 1729.5 122.956 Q1727.7 126.498 1727.7 133.627 Q1727.7 140.734 1729.5 144.299 Q1731.33 147.84 1734.94 147.84 Q1738.58 147.84 1740.38 144.299 Q1742.21 140.734 1742.21 133.627 Q1742.21 126.498 1740.38 122.956 Q1738.58 119.391 1734.94 119.391 M1734.94 115.688 Q1740.75 115.688 1743.81 120.294 Q1746.89 124.878 1746.89 133.627 Q1746.89 142.354 1743.81 146.961 Q1740.75 151.544 1734.94 151.544 Q1729.13 151.544 1726.05 146.961 Q1723 142.354 1723 133.627 Q1723 124.878 1726.05 120.294 Q1729.13 115.688 1734.94 115.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M1765.1 119.391 Q1761.49 119.391 1759.67 122.956 Q1757.86 126.498 1757.86 133.627 Q1757.86 140.734 1759.67 144.299 Q1761.49 147.84 1765.1 147.84 Q1768.74 147.84 1770.54 144.299 Q1772.37 140.734 1772.37 133.627 Q1772.37 126.498 1770.54 122.956 Q1768.74 119.391 1765.1 119.391 M1765.1 115.688 Q1770.92 115.688 1773.97 120.294 Q1777.05 124.878 1777.05 133.627 Q1777.05 142.354 1773.97 146.961 Q1770.92 151.544 1765.1 151.544 Q1759.29 151.544 1756.22 146.961 Q1753.16 142.354 1753.16 133.627 Q1753.16 124.878 1756.22 120.294 Q1759.29 115.688 1765.1 115.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2187.1 12.2777 L2187.1 23.3193 L2200.26 23.3193 L2200.26 28.2846 L2187.1 28.2846 L2187.1 49.3956 Q2187.1 54.1525 2188.38 55.5066 Q2189.7 56.8608 2193.7 56.8608 L2200.26 56.8608 L2200.26 62.208 L2193.7 62.208 Q2186.3 62.208 2183.49 59.465 Q2180.68 56.6872 2180.68 49.3956 L2180.68 28.2846 L2175.99 28.2846 L2175.99 23.3193 L2180.68 23.3193 L2180.68 12.2777 L2187.1 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2223.73 27.7985 Q2218.59 27.7985 2215.61 31.8262 Q2212.62 35.8193 2212.62 42.7984 Q2212.62 49.7775 2215.57 53.8053 Q2218.56 57.7983 2223.73 57.7983 Q2228.83 57.7983 2231.82 53.7705 Q2234.81 49.7428 2234.81 42.7984 Q2234.81 35.8887 2231.82 31.8609 Q2228.83 27.7985 2223.73 27.7985 M2223.73 22.3818 Q2232.06 22.3818 2236.82 27.7985 Q2241.58 33.2151 2241.58 42.7984 Q2241.58 52.3469 2236.82 57.7983 Q2232.06 63.2149 2223.73 63.2149 Q2215.36 63.2149 2210.61 57.7983 Q2205.88 52.3469 2205.88 42.7984 Q2205.88 33.2151 2210.61 27.7985 Q2215.36 22.3818 2223.73 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2258.49 12.2777 L2258.49 23.3193 L2271.65 23.3193 L2271.65 28.2846 L2258.49 28.2846 L2258.49 49.3956 Q2258.49 54.1525 2259.77 55.5066 Q2261.09 56.8608 2265.08 56.8608 L2271.65 56.8608 L2271.65 62.208 L2265.08 62.208 Q2257.69 62.208 2254.88 59.465 Q2252.06 56.6872 2252.06 49.3956 L2252.06 28.2846 L2247.38 28.2846 L2247.38 23.3193 L2252.06 23.3193 L2252.06 12.2777 L2258.49 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2297.72 42.6595 Q2289.98 42.6595 2286.99 44.4303 Q2284.01 46.2011 2284.01 50.472 Q2284.01 53.8747 2286.23 55.8886 Q2288.49 57.8677 2292.34 57.8677 Q2297.65 57.8677 2300.85 54.1178 Q2304.08 50.3331 2304.08 44.0831 L2304.08 42.6595 L2297.72 42.6595 M2310.47 40.0206 L2310.47 62.208 L2304.08 62.208 L2304.08 56.3053 Q2301.89 59.8469 2298.63 61.5483 Q2295.36 63.2149 2290.64 63.2149 Q2284.67 63.2149 2281.13 59.8816 Q2277.62 56.5136 2277.62 50.8886 Q2277.62 44.3262 2281.99 40.9928 Q2286.4 37.6595 2295.12 37.6595 L2304.08 37.6595 L2304.08 37.0345 Q2304.08 32.6248 2301.16 30.229 Q2298.28 27.7985 2293.04 27.7985 Q2289.7 27.7985 2286.54 28.5971 Q2283.38 29.3957 2280.47 30.9929 L2280.47 25.0901 Q2283.97 23.736 2287.27 23.0763 Q2290.57 22.3818 2293.7 22.3818 Q2302.13 22.3818 2306.3 26.7568 Q2310.47 31.1318 2310.47 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2323.63 8.18051 L2330.01 8.18051 L2330.01 62.208 L2323.63 62.208 L2323.63 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2399.25 41.1664 L2399.25 44.2914 L2369.88 44.2914 Q2370.29 50.8886 2373.83 54.3608 Q2377.41 57.7983 2383.76 57.7983 Q2387.44 57.7983 2390.88 56.8955 Q2394.35 55.9928 2397.76 54.1872 L2397.76 60.2288 Q2394.32 61.6872 2390.71 62.4511 Q2387.1 63.2149 2383.38 63.2149 Q2374.08 63.2149 2368.63 57.7983 Q2363.21 52.3817 2363.21 43.1456 Q2363.21 33.597 2368.35 28.0068 Q2373.52 22.3818 2382.27 22.3818 Q2390.12 22.3818 2394.67 27.4512 Q2399.25 32.4859 2399.25 41.1664 M2392.86 39.2915 Q2392.79 34.0484 2389.91 30.9234 Q2387.06 27.7985 2382.34 27.7985 Q2376.99 27.7985 2373.76 30.8193 Q2370.57 33.8401 2370.08 39.3262 L2392.86 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2442.06 38.7359 L2442.06 62.208 L2435.67 62.208 L2435.67 38.9442 Q2435.67 33.4234 2433.52 30.6804 Q2431.37 27.9374 2427.06 27.9374 Q2421.89 27.9374 2418.9 31.2359 Q2415.92 34.5345 2415.92 40.229 L2415.92 62.208 L2409.49 62.208 L2409.49 23.3193 L2415.92 23.3193 L2415.92 29.361 Q2418.21 25.854 2421.3 24.1179 Q2424.42 22.3818 2428.49 22.3818 Q2435.19 22.3818 2438.63 26.5485 Q2442.06 30.6804 2442.06 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2488.07 41.1664 L2488.07 44.2914 L2458.69 44.2914 Q2459.11 50.8886 2462.65 54.3608 Q2466.23 57.7983 2472.58 57.7983 Q2476.26 57.7983 2479.7 56.8955 Q2483.17 55.9928 2486.58 54.1872 L2486.58 60.2288 Q2483.14 61.6872 2479.53 62.4511 Q2475.92 63.2149 2472.2 63.2149 Q2462.9 63.2149 2457.44 57.7983 Q2452.03 52.3817 2452.03 43.1456 Q2452.03 33.597 2457.17 28.0068 Q2462.34 22.3818 2471.09 22.3818 Q2478.94 22.3818 2483.49 27.4512 Q2488.07 32.4859 2488.07 41.1664 M2481.68 39.2915 Q2481.61 34.0484 2478.73 30.9234 Q2475.88 27.7985 2471.16 27.7985 Q2465.81 27.7985 2462.58 30.8193 Q2459.39 33.8401 2458.9 39.3262 L2481.68 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2521.09 29.2915 Q2520.01 28.6665 2518.73 28.3887 Q2517.48 28.0762 2515.95 28.0762 Q2510.53 28.0762 2507.62 31.6179 Q2504.74 35.1248 2504.74 41.722 L2504.74 62.208 L2498.31 62.208 L2498.31 23.3193 L2504.74 23.3193 L2504.74 29.361 Q2506.75 25.8193 2509.98 24.1179 Q2513.21 22.3818 2517.83 22.3818 Q2518.49 22.3818 2519.28 22.486 Q2520.08 22.5554 2521.06 22.729 L2521.09 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2552.13 42.3123 Q2552.13 35.3679 2549.25 31.5484 Q2546.4 27.729 2541.23 27.729 Q2536.09 27.729 2533.21 31.5484 Q2530.36 35.3679 2530.36 42.3123 Q2530.36 49.222 2533.21 53.0414 Q2536.09 56.8608 2541.23 56.8608 Q2546.4 56.8608 2549.25 53.0414 Q2552.13 49.222 2552.13 42.3123 M2558.52 57.3816 Q2558.52 67.3121 2554.11 72.1385 Q2549.7 76.9996 2540.6 76.9996 Q2537.24 76.9996 2534.25 76.4788 Q2531.26 75.9926 2528.45 74.951 L2528.45 68.7357 Q2531.26 70.2635 2534.01 70.9927 Q2536.75 71.7218 2539.6 71.7218 Q2545.88 71.7218 2549.01 68.4232 Q2552.13 65.1594 2552.13 58.5275 L2552.13 55.3678 Q2550.15 58.8052 2547.06 60.5066 Q2543.97 62.208 2539.67 62.208 Q2532.51 62.208 2528.14 56.7566 Q2523.76 51.3053 2523.76 42.3123 Q2523.76 33.2845 2528.14 27.8332 Q2532.51 22.3818 2539.67 22.3818 Q2543.97 22.3818 2547.06 24.0832 Q2550.15 25.7846 2552.13 29.2221 L2552.13 23.3193 L2558.52 23.3193 L2558.52 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2587.86 65.8191 Q2585.15 72.7635 2582.58 74.8815 Q2580.01 76.9996 2575.71 76.9996 L2570.6 76.9996 L2570.6 71.6524 L2574.35 71.6524 Q2576.99 71.6524 2578.45 70.4024 Q2579.91 69.1524 2581.68 64.4997 L2582.83 61.583 L2567.1 23.3193 L2573.87 23.3193 L2586.02 53.7358 L2598.17 23.3193 L2604.94 23.3193 L2587.86 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2669.63 41.1664 L2669.63 44.2914 L2640.26 44.2914 Q2640.67 50.8886 2644.21 54.3608 Q2647.79 57.7983 2654.14 57.7983 Q2657.83 57.7983 2661.26 56.8955 Q2664.73 55.9928 2668.14 54.1872 L2668.14 60.2288 Q2664.7 61.6872 2661.09 62.4511 Q2657.48 63.2149 2653.76 63.2149 Q2644.46 63.2149 2639.01 57.7983 Q2633.59 52.3817 2633.59 43.1456 Q2633.59 33.597 2638.73 28.0068 Q2643.9 22.3818 2652.65 22.3818 Q2660.5 22.3818 2665.05 27.4512 Q2669.63 32.4859 2669.63 41.1664 M2663.24 39.2915 Q2663.17 34.0484 2660.29 30.9234 Q2657.44 27.7985 2652.72 27.7985 Q2647.37 27.7985 2644.14 30.8193 Q2640.95 33.8401 2640.46 39.3262 L2663.24 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2702.65 29.2915 Q2701.58 28.6665 2700.29 28.3887 Q2699.04 28.0762 2697.51 28.0762 Q2692.1 28.0762 2689.18 31.6179 Q2686.3 35.1248 2686.3 41.722 L2686.3 62.208 L2679.87 62.208 L2679.87 23.3193 L2686.3 23.3193 L2686.3 29.361 Q2688.31 25.8193 2691.54 24.1179 Q2694.77 22.3818 2699.39 22.3818 Q2700.05 22.3818 2700.85 22.486 Q2701.64 22.5554 2702.62 22.729 L2702.65 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2730.64 29.2915 Q2729.56 28.6665 2728.28 28.3887 Q2727.03 28.0762 2725.5 28.0762 Q2720.08 28.0762 2717.17 31.6179 Q2714.28 35.1248 2714.28 41.722 L2714.28 62.208 L2707.86 62.208 L2707.86 23.3193 L2714.28 23.3193 L2714.28 29.361 Q2716.3 25.8193 2719.53 24.1179 Q2722.76 22.3818 2727.37 22.3818 Q2728.03 22.3818 2728.83 22.486 Q2729.63 22.5554 2730.6 22.729 L2730.64 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2750.85 27.7985 Q2745.71 27.7985 2742.72 31.8262 Q2739.73 35.8193 2739.73 42.7984 Q2739.73 49.7775 2742.69 53.8053 Q2745.67 57.7983 2750.85 57.7983 Q2755.95 57.7983 2758.94 53.7705 Q2761.92 49.7428 2761.92 42.7984 Q2761.92 35.8887 2758.94 31.8609 Q2755.95 27.7985 2750.85 27.7985 M2750.85 22.3818 Q2759.18 22.3818 2763.94 27.7985 Q2768.69 33.2151 2768.69 42.7984 Q2768.69 52.3469 2763.94 57.7983 Q2759.18 63.2149 2750.85 63.2149 Q2742.48 63.2149 2737.72 57.7983 Q2733 52.3469 2733 42.7984 Q2733 33.2151 2737.72 27.7985 Q2742.48 22.3818 2750.85 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip850)\" d=\"M2801.82 29.2915 Q2800.74 28.6665 2799.46 28.3887 Q2798.21 28.0762 2796.68 28.0762 Q2791.26 28.0762 2788.35 31.6179 Q2785.46 35.1248 2785.46 41.722 L2785.46 62.208 L2779.04 62.208 L2779.04 23.3193 L2785.46 23.3193 L2785.46 29.361 Q2787.48 25.8193 2790.71 24.1179 Q2793.94 22.3818 2798.55 22.3818 Q2799.21 22.3818 2800.01 22.486 Q2800.81 22.5554 2801.78 22.729 L2801.82 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip853)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1862.63,133.593 1865.13,142.298 1867.64,155.837 1870.14,170.838 1872.65,140.414 1875.15,125.881 1877.66,143.688 1880.16,146.67 1882.67,127.511 1885.17,118.481 \n 1887.68,118.84 1890.18,120.773 1892.69,120.943 1895.19,120.114 1897.7,119.769 1900.2,119.798 1902.71,119.921 1905.21,119.973 1907.72,119.906 1910.22,119.85 \n 1912.73,119.868 1915.23,119.944 1917.74,119.996 1920.24,119.947 1922.75,119.898 1925.25,119.915 1927.76,119.992 1930.26,120.044 1932.77,119.996 1935.27,119.945 \n 1937.78,119.963 1940.28,120.056 1942.79,120.145 1945.29,120.07 1947.8,119.901 1950.3,119.935 1952.81,120.752 1955.31,122.277 1957.82,121.145 1960.33,117.225 \n 1962.83,118.36 1965.34,137.388 1967.84,163.979 1970.35,153.985 1972.85,153.493 1975.36,195.448 1977.86,185.389 1980.37,110.599 1982.87,240.643 1985.38,354.9 \n 1987.88,303.3 1990.39,246.411 1992.89,247.509 1995.4,208.58 1997.9,174.144 2000.41,173.522 2002.91,183.583 2005.42,184.523 2007.92,178.944 2010.43,176.643 \n 2012.93,176.759 2015.44,177.247 2017.94,177.319 2020.45,177.109 2022.95,176.999 2025.46,177.018 2027.96,177.103 2030.47,177.154 2032.97,177.102 2035.48,177.051 \n 2037.98,177.069 2040.49,177.145 2042.99,177.197 2045.5,177.149 2048,177.099 2050.51,177.117 2053.01,177.195 2055.52,177.251 2058.02,177.2 2060.53,177.138 \n 2063.03,177.158 2065.54,177.324 2068.04,177.564 2070.55,177.373 2073.05,176.743 2075.56,176.853 2078.07,180.278 2080.57,186.489 2083.08,182.404 2085.58,170.777 \n 2088.09,177.79 2090.59,221.339 2093.1,251.402 2095.6,267.772 2098.11,363.257 2100.61,403.448 2103.12,271.54 2105.62,205.815 2108.13,287.786 2110.63,279.552 \n 2113.14,254.225 2115.64,268.188 2118.15,272.083 2120.65,245.724 2123.16,232.251 2125.66,232.707 2128.17,235.722 2130.67,235.975 2133.18,234.639 2135.68,234.097 \n 2138.19,234.135 2140.69,234.293 2143.2,234.346 2145.7,234.266 2148.21,234.205 2150.71,234.222 2153.22,234.3 2155.72,234.351 2158.23,234.302 2160.73,234.253 \n 2163.24,234.27 2165.74,234.347 2168.25,234.399 2170.75,234.351 2173.26,234.3 2175.76,234.318 2178.27,234.405 2180.77,234.479 2183.28,234.415 2185.78,234.295 \n 2188.29,234.322 2190.79,234.848 2193.3,235.808 2195.81,235.08 2198.31,232.506 2200.82,233.132 2203.32,246.243 2205.83,266.423 2208.33,256.839 2210.84,245.206 \n 2213.34,275.887 2215.85,298.009 2218.35,251.163 2220.86,357.584 2223.36,499.582 2225.87,459.028 2228.37,364.702 2230.88,358.639 2233.38,330.6 2235.89,290.727 \n 2238.39,288.107 2240.9,301.555 2243.4,302.963 2245.91,294.428 2248.41,290.806 2250.92,290.978 2253.42,291.73 2255.93,291.818 2258.43,291.5 2260.94,291.35 \n 2263.44,291.37 2265.95,291.461 2268.45,291.513 2270.96,291.458 2273.46,291.407 2275.97,291.424 2278.47,291.501 2280.98,291.553 2283.48,291.504 2285.99,291.455 \n 2288.49,291.472 2291,291.55 2293.5,291.604 2296.01,291.555 2298.51,291.498 2301.02,291.517 2303.52,291.647 2306.03,291.813 2308.53,291.679 2311.04,291.271 \n 2313.55,291.342 2316.05,293.536 2318.56,297.603 2321.06,294.792 2323.57,286.053 2326.07,290.105 2328.58,326.353 2331.08,361.33 2333.59,362.687 2336.09,420.953 \n 2338.6,472.892 2341.1,371.091 2343.61,287.007 2346.11,404.116 2348.62,429.041 2351.12,391.433 2353.63,394.078 2356.13,398.594 2358.64,365.049 2361.14,345.969 \n 2363.65,346.45 2366.15,350.984 2368.66,351.362 2371.16,349.257 2373.67,348.41 2376.17,348.461 2378.68,348.674 2381.18,348.731 2383.69,348.629 2386.19,348.56 \n 2388.7,348.578 2391.2,348.656 2393.71,348.708 2396.21,348.658 2398.72,348.608 2401.22,348.626 2403.73,348.703 2406.23,348.755 2408.74,348.707 2411.24,348.656 \n 2413.75,348.674 2416.25,348.757 2418.76,348.822 2421.26,348.765 2423.77,348.673 2426.27,348.696 2428.78,349.051 2431.29,349.67 2433.79,349.192 2436.3,347.499 \n 2438.8,347.858 2441.31,356.777 2443.81,371.472 2446.32,363.443 2448.82,348.182 2451.33,369.099 2453.83,409.317 2456.34,393.091 2458.84,469.378 2461.35,618.411 \n 2463.85,600.142 2466.36,475.135 2468.86,456.576 2471.37,451.345 2473.87,410.815 2476.38,404.458 2478.88,420.899 2481.39,422.919 2483.89,410.406 2486.4,404.887 \n 2488.9,405.133 2491.41,406.281 2493.91,406.397 2496.42,405.911 2498.92,405.698 2501.43,405.721 2503.93,405.823 2506.44,405.874 2508.94,405.816 2511.45,405.763 \n 2513.95,405.78 2516.46,405.857 2518.96,405.909 2521.47,405.86 2523.97,405.811 2526.48,405.828 2528.98,405.906 2531.49,405.959 2533.99,405.91 2536.5,405.856 \n 2539,405.875 2541.51,405.985 2544.01,406.107 2546.52,406.006 2549.03,405.733 2551.53,405.782 2554.04,407.211 2556.54,409.889 2559.05,407.97 2561.55,401.646 \n 2564.06,404 2566.56,432.358 2569.07,465.712 2571.57,459.227 2574.08,486.368 2576.58,538.557 2579.09,476.258 2581.59,386.186 2584.1,521.319 2586.6,585.227 \n 2589.11,537.284 2591.61,519.946 2594.12,524.242 2596.62,485.343 2599.13,459.825 2601.63,460.136 2604.14,466.674 2606.64,467.235 2609.15,464.006 2611.65,462.701 \n 2614.16,462.773 2616.66,463.07 2619.17,463.132 2621.67,462.997 2624.18,462.915 2626.68,462.933 2629.19,463.014 2631.69,463.065 2634.2,463.015 2636.7,462.965 \n 2639.21,462.982 2641.71,463.059 2644.22,463.111 2646.72,463.063 2649.23,463.013 2651.73,463.031 2654.24,463.111 2656.74,463.172 2659.25,463.118 2661.75,463.042 \n 2664.26,463.064 2666.77,463.315 2669.27,463.727 2671.78,463.405 2674.28,462.279 2676.79,462.495 2679.29,468.549 2681.8,479.02 2684.3,472.738 2686.81,457.854 \n 2689.31,471.543 2691.82,518.268 2694.32,527.148 2696.83,574.98 2699.33,711.429 2701.84,719.739 2704.34,578.79 2706.85,542.733 2709.35,570.16 2711.86,536.184 \n 2714.36,523.864 2716.87,541.75 2719.37,544.501 2721.88,526.991 2724.38,518.876 2726.89,519.209 2729.39,520.932 2731.9,521.087 2734.4,520.351 2736.91,520.042 \n 2739.41,520.07 2741.92,520.187 2744.42,520.24 2746.93,520.175 2749.43,520.119 2751.94,520.137 2754.44,520.214 2756.95,520.266 2759.45,520.217 2761.96,520.167 \n 2764.46,520.185 2766.97,520.262 2769.47,520.315 2771.98,520.266 2774.48,520.214 2776.99,520.233 2779.49,520.33 2782,520.427 2784.51,520.345 2787.01,520.154 \n 2789.52,520.191 2792.02,521.144 2794.53,522.927 2797.03,521.615 2799.54,517.119 2802.04,518.509 2804.55,539.908 2807.05,568.625 2809.56,559.029 2812.06,564.532 \n 2814.57,610.025 2817.07,586.46 2819.58,504.896 2822.08,639.456 2824.59,740.88 2827.09,688.627 2829.6,643.868 2832.1,646.331 2834.61,606.227 2837.11,574.17 \n 2839.62,573.928 2842.12,582.922 2844.63,583.738 2847.13,578.931 2849.64,576.961 2852.14,577.063 2854.65,577.487 2857.15,577.556 2859.66,577.37 2862.16,577.27 \n 2864.67,577.289 2867.17,577.373 2869.68,577.424 2872.18,577.373 2874.69,577.322 2877.19,577.339 2879.7,577.417 2882.2,577.469 2884.71,577.42 2887.21,577.37 \n 2889.72,577.388 2892.22,577.467 2894.73,577.525 2897.24,577.473 2899.74,577.407 2902.25,577.427 2904.75,577.616 2907.26,577.901 2909.76,577.675 2912.27,576.915 \n 2914.77,577.051 2917.28,581.183 2919.78,588.579 2922.29,583.839 2924.79,570.996 2927.3,579.778 2929.8,625.482 2932.31,650.636 2934.81,675.81 2937.32,786.537 \n 2939.82,818.024 2942.33,678.974 2944.83,622.921 2947.34,687.165 2949.84,668.254 2952.35,647.711 2954.85,664.039 2957.36,667.569 2959.86,644.264 2962.37,632.777 \n 2964.87,633.197 2967.38,635.716 2969.88,635.931 2972.39,634.83 2974.89,634.381 2977.4,634.414 2979.9,634.557 2982.41,634.61 2984.91,634.536 2987.42,634.476 \n 2989.92,634.494 2992.43,634.572 2994.93,634.624 2997.44,634.575 2999.94,634.524 3002.45,634.542 3004.95,634.62 3007.46,634.673 3009.96,634.624 3012.47,634.572 \n 3014.98,634.591 3017.48,634.681 3019.99,634.762 3022.49,634.692 3025,634.551 3027.5,634.581 3030.01,635.235 3032.51,636.442 3035.02,635.536 3037.52,632.356 \n 3040.03,633.197 3042.53,649.035 3045.04,672.363 3047.54,662.34 3050.05,655.097 3052.55,691.383 3055.06,699.156 3057.56,637.311 3060.07,757.031 3062.57,887.501 \n 3065.08,839.736 3067.58,763.94 3070.09,762.081 3072.59,727.128 3075.1,689.553 3077.6,688.114 3080.11,699.858 3082.61,701.014 3085.12,694.081 3087.62,691.184 \n 3090.13,691.325 3092.63,691.932 3095.14,692.011 3097.64,691.752 3100.15,691.625 3102.65,691.645 3105.16,691.733 3107.66,691.784 3110.17,691.731 3112.67,691.679 \n 3115.18,691.804 \n \"/>\n</svg>\n"
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "f1!(du, v, u, p, t) = ((g, l,) = p; du[1] = v[1])\nf2!(dv, v, u, p, t) = ((g, l,) = p; dv[1] = -(g/l)*sin(u[1]))\n\nh(v, u, p, t) = ((g, l,) = p; v[1]^2/2 - (g/l)*(cos(u[1]) + 1)) # Hamiltonian\n\nv0(p) = ((g, l, ymax) = p; [√(g/l)*2ymax])\nu0(p) = ((g, l, ymax) = p; [0.0])",
"execution_count": 11,
"outputs": [
{
"data": {
"text/plain": "u0 (generic function with 1 method)"
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dtmax = 0.05\nsol = solve(ODEProblem(f!, U0(p), tspan, p); dtmax)\n@show length(sol.t)\nplot_pendulum(sol; title=\"ODEProblem with dtmax = $dtmax\")",
"execution_count": 12,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 604\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip890\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip890)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip891\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip890)\" d=\"\nM157.191 910.808 L1455.22 910.808 L1455.22 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip892\">\n <rect x=\"157\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 193.928,910.808 193.928,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 275.565,910.808 275.565,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 357.202,910.808 357.202,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 438.84,910.808 438.84,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 520.477,910.808 520.477,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 602.114,910.808 602.114,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 683.751,910.808 683.751,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 765.389,910.808 765.389,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 847.026,910.808 847.026,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 928.663,910.808 928.663,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1010.3,910.808 1010.3,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1091.94,910.808 1091.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1173.58,910.808 1173.58,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1255.21,910.808 1255.21,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1336.85,910.808 1336.85,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1418.49,910.808 1418.49,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,910.808 193.928,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 275.565,910.808 275.565,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 357.202,910.808 357.202,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 438.84,910.808 438.84,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 520.477,910.808 520.477,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 602.114,910.808 602.114,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 683.751,910.808 683.751,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 765.389,910.808 765.389,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 847.026,910.808 847.026,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 928.663,910.808 928.663,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1010.3,910.808 1010.3,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1091.94,910.808 1091.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1173.58,910.808 1173.58,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1255.21,910.808 1255.21,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1336.85,910.808 1336.85,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1418.49,910.808 1418.49,900.926 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M193.928 946.399 Q190.317 946.399 188.488 949.963 Q186.682 953.505 186.682 960.635 Q186.682 967.741 188.488 971.306 Q190.317 974.847 193.928 974.847 Q197.562 974.847 199.367 971.306 Q201.196 967.741 201.196 960.635 Q201.196 953.505 199.367 949.963 Q197.562 946.399 193.928 946.399 M193.928 942.695 Q199.738 942.695 202.793 947.301 Q205.872 951.885 205.872 960.635 Q205.872 969.361 202.793 973.968 Q199.738 978.551 193.928 978.551 Q188.117 978.551 185.039 973.968 Q181.983 969.361 181.983 960.635 Q181.983 951.885 185.039 947.301 Q188.117 942.695 193.928 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M270.218 973.945 L286.537 973.945 L286.537 977.88 L264.593 977.88 L264.593 973.945 Q267.255 971.19 271.838 966.56 Q276.445 961.908 277.625 960.565 Q279.87 958.042 280.75 956.306 Q281.653 954.547 281.653 952.857 Q281.653 950.102 279.708 948.366 Q277.787 946.63 274.685 946.63 Q272.486 946.63 270.033 947.394 Q267.602 948.158 264.824 949.709 L264.824 944.987 Q267.648 943.852 270.102 943.274 Q272.556 942.695 274.593 942.695 Q279.963 942.695 283.157 945.38 Q286.352 948.065 286.352 952.556 Q286.352 954.686 285.542 956.607 Q284.755 958.505 282.648 961.098 Q282.07 961.769 278.968 964.986 Q275.866 968.181 270.218 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M360.211 947.394 L348.406 965.843 L360.211 965.843 L360.211 947.394 M358.985 943.32 L364.864 943.32 L364.864 965.843 L369.795 965.843 L369.795 969.732 L364.864 969.732 L364.864 977.88 L360.211 977.88 L360.211 969.732 L344.61 969.732 L344.61 965.218 L358.985 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M439.245 958.736 Q436.096 958.736 434.245 960.889 Q432.416 963.042 432.416 966.792 Q432.416 970.519 434.245 972.695 Q436.096 974.847 439.245 974.847 Q442.393 974.847 444.221 972.695 Q446.073 970.519 446.073 966.792 Q446.073 963.042 444.221 960.889 Q442.393 958.736 439.245 958.736 M448.527 944.084 L448.527 948.343 Q446.768 947.51 444.962 947.07 Q443.18 946.63 441.421 946.63 Q436.791 946.63 434.337 949.755 Q431.907 952.88 431.559 959.199 Q432.925 957.186 434.985 956.121 Q437.046 955.033 439.522 955.033 Q444.731 955.033 447.74 958.204 Q450.772 961.352 450.772 966.792 Q450.772 972.116 447.624 975.334 Q444.476 978.551 439.245 978.551 Q433.249 978.551 430.078 973.968 Q426.907 969.361 426.907 960.635 Q426.907 952.44 430.796 947.579 Q434.684 942.695 441.235 942.695 Q442.995 942.695 444.777 943.042 Q446.583 943.389 448.527 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M520.477 961.468 Q517.144 961.468 515.222 963.25 Q513.324 965.033 513.324 968.158 Q513.324 971.283 515.222 973.065 Q517.144 974.847 520.477 974.847 Q523.81 974.847 525.731 973.065 Q527.653 971.26 527.653 968.158 Q527.653 965.033 525.731 963.25 Q523.833 961.468 520.477 961.468 M515.801 959.477 Q512.792 958.736 511.102 956.676 Q509.435 954.616 509.435 951.653 Q509.435 947.51 512.375 945.102 Q515.338 942.695 520.477 942.695 Q525.639 942.695 528.579 945.102 Q531.518 947.51 531.518 951.653 Q531.518 954.616 529.829 956.676 Q528.162 958.736 525.176 959.477 Q528.555 960.264 530.43 962.556 Q532.329 964.848 532.329 968.158 Q532.329 973.181 529.25 975.866 Q526.194 978.551 520.477 978.551 Q514.759 978.551 511.681 975.866 Q508.625 973.181 508.625 968.158 Q508.625 964.848 510.523 962.556 Q512.421 960.264 515.801 959.477 M514.088 952.093 Q514.088 954.778 515.755 956.283 Q517.444 957.787 520.477 957.787 Q523.486 957.787 525.176 956.283 Q526.889 954.778 526.889 952.093 Q526.889 949.408 525.176 947.903 Q523.486 946.399 520.477 946.399 Q517.444 946.399 515.755 947.903 Q514.088 949.408 514.088 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M576.802 973.945 L584.441 973.945 L584.441 947.579 L576.13 949.246 L576.13 944.987 L584.394 943.32 L589.07 943.32 L589.07 973.945 L596.709 973.945 L596.709 977.88 L576.802 977.88 L576.802 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M616.153 946.399 Q612.542 946.399 610.714 949.963 Q608.908 953.505 608.908 960.635 Q608.908 967.741 610.714 971.306 Q612.542 974.847 616.153 974.847 Q619.788 974.847 621.593 971.306 Q623.422 967.741 623.422 960.635 Q623.422 953.505 621.593 949.963 Q619.788 946.399 616.153 946.399 M616.153 942.695 Q621.964 942.695 625.019 947.301 Q628.098 951.885 628.098 960.635 Q628.098 969.361 625.019 973.968 Q621.964 978.551 616.153 978.551 Q610.343 978.551 607.265 973.968 Q604.209 969.361 604.209 960.635 Q604.209 951.885 607.265 947.301 Q610.343 942.695 616.153 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M659.238 973.945 L666.877 973.945 L666.877 947.579 L658.566 949.246 L658.566 944.987 L666.83 943.32 L671.506 943.32 L671.506 973.945 L679.145 973.945 L679.145 977.88 L659.238 977.88 L659.238 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M692.617 973.945 L708.936 973.945 L708.936 977.88 L686.992 977.88 L686.992 973.945 Q689.654 971.19 694.237 966.56 Q698.844 961.908 700.024 960.565 Q702.27 958.042 703.149 956.306 Q704.052 954.547 704.052 952.857 Q704.052 950.102 702.108 948.366 Q700.187 946.63 697.085 946.63 Q694.886 946.63 692.432 947.394 Q690.001 948.158 687.224 949.709 L687.224 944.987 Q690.048 943.852 692.501 943.274 Q694.955 942.695 696.992 942.695 Q702.362 942.695 705.557 945.38 Q708.751 948.065 708.751 952.556 Q708.751 954.686 707.941 956.607 Q707.154 958.505 705.048 961.098 Q704.469 961.769 701.367 964.986 Q698.265 968.181 692.617 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M739.833 973.945 L747.472 973.945 L747.472 947.579 L739.162 949.246 L739.162 944.987 L747.426 943.32 L752.102 943.32 L752.102 973.945 L759.741 973.945 L759.741 977.88 L739.833 977.88 L739.833 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M782.032 947.394 L770.227 965.843 L782.032 965.843 L782.032 947.394 M780.805 943.32 L786.685 943.32 L786.685 965.843 L791.615 965.843 L791.615 969.732 L786.685 969.732 L786.685 977.88 L782.032 977.88 L782.032 969.732 L766.43 969.732 L766.43 965.218 L780.805 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M821.633 973.945 L829.271 973.945 L829.271 947.579 L820.961 949.246 L820.961 944.987 L829.225 943.32 L833.901 943.32 L833.901 973.945 L841.54 973.945 L841.54 977.88 L821.633 977.88 L821.633 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M861.563 958.736 Q858.415 958.736 856.563 960.889 Q854.734 963.042 854.734 966.792 Q854.734 970.519 856.563 972.695 Q858.415 974.847 861.563 974.847 Q864.711 974.847 866.54 972.695 Q868.392 970.519 868.392 966.792 Q868.392 963.042 866.54 960.889 Q864.711 958.736 861.563 958.736 M870.845 944.084 L870.845 948.343 Q869.086 947.51 867.281 947.07 Q865.498 946.63 863.739 946.63 Q859.109 946.63 856.656 949.755 Q854.225 952.88 853.878 959.199 Q855.244 957.186 857.304 956.121 Q859.364 955.033 861.841 955.033 Q867.049 955.033 870.058 958.204 Q873.091 961.352 873.091 966.792 Q873.091 972.116 869.943 975.334 Q866.794 978.551 861.563 978.551 Q855.568 978.551 852.396 973.968 Q849.225 969.361 849.225 960.635 Q849.225 952.44 853.114 947.579 Q857.003 942.695 863.554 942.695 Q865.313 942.695 867.095 943.042 Q868.901 943.389 870.845 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M903.397 973.945 L911.036 973.945 L911.036 947.579 L902.726 949.246 L902.726 944.987 L910.99 943.32 L915.666 943.32 L915.666 973.945 L923.305 973.945 L923.305 977.88 L903.397 977.88 L903.397 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M942.749 961.468 Q939.416 961.468 937.494 963.25 Q935.596 965.033 935.596 968.158 Q935.596 971.283 937.494 973.065 Q939.416 974.847 942.749 974.847 Q946.082 974.847 948.003 973.065 Q949.925 971.26 949.925 968.158 Q949.925 965.033 948.003 963.25 Q946.105 961.468 942.749 961.468 M938.073 959.477 Q935.064 958.736 933.374 956.676 Q931.707 954.616 931.707 951.653 Q931.707 947.51 934.647 945.102 Q937.61 942.695 942.749 942.695 Q947.911 942.695 950.851 945.102 Q953.79 947.51 953.79 951.653 Q953.79 954.616 952.101 956.676 Q950.434 958.736 947.448 959.477 Q950.828 960.264 952.703 962.556 Q954.601 964.848 954.601 968.158 Q954.601 973.181 951.522 975.866 Q948.466 978.551 942.749 978.551 Q937.031 978.551 933.953 975.866 Q930.897 973.181 930.897 968.158 Q930.897 964.848 932.795 962.556 Q934.693 960.264 938.073 959.477 M936.36 952.093 Q936.36 954.778 938.027 956.283 Q939.716 957.787 942.749 957.787 Q945.758 957.787 947.448 956.283 Q949.161 954.778 949.161 952.093 Q949.161 949.408 947.448 947.903 Q945.758 946.399 942.749 946.399 Q939.716 946.399 938.027 947.903 Q936.36 949.408 936.36 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M989.074 973.945 L1005.39 973.945 L1005.39 977.88 L983.449 977.88 L983.449 973.945 Q986.111 971.19 990.694 966.56 Q995.301 961.908 996.481 960.565 Q998.727 958.042 999.606 956.306 Q1000.51 954.547 1000.51 952.857 Q1000.51 950.102 998.565 948.366 Q996.643 946.63 993.541 946.63 Q991.342 946.63 988.889 947.394 Q986.458 948.158 983.68 949.709 L983.68 944.987 Q986.504 943.852 988.958 943.274 Q991.412 942.695 993.449 942.695 Q998.819 942.695 1002.01 945.38 Q1005.21 948.065 1005.21 952.556 Q1005.21 954.686 1004.4 956.607 Q1003.61 958.505 1001.5 961.098 Q1000.93 961.769 997.824 964.986 Q994.722 968.181 989.074 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1025.21 946.399 Q1021.6 946.399 1019.77 949.963 Q1017.96 953.505 1017.96 960.635 Q1017.96 967.741 1019.77 971.306 Q1021.6 974.847 1025.21 974.847 Q1028.84 974.847 1030.65 971.306 Q1032.48 967.741 1032.48 960.635 Q1032.48 953.505 1030.65 949.963 Q1028.84 946.399 1025.21 946.399 M1025.21 942.695 Q1031.02 942.695 1034.07 947.301 Q1037.15 951.885 1037.15 960.635 Q1037.15 969.361 1034.07 973.968 Q1031.02 978.551 1025.21 978.551 Q1019.4 978.551 1016.32 973.968 Q1013.26 969.361 1013.26 960.635 Q1013.26 951.885 1016.32 947.301 Q1019.4 942.695 1025.21 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1071.51 973.945 L1087.83 973.945 L1087.83 977.88 L1065.88 977.88 L1065.88 973.945 Q1068.55 971.19 1073.13 966.56 Q1077.74 961.908 1078.92 960.565 Q1081.16 958.042 1082.04 956.306 Q1082.94 954.547 1082.94 952.857 Q1082.94 950.102 1081 948.366 Q1079.08 946.63 1075.98 946.63 Q1073.78 946.63 1071.32 947.394 Q1068.89 948.158 1066.12 949.709 L1066.12 944.987 Q1068.94 943.852 1071.39 943.274 Q1073.85 942.695 1075.88 942.695 Q1081.26 942.695 1084.45 945.38 Q1087.64 948.065 1087.64 952.556 Q1087.64 954.686 1086.83 956.607 Q1086.05 958.505 1083.94 961.098 Q1083.36 961.769 1080.26 964.986 Q1077.16 968.181 1071.51 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1101.67 973.945 L1117.99 973.945 L1117.99 977.88 L1096.05 977.88 L1096.05 973.945 Q1098.71 971.19 1103.29 966.56 Q1107.9 961.908 1109.08 960.565 Q1111.32 958.042 1112.2 956.306 Q1113.11 954.547 1113.11 952.857 Q1113.11 950.102 1111.16 948.366 Q1109.24 946.63 1106.14 946.63 Q1103.94 946.63 1101.49 947.394 Q1099.06 948.158 1096.28 949.709 L1096.28 944.987 Q1099.1 943.852 1101.56 943.274 Q1104.01 942.695 1106.05 942.695 Q1111.42 942.695 1114.61 945.38 Q1117.81 948.065 1117.81 952.556 Q1117.81 954.686 1117 956.607 Q1116.21 958.505 1114.1 961.098 Q1113.52 961.769 1110.42 964.986 Q1107.32 968.181 1101.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1152.11 973.945 L1168.42 973.945 L1168.42 977.88 L1146.48 977.88 L1146.48 973.945 Q1149.14 971.19 1153.73 966.56 Q1158.33 961.908 1159.51 960.565 Q1161.76 958.042 1162.64 956.306 Q1163.54 954.547 1163.54 952.857 Q1163.54 950.102 1161.6 948.366 Q1159.67 946.63 1156.57 946.63 Q1154.37 946.63 1151.92 947.394 Q1149.49 948.158 1146.71 949.709 L1146.71 944.987 Q1149.54 943.852 1151.99 943.274 Q1154.44 942.695 1156.48 942.695 Q1161.85 942.695 1165.05 945.38 Q1168.24 948.065 1168.24 952.556 Q1168.24 954.686 1167.43 956.607 Q1166.64 958.505 1164.54 961.098 Q1163.96 961.769 1160.86 964.986 Q1157.75 968.181 1152.11 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1191.09 947.394 L1179.28 965.843 L1191.09 965.843 L1191.09 947.394 M1189.86 943.32 L1195.74 943.32 L1195.74 965.843 L1200.67 965.843 L1200.67 969.732 L1195.74 969.732 L1195.74 977.88 L1191.09 977.88 L1191.09 969.732 L1175.48 969.732 L1175.48 965.218 L1189.86 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1233.9 973.945 L1250.22 973.945 L1250.22 977.88 L1228.28 977.88 L1228.28 973.945 Q1230.94 971.19 1235.53 966.56 Q1240.13 961.908 1241.31 960.565 Q1243.56 958.042 1244.44 956.306 Q1245.34 954.547 1245.34 952.857 Q1245.34 950.102 1243.4 948.366 Q1241.47 946.63 1238.37 946.63 Q1236.17 946.63 1233.72 947.394 Q1231.29 948.158 1228.51 949.709 L1228.51 944.987 Q1231.34 943.852 1233.79 943.274 Q1236.24 942.695 1238.28 942.695 Q1243.65 942.695 1246.84 945.38 Q1250.04 948.065 1250.04 952.556 Q1250.04 954.686 1249.23 956.607 Q1248.44 958.505 1246.34 961.098 Q1245.76 961.769 1242.65 964.986 Q1239.55 968.181 1233.9 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1270.62 958.736 Q1267.47 958.736 1265.62 960.889 Q1263.79 963.042 1263.79 966.792 Q1263.79 970.519 1265.62 972.695 Q1267.47 974.847 1270.62 974.847 Q1273.77 974.847 1275.59 972.695 Q1277.45 970.519 1277.45 966.792 Q1277.45 963.042 1275.59 960.889 Q1273.77 958.736 1270.62 958.736 M1279.9 944.084 L1279.9 948.343 Q1278.14 947.51 1276.34 947.07 Q1274.55 946.63 1272.79 946.63 Q1268.16 946.63 1265.71 949.755 Q1263.28 952.88 1262.93 959.199 Q1264.3 957.186 1266.36 956.121 Q1268.42 955.033 1270.9 955.033 Q1276.1 955.033 1279.11 958.204 Q1282.15 961.352 1282.15 966.792 Q1282.15 972.116 1279 975.334 Q1275.85 978.551 1270.62 978.551 Q1264.62 978.551 1261.45 973.968 Q1258.28 969.361 1258.28 960.635 Q1258.28 952.44 1262.17 947.579 Q1266.06 942.695 1272.61 942.695 Q1274.37 942.695 1276.15 943.042 Q1277.96 943.389 1279.9 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1315.67 973.945 L1331.99 973.945 L1331.99 977.88 L1310.04 977.88 L1310.04 973.945 Q1312.71 971.19 1317.29 966.56 Q1321.9 961.908 1323.08 960.565 Q1325.32 958.042 1326.2 956.306 Q1327.1 954.547 1327.1 952.857 Q1327.1 950.102 1325.16 948.366 Q1323.24 946.63 1320.14 946.63 Q1317.94 946.63 1315.48 947.394 Q1313.05 948.158 1310.28 949.709 L1310.28 944.987 Q1313.1 943.852 1315.55 943.274 Q1318.01 942.695 1320.04 942.695 Q1325.41 942.695 1328.61 945.38 Q1331.8 948.065 1331.8 952.556 Q1331.8 954.686 1330.99 956.607 Q1330.21 958.505 1328.1 961.098 Q1327.52 961.769 1324.42 964.986 Q1321.32 968.181 1315.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1351.8 961.468 Q1348.47 961.468 1346.55 963.25 Q1344.65 965.033 1344.65 968.158 Q1344.65 971.283 1346.55 973.065 Q1348.47 974.847 1351.8 974.847 Q1355.14 974.847 1357.06 973.065 Q1358.98 971.26 1358.98 968.158 Q1358.98 965.033 1357.06 963.25 Q1355.16 961.468 1351.8 961.468 M1347.13 959.477 Q1344.12 958.736 1342.43 956.676 Q1340.76 954.616 1340.76 951.653 Q1340.76 947.51 1343.7 945.102 Q1346.66 942.695 1351.8 942.695 Q1356.97 942.695 1359.91 945.102 Q1362.85 947.51 1362.85 951.653 Q1362.85 954.616 1361.16 956.676 Q1359.49 958.736 1356.5 959.477 Q1359.88 960.264 1361.76 962.556 Q1363.66 964.848 1363.66 968.158 Q1363.66 973.181 1360.58 975.866 Q1357.52 978.551 1351.8 978.551 Q1346.09 978.551 1343.01 975.866 Q1339.95 973.181 1339.95 968.158 Q1339.95 964.848 1341.85 962.556 Q1343.75 960.264 1347.13 959.477 M1345.41 952.093 Q1345.41 954.778 1347.08 956.283 Q1348.77 957.787 1351.8 957.787 Q1354.81 957.787 1356.5 956.283 Q1358.22 954.778 1358.22 952.093 Q1358.22 949.408 1356.5 947.903 Q1354.81 946.399 1351.8 946.399 Q1348.77 946.399 1347.08 947.903 Q1345.41 949.408 1345.41 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1407.33 959.246 Q1410.69 959.963 1412.56 962.232 Q1414.46 964.5 1414.46 967.834 Q1414.46 972.949 1410.94 975.75 Q1407.42 978.551 1400.94 978.551 Q1398.76 978.551 1396.45 978.111 Q1394.16 977.695 1391.7 976.838 L1391.7 972.324 Q1393.65 973.459 1395.96 974.037 Q1398.28 974.616 1400.8 974.616 Q1405.2 974.616 1407.49 972.88 Q1409.81 971.144 1409.81 967.834 Q1409.81 964.778 1407.65 963.065 Q1405.52 961.329 1401.7 961.329 L1397.68 961.329 L1397.68 957.486 L1401.89 957.486 Q1405.34 957.486 1407.17 956.121 Q1409 954.732 1409 952.139 Q1409 949.477 1407.1 948.065 Q1405.22 946.63 1401.7 946.63 Q1399.78 946.63 1397.58 947.047 Q1395.39 947.463 1392.75 948.343 L1392.75 944.176 Q1395.41 943.436 1397.72 943.065 Q1400.06 942.695 1402.12 942.695 Q1407.45 942.695 1410.55 945.125 Q1413.65 947.533 1413.65 951.653 Q1413.65 954.524 1412.01 956.514 Q1410.36 958.482 1407.33 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1433.32 946.399 Q1429.71 946.399 1427.89 949.963 Q1426.08 953.505 1426.08 960.635 Q1426.08 967.741 1427.89 971.306 Q1429.71 974.847 1433.32 974.847 Q1436.96 974.847 1438.76 971.306 Q1440.59 967.741 1440.59 960.635 Q1440.59 953.505 1438.76 949.963 Q1436.96 946.399 1433.32 946.399 M1433.32 942.695 Q1439.14 942.695 1442.19 947.301 Q1445.27 951.885 1445.27 960.635 Q1445.27 969.361 1442.19 973.968 Q1439.14 978.551 1433.32 978.551 Q1427.51 978.551 1424.44 973.968 Q1421.38 969.361 1421.38 960.635 Q1421.38 951.885 1424.44 947.301 Q1427.51 942.695 1433.32 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1455.22,832.378 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1455.22,753.948 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1455.22,675.518 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1455.22,597.088 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1455.22,518.658 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1455.22,440.227 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1455.22,361.797 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1455.22,283.367 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1455.22,204.937 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1455.22,126.507 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 172.767,910.808 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 172.767,832.378 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 172.767,753.948 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 172.767,675.518 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 172.767,597.088 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 172.767,518.658 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 172.767,440.227 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 172.767,361.797 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 172.767,283.367 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 172.767,204.937 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 172.767,126.507 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M358.177 12.6041 Q351.812 12.6041 348.05 17.3494 Q344.317 22.0948 344.317 30.2834 Q344.317 38.4431 348.05 43.1884 Q351.812 47.9338 358.177 47.9338 Q364.543 47.9338 368.247 43.1884 Q371.979 38.4431 371.979 30.2834 Q371.979 22.0948 368.247 17.3494 Q364.543 12.6041 358.177 12.6041 M358.177 7.85875 Q367.263 7.85875 372.703 13.964 Q378.143 20.0404 378.143 30.2834 Q378.143 40.4975 372.703 46.6028 Q367.263 52.6791 358.177 52.6791 Q349.063 52.6791 343.594 46.6028 Q338.154 40.5264 338.154 30.2834 Q338.154 20.0404 343.594 13.964 Q349.063 7.85875 358.177 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M393.131 13.4432 L393.131 47.0368 L400.191 47.0368 Q409.132 47.0368 413.27 42.9859 Q417.436 38.935 417.436 30.1966 Q417.436 21.5161 413.27 17.4941 Q409.132 13.4432 400.191 13.4432 L393.131 13.4432 M387.286 8.64 L399.294 8.64 Q411.852 8.64 417.726 13.8772 Q423.599 19.0855 423.599 30.1966 Q423.599 41.3655 417.697 46.6028 Q411.794 51.84 399.294 51.84 L387.286 51.84 L387.286 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M432.917 8.64 L460.231 8.64 L460.231 13.559 L438.761 13.559 L438.761 26.3482 L459.334 26.3482 L459.334 31.2672 L438.761 31.2672 L438.761 46.921 L460.752 46.921 L460.752 51.84 L432.917 51.84 L432.917 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M476.203 13.4432 L476.203 29.6758 L483.553 29.6758 Q487.633 29.6758 489.861 27.5635 Q492.089 25.4513 492.089 21.545 Q492.089 17.6677 489.861 15.5555 Q487.633 13.4432 483.553 13.4432 L476.203 13.4432 M470.358 8.64 L483.553 8.64 Q490.816 8.64 494.519 11.9386 Q498.252 15.2083 498.252 21.545 Q498.252 27.9397 494.519 31.2093 Q490.816 34.479 483.553 34.479 L476.203 34.479 L476.203 51.84 L470.358 51.84 L470.358 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M523.599 24.4096 Q522.702 23.8888 521.631 23.6573 Q520.59 23.3969 519.317 23.3969 Q514.803 23.3969 512.372 26.3482 Q509.971 29.2707 509.971 34.7683 L509.971 51.84 L504.618 51.84 L504.618 19.4328 L509.971 19.4328 L509.971 24.4675 Q511.649 21.5161 514.34 20.0983 Q517.031 18.6515 520.879 18.6515 Q521.429 18.6515 522.094 18.7383 Q522.76 18.7962 523.57 18.9409 L523.599 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M540.439 23.1654 Q536.157 23.1654 533.668 26.5218 Q531.18 29.8494 531.18 35.6653 Q531.18 41.4813 533.639 44.8377 Q536.128 48.1653 540.439 48.1653 Q544.693 48.1653 547.181 44.8088 Q549.669 41.4523 549.669 35.6653 Q549.669 29.9072 547.181 26.5508 Q544.693 23.1654 540.439 23.1654 M540.439 18.6515 Q547.384 18.6515 551.348 23.1654 Q555.312 27.6792 555.312 35.6653 Q555.312 43.6225 551.348 48.1653 Q547.384 52.6791 540.439 52.6791 Q533.466 52.6791 529.502 48.1653 Q525.567 43.6225 525.567 35.6653 Q525.567 27.6792 529.502 23.1654 Q533.466 18.6515 540.439 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M587.401 35.6653 Q587.401 29.7915 584.97 26.464 Q582.569 23.1075 578.344 23.1075 Q574.119 23.1075 571.689 26.464 Q569.287 29.7915 569.287 35.6653 Q569.287 41.5391 571.689 44.8956 Q574.119 48.2231 578.344 48.2231 Q582.569 48.2231 584.97 44.8956 Q587.401 41.5391 587.401 35.6653 M569.287 24.3517 Q570.966 21.4582 573.512 20.0693 Q576.087 18.6515 579.646 18.6515 Q585.549 18.6515 589.224 23.339 Q592.927 28.0265 592.927 35.6653 Q592.927 43.3042 589.224 47.9916 Q585.549 52.6791 579.646 52.6791 Q576.087 52.6791 573.512 51.2902 Q570.966 49.8724 569.287 46.9789 L569.287 51.84 L563.934 51.84 L563.934 6.81709 L569.287 6.81709 L569.287 24.3517 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M601.752 6.81709 L607.076 6.81709 L607.076 51.84 L601.752 51.84 L601.752 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M645.936 34.3054 L645.936 36.9095 L621.457 36.9095 Q621.804 42.4072 624.756 45.3007 Q627.736 48.1653 633.031 48.1653 Q636.098 48.1653 638.963 47.4129 Q641.856 46.6606 644.692 45.156 L644.692 50.1907 Q641.827 51.406 638.818 52.0425 Q635.809 52.6791 632.713 52.6791 Q624.958 52.6791 620.416 48.1653 Q615.902 43.6514 615.902 35.9547 Q615.902 27.9975 620.184 23.339 Q624.495 18.6515 631.787 18.6515 Q638.326 18.6515 642.117 22.876 Q645.936 27.0716 645.936 34.3054 M640.612 32.7429 Q640.554 28.3737 638.153 25.7695 Q635.78 23.1654 631.845 23.1654 Q627.389 23.1654 624.698 25.6827 Q622.036 28.2001 621.631 32.7718 L640.612 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M679.906 25.6538 Q681.902 22.0659 684.68 20.3587 Q687.458 18.6515 691.22 18.6515 Q696.283 18.6515 699.032 22.2105 Q701.781 25.7406 701.781 32.2799 L701.781 51.84 L696.428 51.84 L696.428 32.4535 Q696.428 27.795 694.779 25.5381 Q693.129 23.2811 689.744 23.2811 Q685.606 23.2811 683.205 26.03 Q680.803 28.7788 680.803 33.5241 L680.803 51.84 L675.45 51.84 L675.45 32.4535 Q675.45 27.7661 673.801 25.5381 Q672.151 23.2811 668.708 23.2811 Q664.628 23.2811 662.227 26.0589 Q659.825 28.8077 659.825 33.5241 L659.825 51.84 L654.472 51.84 L654.472 19.4328 L659.825 19.4328 L659.825 24.4675 Q661.648 21.4872 664.194 20.0693 Q666.741 18.6515 670.242 18.6515 Q673.772 18.6515 676.231 20.4455 Q678.72 22.2395 679.906 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M728.141 19.4328 L733.465 19.4328 L740.12 44.722 L746.746 19.4328 L753.025 19.4328 L759.68 44.722 L766.306 19.4328 L771.63 19.4328 L763.152 51.84 L756.873 51.84 L749.9 25.2776 L742.898 51.84 L736.619 51.84 L728.141 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M779.703 19.4328 L785.027 19.4328 L785.027 51.84 L779.703 51.84 L779.703 19.4328 M779.703 6.81709 L785.027 6.81709 L785.027 13.559 L779.703 13.559 L779.703 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M801.433 10.2314 L801.433 19.4328 L812.399 19.4328 L812.399 23.5705 L801.433 23.5705 L801.433 41.163 Q801.433 45.1271 802.504 46.2555 Q803.603 47.384 806.931 47.384 L812.399 47.384 L812.399 51.84 L806.931 51.84 Q800.768 51.84 798.424 49.5541 Q796.08 47.2393 796.08 41.163 L796.08 23.5705 L792.174 23.5705 L792.174 19.4328 L796.08 19.4328 L796.08 10.2314 L801.433 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M846.34 32.2799 L846.34 51.84 L841.016 51.84 L841.016 32.4535 Q841.016 27.8529 839.222 25.567 Q837.428 23.2811 833.84 23.2811 Q829.529 23.2811 827.041 26.03 Q824.552 28.7788 824.552 33.5241 L824.552 51.84 L819.199 51.84 L819.199 6.81709 L824.552 6.81709 L824.552 24.4675 Q826.462 21.545 829.037 20.0983 Q831.641 18.6515 835.027 18.6515 Q840.611 18.6515 843.476 22.1237 Q846.34 25.567 846.34 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M897.121 24.3517 L897.121 6.81709 L902.445 6.81709 L902.445 51.84 L897.121 51.84 L897.121 46.9789 Q895.443 49.8724 892.868 51.2902 Q890.322 52.6791 886.734 52.6791 Q880.86 52.6791 877.156 47.9916 Q873.481 43.3042 873.481 35.6653 Q873.481 28.0265 877.156 23.339 Q880.86 18.6515 886.734 18.6515 Q890.322 18.6515 892.868 20.0693 Q895.443 21.4582 897.121 24.3517 M878.979 35.6653 Q878.979 41.5391 881.381 44.8956 Q883.811 48.2231 888.036 48.2231 Q892.26 48.2231 894.691 44.8956 Q897.121 41.5391 897.121 35.6653 Q897.121 29.7915 894.691 26.464 Q892.26 23.1075 888.036 23.1075 Q883.811 23.1075 881.381 26.464 Q878.979 29.7915 878.979 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M918.678 10.2314 L918.678 19.4328 L929.644 19.4328 L929.644 23.5705 L918.678 23.5705 L918.678 41.163 Q918.678 45.1271 919.748 46.2555 Q920.848 47.384 924.175 47.384 L929.644 47.384 L929.644 51.84 L924.175 51.84 Q918.012 51.84 915.669 49.5541 Q913.325 47.2393 913.325 41.163 L913.325 23.5705 L909.419 23.5705 L909.419 19.4328 L913.325 19.4328 L913.325 10.2314 L918.678 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M961.878 25.6538 Q963.874 22.0659 966.652 20.3587 Q969.43 18.6515 973.191 18.6515 Q978.255 18.6515 981.004 22.2105 Q983.753 25.7406 983.753 32.2799 L983.753 51.84 L978.4 51.84 L978.4 32.4535 Q978.4 27.795 976.75 25.5381 Q975.101 23.2811 971.716 23.2811 Q967.578 23.2811 965.176 26.03 Q962.775 28.7788 962.775 33.5241 L962.775 51.84 L957.422 51.84 L957.422 32.4535 Q957.422 27.7661 955.773 25.5381 Q954.123 23.2811 950.68 23.2811 Q946.6 23.2811 944.199 26.0589 Q941.797 28.8077 941.797 33.5241 L941.797 51.84 L936.444 51.84 L936.444 19.4328 L941.797 19.4328 L941.797 24.4675 Q943.62 21.4872 946.166 20.0693 Q948.712 18.6515 952.214 18.6515 Q955.744 18.6515 958.203 20.4455 Q960.691 22.2395 961.878 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1009.1 35.5496 Q1002.65 35.5496 1000.16 37.0253 Q997.67 38.501 997.67 42.06 Q997.67 44.8956 999.522 46.5738 Q1001.4 48.2231 1004.61 48.2231 Q1009.04 48.2231 1011.7 45.0981 Q1014.39 41.9442 1014.39 36.7359 L1014.39 35.5496 L1009.1 35.5496 M1019.72 33.3505 L1019.72 51.84 L1014.39 51.84 L1014.39 46.921 Q1012.57 49.8724 1009.85 51.2902 Q1007.13 52.6791 1003.2 52.6791 Q998.22 52.6791 995.269 49.9014 Q992.346 47.0947 992.346 42.4072 Q992.346 36.9385 995.992 34.1607 Q999.667 31.3829 1006.93 31.3829 L1014.39 31.3829 L1014.39 30.8621 Q1014.39 27.1874 1011.96 25.1908 Q1009.56 23.1654 1005.19 23.1654 Q1002.42 23.1654 999.783 23.8309 Q997.15 24.4964 994.719 25.8274 L994.719 20.9085 Q997.642 19.78 1000.39 19.2302 Q1003.14 18.6515 1005.74 18.6515 Q1012.77 18.6515 1016.25 22.2973 Q1019.72 25.9431 1019.72 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1057.62 19.4328 L1045.91 35.2024 L1058.23 51.84 L1051.95 51.84 L1042.52 39.1086 L1033.09 51.84 L1026.81 51.84 L1039.39 34.8841 L1027.88 19.4328 L1034.16 19.4328 L1042.75 30.9778 L1051.34 19.4328 L1057.62 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1085.29 24.9304 L1122.38 24.9304 L1122.38 29.7915 L1085.29 29.7915 L1085.29 24.9304 M1085.29 36.7359 L1122.38 36.7359 L1122.38 41.6549 L1085.29 41.6549 L1085.29 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1166.33 12.4884 Q1161.82 12.4884 1159.53 16.9444 Q1157.28 21.3714 1157.28 30.2834 Q1157.28 39.1665 1159.53 43.6225 Q1161.82 48.0495 1166.33 48.0495 Q1170.88 48.0495 1173.13 43.6225 Q1175.42 39.1665 1175.42 30.2834 Q1175.42 21.3714 1173.13 16.9444 Q1170.88 12.4884 1166.33 12.4884 M1166.33 7.85875 Q1173.6 7.85875 1177.41 13.6168 Q1181.26 19.346 1181.26 30.2834 Q1181.26 41.1919 1177.41 46.95 Q1173.6 52.6791 1166.33 52.6791 Q1159.07 52.6791 1155.22 46.95 Q1151.4 41.1919 1151.4 30.2834 Q1151.4 19.346 1155.22 13.6168 Q1159.07 7.85875 1166.33 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1191.54 44.4905 L1197.64 44.4905 L1197.64 51.84 L1191.54 51.84 L1191.54 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1222.87 12.4884 Q1218.36 12.4884 1216.07 16.9444 Q1213.82 21.3714 1213.82 30.2834 Q1213.82 39.1665 1216.07 43.6225 Q1218.36 48.0495 1222.87 48.0495 Q1227.41 48.0495 1229.67 43.6225 Q1231.96 39.1665 1231.96 30.2834 Q1231.96 21.3714 1229.67 16.9444 Q1227.41 12.4884 1222.87 12.4884 M1222.87 7.85875 Q1230.13 7.85875 1233.95 13.6168 Q1237.8 19.346 1237.8 30.2834 Q1237.8 41.1919 1233.95 46.95 Q1230.13 52.6791 1222.87 52.6791 Q1215.61 52.6791 1211.76 46.95 Q1207.94 41.1919 1207.94 30.2834 Q1207.94 19.346 1211.76 13.6168 Q1215.61 7.85875 1222.87 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1248.13 8.64 L1271.08 8.64 L1271.08 13.559 L1253.49 13.559 L1253.49 24.1492 Q1254.76 23.7152 1256.03 23.5126 Q1257.3 23.2811 1258.58 23.2811 Q1265.81 23.2811 1270.04 27.2452 Q1274.26 31.2093 1274.26 37.9801 Q1274.26 44.9535 1269.92 48.8308 Q1265.58 52.6791 1257.68 52.6791 Q1254.96 52.6791 1252.13 52.2162 Q1249.32 51.7532 1246.31 50.8273 L1246.31 44.9535 Q1248.91 46.3713 1251.69 47.0657 Q1254.47 47.7602 1257.56 47.7602 Q1262.57 47.7602 1265.49 45.1271 Q1268.42 42.494 1268.42 37.9801 Q1268.42 33.4663 1265.49 30.8332 Q1262.57 28.2001 1257.56 28.2001 Q1255.22 28.2001 1252.88 28.7209 Q1250.56 29.2417 1248.13 30.3413 L1248.13 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip892)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.907 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.595 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.261 656.811,665.751 \n 659.26,638.139 661.709,609.161 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.396 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.307 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.558 769.471,483.174 771.92,506.521 774.369,532.377 776.818,560.242 779.267,589.345 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.05 791.513,721.115 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.469 872.334,796.636 874.783,787.244 877.232,776.03 \n 879.681,762.718 882.13,747.036 884.579,728.752 887.028,707.729 889.477,683.992 891.927,657.802 894.376,629.699 896.825,600.493 899.274,571.169 901.723,542.731 \n 904.172,516.039 906.621,491.702 909.07,470.041 911.519,451.131 913.969,434.865 916.418,421.028 918.867,409.354 921.316,399.564 923.765,391.392 926.214,384.596 \n 928.663,378.962 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.574 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.772 989.891,398.819 992.34,408.463 994.79,419.969 997.239,433.613 999.688,449.666 \n 1002.14,468.348 1004.59,489.778 1007.04,513.899 1009.48,540.412 1011.93,568.734 1014.38,598.022 1016.83,627.277 1019.28,655.506 1021.73,681.882 1024.18,705.839 \n 1026.63,727.093 1029.08,745.604 1031.53,761.496 1033.98,774.997 1036.42,786.376 1038.87,795.911 1041.32,803.866 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.203 1053.57,827.249 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.598 \n 1100.1,814.886 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.139 1112.35,772.336 1114.8,758.353 1117.25,741.925 1119.69,722.842 1122.14,701.007 \n 1124.59,676.508 1127.04,649.684 1129.49,621.162 1131.94,591.815 1134.39,562.651 1136.84,534.648 1139.29,508.6 1141.74,485.03 1144.19,464.182 1146.63,446.069 \n 1149.08,430.545 1151.53,417.374 1153.98,406.284 1156.43,396.998 1158.88,389.256 1161.33,382.823 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.058 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.216 1217.66,380.063 1220.11,385.926 \n 1222.56,392.993 1225.01,401.485 1227.46,411.649 1229.9,423.756 1232.35,438.084 1234.8,454.893 1237.25,474.379 1239.7,496.617 1242.15,521.487 1244.6,548.607 \n 1247.05,577.311 1249.5,606.696 1251.95,635.747 1254.4,663.506 1256.85,689.214 1259.29,712.391 1261.74,732.833 1264.19,750.552 1266.64,765.713 1269.09,778.56 \n 1271.54,789.366 1273.99,798.409 1276.44,805.945 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.166 1288.68,828.034 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.223 1313.17,835.743 1315.62,834.988 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.412 1332.77,818.302 1335.22,813.316 1337.67,807.288 1340.12,800.025 1342.56,791.303 \n 1345.01,780.87 1347.46,768.453 1349.91,753.775 1352.36,736.582 1354.81,716.691 1357.26,694.051 1359.71,668.819 1362.16,641.417 1364.61,612.551 1367.06,583.152 \n 1369.5,554.234 1371.95,526.736 1374.4,501.378 1376.85,478.597 1379.3,458.562 1381.75,441.232 1384.2,426.429 1386.65,413.901 1389.1,403.371 1391.55,394.566 \n 1394,387.233 1396.45,381.146 1398.89,376.11 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.515 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<polyline clip-path=\"url(#clip892)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.906 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.594 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.262 656.811,665.751 \n 659.26,638.139 661.709,609.162 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.397 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.306 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.557 769.471,483.173 771.92,506.52 774.369,532.376 776.818,560.242 779.267,589.344 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.049 791.513,721.114 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.47 872.334,796.637 874.783,787.244 877.232,776.03 \n 879.681,762.719 882.13,747.037 884.579,728.753 887.028,707.73 889.477,683.993 891.927,657.803 894.376,629.7 896.825,600.495 899.274,571.17 901.723,542.732 \n 904.172,516.04 906.621,491.703 909.07,470.042 911.519,451.132 913.969,434.866 916.418,421.029 918.867,409.354 921.316,399.565 923.765,391.393 926.214,384.596 \n 928.663,378.963 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.573 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.771 989.891,398.819 992.34,408.463 994.79,419.968 997.239,433.613 999.688,449.665 \n 1002.14,468.347 1004.59,489.776 1007.04,513.897 1009.48,540.411 1011.93,568.732 1014.38,598.02 1016.83,627.275 1019.28,655.505 1021.73,681.881 1024.18,705.837 \n 1026.63,727.092 1029.08,745.603 1031.53,761.495 1033.98,774.996 1036.42,786.375 1038.87,795.911 1041.32,803.865 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.202 1053.57,827.248 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.599 \n 1100.1,814.887 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.14 1112.35,772.337 1114.8,758.354 1117.25,741.926 1119.69,722.844 1122.14,701.009 \n 1124.59,676.51 1127.04,649.687 1129.49,621.164 1131.94,591.817 1134.39,562.653 1136.84,534.65 1139.29,508.602 1141.74,485.032 1144.19,464.184 1146.63,446.07 \n 1149.08,430.546 1151.53,417.375 1153.98,406.285 1156.43,396.999 1158.88,389.256 1161.33,382.824 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.057 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.215 1217.66,380.062 1220.11,385.925 \n 1222.56,392.992 1225.01,401.484 1227.46,411.648 1229.9,423.755 1232.35,438.083 1234.8,454.891 1237.25,474.376 1239.7,496.615 1242.15,521.484 1244.6,548.604 \n 1247.05,577.308 1249.5,606.692 1251.95,635.744 1254.4,663.503 1256.85,689.211 1259.29,712.389 1261.74,732.83 1264.19,750.55 1266.64,765.712 1269.09,778.558 \n 1271.54,789.365 1273.99,798.408 1276.44,805.944 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.165 1288.68,828.033 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.224 1313.17,835.743 1315.62,834.989 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.413 1332.77,818.303 1335.22,813.317 1337.67,807.289 1340.12,800.027 1342.56,791.304 \n 1345.01,780.871 1347.46,768.455 1349.91,753.777 1352.36,736.585 1354.81,716.694 1357.26,694.054 1359.71,668.822 1362.16,641.421 1364.61,612.556 1367.06,583.156 \n 1369.5,554.238 1371.95,526.74 1374.4,501.381 1376.85,478.6 1379.3,458.565 1381.75,441.235 1384.2,426.431 1386.65,413.903 1389.1,403.373 1391.55,394.567 \n 1394,387.234 1396.45,381.147 1398.89,376.111 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.516 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"\nM1040.09 296.183 L1411.96 296.183 L1411.96 114.743 L1040.09 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1040.09,296.183 1411.96,296.183 1411.96,114.743 1040.09,114.743 1040.09,296.183 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1054.52,175.223 1141.05,175.223 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M1177.19 176.855 L1177.19 192.503 L1172.93 192.503 L1172.93 176.993 Q1172.93 173.313 1171.49 171.484 Q1170.06 169.656 1167.19 169.656 Q1163.74 169.656 1161.75 171.855 Q1159.76 174.054 1159.76 177.85 L1159.76 192.503 L1155.47 192.503 L1155.47 166.577 L1159.76 166.577 L1159.76 170.605 Q1161.28 168.267 1163.34 167.109 Q1165.43 165.952 1168.14 165.952 Q1172.6 165.952 1174.89 168.73 Q1177.19 171.484 1177.19 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1185.24 182.271 L1185.24 166.577 L1189.5 166.577 L1189.5 182.109 Q1189.5 185.79 1190.94 187.642 Q1192.37 189.47 1195.24 189.47 Q1198.69 189.47 1200.68 187.271 Q1202.7 185.072 1202.7 181.276 L1202.7 166.577 L1206.95 166.577 L1206.95 192.503 L1202.7 192.503 L1202.7 188.521 Q1201.14 190.882 1199.08 192.04 Q1197.05 193.174 1194.34 193.174 Q1189.87 193.174 1187.56 190.396 Q1185.24 187.618 1185.24 182.271 M1195.96 165.952 L1195.96 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1235.91 171.554 Q1237.51 168.683 1239.73 167.318 Q1241.95 165.952 1244.96 165.952 Q1249.01 165.952 1251.21 168.799 Q1253.41 171.623 1253.41 176.855 L1253.41 192.503 L1249.13 192.503 L1249.13 176.993 Q1249.13 173.267 1247.81 171.461 Q1246.49 169.656 1243.78 169.656 Q1240.47 169.656 1238.55 171.855 Q1236.63 174.054 1236.63 177.85 L1236.63 192.503 L1232.35 192.503 L1232.35 176.993 Q1232.35 173.243 1231.03 171.461 Q1229.71 169.656 1226.95 169.656 Q1223.69 169.656 1221.77 171.878 Q1219.85 174.077 1219.85 177.85 L1219.85 192.503 L1215.57 192.503 L1215.57 166.577 L1219.85 166.577 L1219.85 170.605 Q1221.31 168.22 1223.34 167.086 Q1225.38 165.952 1228.18 165.952 Q1231.01 165.952 1232.97 167.387 Q1234.96 168.822 1235.91 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1284.08 178.475 L1284.08 180.558 L1264.5 180.558 Q1264.78 184.956 1267.14 187.271 Q1269.52 189.563 1273.76 189.563 Q1276.21 189.563 1278.51 188.961 Q1280.82 188.359 1283.09 187.155 L1283.09 191.183 Q1280.8 192.155 1278.39 192.665 Q1275.98 193.174 1273.51 193.174 Q1267.3 193.174 1263.67 189.563 Q1260.06 185.952 1260.06 179.794 Q1260.06 173.429 1263.48 169.702 Q1266.93 165.952 1272.76 165.952 Q1278 165.952 1281.03 169.331 Q1284.08 172.688 1284.08 178.475 M1279.82 177.225 Q1279.78 173.73 1277.86 171.646 Q1275.96 169.563 1272.81 169.563 Q1269.25 169.563 1267.09 171.577 Q1264.96 173.591 1264.64 177.248 L1279.82 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1306.1 170.558 Q1305.38 170.142 1304.52 169.956 Q1303.69 169.748 1302.67 169.748 Q1299.06 169.748 1297.12 172.109 Q1295.19 174.447 1295.19 178.845 L1295.19 192.503 L1290.91 192.503 L1290.91 166.577 L1295.19 166.577 L1295.19 170.605 Q1296.54 168.244 1298.69 167.109 Q1300.84 165.952 1303.92 165.952 Q1304.36 165.952 1304.89 166.021 Q1305.43 166.068 1306.07 166.183 L1306.1 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1310.57 166.577 L1314.82 166.577 L1314.82 192.503 L1310.57 192.503 L1310.57 166.577 M1310.57 156.484 L1314.82 156.484 L1314.82 161.878 L1310.57 161.878 L1310.57 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1342.39 167.572 L1342.39 171.554 Q1340.59 170.558 1338.76 170.072 Q1336.95 169.563 1335.1 169.563 Q1330.96 169.563 1328.67 172.202 Q1326.38 174.818 1326.38 179.563 Q1326.38 184.308 1328.67 186.947 Q1330.96 189.563 1335.1 189.563 Q1336.95 189.563 1338.76 189.077 Q1340.59 188.567 1342.39 187.572 L1342.39 191.507 Q1340.61 192.341 1338.69 192.757 Q1336.79 193.174 1334.64 193.174 Q1328.78 193.174 1325.33 189.493 Q1321.88 185.813 1321.88 179.563 Q1321.88 173.22 1325.36 169.586 Q1328.85 165.952 1334.92 165.952 Q1336.88 165.952 1338.76 166.369 Q1340.63 166.762 1342.39 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1361.58 179.47 Q1356.42 179.47 1354.43 180.651 Q1352.44 181.831 1352.44 184.679 Q1352.44 186.947 1353.92 188.29 Q1355.43 189.609 1358 189.609 Q1361.54 189.609 1363.67 187.109 Q1365.82 184.586 1365.82 180.419 L1365.82 179.47 L1361.58 179.47 M1370.08 177.711 L1370.08 192.503 L1365.82 192.503 L1365.82 188.567 Q1364.36 190.929 1362.19 192.063 Q1360.01 193.174 1356.86 193.174 Q1352.88 193.174 1350.52 190.952 Q1348.18 188.706 1348.18 184.956 Q1348.18 180.581 1351.1 178.359 Q1354.04 176.137 1359.85 176.137 L1365.82 176.137 L1365.82 175.72 Q1365.82 172.781 1363.87 171.183 Q1361.95 169.563 1358.46 169.563 Q1356.24 169.563 1354.13 170.095 Q1352.02 170.628 1350.08 171.693 L1350.08 167.757 Q1352.42 166.855 1354.62 166.415 Q1356.81 165.952 1358.9 165.952 Q1364.52 165.952 1367.3 168.869 Q1370.08 171.785 1370.08 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1378.85 156.484 L1383.11 156.484 L1383.11 192.503 L1378.85 192.503 L1378.85 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip890)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1054.52,235.703 1141.05,235.703 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M1179.5 238.955 L1179.5 241.038 L1159.92 241.038 Q1160.2 245.436 1162.56 247.751 Q1164.94 250.043 1169.18 250.043 Q1171.63 250.043 1173.92 249.441 Q1176.24 248.839 1178.51 247.635 L1178.51 251.663 Q1176.21 252.635 1173.81 253.145 Q1171.4 253.654 1168.92 253.654 Q1162.72 253.654 1159.08 250.043 Q1155.47 246.432 1155.47 240.274 Q1155.47 233.909 1158.9 230.182 Q1162.35 226.432 1168.18 226.432 Q1173.41 226.432 1176.45 229.811 Q1179.5 233.168 1179.5 238.955 M1175.24 237.705 Q1175.2 234.21 1173.27 232.126 Q1171.38 230.043 1168.23 230.043 Q1164.66 230.043 1162.51 232.057 Q1160.38 234.071 1160.06 237.728 L1175.24 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1207.21 227.057 L1197.83 239.673 L1207.7 252.983 L1202.67 252.983 L1195.13 242.798 L1187.58 252.983 L1182.56 252.983 L1192.63 239.418 L1183.41 227.057 L1188.44 227.057 L1195.31 236.293 L1202.19 227.057 L1207.21 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1225.5 239.95 Q1220.33 239.95 1218.34 241.131 Q1216.35 242.311 1216.35 245.159 Q1216.35 247.427 1217.83 248.77 Q1219.34 250.089 1221.91 250.089 Q1225.45 250.089 1227.58 247.589 Q1229.73 245.066 1229.73 240.899 L1229.73 239.95 L1225.5 239.95 M1233.99 238.191 L1233.99 252.983 L1229.73 252.983 L1229.73 249.047 Q1228.27 251.409 1226.1 252.543 Q1223.92 253.654 1220.77 253.654 Q1216.79 253.654 1214.43 251.432 Q1212.09 249.186 1212.09 245.436 Q1212.09 241.061 1215.01 238.839 Q1217.95 236.617 1223.76 236.617 L1229.73 236.617 L1229.73 236.2 Q1229.73 233.261 1227.79 231.663 Q1225.87 230.043 1222.37 230.043 Q1220.15 230.043 1218.04 230.575 Q1215.94 231.108 1213.99 232.173 L1213.99 228.237 Q1216.33 227.335 1218.53 226.895 Q1220.73 226.432 1222.81 226.432 Q1228.44 226.432 1231.21 229.349 Q1233.99 232.265 1233.99 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1261.42 228.052 L1261.42 232.034 Q1259.62 231.038 1257.79 230.552 Q1255.98 230.043 1254.13 230.043 Q1249.99 230.043 1247.69 232.682 Q1245.4 235.298 1245.4 240.043 Q1245.4 244.788 1247.69 247.427 Q1249.99 250.043 1254.13 250.043 Q1255.98 250.043 1257.79 249.557 Q1259.62 249.047 1261.42 248.052 L1261.42 251.987 Q1259.64 252.821 1257.72 253.237 Q1255.82 253.654 1253.67 253.654 Q1247.81 253.654 1244.36 249.973 Q1240.91 246.293 1240.91 240.043 Q1240.91 233.7 1244.38 230.066 Q1247.88 226.432 1253.94 226.432 Q1255.91 226.432 1257.79 226.849 Q1259.66 227.242 1261.42 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1273.04 219.696 L1273.04 227.057 L1281.82 227.057 L1281.82 230.367 L1273.04 230.367 L1273.04 244.441 Q1273.04 247.612 1273.9 248.515 Q1274.78 249.418 1277.44 249.418 L1281.82 249.418 L1281.82 252.983 L1277.44 252.983 Q1272.51 252.983 1270.63 251.154 Q1268.76 249.302 1268.76 244.441 L1268.76 230.367 L1265.63 230.367 L1265.63 227.057 L1268.76 227.057 L1268.76 219.696 L1273.04 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"\nM1854.72 910.808 L3152.76 910.808 L3152.76 87.2921 L1854.72 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip893\">\n <rect x=\"1854\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1891.46,910.808 1891.46,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1973.1,910.808 1973.1,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2054.73,910.808 2054.73,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2136.37,910.808 2136.37,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2218.01,910.808 2218.01,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2299.65,910.808 2299.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2381.28,910.808 2381.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2462.92,910.808 2462.92,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2544.56,910.808 2544.56,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2626.2,910.808 2626.2,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2707.83,910.808 2707.83,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2789.47,910.808 2789.47,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2871.11,910.808 2871.11,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2952.74,910.808 2952.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3034.38,910.808 3034.38,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3116.02,910.808 3116.02,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.46,910.808 1891.46,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1973.1,910.808 1973.1,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2054.73,910.808 2054.73,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2136.37,910.808 2136.37,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2218.01,910.808 2218.01,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2299.65,910.808 2299.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2381.28,910.808 2381.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2462.92,910.808 2462.92,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2544.56,910.808 2544.56,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2626.2,910.808 2626.2,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2707.83,910.808 2707.83,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2789.47,910.808 2789.47,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2871.11,910.808 2871.11,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2952.74,910.808 2952.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3034.38,910.808 3034.38,900.926 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3116.02,910.808 3116.02,900.926 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M1891.46 946.399 Q1887.85 946.399 1886.02 949.963 Q1884.21 953.505 1884.21 960.635 Q1884.21 967.741 1886.02 971.306 Q1887.85 974.847 1891.46 974.847 Q1895.09 974.847 1896.9 971.306 Q1898.73 967.741 1898.73 960.635 Q1898.73 953.505 1896.9 949.963 Q1895.09 946.399 1891.46 946.399 M1891.46 942.695 Q1897.27 942.695 1900.33 947.301 Q1903.4 951.885 1903.4 960.635 Q1903.4 969.361 1900.33 973.968 Q1897.27 978.551 1891.46 978.551 Q1885.65 978.551 1882.57 973.968 Q1879.52 969.361 1879.52 960.635 Q1879.52 951.885 1882.57 947.301 Q1885.65 942.695 1891.46 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1967.75 973.945 L1984.07 973.945 L1984.07 977.88 L1962.12 977.88 L1962.12 973.945 Q1964.79 971.19 1969.37 966.56 Q1973.98 961.908 1975.16 960.565 Q1977.4 958.042 1978.28 956.306 Q1979.18 954.547 1979.18 952.857 Q1979.18 950.102 1977.24 948.366 Q1975.32 946.63 1972.22 946.63 Q1970.02 946.63 1967.56 947.394 Q1965.13 948.158 1962.36 949.709 L1962.36 944.987 Q1965.18 943.852 1967.63 943.274 Q1970.09 942.695 1972.12 942.695 Q1977.5 942.695 1980.69 945.38 Q1983.88 948.065 1983.88 952.556 Q1983.88 954.686 1983.07 956.607 Q1982.29 958.505 1980.18 961.098 Q1979.6 961.769 1976.5 964.986 Q1973.4 968.181 1967.75 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2057.74 947.394 L2045.94 965.843 L2057.74 965.843 L2057.74 947.394 M2056.52 943.32 L2062.4 943.32 L2062.4 965.843 L2067.33 965.843 L2067.33 969.732 L2062.4 969.732 L2062.4 977.88 L2057.74 977.88 L2057.74 969.732 L2042.14 969.732 L2042.14 965.218 L2056.52 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2136.78 958.736 Q2133.63 958.736 2131.78 960.889 Q2129.95 963.042 2129.95 966.792 Q2129.95 970.519 2131.78 972.695 Q2133.63 974.847 2136.78 974.847 Q2139.92 974.847 2141.75 972.695 Q2143.61 970.519 2143.61 966.792 Q2143.61 963.042 2141.75 960.889 Q2139.92 958.736 2136.78 958.736 M2146.06 944.084 L2146.06 948.343 Q2144.3 947.51 2142.49 947.07 Q2140.71 946.63 2138.95 946.63 Q2134.32 946.63 2131.87 949.755 Q2129.44 952.88 2129.09 959.199 Q2130.46 957.186 2132.52 956.121 Q2134.58 955.033 2137.05 955.033 Q2142.26 955.033 2145.27 958.204 Q2148.3 961.352 2148.3 966.792 Q2148.3 972.116 2145.16 975.334 Q2142.01 978.551 2136.78 978.551 Q2130.78 978.551 2127.61 973.968 Q2124.44 969.361 2124.44 960.635 Q2124.44 952.44 2128.33 947.579 Q2132.22 942.695 2138.77 942.695 Q2140.53 942.695 2142.31 943.042 Q2144.11 943.389 2146.06 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2218.01 961.468 Q2214.68 961.468 2212.75 963.25 Q2210.86 965.033 2210.86 968.158 Q2210.86 971.283 2212.75 973.065 Q2214.68 974.847 2218.01 974.847 Q2221.34 974.847 2223.26 973.065 Q2225.18 971.26 2225.18 968.158 Q2225.18 965.033 2223.26 963.25 Q2221.37 961.468 2218.01 961.468 M2213.33 959.477 Q2210.32 958.736 2208.63 956.676 Q2206.97 954.616 2206.97 951.653 Q2206.97 947.51 2209.91 945.102 Q2212.87 942.695 2218.01 942.695 Q2223.17 942.695 2226.11 945.102 Q2229.05 947.51 2229.05 951.653 Q2229.05 954.616 2227.36 956.676 Q2225.69 958.736 2222.71 959.477 Q2226.09 960.264 2227.96 962.556 Q2229.86 964.848 2229.86 968.158 Q2229.86 973.181 2226.78 975.866 Q2223.73 978.551 2218.01 978.551 Q2212.29 978.551 2209.21 975.866 Q2206.16 973.181 2206.16 968.158 Q2206.16 964.848 2208.06 962.556 Q2209.95 960.264 2213.33 959.477 M2211.62 952.093 Q2211.62 954.778 2213.29 956.283 Q2214.98 957.787 2218.01 957.787 Q2221.02 957.787 2222.71 956.283 Q2224.42 954.778 2224.42 952.093 Q2224.42 949.408 2222.71 947.903 Q2221.02 946.399 2218.01 946.399 Q2214.98 946.399 2213.29 947.903 Q2211.62 949.408 2211.62 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2274.33 973.945 L2281.97 973.945 L2281.97 947.579 L2273.66 949.246 L2273.66 944.987 L2281.93 943.32 L2286.6 943.32 L2286.6 973.945 L2294.24 973.945 L2294.24 977.88 L2274.33 977.88 L2274.33 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2313.69 946.399 Q2310.07 946.399 2308.25 949.963 Q2306.44 953.505 2306.44 960.635 Q2306.44 967.741 2308.25 971.306 Q2310.07 974.847 2313.69 974.847 Q2317.32 974.847 2319.13 971.306 Q2320.95 967.741 2320.95 960.635 Q2320.95 953.505 2319.13 949.963 Q2317.32 946.399 2313.69 946.399 M2313.69 942.695 Q2319.5 942.695 2322.55 947.301 Q2325.63 951.885 2325.63 960.635 Q2325.63 969.361 2322.55 973.968 Q2319.5 978.551 2313.69 978.551 Q2307.88 978.551 2304.8 973.968 Q2301.74 969.361 2301.74 960.635 Q2301.74 951.885 2304.8 947.301 Q2307.88 942.695 2313.69 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2356.77 973.945 L2364.41 973.945 L2364.41 947.579 L2356.1 949.246 L2356.1 944.987 L2364.36 943.32 L2369.04 943.32 L2369.04 973.945 L2376.68 973.945 L2376.68 977.88 L2356.77 977.88 L2356.77 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2390.15 973.945 L2406.47 973.945 L2406.47 977.88 L2384.52 977.88 L2384.52 973.945 Q2387.19 971.19 2391.77 966.56 Q2396.38 961.908 2397.56 960.565 Q2399.8 958.042 2400.68 956.306 Q2401.58 954.547 2401.58 952.857 Q2401.58 950.102 2399.64 948.366 Q2397.72 946.63 2394.62 946.63 Q2392.42 946.63 2389.96 947.394 Q2387.53 948.158 2384.76 949.709 L2384.76 944.987 Q2387.58 943.852 2390.03 943.274 Q2392.49 942.695 2394.52 942.695 Q2399.89 942.695 2403.09 945.38 Q2406.28 948.065 2406.28 952.556 Q2406.28 954.686 2405.47 956.607 Q2404.69 958.505 2402.58 961.098 Q2402 961.769 2398.9 964.986 Q2395.8 968.181 2390.15 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2437.37 973.945 L2445 973.945 L2445 947.579 L2436.69 949.246 L2436.69 944.987 L2444.96 943.32 L2449.63 943.32 L2449.63 973.945 L2457.27 973.945 L2457.27 977.88 L2437.37 977.88 L2437.37 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2479.56 947.394 L2467.76 965.843 L2479.56 965.843 L2479.56 947.394 M2478.34 943.32 L2484.22 943.32 L2484.22 965.843 L2489.15 965.843 L2489.15 969.732 L2484.22 969.732 L2484.22 977.88 L2479.56 977.88 L2479.56 969.732 L2463.96 969.732 L2463.96 965.218 L2478.34 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2519.16 973.945 L2526.8 973.945 L2526.8 947.579 L2518.49 949.246 L2518.49 944.987 L2526.76 943.32 L2531.43 943.32 L2531.43 973.945 L2539.07 973.945 L2539.07 977.88 L2519.16 977.88 L2519.16 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2559.1 958.736 Q2555.95 958.736 2554.1 960.889 Q2552.27 963.042 2552.27 966.792 Q2552.27 970.519 2554.1 972.695 Q2555.95 974.847 2559.1 974.847 Q2562.24 974.847 2564.07 972.695 Q2565.92 970.519 2565.92 966.792 Q2565.92 963.042 2564.07 960.889 Q2562.24 958.736 2559.1 958.736 M2568.38 944.084 L2568.38 948.343 Q2566.62 947.51 2564.81 947.07 Q2563.03 946.63 2561.27 946.63 Q2556.64 946.63 2554.19 949.755 Q2551.76 952.88 2551.41 959.199 Q2552.78 957.186 2554.84 956.121 Q2556.9 955.033 2559.37 955.033 Q2564.58 955.033 2567.59 958.204 Q2570.62 961.352 2570.62 966.792 Q2570.62 972.116 2567.47 975.334 Q2564.33 978.551 2559.1 978.551 Q2553.1 978.551 2549.93 973.968 Q2546.76 969.361 2546.76 960.635 Q2546.76 952.44 2550.65 947.579 Q2554.53 942.695 2561.09 942.695 Q2562.84 942.695 2564.63 943.042 Q2566.43 943.389 2568.38 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2600.93 973.945 L2608.57 973.945 L2608.57 947.579 L2600.26 949.246 L2600.26 944.987 L2608.52 943.32 L2613.2 943.32 L2613.2 973.945 L2620.84 973.945 L2620.84 977.88 L2600.93 977.88 L2600.93 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2640.28 961.468 Q2636.95 961.468 2635.03 963.25 Q2633.13 965.033 2633.13 968.158 Q2633.13 971.283 2635.03 973.065 Q2636.95 974.847 2640.28 974.847 Q2643.61 974.847 2645.54 973.065 Q2647.46 971.26 2647.46 968.158 Q2647.46 965.033 2645.54 963.25 Q2643.64 961.468 2640.28 961.468 M2635.61 959.477 Q2632.6 958.736 2630.91 956.676 Q2629.24 954.616 2629.24 951.653 Q2629.24 947.51 2632.18 945.102 Q2635.14 942.695 2640.28 942.695 Q2645.44 942.695 2648.38 945.102 Q2651.32 947.51 2651.32 951.653 Q2651.32 954.616 2649.63 956.676 Q2647.97 958.736 2644.98 959.477 Q2648.36 960.264 2650.23 962.556 Q2652.13 964.848 2652.13 968.158 Q2652.13 973.181 2649.05 975.866 Q2646 978.551 2640.28 978.551 Q2634.56 978.551 2631.48 975.866 Q2628.43 973.181 2628.43 968.158 Q2628.43 964.848 2630.33 962.556 Q2632.23 960.264 2635.61 959.477 M2633.89 952.093 Q2633.89 954.778 2635.56 956.283 Q2637.25 957.787 2640.28 957.787 Q2643.29 957.787 2644.98 956.283 Q2646.69 954.778 2646.69 952.093 Q2646.69 949.408 2644.98 947.903 Q2643.29 946.399 2640.28 946.399 Q2637.25 946.399 2635.56 947.903 Q2633.89 949.408 2633.89 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2686.61 973.945 L2702.93 973.945 L2702.93 977.88 L2680.98 977.88 L2680.98 973.945 Q2683.64 971.19 2688.23 966.56 Q2692.83 961.908 2694.01 960.565 Q2696.26 958.042 2697.14 956.306 Q2698.04 954.547 2698.04 952.857 Q2698.04 950.102 2696.1 948.366 Q2694.18 946.63 2691.07 946.63 Q2688.87 946.63 2686.42 947.394 Q2683.99 948.158 2681.21 949.709 L2681.21 944.987 Q2684.04 943.852 2686.49 943.274 Q2688.94 942.695 2690.98 942.695 Q2696.35 942.695 2699.55 945.38 Q2702.74 948.065 2702.74 952.556 Q2702.74 954.686 2701.93 956.607 Q2701.14 958.505 2699.04 961.098 Q2698.46 961.769 2695.36 964.986 Q2692.25 968.181 2686.61 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2722.74 946.399 Q2719.13 946.399 2717.3 949.963 Q2715.49 953.505 2715.49 960.635 Q2715.49 967.741 2717.3 971.306 Q2719.13 974.847 2722.74 974.847 Q2726.37 974.847 2728.18 971.306 Q2730.01 967.741 2730.01 960.635 Q2730.01 953.505 2728.18 949.963 Q2726.37 946.399 2722.74 946.399 M2722.74 942.695 Q2728.55 942.695 2731.61 947.301 Q2734.68 951.885 2734.68 960.635 Q2734.68 969.361 2731.61 973.968 Q2728.55 978.551 2722.74 978.551 Q2716.93 978.551 2713.85 973.968 Q2710.8 969.361 2710.8 960.635 Q2710.8 951.885 2713.85 947.301 Q2716.93 942.695 2722.74 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2769.04 973.945 L2785.36 973.945 L2785.36 977.88 L2763.42 977.88 L2763.42 973.945 Q2766.08 971.19 2770.66 966.56 Q2775.27 961.908 2776.45 960.565 Q2778.69 958.042 2779.57 956.306 Q2780.48 954.547 2780.48 952.857 Q2780.48 950.102 2778.53 948.366 Q2776.61 946.63 2773.51 946.63 Q2771.31 946.63 2768.86 947.394 Q2766.43 948.158 2763.65 949.709 L2763.65 944.987 Q2766.47 943.852 2768.93 943.274 Q2771.38 942.695 2773.42 942.695 Q2778.79 942.695 2781.98 945.38 Q2785.18 948.065 2785.18 952.556 Q2785.18 954.686 2784.37 956.607 Q2783.58 958.505 2781.47 961.098 Q2780.89 961.769 2777.79 964.986 Q2774.69 968.181 2769.04 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2799.2 973.945 L2815.52 973.945 L2815.52 977.88 L2793.58 977.88 L2793.58 973.945 Q2796.24 971.19 2800.82 966.56 Q2805.43 961.908 2806.61 960.565 Q2808.86 958.042 2809.74 956.306 Q2810.64 954.547 2810.64 952.857 Q2810.64 950.102 2808.69 948.366 Q2806.77 946.63 2803.67 946.63 Q2801.47 946.63 2799.02 947.394 Q2796.59 948.158 2793.81 949.709 L2793.81 944.987 Q2796.63 943.852 2799.09 943.274 Q2801.54 942.695 2803.58 942.695 Q2808.95 942.695 2812.14 945.38 Q2815.34 948.065 2815.34 952.556 Q2815.34 954.686 2814.53 956.607 Q2813.74 958.505 2811.63 961.098 Q2811.06 961.769 2807.95 964.986 Q2804.85 968.181 2799.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2849.64 973.945 L2865.96 973.945 L2865.96 977.88 L2844.01 977.88 L2844.01 973.945 Q2846.67 971.19 2851.26 966.56 Q2855.86 961.908 2857.04 960.565 Q2859.29 958.042 2860.17 956.306 Q2861.07 954.547 2861.07 952.857 Q2861.07 950.102 2859.13 948.366 Q2857.21 946.63 2854.11 946.63 Q2851.91 946.63 2849.45 947.394 Q2847.02 948.158 2844.24 949.709 L2844.24 944.987 Q2847.07 943.852 2849.52 943.274 Q2851.98 942.695 2854.01 942.695 Q2859.38 942.695 2862.58 945.38 Q2865.77 948.065 2865.77 952.556 Q2865.77 954.686 2864.96 956.607 Q2864.17 958.505 2862.07 961.098 Q2861.49 961.769 2858.39 964.986 Q2855.29 968.181 2849.64 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2888.62 947.394 L2876.81 965.843 L2888.62 965.843 L2888.62 947.394 M2887.39 943.32 L2893.27 943.32 L2893.27 965.843 L2898.2 965.843 L2898.2 969.732 L2893.27 969.732 L2893.27 977.88 L2888.62 977.88 L2888.62 969.732 L2873.02 969.732 L2873.02 965.218 L2887.39 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2931.44 973.945 L2947.76 973.945 L2947.76 977.88 L2925.81 977.88 L2925.81 973.945 Q2928.47 971.19 2933.06 966.56 Q2937.66 961.908 2938.84 960.565 Q2941.09 958.042 2941.97 956.306 Q2942.87 954.547 2942.87 952.857 Q2942.87 950.102 2940.93 948.366 Q2939.01 946.63 2935.9 946.63 Q2933.71 946.63 2931.25 947.394 Q2928.82 948.158 2926.04 949.709 L2926.04 944.987 Q2928.87 943.852 2931.32 943.274 Q2933.77 942.695 2935.81 942.695 Q2941.18 942.695 2944.38 945.38 Q2947.57 948.065 2947.57 952.556 Q2947.57 954.686 2946.76 956.607 Q2945.97 958.505 2943.87 961.098 Q2943.29 961.769 2940.19 964.986 Q2937.08 968.181 2931.44 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2968.15 958.736 Q2965 958.736 2963.15 960.889 Q2961.32 963.042 2961.32 966.792 Q2961.32 970.519 2963.15 972.695 Q2965 974.847 2968.15 974.847 Q2971.3 974.847 2973.13 972.695 Q2974.98 970.519 2974.98 966.792 Q2974.98 963.042 2973.13 960.889 Q2971.3 958.736 2968.15 958.736 M2977.43 944.084 L2977.43 948.343 Q2975.67 947.51 2973.87 947.07 Q2972.08 946.63 2970.33 946.63 Q2965.7 946.63 2963.24 949.755 Q2960.81 952.88 2960.46 959.199 Q2961.83 957.186 2963.89 956.121 Q2965.95 955.033 2968.43 955.033 Q2973.64 955.033 2976.64 958.204 Q2979.68 961.352 2979.68 966.792 Q2979.68 972.116 2976.53 975.334 Q2973.38 978.551 2968.15 978.551 Q2962.15 978.551 2958.98 973.968 Q2955.81 969.361 2955.81 960.635 Q2955.81 952.44 2959.7 947.579 Q2963.59 942.695 2970.14 942.695 Q2971.9 942.695 2973.68 943.042 Q2975.49 943.389 2977.43 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M3013.2 973.945 L3029.52 973.945 L3029.52 977.88 L3007.58 977.88 L3007.58 973.945 Q3010.24 971.19 3014.82 966.56 Q3019.43 961.908 3020.61 960.565 Q3022.85 958.042 3023.73 956.306 Q3024.64 954.547 3024.64 952.857 Q3024.64 950.102 3022.69 948.366 Q3020.77 946.63 3017.67 946.63 Q3015.47 946.63 3013.02 947.394 Q3010.59 948.158 3007.81 949.709 L3007.81 944.987 Q3010.63 943.852 3013.09 943.274 Q3015.54 942.695 3017.58 942.695 Q3022.95 942.695 3026.14 945.38 Q3029.34 948.065 3029.34 952.556 Q3029.34 954.686 3028.53 956.607 Q3027.74 958.505 3025.63 961.098 Q3025.05 961.769 3021.95 964.986 Q3018.85 968.181 3013.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M3049.34 961.468 Q3046 961.468 3044.08 963.25 Q3042.18 965.033 3042.18 968.158 Q3042.18 971.283 3044.08 973.065 Q3046 974.847 3049.34 974.847 Q3052.67 974.847 3054.59 973.065 Q3056.51 971.26 3056.51 968.158 Q3056.51 965.033 3054.59 963.25 Q3052.69 961.468 3049.34 961.468 M3044.66 959.477 Q3041.65 958.736 3039.96 956.676 Q3038.29 954.616 3038.29 951.653 Q3038.29 947.51 3041.23 945.102 Q3044.2 942.695 3049.34 942.695 Q3054.5 942.695 3057.44 945.102 Q3060.38 947.51 3060.38 951.653 Q3060.38 954.616 3058.69 956.676 Q3057.02 958.736 3054.03 959.477 Q3057.41 960.264 3059.29 962.556 Q3061.19 964.848 3061.19 968.158 Q3061.19 973.181 3058.11 975.866 Q3055.05 978.551 3049.34 978.551 Q3043.62 978.551 3040.54 975.866 Q3037.48 973.181 3037.48 968.158 Q3037.48 964.848 3039.38 962.556 Q3041.28 960.264 3044.66 959.477 M3042.95 952.093 Q3042.95 954.778 3044.61 956.283 Q3046.3 957.787 3049.34 957.787 Q3052.34 957.787 3054.03 956.283 Q3055.75 954.778 3055.75 952.093 Q3055.75 949.408 3054.03 947.903 Q3052.34 946.399 3049.34 946.399 Q3046.3 946.399 3044.61 947.903 Q3042.95 949.408 3042.95 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M3104.86 959.246 Q3108.22 959.963 3110.09 962.232 Q3111.99 964.5 3111.99 967.834 Q3111.99 972.949 3108.47 975.75 Q3104.95 978.551 3098.47 978.551 Q3096.3 978.551 3093.98 978.111 Q3091.69 977.695 3089.24 976.838 L3089.24 972.324 Q3091.18 973.459 3093.5 974.037 Q3095.81 974.616 3098.33 974.616 Q3102.73 974.616 3105.02 972.88 Q3107.34 971.144 3107.34 967.834 Q3107.34 964.778 3105.19 963.065 Q3103.06 961.329 3099.24 961.329 L3095.21 961.329 L3095.21 957.486 L3099.42 957.486 Q3102.87 957.486 3104.7 956.121 Q3106.53 954.732 3106.53 952.139 Q3106.53 949.477 3104.63 948.065 Q3102.76 946.63 3099.24 946.63 Q3097.32 946.63 3095.12 947.047 Q3092.92 947.463 3090.28 948.343 L3090.28 944.176 Q3092.94 943.436 3095.26 943.065 Q3097.59 942.695 3099.65 942.695 Q3104.98 942.695 3108.08 945.125 Q3111.18 947.533 3111.18 951.653 Q3111.18 954.524 3109.54 956.514 Q3107.89 958.482 3104.86 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M3130.86 946.399 Q3127.25 946.399 3125.42 949.963 Q3123.61 953.505 3123.61 960.635 Q3123.61 967.741 3125.42 971.306 Q3127.25 974.847 3130.86 974.847 Q3134.49 974.847 3136.3 971.306 Q3138.13 967.741 3138.13 960.635 Q3138.13 953.505 3136.3 949.963 Q3134.49 946.399 3130.86 946.399 M3130.86 942.695 Q3136.67 942.695 3139.72 947.301 Q3142.8 951.885 3142.8 960.635 Q3142.8 969.361 3139.72 973.968 Q3136.67 978.551 3130.86 978.551 Q3125.05 978.551 3121.97 973.968 Q3118.91 969.361 3118.91 960.635 Q3118.91 951.885 3121.97 947.301 Q3125.05 942.695 3130.86 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,748.452 3152.76,748.452 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,538.848 3152.76,538.848 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,329.244 3152.76,329.244 \n \"/>\n<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,119.64 3152.76,119.64 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,910.808 1854.72,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,748.452 1870.3,748.452 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,538.848 1870.3,538.848 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,329.244 1870.3,329.244 \n \"/>\n<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,119.64 1870.3,119.64 \n \"/>\n<path clip-path=\"url(#clip890)\" d=\"M1549.46 755.351 L1579.14 755.351 L1579.14 759.286 L1549.46 759.286 L1549.46 755.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1593.26 768.244 L1609.58 768.244 L1609.58 772.18 L1587.63 772.18 L1587.63 768.244 Q1590.29 765.49 1594.88 760.86 Q1599.48 756.207 1600.66 754.865 Q1602.91 752.342 1603.79 750.606 Q1604.69 748.846 1604.69 747.157 Q1604.69 744.402 1602.75 742.666 Q1600.83 740.93 1597.72 740.93 Q1595.52 740.93 1593.07 741.694 Q1590.64 742.457 1587.86 744.008 L1587.86 739.286 Q1590.69 738.152 1593.14 737.573 Q1595.59 736.995 1597.63 736.995 Q1603 736.995 1606.2 739.68 Q1609.39 742.365 1609.39 746.856 Q1609.39 748.985 1608.58 750.906 Q1607.79 752.805 1605.69 755.397 Q1605.11 756.068 1602.01 759.286 Q1598.9 762.48 1593.26 768.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1619.39 766.3 L1624.27 766.3 L1624.27 772.18 L1619.39 772.18 L1619.39 766.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1644.46 740.698 Q1640.85 740.698 1639.02 744.263 Q1637.21 747.805 1637.21 754.934 Q1637.21 762.041 1639.02 765.605 Q1640.85 769.147 1644.46 769.147 Q1648.09 769.147 1649.9 765.605 Q1651.73 762.041 1651.73 754.934 Q1651.73 747.805 1649.9 744.263 Q1648.09 740.698 1644.46 740.698 M1644.46 736.995 Q1650.27 736.995 1653.33 741.601 Q1656.4 746.184 1656.4 754.934 Q1656.4 763.661 1653.33 768.268 Q1650.27 772.851 1644.46 772.851 Q1638.65 772.851 1635.57 768.268 Q1632.52 763.661 1632.52 754.934 Q1632.52 746.184 1635.57 741.601 Q1638.65 736.995 1644.46 736.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1692.79 746.717 L1682.21 757.342 L1692.79 767.92 L1690.04 770.721 L1679.41 760.096 L1668.79 770.721 L1666.06 767.92 L1676.61 757.342 L1666.06 746.717 L1668.79 743.916 L1679.41 754.541 L1690.04 743.916 L1692.79 746.717 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1705.15 768.244 L1712.79 768.244 L1712.79 741.879 L1704.48 743.545 L1704.48 739.286 L1712.75 737.62 L1717.42 737.62 L1717.42 768.244 L1725.06 768.244 L1725.06 772.18 L1705.15 772.18 L1705.15 768.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1744.51 740.698 Q1740.89 740.698 1739.07 744.263 Q1737.26 747.805 1737.26 754.934 Q1737.26 762.041 1739.07 765.605 Q1740.89 769.147 1744.51 769.147 Q1748.14 769.147 1749.95 765.605 Q1751.77 762.041 1751.77 754.934 Q1751.77 747.805 1749.95 744.263 Q1748.14 740.698 1744.51 740.698 M1744.51 736.995 Q1750.32 736.995 1753.37 741.601 Q1756.45 746.184 1756.45 754.934 Q1756.45 763.661 1753.37 768.268 Q1750.32 772.851 1744.51 772.851 Q1738.7 772.851 1735.62 768.268 Q1732.56 763.661 1732.56 754.934 Q1732.56 746.184 1735.62 741.601 Q1738.7 736.995 1744.51 736.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1756.45 731.096 L1780.56 731.096 L1780.56 734.293 L1756.45 734.293 L1756.45 731.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1797.36 729.215 Q1794.8 729.215 1793.29 730.964 Q1791.81 732.713 1791.81 735.76 Q1791.81 738.788 1793.29 740.556 Q1794.8 742.305 1797.36 742.305 Q1799.91 742.305 1801.4 740.556 Q1802.9 738.788 1802.9 735.76 Q1802.9 732.713 1801.4 730.964 Q1799.91 729.215 1797.36 729.215 M1804.9 717.31 L1804.9 720.77 Q1803.47 720.093 1802 719.736 Q1800.55 719.379 1799.12 719.379 Q1795.36 719.379 1793.37 721.918 Q1791.39 724.457 1791.11 729.591 Q1792.22 727.955 1793.9 727.09 Q1795.57 726.206 1797.58 726.206 Q1801.81 726.206 1804.26 728.783 Q1806.72 731.34 1806.72 735.76 Q1806.72 740.086 1804.17 742.7 Q1801.61 745.315 1797.36 745.315 Q1792.49 745.315 1789.91 741.591 Q1787.33 737.848 1787.33 730.757 Q1787.33 724.099 1790.49 720.15 Q1793.65 716.181 1798.97 716.181 Q1800.4 716.181 1801.85 716.463 Q1803.32 716.746 1804.9 717.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1794.78 524.647 Q1791.17 524.647 1789.34 528.212 Q1787.53 531.753 1787.53 538.883 Q1787.53 545.989 1789.34 549.554 Q1791.17 553.096 1794.78 553.096 Q1798.41 553.096 1800.22 549.554 Q1802.05 545.989 1802.05 538.883 Q1802.05 531.753 1800.22 528.212 Q1798.41 524.647 1794.78 524.647 M1794.78 520.943 Q1800.59 520.943 1803.64 525.549 Q1806.72 530.133 1806.72 538.883 Q1806.72 547.61 1803.64 552.216 Q1800.59 556.799 1794.78 556.799 Q1788.97 556.799 1785.89 552.216 Q1782.83 547.61 1782.83 538.883 Q1782.83 530.133 1785.89 525.549 Q1788.97 520.943 1794.78 520.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1593.26 349.037 L1609.58 349.037 L1609.58 352.972 L1587.63 352.972 L1587.63 349.037 Q1590.29 346.282 1594.88 341.652 Q1599.48 337 1600.66 335.657 Q1602.91 333.134 1603.79 331.398 Q1604.69 329.639 1604.69 327.949 Q1604.69 325.194 1602.75 323.458 Q1600.83 321.722 1597.72 321.722 Q1595.52 321.722 1593.07 322.486 Q1590.64 323.25 1587.86 324.801 L1587.86 320.078 Q1590.69 318.944 1593.14 318.365 Q1595.59 317.787 1597.63 317.787 Q1603 317.787 1606.2 320.472 Q1609.39 323.157 1609.39 327.648 Q1609.39 329.777 1608.58 331.699 Q1607.79 333.597 1605.69 336.189 Q1605.11 336.861 1602.01 340.078 Q1598.9 343.273 1593.26 349.037 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1619.39 347.092 L1624.27 347.092 L1624.27 352.972 L1619.39 352.972 L1619.39 347.092 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1644.46 321.49 Q1640.85 321.49 1639.02 325.055 Q1637.21 328.597 1637.21 335.726 Q1637.21 342.833 1639.02 346.398 Q1640.85 349.939 1644.46 349.939 Q1648.09 349.939 1649.9 346.398 Q1651.73 342.833 1651.73 335.726 Q1651.73 328.597 1649.9 325.055 Q1648.09 321.49 1644.46 321.49 M1644.46 317.787 Q1650.27 317.787 1653.33 322.393 Q1656.4 326.977 1656.4 335.726 Q1656.4 344.453 1653.33 349.06 Q1650.27 353.643 1644.46 353.643 Q1638.65 353.643 1635.57 349.06 Q1632.52 344.453 1632.52 335.726 Q1632.52 326.977 1635.57 322.393 Q1638.65 317.787 1644.46 317.787 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1692.79 327.509 L1682.21 338.134 L1692.79 348.713 L1690.04 351.513 L1679.41 340.888 L1668.79 351.513 L1666.06 348.713 L1676.61 338.134 L1666.06 327.509 L1668.79 324.708 L1679.41 335.333 L1690.04 324.708 L1692.79 327.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1705.15 349.037 L1712.79 349.037 L1712.79 322.671 L1704.48 324.338 L1704.48 320.078 L1712.75 318.412 L1717.42 318.412 L1717.42 349.037 L1725.06 349.037 L1725.06 352.972 L1705.15 352.972 L1705.15 349.037 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1744.51 321.49 Q1740.89 321.49 1739.07 325.055 Q1737.26 328.597 1737.26 335.726 Q1737.26 342.833 1739.07 346.398 Q1740.89 349.939 1744.51 349.939 Q1748.14 349.939 1749.95 346.398 Q1751.77 342.833 1751.77 335.726 Q1751.77 328.597 1749.95 325.055 Q1748.14 321.49 1744.51 321.49 M1744.51 317.787 Q1750.32 317.787 1753.37 322.393 Q1756.45 326.977 1756.45 335.726 Q1756.45 344.453 1753.37 349.06 Q1750.32 353.643 1744.51 353.643 Q1738.7 353.643 1735.62 349.06 Q1732.56 344.453 1732.56 335.726 Q1732.56 326.977 1735.62 322.393 Q1738.7 317.787 1744.51 317.787 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1756.45 311.888 L1780.56 311.888 L1780.56 315.085 L1756.45 315.085 L1756.45 311.888 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1797.36 310.007 Q1794.8 310.007 1793.29 311.756 Q1791.81 313.506 1791.81 316.552 Q1791.81 319.58 1793.29 321.348 Q1794.8 323.098 1797.36 323.098 Q1799.91 323.098 1801.4 321.348 Q1802.9 319.58 1802.9 316.552 Q1802.9 313.506 1801.4 311.756 Q1799.91 310.007 1797.36 310.007 M1804.9 298.102 L1804.9 301.563 Q1803.47 300.886 1802 300.528 Q1800.55 300.171 1799.12 300.171 Q1795.36 300.171 1793.37 302.71 Q1791.39 305.249 1791.11 310.383 Q1792.22 308.747 1793.9 307.882 Q1795.57 306.998 1797.58 306.998 Q1801.81 306.998 1804.26 309.575 Q1806.72 312.133 1806.72 316.552 Q1806.72 320.878 1804.17 323.492 Q1801.61 326.107 1797.36 326.107 Q1792.49 326.107 1789.91 322.383 Q1787.33 318.64 1787.33 311.55 Q1787.33 304.892 1790.49 300.942 Q1793.65 296.974 1798.97 296.974 Q1800.4 296.974 1801.85 297.256 Q1803.32 297.538 1804.9 298.102 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1602.08 112.882 L1590.27 131.331 L1602.08 131.331 L1602.08 112.882 M1600.85 108.808 L1606.73 108.808 L1606.73 131.331 L1611.66 131.331 L1611.66 135.22 L1606.73 135.22 L1606.73 143.368 L1602.08 143.368 L1602.08 135.22 L1586.47 135.22 L1586.47 130.706 L1600.85 108.808 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1619.39 137.488 L1624.27 137.488 L1624.27 143.368 L1619.39 143.368 L1619.39 137.488 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1644.46 111.887 Q1640.85 111.887 1639.02 115.451 Q1637.21 118.993 1637.21 126.123 Q1637.21 133.229 1639.02 136.794 Q1640.85 140.335 1644.46 140.335 Q1648.09 140.335 1649.9 136.794 Q1651.73 133.229 1651.73 126.123 Q1651.73 118.993 1649.9 115.451 Q1648.09 111.887 1644.46 111.887 M1644.46 108.183 Q1650.27 108.183 1653.33 112.789 Q1656.4 117.373 1656.4 126.123 Q1656.4 134.849 1653.33 139.456 Q1650.27 144.039 1644.46 144.039 Q1638.65 144.039 1635.57 139.456 Q1632.52 134.849 1632.52 126.123 Q1632.52 117.373 1635.57 112.789 Q1638.65 108.183 1644.46 108.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1692.79 117.905 L1682.21 128.53 L1692.79 139.109 L1690.04 141.91 L1679.41 131.285 L1668.79 141.91 L1666.06 139.109 L1676.61 128.53 L1666.06 117.905 L1668.79 115.104 L1679.41 125.729 L1690.04 115.104 L1692.79 117.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1705.15 139.433 L1712.79 139.433 L1712.79 113.067 L1704.48 114.734 L1704.48 110.475 L1712.75 108.808 L1717.42 108.808 L1717.42 139.433 L1725.06 139.433 L1725.06 143.368 L1705.15 143.368 L1705.15 139.433 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1744.51 111.887 Q1740.89 111.887 1739.07 115.451 Q1737.26 118.993 1737.26 126.123 Q1737.26 133.229 1739.07 136.794 Q1740.89 140.335 1744.51 140.335 Q1748.14 140.335 1749.95 136.794 Q1751.77 133.229 1751.77 126.123 Q1751.77 118.993 1749.95 115.451 Q1748.14 111.887 1744.51 111.887 M1744.51 108.183 Q1750.32 108.183 1753.37 112.789 Q1756.45 117.373 1756.45 126.123 Q1756.45 134.849 1753.37 139.456 Q1750.32 144.039 1744.51 144.039 Q1738.7 144.039 1735.62 139.456 Q1732.56 134.849 1732.56 126.123 Q1732.56 117.373 1735.62 112.789 Q1738.7 108.183 1744.51 108.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1756.45 102.284 L1780.56 102.284 L1780.56 105.482 L1756.45 105.482 L1756.45 102.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M1797.36 100.403 Q1794.8 100.403 1793.29 102.153 Q1791.81 103.902 1791.81 106.949 Q1791.81 109.977 1793.29 111.745 Q1794.8 113.494 1797.36 113.494 Q1799.91 113.494 1801.4 111.745 Q1802.9 109.977 1802.9 106.949 Q1802.9 103.902 1801.4 102.153 Q1799.91 100.403 1797.36 100.403 M1804.9 88.4981 L1804.9 91.9587 Q1803.47 91.2817 1802 90.9243 Q1800.55 90.567 1799.12 90.567 Q1795.36 90.567 1793.37 93.106 Q1791.39 95.6451 1791.11 100.78 Q1792.22 99.1433 1793.9 98.2782 Q1795.57 97.3942 1797.58 97.3942 Q1801.81 97.3942 1804.26 99.9709 Q1806.72 102.529 1806.72 106.949 Q1806.72 111.274 1804.17 113.889 Q1801.61 116.503 1797.36 116.503 Q1792.49 116.503 1789.91 112.779 Q1787.33 109.036 1787.33 101.946 Q1787.33 95.2877 1790.49 91.3381 Q1793.65 87.3696 1798.97 87.3696 Q1800.4 87.3696 1801.85 87.6518 Q1803.32 87.9339 1804.9 88.4981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2201.94 12.2777 L2201.94 23.3193 L2215.1 23.3193 L2215.1 28.2846 L2201.94 28.2846 L2201.94 49.3956 Q2201.94 54.1525 2203.22 55.5066 Q2204.54 56.8608 2208.53 56.8608 L2215.1 56.8608 L2215.1 62.208 L2208.53 62.208 Q2201.14 62.208 2198.32 59.465 Q2195.51 56.6872 2195.51 49.3956 L2195.51 28.2846 L2190.82 28.2846 L2190.82 23.3193 L2195.51 23.3193 L2195.51 12.2777 L2201.94 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2238.57 27.7985 Q2233.43 27.7985 2230.44 31.8262 Q2227.46 35.8193 2227.46 42.7984 Q2227.46 49.7775 2230.41 53.8053 Q2233.39 57.7983 2238.57 57.7983 Q2243.67 57.7983 2246.66 53.7705 Q2249.64 49.7428 2249.64 42.7984 Q2249.64 35.8887 2246.66 31.8609 Q2243.67 27.7985 2238.57 27.7985 M2238.57 22.3818 Q2246.9 22.3818 2251.66 27.7985 Q2256.41 33.2151 2256.41 42.7984 Q2256.41 52.3469 2251.66 57.7983 Q2246.9 63.2149 2238.57 63.2149 Q2230.2 63.2149 2225.44 57.7983 Q2220.72 52.3469 2220.72 42.7984 Q2220.72 33.2151 2225.44 27.7985 Q2230.2 22.3818 2238.57 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2273.32 12.2777 L2273.32 23.3193 L2286.48 23.3193 L2286.48 28.2846 L2273.32 28.2846 L2273.32 49.3956 Q2273.32 54.1525 2274.61 55.5066 Q2275.93 56.8608 2279.92 56.8608 L2286.48 56.8608 L2286.48 62.208 L2279.92 62.208 Q2272.53 62.208 2269.71 59.465 Q2266.9 56.6872 2266.9 49.3956 L2266.9 28.2846 L2262.21 28.2846 L2262.21 23.3193 L2266.9 23.3193 L2266.9 12.2777 L2273.32 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2312.56 42.6595 Q2304.82 42.6595 2301.83 44.4303 Q2298.84 46.2011 2298.84 50.472 Q2298.84 53.8747 2301.07 55.8886 Q2303.32 57.8677 2307.18 57.8677 Q2312.49 57.8677 2315.68 54.1178 Q2318.91 50.3331 2318.91 44.0831 L2318.91 42.6595 L2312.56 42.6595 M2325.3 40.0206 L2325.3 62.208 L2318.91 62.208 L2318.91 56.3053 Q2316.73 59.8469 2313.46 61.5483 Q2310.2 63.2149 2305.48 63.2149 Q2299.5 63.2149 2295.96 59.8816 Q2292.46 56.5136 2292.46 50.8886 Q2292.46 44.3262 2296.83 40.9928 Q2301.24 37.6595 2309.96 37.6595 L2318.91 37.6595 L2318.91 37.0345 Q2318.91 32.6248 2316 30.229 Q2313.12 27.7985 2307.87 27.7985 Q2304.54 27.7985 2301.38 28.5971 Q2298.22 29.3957 2295.3 30.9929 L2295.3 25.0901 Q2298.81 23.736 2302.11 23.0763 Q2305.41 22.3818 2308.53 22.3818 Q2316.97 22.3818 2321.14 26.7568 Q2325.3 31.1318 2325.3 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2338.46 8.18051 L2344.85 8.18051 L2344.85 62.208 L2338.46 62.208 L2338.46 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2414.09 41.1664 L2414.09 44.2914 L2384.71 44.2914 Q2385.13 50.8886 2388.67 54.3608 Q2392.25 57.7983 2398.6 57.7983 Q2402.28 57.7983 2405.72 56.8955 Q2409.19 55.9928 2412.59 54.1872 L2412.59 60.2288 Q2409.16 61.6872 2405.55 62.4511 Q2401.93 63.2149 2398.22 63.2149 Q2388.91 63.2149 2383.46 57.7983 Q2378.05 52.3817 2378.05 43.1456 Q2378.05 33.597 2383.18 28.0068 Q2388.36 22.3818 2397.11 22.3818 Q2404.96 22.3818 2409.5 27.4512 Q2414.09 32.4859 2414.09 41.1664 M2407.7 39.2915 Q2407.63 34.0484 2404.75 30.9234 Q2401.9 27.7985 2397.18 27.7985 Q2391.83 27.7985 2388.6 30.8193 Q2385.41 33.8401 2384.92 39.3262 L2407.7 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2456.9 38.7359 L2456.9 62.208 L2450.51 62.208 L2450.51 38.9442 Q2450.51 33.4234 2448.36 30.6804 Q2446.2 27.9374 2441.9 27.9374 Q2436.73 27.9374 2433.74 31.2359 Q2430.75 34.5345 2430.75 40.229 L2430.75 62.208 L2424.33 62.208 L2424.33 23.3193 L2430.75 23.3193 L2430.75 29.361 Q2433.05 25.854 2436.14 24.1179 Q2439.26 22.3818 2443.32 22.3818 Q2450.02 22.3818 2453.46 26.5485 Q2456.9 30.6804 2456.9 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2502.91 41.1664 L2502.91 44.2914 L2473.53 44.2914 Q2473.95 50.8886 2477.49 54.3608 Q2481.07 57.7983 2487.42 57.7983 Q2491.1 57.7983 2494.54 56.8955 Q2498.01 55.9928 2501.41 54.1872 L2501.41 60.2288 Q2497.98 61.6872 2494.36 62.4511 Q2490.75 63.2149 2487.04 63.2149 Q2477.73 63.2149 2472.28 57.7983 Q2466.86 52.3817 2466.86 43.1456 Q2466.86 33.597 2472 28.0068 Q2477.18 22.3818 2485.93 22.3818 Q2493.77 22.3818 2498.32 27.4512 Q2502.91 32.4859 2502.91 41.1664 M2496.52 39.2915 Q2496.45 34.0484 2493.57 30.9234 Q2490.72 27.7985 2486 27.7985 Q2480.65 27.7985 2477.42 30.8193 Q2474.23 33.8401 2473.74 39.3262 L2496.52 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2535.93 29.2915 Q2534.85 28.6665 2533.57 28.3887 Q2532.32 28.0762 2530.79 28.0762 Q2525.37 28.0762 2522.45 31.6179 Q2519.57 35.1248 2519.57 41.722 L2519.57 62.208 L2513.15 62.208 L2513.15 23.3193 L2519.57 23.3193 L2519.57 29.361 Q2521.59 25.8193 2524.82 24.1179 Q2528.04 22.3818 2532.66 22.3818 Q2533.32 22.3818 2534.12 22.486 Q2534.92 22.5554 2535.89 22.729 L2535.93 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2566.97 42.3123 Q2566.97 35.3679 2564.09 31.5484 Q2561.24 27.729 2556.07 27.729 Q2550.93 27.729 2548.04 31.5484 Q2545.2 35.3679 2545.2 42.3123 Q2545.2 49.222 2548.04 53.0414 Q2550.93 56.8608 2556.07 56.8608 Q2561.24 56.8608 2564.09 53.0414 Q2566.97 49.222 2566.97 42.3123 M2573.36 57.3816 Q2573.36 67.3121 2568.95 72.1385 Q2564.54 76.9996 2555.44 76.9996 Q2552.07 76.9996 2549.09 76.4788 Q2546.1 75.9926 2543.29 74.951 L2543.29 68.7357 Q2546.1 70.2635 2548.84 70.9927 Q2551.59 71.7218 2554.43 71.7218 Q2560.72 71.7218 2563.84 68.4232 Q2566.97 65.1594 2566.97 58.5275 L2566.97 55.3678 Q2564.99 58.8052 2561.9 60.5066 Q2558.81 62.208 2554.5 62.208 Q2547.35 62.208 2542.98 56.7566 Q2538.6 51.3053 2538.6 42.3123 Q2538.6 33.2845 2542.98 27.8332 Q2547.35 22.3818 2554.5 22.3818 Q2558.81 22.3818 2561.9 24.0832 Q2564.99 25.7846 2566.97 29.2221 L2566.97 23.3193 L2573.36 23.3193 L2573.36 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2602.7 65.8191 Q2599.99 72.7635 2597.42 74.8815 Q2594.85 76.9996 2590.54 76.9996 L2585.44 76.9996 L2585.44 71.6524 L2589.19 71.6524 Q2591.83 71.6524 2593.29 70.4024 Q2594.75 69.1524 2596.52 64.4997 L2597.66 61.583 L2581.93 23.3193 L2588.7 23.3193 L2600.86 53.7358 L2613.01 23.3193 L2619.78 23.3193 L2602.7 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2684.47 41.1664 L2684.47 44.2914 L2655.09 44.2914 Q2655.51 50.8886 2659.05 54.3608 Q2662.63 57.7983 2668.98 57.7983 Q2672.66 57.7983 2676.1 56.8955 Q2679.57 55.9928 2682.97 54.1872 L2682.97 60.2288 Q2679.54 61.6872 2675.93 62.4511 Q2672.31 63.2149 2668.6 63.2149 Q2659.29 63.2149 2653.84 57.7983 Q2648.43 52.3817 2648.43 43.1456 Q2648.43 33.597 2653.56 28.0068 Q2658.74 22.3818 2667.49 22.3818 Q2675.34 22.3818 2679.88 27.4512 Q2684.47 32.4859 2684.47 41.1664 M2678.08 39.2915 Q2678.01 34.0484 2675.13 30.9234 Q2672.28 27.7985 2667.56 27.7985 Q2662.21 27.7985 2658.98 30.8193 Q2655.79 33.8401 2655.3 39.3262 L2678.08 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2717.49 29.2915 Q2716.41 28.6665 2715.13 28.3887 Q2713.88 28.0762 2712.35 28.0762 Q2706.93 28.0762 2704.02 31.6179 Q2701.13 35.1248 2701.13 41.722 L2701.13 62.208 L2694.71 62.208 L2694.71 23.3193 L2701.13 23.3193 L2701.13 29.361 Q2703.15 25.8193 2706.38 24.1179 Q2709.61 22.3818 2714.22 22.3818 Q2714.88 22.3818 2715.68 22.486 Q2716.48 22.5554 2717.45 22.729 L2717.49 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2745.47 29.2915 Q2744.4 28.6665 2743.11 28.3887 Q2741.86 28.0762 2740.34 28.0762 Q2734.92 28.0762 2732 31.6179 Q2729.12 35.1248 2729.12 41.722 L2729.12 62.208 L2722.7 62.208 L2722.7 23.3193 L2729.12 23.3193 L2729.12 29.361 Q2731.13 25.8193 2734.36 24.1179 Q2737.59 22.3818 2742.21 22.3818 Q2742.87 22.3818 2743.67 22.486 Q2744.47 22.5554 2745.44 22.729 L2745.47 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2765.68 27.7985 Q2760.54 27.7985 2757.56 31.8262 Q2754.57 35.8193 2754.57 42.7984 Q2754.57 49.7775 2757.52 53.8053 Q2760.51 57.7983 2765.68 57.7983 Q2770.79 57.7983 2773.77 53.7705 Q2776.76 49.7428 2776.76 42.7984 Q2776.76 35.8887 2773.77 31.8609 Q2770.79 27.7985 2765.68 27.7985 M2765.68 22.3818 Q2774.02 22.3818 2778.77 27.7985 Q2783.53 33.2151 2783.53 42.7984 Q2783.53 52.3469 2778.77 57.7983 Q2774.02 63.2149 2765.68 63.2149 Q2757.31 63.2149 2752.56 57.7983 Q2747.84 52.3469 2747.84 42.7984 Q2747.84 33.2151 2752.56 27.7985 Q2757.31 22.3818 2765.68 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M2816.65 29.2915 Q2815.58 28.6665 2814.29 28.3887 Q2813.04 28.0762 2811.52 28.0762 Q2806.1 28.0762 2803.18 31.6179 Q2800.3 35.1248 2800.3 41.722 L2800.3 62.208 L2793.88 62.208 L2793.88 23.3193 L2800.3 23.3193 L2800.3 29.361 Q2802.31 25.8193 2805.54 24.1179 Q2808.77 22.3818 2813.39 22.3818 Q2814.05 22.3818 2814.85 22.486 Q2815.65 22.5554 2816.62 22.729 L2816.65 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip893)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.46,538.848 1893.91,590.898 1896.36,868.665 1898.81,615.07 1901.26,430.484 1903.71,516.734 1906.15,533.111 1908.6,498.135 1911.05,515.474 1913.5,539.672 \n 1915.95,540.006 1918.4,536.547 1920.85,534.573 1923.3,536.114 1925.75,537.219 1928.2,537.25 1930.65,537.16 1933.09,537.093 1935.54,537.115 1937.99,537.156 \n 1940.44,537.195 1942.89,537.209 1945.34,537.187 1947.79,537.171 1950.24,537.189 1952.69,537.229 1955.14,537.243 1957.59,537.224 1960.04,537.207 1962.48,537.215 \n 1964.93,537.252 1967.38,537.286 1969.83,537.359 1972.28,537.25 1974.73,536.761 1977.18,536.751 1979.63,537.668 1982.08,541.01 1984.53,537.601 1986.98,523.911 \n 1989.42,525.318 1991.87,539.757 1994.32,545.126 1996.77,524.58 1999.22,630.818 2001.67,660.831 2004.12,477.528 2006.57,206.115 2009.02,332.323 2011.47,196.314 \n 2013.92,347.677 2016.36,574.277 2018.81,614.998 2021.26,520.737 2023.71,535.83 2026.16,548.722 2028.61,536.829 2031.06,524.086 2033.51,533.052 2035.96,540.617 \n 2038.41,540.621 2040.86,539.788 2043.31,539.357 2045.75,539.678 2048.2,539.917 2050.65,539.956 2053.1,539.951 2055.55,539.922 2058,539.913 2060.45,539.934 \n 2062.9,539.973 2065.35,539.988 2067.8,539.967 2070.25,539.951 2072.69,539.968 2075.14,540.007 2077.59,540.023 2080.04,540.012 2082.49,539.987 2084.94,539.948 \n 2087.39,539.977 2089.84,540.102 2092.29,540.548 2094.74,540.056 2097.19,537.731 2099.63,537.664 2102.08,541.427 2104.53,552.876 2106.98,541.453 2109.43,512.775 \n 2111.88,526.193 2114.33,524.061 2116.78,350.471 2119.23,389.188 2121.68,729.971 2124.13,644.689 2126.58,572.005 2129.02,825.476 2131.47,619.956 2133.92,357.28 \n 2136.37,488.404 2138.82,541.576 2141.27,501.501 2143.72,514.572 2146.17,545.974 2148.62,546.929 2151.07,541.726 2153.52,538.513 2155.96,540.997 2158.41,542.811 \n 2160.86,542.836 2163.31,542.672 2165.76,542.571 2168.21,542.622 2170.66,542.681 2173.11,542.72 2175.56,542.732 2178.01,542.71 2180.46,542.695 2182.9,542.713 \n 2185.35,542.752 2187.8,542.767 2190.25,542.746 2192.7,542.73 2195.15,542.743 2197.6,542.78 2200.05,542.806 2202.5,542.84 2204.95,542.77 2207.4,542.488 \n 2209.85,542.494 2212.29,543.055 2214.74,545.147 2217.19,542.986 2219.64,533.722 2222.09,534.207 2224.54,545.738 2226.99,562.543 2229.44,540.523 2231.89,576.391 \n 2234.34,614.247 2236.79,481.725 2239.23,110.599 2241.68,262.683 2244.13,293.832 2246.58,363.857 2249.03,596.221 2251.48,718.472 2253.93,552.704 2256.38,526.235 \n 2258.83,552.431 2261.28,541.433 2263.73,522.561 2266.17,535.008 2268.62,546.567 2271.07,546.585 2273.52,545.224 2275.97,544.512 2278.42,545.06 2280.87,545.455 \n 2283.32,545.492 2285.77,545.473 2288.22,545.437 2290.67,545.433 2293.12,545.457 2295.56,545.497 2298.01,545.511 2300.46,545.49 2302.91,545.474 2305.36,545.492 \n 2307.81,545.531 2310.26,545.546 2312.71,545.53 2315.16,545.51 2317.61,545.496 2320.06,545.528 2322.5,545.607 2324.95,545.864 2327.4,545.566 2329.85,544.149 \n 2332.3,544.096 2334.75,546.509 2337.2,554.491 2339.65,546.51 2342.1,521.32 2344.55,528.514 2347,539.933 2349.44,454.938 2351.89,462.264 2354.34,754.961 \n 2356.79,708.739 2359.24,541.388 2361.69,665.352 2364.14,570.066 2366.59,273.178 2369.04,445.492 2371.49,553.921 2373.94,518.013 2376.39,515.497 2378.83,551.774 \n 2381.28,554.206 2383.73,546.745 2386.18,541.584 2388.63,545.498 2391.08,548.446 2393.53,548.464 2395.98,548.177 2398.43,548.018 2400.88,548.117 2403.33,548.207 \n 2405.77,548.246 2408.22,548.255 2410.67,548.232 2413.12,548.218 2415.57,548.236 2418.02,548.276 2420.47,548.29 2422.92,548.27 2425.37,548.254 2427.82,548.269 \n 2430.27,548.307 2432.71,548.327 2435.16,548.338 2437.61,548.292 2440.06,548.134 2442.51,548.15 2444.96,548.492 2447.41,549.775 2449.86,548.43 2452.31,542.39 \n 2454.76,542.486 2457.21,550.909 2459.66,569.157 2462.1,549.532 2464.55,543.4 2467,575.928 2469.45,499.381 2471.9,135.282 2474.35,263.55 2476.8,460.524 \n 2479.25,437.211 2481.7,611.05 2484.15,825.898 2486.6,595.452 2489.04,500.863 2491.49,550.109 2493.94,546.371 2496.39,519.814 2498.84,535.66 2501.29,552.693 \n 2503.74,552.784 2506.19,550.607 2508.64,549.432 2511.09,550.349 2513.54,551.003 2515.98,551.037 2518.43,550.992 2520.88,550.946 2523.33,550.951 2525.78,550.981 \n 2528.23,551.021 2530.68,551.035 2533.13,551.014 2535.58,550.998 2538.03,551.015 2540.48,551.055 2542.93,551.069 2545.37,551.051 2547.82,551.033 2550.27,551.033 \n 2552.72,551.068 2555.17,551.119 2557.62,551.263 2560.07,551.081 2562.52,550.232 2564.97,550.201 2567.42,551.716 2569.87,557.023 2572.31,551.671 2574.76,532.2 \n 2577.21,535.66 2579.66,551.144 2582.11,524.706 2584.56,513.101 2587.01,716.124 2589.46,715.841 2591.91,512.341 2594.36,436.886 2596.81,469.285 2599.26,210.948 \n 2601.7,397.975 2604.15,571.233 2606.6,558.116 2609.05,522.066 2611.5,555.835 2613.95,561.539 2616.4,551.572 2618.85,543.434 2621.3,549.426 2623.75,554.149 \n 2626.2,554.157 2628.64,553.669 2631.09,553.412 2633.54,553.591 2635.99,553.735 2638.44,553.774 2640.89,553.778 2643.34,553.753 2645.79,553.74 2648.24,553.76 \n 2650.69,553.799 2653.14,553.814 2655.58,553.793 2658.03,553.777 2660.48,553.794 2662.93,553.832 2665.38,553.85 2667.83,553.847 2670.28,553.814 2672.73,553.73 \n 2675.18,553.754 2677.63,553.962 2680.08,554.735 2682.53,553.909 2684.97,550.078 2687.42,550.039 2689.87,555.841 2692.32,571.305 2694.77,555.638 2697.22,530.854 \n 2699.67,553.591 2702.12,521.994 2704.57,239.234 2707.02,322.829 2709.47,633.018 2711.91,550.105 2714.36,610.933 2716.81,887.501 2719.26,633.472 2721.71,452.839 \n 2724.16,537.235 2726.61,552.395 2729.06,517.752 2731.51,535.116 2733.96,558.985 2736.41,559.302 2738.85,555.909 2741.3,553.979 2743.75,555.486 2746.2,556.566 \n 2748.65,556.598 2751.1,556.51 2753.55,556.444 2756,556.465 2758.45,556.505 2760.9,556.545 2763.35,556.558 2765.8,556.537 2768.24,556.521 2770.69,556.539 \n 2773.14,556.578 2775.59,556.593 2778.04,556.573 2780.49,556.556 2782.94,556.565 2785.39,556.601 2787.84,556.636 2790.29,556.711 2792.74,556.599 2795.18,556.099 \n 2797.63,556.088 2800.08,557.025 2802.53,560.436 2804.98,556.959 2807.43,543.041 2809.88,544.508 2812.33,559.053 2814.78,563.544 2817.23,543.202 2819.68,653.236 \n 2822.12,682.44 2824.57,497.361 2827.02,232.867 2829.47,356.409 2831.92,213.701 2834.37,367.782 2836.82,592.849 2839.27,630.542 2841.72,539.24 2844.17,555.604 \n 2846.62,568.07 2849.07,556.22 2851.51,543.713 2853.96,552.534 2856.41,559.951 2858.86,559.955 2861.31,559.141 2863.76,558.719 2866.21,559.032 2868.66,559.266 \n 2871.11,559.305 2873.56,559.301 2876.01,559.272 2878.45,559.262 2880.9,559.283 2883.35,559.323 2885.8,559.337 2888.25,559.316 2890.7,559.3 2893.15,559.318 \n 2895.6,559.357 2898.05,559.373 2900.5,559.362 2902.95,559.337 2905.39,559.296 2907.84,559.325 2910.29,559.453 2912.74,559.91 2915.19,559.407 2917.64,557.03 \n 2920.09,556.963 2922.54,560.8 2924.99,572.419 2927.44,560.824 2929.89,532.107 2932.34,545.871 2934.78,542.824 2937.23,364.675 2939.68,405.104 2942.13,746.458 \n 2944.58,660.129 2947.03,592.787 2949.48,849.641 2951.93,640.41 2954.38,380.58 2956.83,509.622 2959.28,560.721 2961.72,520.737 2964.17,534.193 2966.62,565.294 \n 2969.07,566.207 2971.52,561.094 2973.97,557.95 2976.42,560.382 2978.87,562.157 2981.32,562.182 2983.77,562.023 2986.22,561.924 2988.66,561.972 2991.11,562.03 \n 2993.56,562.07 2996.01,562.082 2998.46,562.06 3000.91,562.044 3003.36,562.062 3005.81,562.102 3008.26,562.116 3010.71,562.096 3013.16,562.08 3015.61,562.092 \n 3018.05,562.13 3020.5,562.156 3022.95,562.191 3025.4,562.12 3027.85,561.831 3030.3,561.836 3032.75,562.409 3035.2,564.547 3037.65,562.34 3040.1,552.904 \n 3042.55,553.416 3044.99,565.09 3047.44,581.65 3049.89,559.592 3052.34,598.015 3054.79,635.873 3057.24,500.785 3059.69,131.778 3062.14,283.964 3064.59,307.19 \n 3067.04,381.491 3069.49,614.92 3071.93,733.029 3074.38,570.565 3076.83,546.55 3079.28,571.962 3081.73,560.821 3084.18,542.262 3086.63,554.546 3089.08,565.894 \n 3091.53,565.91 3093.98,564.579 3096.43,563.883 3098.88,564.418 3101.32,564.804 3103.77,564.841 3106.22,564.822 3108.67,564.788 3111.12,564.783 3113.57,564.807 \n 3116.02,564.854 \n \"/>\n</svg>\n"
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dtmax = 0.05\nsol = solve(DynamicalODEProblem(f2!, f1!, v0(p), u0(p), tspan, p); dtmax)\n@show length(sol.t)\nplot_pendulum(sol; title=\"DynamicalODEProblem with dtmax = $dtmax\")",
"execution_count": 13,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 604\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip930\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip930)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip931\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip930)\" d=\"\nM157.191 910.808 L1455.22 910.808 L1455.22 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip932\">\n <rect x=\"157\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 193.928,910.808 193.928,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 275.565,910.808 275.565,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 357.202,910.808 357.202,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 438.84,910.808 438.84,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 520.477,910.808 520.477,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 602.114,910.808 602.114,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 683.751,910.808 683.751,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 765.389,910.808 765.389,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 847.026,910.808 847.026,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 928.663,910.808 928.663,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1010.3,910.808 1010.3,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1091.94,910.808 1091.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1173.58,910.808 1173.58,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1255.21,910.808 1255.21,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1336.85,910.808 1336.85,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1418.49,910.808 1418.49,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,910.808 193.928,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 275.565,910.808 275.565,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 357.202,910.808 357.202,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 438.84,910.808 438.84,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 520.477,910.808 520.477,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 602.114,910.808 602.114,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 683.751,910.808 683.751,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 765.389,910.808 765.389,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 847.026,910.808 847.026,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 928.663,910.808 928.663,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1010.3,910.808 1010.3,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1091.94,910.808 1091.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1173.58,910.808 1173.58,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1255.21,910.808 1255.21,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1336.85,910.808 1336.85,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1418.49,910.808 1418.49,900.926 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M193.928 946.399 Q190.317 946.399 188.488 949.963 Q186.682 953.505 186.682 960.635 Q186.682 967.741 188.488 971.306 Q190.317 974.847 193.928 974.847 Q197.562 974.847 199.367 971.306 Q201.196 967.741 201.196 960.635 Q201.196 953.505 199.367 949.963 Q197.562 946.399 193.928 946.399 M193.928 942.695 Q199.738 942.695 202.793 947.301 Q205.872 951.885 205.872 960.635 Q205.872 969.361 202.793 973.968 Q199.738 978.551 193.928 978.551 Q188.117 978.551 185.039 973.968 Q181.983 969.361 181.983 960.635 Q181.983 951.885 185.039 947.301 Q188.117 942.695 193.928 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M270.218 973.945 L286.537 973.945 L286.537 977.88 L264.593 977.88 L264.593 973.945 Q267.255 971.19 271.838 966.56 Q276.445 961.908 277.625 960.565 Q279.87 958.042 280.75 956.306 Q281.653 954.547 281.653 952.857 Q281.653 950.102 279.708 948.366 Q277.787 946.63 274.685 946.63 Q272.486 946.63 270.033 947.394 Q267.602 948.158 264.824 949.709 L264.824 944.987 Q267.648 943.852 270.102 943.274 Q272.556 942.695 274.593 942.695 Q279.963 942.695 283.157 945.38 Q286.352 948.065 286.352 952.556 Q286.352 954.686 285.542 956.607 Q284.755 958.505 282.648 961.098 Q282.07 961.769 278.968 964.986 Q275.866 968.181 270.218 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M360.211 947.394 L348.406 965.843 L360.211 965.843 L360.211 947.394 M358.985 943.32 L364.864 943.32 L364.864 965.843 L369.795 965.843 L369.795 969.732 L364.864 969.732 L364.864 977.88 L360.211 977.88 L360.211 969.732 L344.61 969.732 L344.61 965.218 L358.985 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M439.245 958.736 Q436.096 958.736 434.245 960.889 Q432.416 963.042 432.416 966.792 Q432.416 970.519 434.245 972.695 Q436.096 974.847 439.245 974.847 Q442.393 974.847 444.221 972.695 Q446.073 970.519 446.073 966.792 Q446.073 963.042 444.221 960.889 Q442.393 958.736 439.245 958.736 M448.527 944.084 L448.527 948.343 Q446.768 947.51 444.962 947.07 Q443.18 946.63 441.421 946.63 Q436.791 946.63 434.337 949.755 Q431.907 952.88 431.559 959.199 Q432.925 957.186 434.985 956.121 Q437.046 955.033 439.522 955.033 Q444.731 955.033 447.74 958.204 Q450.772 961.352 450.772 966.792 Q450.772 972.116 447.624 975.334 Q444.476 978.551 439.245 978.551 Q433.249 978.551 430.078 973.968 Q426.907 969.361 426.907 960.635 Q426.907 952.44 430.796 947.579 Q434.684 942.695 441.235 942.695 Q442.995 942.695 444.777 943.042 Q446.583 943.389 448.527 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M520.477 961.468 Q517.144 961.468 515.222 963.25 Q513.324 965.033 513.324 968.158 Q513.324 971.283 515.222 973.065 Q517.144 974.847 520.477 974.847 Q523.81 974.847 525.731 973.065 Q527.653 971.26 527.653 968.158 Q527.653 965.033 525.731 963.25 Q523.833 961.468 520.477 961.468 M515.801 959.477 Q512.792 958.736 511.102 956.676 Q509.435 954.616 509.435 951.653 Q509.435 947.51 512.375 945.102 Q515.338 942.695 520.477 942.695 Q525.639 942.695 528.579 945.102 Q531.518 947.51 531.518 951.653 Q531.518 954.616 529.829 956.676 Q528.162 958.736 525.176 959.477 Q528.555 960.264 530.43 962.556 Q532.329 964.848 532.329 968.158 Q532.329 973.181 529.25 975.866 Q526.194 978.551 520.477 978.551 Q514.759 978.551 511.681 975.866 Q508.625 973.181 508.625 968.158 Q508.625 964.848 510.523 962.556 Q512.421 960.264 515.801 959.477 M514.088 952.093 Q514.088 954.778 515.755 956.283 Q517.444 957.787 520.477 957.787 Q523.486 957.787 525.176 956.283 Q526.889 954.778 526.889 952.093 Q526.889 949.408 525.176 947.903 Q523.486 946.399 520.477 946.399 Q517.444 946.399 515.755 947.903 Q514.088 949.408 514.088 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M576.802 973.945 L584.441 973.945 L584.441 947.579 L576.13 949.246 L576.13 944.987 L584.394 943.32 L589.07 943.32 L589.07 973.945 L596.709 973.945 L596.709 977.88 L576.802 977.88 L576.802 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M616.153 946.399 Q612.542 946.399 610.714 949.963 Q608.908 953.505 608.908 960.635 Q608.908 967.741 610.714 971.306 Q612.542 974.847 616.153 974.847 Q619.788 974.847 621.593 971.306 Q623.422 967.741 623.422 960.635 Q623.422 953.505 621.593 949.963 Q619.788 946.399 616.153 946.399 M616.153 942.695 Q621.964 942.695 625.019 947.301 Q628.098 951.885 628.098 960.635 Q628.098 969.361 625.019 973.968 Q621.964 978.551 616.153 978.551 Q610.343 978.551 607.265 973.968 Q604.209 969.361 604.209 960.635 Q604.209 951.885 607.265 947.301 Q610.343 942.695 616.153 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M659.238 973.945 L666.877 973.945 L666.877 947.579 L658.566 949.246 L658.566 944.987 L666.83 943.32 L671.506 943.32 L671.506 973.945 L679.145 973.945 L679.145 977.88 L659.238 977.88 L659.238 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M692.617 973.945 L708.936 973.945 L708.936 977.88 L686.992 977.88 L686.992 973.945 Q689.654 971.19 694.237 966.56 Q698.844 961.908 700.024 960.565 Q702.27 958.042 703.149 956.306 Q704.052 954.547 704.052 952.857 Q704.052 950.102 702.108 948.366 Q700.187 946.63 697.085 946.63 Q694.886 946.63 692.432 947.394 Q690.001 948.158 687.224 949.709 L687.224 944.987 Q690.048 943.852 692.501 943.274 Q694.955 942.695 696.992 942.695 Q702.362 942.695 705.557 945.38 Q708.751 948.065 708.751 952.556 Q708.751 954.686 707.941 956.607 Q707.154 958.505 705.048 961.098 Q704.469 961.769 701.367 964.986 Q698.265 968.181 692.617 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M739.833 973.945 L747.472 973.945 L747.472 947.579 L739.162 949.246 L739.162 944.987 L747.426 943.32 L752.102 943.32 L752.102 973.945 L759.741 973.945 L759.741 977.88 L739.833 977.88 L739.833 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M782.032 947.394 L770.227 965.843 L782.032 965.843 L782.032 947.394 M780.805 943.32 L786.685 943.32 L786.685 965.843 L791.615 965.843 L791.615 969.732 L786.685 969.732 L786.685 977.88 L782.032 977.88 L782.032 969.732 L766.43 969.732 L766.43 965.218 L780.805 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M821.633 973.945 L829.271 973.945 L829.271 947.579 L820.961 949.246 L820.961 944.987 L829.225 943.32 L833.901 943.32 L833.901 973.945 L841.54 973.945 L841.54 977.88 L821.633 977.88 L821.633 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M861.563 958.736 Q858.415 958.736 856.563 960.889 Q854.734 963.042 854.734 966.792 Q854.734 970.519 856.563 972.695 Q858.415 974.847 861.563 974.847 Q864.711 974.847 866.54 972.695 Q868.392 970.519 868.392 966.792 Q868.392 963.042 866.54 960.889 Q864.711 958.736 861.563 958.736 M870.845 944.084 L870.845 948.343 Q869.086 947.51 867.281 947.07 Q865.498 946.63 863.739 946.63 Q859.109 946.63 856.656 949.755 Q854.225 952.88 853.878 959.199 Q855.244 957.186 857.304 956.121 Q859.364 955.033 861.841 955.033 Q867.049 955.033 870.058 958.204 Q873.091 961.352 873.091 966.792 Q873.091 972.116 869.943 975.334 Q866.794 978.551 861.563 978.551 Q855.568 978.551 852.396 973.968 Q849.225 969.361 849.225 960.635 Q849.225 952.44 853.114 947.579 Q857.003 942.695 863.554 942.695 Q865.313 942.695 867.095 943.042 Q868.901 943.389 870.845 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M903.397 973.945 L911.036 973.945 L911.036 947.579 L902.726 949.246 L902.726 944.987 L910.99 943.32 L915.666 943.32 L915.666 973.945 L923.305 973.945 L923.305 977.88 L903.397 977.88 L903.397 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M942.749 961.468 Q939.416 961.468 937.494 963.25 Q935.596 965.033 935.596 968.158 Q935.596 971.283 937.494 973.065 Q939.416 974.847 942.749 974.847 Q946.082 974.847 948.003 973.065 Q949.925 971.26 949.925 968.158 Q949.925 965.033 948.003 963.25 Q946.105 961.468 942.749 961.468 M938.073 959.477 Q935.064 958.736 933.374 956.676 Q931.707 954.616 931.707 951.653 Q931.707 947.51 934.647 945.102 Q937.61 942.695 942.749 942.695 Q947.911 942.695 950.851 945.102 Q953.79 947.51 953.79 951.653 Q953.79 954.616 952.101 956.676 Q950.434 958.736 947.448 959.477 Q950.828 960.264 952.703 962.556 Q954.601 964.848 954.601 968.158 Q954.601 973.181 951.522 975.866 Q948.466 978.551 942.749 978.551 Q937.031 978.551 933.953 975.866 Q930.897 973.181 930.897 968.158 Q930.897 964.848 932.795 962.556 Q934.693 960.264 938.073 959.477 M936.36 952.093 Q936.36 954.778 938.027 956.283 Q939.716 957.787 942.749 957.787 Q945.758 957.787 947.448 956.283 Q949.161 954.778 949.161 952.093 Q949.161 949.408 947.448 947.903 Q945.758 946.399 942.749 946.399 Q939.716 946.399 938.027 947.903 Q936.36 949.408 936.36 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M989.074 973.945 L1005.39 973.945 L1005.39 977.88 L983.449 977.88 L983.449 973.945 Q986.111 971.19 990.694 966.56 Q995.301 961.908 996.481 960.565 Q998.727 958.042 999.606 956.306 Q1000.51 954.547 1000.51 952.857 Q1000.51 950.102 998.565 948.366 Q996.643 946.63 993.541 946.63 Q991.342 946.63 988.889 947.394 Q986.458 948.158 983.68 949.709 L983.68 944.987 Q986.504 943.852 988.958 943.274 Q991.412 942.695 993.449 942.695 Q998.819 942.695 1002.01 945.38 Q1005.21 948.065 1005.21 952.556 Q1005.21 954.686 1004.4 956.607 Q1003.61 958.505 1001.5 961.098 Q1000.93 961.769 997.824 964.986 Q994.722 968.181 989.074 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1025.21 946.399 Q1021.6 946.399 1019.77 949.963 Q1017.96 953.505 1017.96 960.635 Q1017.96 967.741 1019.77 971.306 Q1021.6 974.847 1025.21 974.847 Q1028.84 974.847 1030.65 971.306 Q1032.48 967.741 1032.48 960.635 Q1032.48 953.505 1030.65 949.963 Q1028.84 946.399 1025.21 946.399 M1025.21 942.695 Q1031.02 942.695 1034.07 947.301 Q1037.15 951.885 1037.15 960.635 Q1037.15 969.361 1034.07 973.968 Q1031.02 978.551 1025.21 978.551 Q1019.4 978.551 1016.32 973.968 Q1013.26 969.361 1013.26 960.635 Q1013.26 951.885 1016.32 947.301 Q1019.4 942.695 1025.21 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1071.51 973.945 L1087.83 973.945 L1087.83 977.88 L1065.88 977.88 L1065.88 973.945 Q1068.55 971.19 1073.13 966.56 Q1077.74 961.908 1078.92 960.565 Q1081.16 958.042 1082.04 956.306 Q1082.94 954.547 1082.94 952.857 Q1082.94 950.102 1081 948.366 Q1079.08 946.63 1075.98 946.63 Q1073.78 946.63 1071.32 947.394 Q1068.89 948.158 1066.12 949.709 L1066.12 944.987 Q1068.94 943.852 1071.39 943.274 Q1073.85 942.695 1075.88 942.695 Q1081.26 942.695 1084.45 945.38 Q1087.64 948.065 1087.64 952.556 Q1087.64 954.686 1086.83 956.607 Q1086.05 958.505 1083.94 961.098 Q1083.36 961.769 1080.26 964.986 Q1077.16 968.181 1071.51 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1101.67 973.945 L1117.99 973.945 L1117.99 977.88 L1096.05 977.88 L1096.05 973.945 Q1098.71 971.19 1103.29 966.56 Q1107.9 961.908 1109.08 960.565 Q1111.32 958.042 1112.2 956.306 Q1113.11 954.547 1113.11 952.857 Q1113.11 950.102 1111.16 948.366 Q1109.24 946.63 1106.14 946.63 Q1103.94 946.63 1101.49 947.394 Q1099.06 948.158 1096.28 949.709 L1096.28 944.987 Q1099.1 943.852 1101.56 943.274 Q1104.01 942.695 1106.05 942.695 Q1111.42 942.695 1114.61 945.38 Q1117.81 948.065 1117.81 952.556 Q1117.81 954.686 1117 956.607 Q1116.21 958.505 1114.1 961.098 Q1113.52 961.769 1110.42 964.986 Q1107.32 968.181 1101.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1152.11 973.945 L1168.42 973.945 L1168.42 977.88 L1146.48 977.88 L1146.48 973.945 Q1149.14 971.19 1153.73 966.56 Q1158.33 961.908 1159.51 960.565 Q1161.76 958.042 1162.64 956.306 Q1163.54 954.547 1163.54 952.857 Q1163.54 950.102 1161.6 948.366 Q1159.67 946.63 1156.57 946.63 Q1154.37 946.63 1151.92 947.394 Q1149.49 948.158 1146.71 949.709 L1146.71 944.987 Q1149.54 943.852 1151.99 943.274 Q1154.44 942.695 1156.48 942.695 Q1161.85 942.695 1165.05 945.38 Q1168.24 948.065 1168.24 952.556 Q1168.24 954.686 1167.43 956.607 Q1166.64 958.505 1164.54 961.098 Q1163.96 961.769 1160.86 964.986 Q1157.75 968.181 1152.11 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1191.09 947.394 L1179.28 965.843 L1191.09 965.843 L1191.09 947.394 M1189.86 943.32 L1195.74 943.32 L1195.74 965.843 L1200.67 965.843 L1200.67 969.732 L1195.74 969.732 L1195.74 977.88 L1191.09 977.88 L1191.09 969.732 L1175.48 969.732 L1175.48 965.218 L1189.86 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1233.9 973.945 L1250.22 973.945 L1250.22 977.88 L1228.28 977.88 L1228.28 973.945 Q1230.94 971.19 1235.53 966.56 Q1240.13 961.908 1241.31 960.565 Q1243.56 958.042 1244.44 956.306 Q1245.34 954.547 1245.34 952.857 Q1245.34 950.102 1243.4 948.366 Q1241.47 946.63 1238.37 946.63 Q1236.17 946.63 1233.72 947.394 Q1231.29 948.158 1228.51 949.709 L1228.51 944.987 Q1231.34 943.852 1233.79 943.274 Q1236.24 942.695 1238.28 942.695 Q1243.65 942.695 1246.84 945.38 Q1250.04 948.065 1250.04 952.556 Q1250.04 954.686 1249.23 956.607 Q1248.44 958.505 1246.34 961.098 Q1245.76 961.769 1242.65 964.986 Q1239.55 968.181 1233.9 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1270.62 958.736 Q1267.47 958.736 1265.62 960.889 Q1263.79 963.042 1263.79 966.792 Q1263.79 970.519 1265.62 972.695 Q1267.47 974.847 1270.62 974.847 Q1273.77 974.847 1275.59 972.695 Q1277.45 970.519 1277.45 966.792 Q1277.45 963.042 1275.59 960.889 Q1273.77 958.736 1270.62 958.736 M1279.9 944.084 L1279.9 948.343 Q1278.14 947.51 1276.34 947.07 Q1274.55 946.63 1272.79 946.63 Q1268.16 946.63 1265.71 949.755 Q1263.28 952.88 1262.93 959.199 Q1264.3 957.186 1266.36 956.121 Q1268.42 955.033 1270.9 955.033 Q1276.1 955.033 1279.11 958.204 Q1282.15 961.352 1282.15 966.792 Q1282.15 972.116 1279 975.334 Q1275.85 978.551 1270.62 978.551 Q1264.62 978.551 1261.45 973.968 Q1258.28 969.361 1258.28 960.635 Q1258.28 952.44 1262.17 947.579 Q1266.06 942.695 1272.61 942.695 Q1274.37 942.695 1276.15 943.042 Q1277.96 943.389 1279.9 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1315.67 973.945 L1331.99 973.945 L1331.99 977.88 L1310.04 977.88 L1310.04 973.945 Q1312.71 971.19 1317.29 966.56 Q1321.9 961.908 1323.08 960.565 Q1325.32 958.042 1326.2 956.306 Q1327.1 954.547 1327.1 952.857 Q1327.1 950.102 1325.16 948.366 Q1323.24 946.63 1320.14 946.63 Q1317.94 946.63 1315.48 947.394 Q1313.05 948.158 1310.28 949.709 L1310.28 944.987 Q1313.1 943.852 1315.55 943.274 Q1318.01 942.695 1320.04 942.695 Q1325.41 942.695 1328.61 945.38 Q1331.8 948.065 1331.8 952.556 Q1331.8 954.686 1330.99 956.607 Q1330.21 958.505 1328.1 961.098 Q1327.52 961.769 1324.42 964.986 Q1321.32 968.181 1315.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1351.8 961.468 Q1348.47 961.468 1346.55 963.25 Q1344.65 965.033 1344.65 968.158 Q1344.65 971.283 1346.55 973.065 Q1348.47 974.847 1351.8 974.847 Q1355.14 974.847 1357.06 973.065 Q1358.98 971.26 1358.98 968.158 Q1358.98 965.033 1357.06 963.25 Q1355.16 961.468 1351.8 961.468 M1347.13 959.477 Q1344.12 958.736 1342.43 956.676 Q1340.76 954.616 1340.76 951.653 Q1340.76 947.51 1343.7 945.102 Q1346.66 942.695 1351.8 942.695 Q1356.97 942.695 1359.91 945.102 Q1362.85 947.51 1362.85 951.653 Q1362.85 954.616 1361.16 956.676 Q1359.49 958.736 1356.5 959.477 Q1359.88 960.264 1361.76 962.556 Q1363.66 964.848 1363.66 968.158 Q1363.66 973.181 1360.58 975.866 Q1357.52 978.551 1351.8 978.551 Q1346.09 978.551 1343.01 975.866 Q1339.95 973.181 1339.95 968.158 Q1339.95 964.848 1341.85 962.556 Q1343.75 960.264 1347.13 959.477 M1345.41 952.093 Q1345.41 954.778 1347.08 956.283 Q1348.77 957.787 1351.8 957.787 Q1354.81 957.787 1356.5 956.283 Q1358.22 954.778 1358.22 952.093 Q1358.22 949.408 1356.5 947.903 Q1354.81 946.399 1351.8 946.399 Q1348.77 946.399 1347.08 947.903 Q1345.41 949.408 1345.41 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1407.33 959.246 Q1410.69 959.963 1412.56 962.232 Q1414.46 964.5 1414.46 967.834 Q1414.46 972.949 1410.94 975.75 Q1407.42 978.551 1400.94 978.551 Q1398.76 978.551 1396.45 978.111 Q1394.16 977.695 1391.7 976.838 L1391.7 972.324 Q1393.65 973.459 1395.96 974.037 Q1398.28 974.616 1400.8 974.616 Q1405.2 974.616 1407.49 972.88 Q1409.81 971.144 1409.81 967.834 Q1409.81 964.778 1407.65 963.065 Q1405.52 961.329 1401.7 961.329 L1397.68 961.329 L1397.68 957.486 L1401.89 957.486 Q1405.34 957.486 1407.17 956.121 Q1409 954.732 1409 952.139 Q1409 949.477 1407.1 948.065 Q1405.22 946.63 1401.7 946.63 Q1399.78 946.63 1397.58 947.047 Q1395.39 947.463 1392.75 948.343 L1392.75 944.176 Q1395.41 943.436 1397.72 943.065 Q1400.06 942.695 1402.12 942.695 Q1407.45 942.695 1410.55 945.125 Q1413.65 947.533 1413.65 951.653 Q1413.65 954.524 1412.01 956.514 Q1410.36 958.482 1407.33 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1433.32 946.399 Q1429.71 946.399 1427.89 949.963 Q1426.08 953.505 1426.08 960.635 Q1426.08 967.741 1427.89 971.306 Q1429.71 974.847 1433.32 974.847 Q1436.96 974.847 1438.76 971.306 Q1440.59 967.741 1440.59 960.635 Q1440.59 953.505 1438.76 949.963 Q1436.96 946.399 1433.32 946.399 M1433.32 942.695 Q1439.14 942.695 1442.19 947.301 Q1445.27 951.885 1445.27 960.635 Q1445.27 969.361 1442.19 973.968 Q1439.14 978.551 1433.32 978.551 Q1427.51 978.551 1424.44 973.968 Q1421.38 969.361 1421.38 960.635 Q1421.38 951.885 1424.44 947.301 Q1427.51 942.695 1433.32 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1455.22,832.378 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1455.22,753.948 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1455.22,675.518 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1455.22,597.088 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1455.22,518.658 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1455.22,440.227 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1455.22,361.797 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1455.22,283.367 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1455.22,204.937 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1455.22,126.507 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 172.767,910.808 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 172.767,832.378 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 172.767,753.948 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 172.767,675.518 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 172.767,597.088 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 172.767,518.658 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 172.767,440.227 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 172.767,361.797 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 172.767,283.367 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 172.767,204.937 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 172.767,126.507 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M188.184 13.4432 L188.184 47.0368 L195.244 47.0368 Q204.185 47.0368 208.323 42.9859 Q212.489 38.935 212.489 30.1966 Q212.489 21.5161 208.323 17.4941 Q204.185 13.4432 195.244 13.4432 L188.184 13.4432 M182.339 8.64 L194.347 8.64 Q206.905 8.64 212.779 13.8772 Q218.653 19.0855 218.653 30.1966 Q218.653 41.3655 212.75 46.6028 Q206.847 51.84 194.347 51.84 L182.339 51.84 L182.339 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M241.222 54.8492 Q238.965 60.6362 236.824 62.4013 Q234.683 64.1663 231.095 64.1663 L226.841 64.1663 L226.841 59.7103 L229.966 59.7103 Q232.165 59.7103 233.381 58.6687 Q234.596 57.627 236.072 53.7497 L237.026 51.3192 L223.919 19.4328 L229.561 19.4328 L239.688 44.7799 L249.816 19.4328 L255.458 19.4328 L241.222 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M289.746 32.2799 L289.746 51.84 L284.422 51.84 L284.422 32.4535 Q284.422 27.8529 282.628 25.567 Q280.834 23.2811 277.246 23.2811 Q272.935 23.2811 270.446 26.03 Q267.958 28.7788 267.958 33.5241 L267.958 51.84 L262.605 51.84 L262.605 19.4328 L267.958 19.4328 L267.958 24.4675 Q269.868 21.545 272.443 20.0983 Q275.047 18.6515 278.432 18.6515 Q284.017 18.6515 286.881 22.1237 Q289.746 25.567 289.746 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M315.093 35.5496 Q308.641 35.5496 306.152 37.0253 Q303.664 38.501 303.664 42.06 Q303.664 44.8956 305.516 46.5738 Q307.396 48.2231 310.608 48.2231 Q315.035 48.2231 317.697 45.0981 Q320.388 41.9442 320.388 36.7359 L320.388 35.5496 L315.093 35.5496 M325.712 33.3505 L325.712 51.84 L320.388 51.84 L320.388 46.921 Q318.565 49.8724 315.845 51.2902 Q313.126 52.6791 309.19 52.6791 Q304.214 52.6791 301.262 49.9014 Q298.34 47.0947 298.34 42.4072 Q298.34 36.9385 301.986 34.1607 Q305.66 31.3829 312.923 31.3829 L320.388 31.3829 L320.388 30.8621 Q320.388 27.1874 317.958 25.1908 Q315.556 23.1654 311.187 23.1654 Q308.409 23.1654 305.776 23.8309 Q303.143 24.4964 300.712 25.8274 L300.712 20.9085 Q303.635 19.78 306.384 19.2302 Q309.132 18.6515 311.737 18.6515 Q318.768 18.6515 322.24 22.2973 Q325.712 25.9431 325.712 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M361.91 25.6538 Q363.907 22.0659 366.684 20.3587 Q369.462 18.6515 373.224 18.6515 Q378.287 18.6515 381.036 22.2105 Q383.785 25.7406 383.785 32.2799 L383.785 51.84 L378.432 51.84 L378.432 32.4535 Q378.432 27.795 376.783 25.5381 Q375.133 23.2811 371.748 23.2811 Q367.61 23.2811 365.209 26.03 Q362.807 28.7788 362.807 33.5241 L362.807 51.84 L357.454 51.84 L357.454 32.4535 Q357.454 27.7661 355.805 25.5381 Q354.155 23.2811 350.712 23.2811 Q346.632 23.2811 344.231 26.0589 Q341.829 28.8077 341.829 33.5241 L341.829 51.84 L336.476 51.84 L336.476 19.4328 L341.829 19.4328 L341.829 24.4675 Q343.652 21.4872 346.198 20.0693 Q348.745 18.6515 352.246 18.6515 Q355.776 18.6515 358.235 20.4455 Q360.724 22.2395 361.91 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M394.404 19.4328 L399.728 19.4328 L399.728 51.84 L394.404 51.84 L394.404 19.4328 M394.404 6.81709 L399.728 6.81709 L399.728 13.559 L394.404 13.559 L394.404 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M434.19 20.677 L434.19 25.6538 Q431.933 24.4096 429.647 23.802 Q427.39 23.1654 425.075 23.1654 Q419.896 23.1654 417.031 26.464 Q414.167 29.7336 414.167 35.6653 Q414.167 41.597 417.031 44.8956 Q419.896 48.1653 425.075 48.1653 Q427.39 48.1653 429.647 47.5576 Q431.933 46.921 434.19 45.6768 L434.19 50.5958 Q431.962 51.6375 429.56 52.1583 Q427.187 52.6791 424.496 52.6791 Q417.176 52.6791 412.865 48.0784 Q408.553 43.4778 408.553 35.6653 Q408.553 27.7371 412.894 23.1943 Q417.263 18.6515 424.844 18.6515 Q427.303 18.6515 429.647 19.1724 Q431.991 19.6642 434.19 20.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M458.177 35.5496 Q451.724 35.5496 449.236 37.0253 Q446.747 38.501 446.747 42.06 Q446.747 44.8956 448.599 46.5738 Q450.48 48.2231 453.692 48.2231 Q458.119 48.2231 460.781 45.0981 Q463.472 41.9442 463.472 36.7359 L463.472 35.5496 L458.177 35.5496 M468.796 33.3505 L468.796 51.84 L463.472 51.84 L463.472 46.921 Q461.649 49.8724 458.929 51.2902 Q456.209 52.6791 452.274 52.6791 Q447.297 52.6791 444.346 49.9014 Q441.423 47.0947 441.423 42.4072 Q441.423 36.9385 445.069 34.1607 Q448.744 31.3829 456.007 31.3829 L463.472 31.3829 L463.472 30.8621 Q463.472 27.1874 461.041 25.1908 Q458.64 23.1654 454.271 23.1654 Q451.493 23.1654 448.86 23.8309 Q446.227 24.4964 443.796 25.8274 L443.796 20.9085 Q446.719 19.78 449.467 19.2302 Q452.216 18.6515 454.82 18.6515 Q461.852 18.6515 465.324 22.2973 Q468.796 25.9431 468.796 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M479.762 6.81709 L485.086 6.81709 L485.086 51.84 L479.762 51.84 L479.762 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M513.993 12.6041 Q507.627 12.6041 503.865 17.3494 Q500.133 22.0948 500.133 30.2834 Q500.133 38.4431 503.865 43.1884 Q507.627 47.9338 513.993 47.9338 Q520.358 47.9338 524.062 43.1884 Q527.795 38.4431 527.795 30.2834 Q527.795 22.0948 524.062 17.3494 Q520.358 12.6041 513.993 12.6041 M513.993 7.85875 Q523.078 7.85875 528.518 13.964 Q533.958 20.0404 533.958 30.2834 Q533.958 40.4975 528.518 46.6028 Q523.078 52.6791 513.993 52.6791 Q504.878 52.6791 499.409 46.6028 Q493.969 40.5264 493.969 30.2834 Q493.969 20.0404 499.409 13.964 Q504.878 7.85875 513.993 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M548.946 13.4432 L548.946 47.0368 L556.006 47.0368 Q564.947 47.0368 569.085 42.9859 Q573.251 38.935 573.251 30.1966 Q573.251 21.5161 569.085 17.4941 Q564.947 13.4432 556.006 13.4432 L548.946 13.4432 M543.101 8.64 L555.109 8.64 Q567.667 8.64 573.541 13.8772 Q579.415 19.0855 579.415 30.1966 Q579.415 41.3655 573.512 46.6028 Q567.609 51.84 555.109 51.84 L543.101 51.84 L543.101 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M588.732 8.64 L616.046 8.64 L616.046 13.559 L594.577 13.559 L594.577 26.3482 L615.149 26.3482 L615.149 31.2672 L594.577 31.2672 L594.577 46.921 L616.567 46.921 L616.567 51.84 L588.732 51.84 L588.732 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M632.018 13.4432 L632.018 29.6758 L639.368 29.6758 Q643.448 29.6758 645.676 27.5635 Q647.904 25.4513 647.904 21.545 Q647.904 17.6677 645.676 15.5555 Q643.448 13.4432 639.368 13.4432 L632.018 13.4432 M626.174 8.64 L639.368 8.64 Q646.631 8.64 650.334 11.9386 Q654.067 15.2083 654.067 21.545 Q654.067 27.9397 650.334 31.2093 Q646.631 34.479 639.368 34.479 L632.018 34.479 L632.018 51.84 L626.174 51.84 L626.174 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M679.414 24.4096 Q678.517 23.8888 677.446 23.6573 Q676.405 23.3969 675.132 23.3969 Q670.618 23.3969 668.187 26.3482 Q665.786 29.2707 665.786 34.7683 L665.786 51.84 L660.433 51.84 L660.433 19.4328 L665.786 19.4328 L665.786 24.4675 Q667.464 21.5161 670.155 20.0983 Q672.846 18.6515 676.694 18.6515 Q677.244 18.6515 677.909 18.7383 Q678.575 18.7962 679.385 18.9409 L679.414 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M696.254 23.1654 Q691.972 23.1654 689.483 26.5218 Q686.995 29.8494 686.995 35.6653 Q686.995 41.4813 689.455 44.8377 Q691.943 48.1653 696.254 48.1653 Q700.508 48.1653 702.996 44.8088 Q705.485 41.4523 705.485 35.6653 Q705.485 29.9072 702.996 26.5508 Q700.508 23.1654 696.254 23.1654 M696.254 18.6515 Q703.199 18.6515 707.163 23.1654 Q711.127 27.6792 711.127 35.6653 Q711.127 43.6225 707.163 48.1653 Q703.199 52.6791 696.254 52.6791 Q689.281 52.6791 685.317 48.1653 Q681.382 43.6225 681.382 35.6653 Q681.382 27.6792 685.317 23.1654 Q689.281 18.6515 696.254 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M743.216 35.6653 Q743.216 29.7915 740.785 26.464 Q738.384 23.1075 734.159 23.1075 Q729.935 23.1075 727.504 26.464 Q725.102 29.7915 725.102 35.6653 Q725.102 41.5391 727.504 44.8956 Q729.935 48.2231 734.159 48.2231 Q738.384 48.2231 740.785 44.8956 Q743.216 41.5391 743.216 35.6653 M725.102 24.3517 Q726.781 21.4582 729.327 20.0693 Q731.902 18.6515 735.461 18.6515 Q741.364 18.6515 745.039 23.339 Q748.742 28.0265 748.742 35.6653 Q748.742 43.3042 745.039 47.9916 Q741.364 52.6791 735.461 52.6791 Q731.902 52.6791 729.327 51.2902 Q726.781 49.8724 725.102 46.9789 L725.102 51.84 L719.75 51.84 L719.75 6.81709 L725.102 6.81709 L725.102 24.3517 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M757.568 6.81709 L762.892 6.81709 L762.892 51.84 L757.568 51.84 L757.568 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M801.751 34.3054 L801.751 36.9095 L777.272 36.9095 Q777.62 42.4072 780.571 45.3007 Q783.551 48.1653 788.846 48.1653 Q791.913 48.1653 794.778 47.4129 Q797.672 46.6606 800.507 45.156 L800.507 50.1907 Q797.643 51.406 794.633 52.0425 Q791.624 52.6791 788.528 52.6791 Q780.773 52.6791 776.231 48.1653 Q771.717 43.6514 771.717 35.9547 Q771.717 27.9975 775.999 23.339 Q780.311 18.6515 787.602 18.6515 Q794.141 18.6515 797.932 22.876 Q801.751 27.0716 801.751 34.3054 M796.427 32.7429 Q796.369 28.3737 793.968 25.7695 Q791.595 23.1654 787.66 23.1654 Q783.204 23.1654 780.513 25.6827 Q777.851 28.2001 777.446 32.7718 L796.427 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M835.721 25.6538 Q837.718 22.0659 840.495 20.3587 Q843.273 18.6515 847.035 18.6515 Q852.098 18.6515 854.847 22.2105 Q857.596 25.7406 857.596 32.2799 L857.596 51.84 L852.243 51.84 L852.243 32.4535 Q852.243 27.795 850.594 25.5381 Q848.944 23.2811 845.559 23.2811 Q841.421 23.2811 839.02 26.03 Q836.618 28.7788 836.618 33.5241 L836.618 51.84 L831.265 51.84 L831.265 32.4535 Q831.265 27.7661 829.616 25.5381 Q827.967 23.2811 824.523 23.2811 Q820.443 23.2811 818.042 26.0589 Q815.64 28.8077 815.64 33.5241 L815.64 51.84 L810.287 51.84 L810.287 19.4328 L815.64 19.4328 L815.64 24.4675 Q817.463 21.4872 820.009 20.0693 Q822.556 18.6515 826.057 18.6515 Q829.587 18.6515 832.046 20.4455 Q834.535 22.2395 835.721 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M883.956 19.4328 L889.28 19.4328 L895.935 44.722 L902.561 19.4328 L908.84 19.4328 L915.495 44.722 L922.121 19.4328 L927.445 19.4328 L918.967 51.84 L912.688 51.84 L905.715 25.2776 L898.713 51.84 L892.434 51.84 L883.956 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M935.518 19.4328 L940.842 19.4328 L940.842 51.84 L935.518 51.84 L935.518 19.4328 M935.518 6.81709 L940.842 6.81709 L940.842 13.559 L935.518 13.559 L935.518 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M957.248 10.2314 L957.248 19.4328 L968.215 19.4328 L968.215 23.5705 L957.248 23.5705 L957.248 41.163 Q957.248 45.1271 958.319 46.2555 Q959.418 47.384 962.746 47.384 L968.215 47.384 L968.215 51.84 L962.746 51.84 Q956.583 51.84 954.239 49.5541 Q951.895 47.2393 951.895 41.163 L951.895 23.5705 L947.989 23.5705 L947.989 19.4328 L951.895 19.4328 L951.895 10.2314 L957.248 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1002.16 32.2799 L1002.16 51.84 L996.831 51.84 L996.831 32.4535 Q996.831 27.8529 995.037 25.567 Q993.243 23.2811 989.655 23.2811 Q985.344 23.2811 982.856 26.03 Q980.367 28.7788 980.367 33.5241 L980.367 51.84 L975.014 51.84 L975.014 6.81709 L980.367 6.81709 L980.367 24.4675 Q982.277 21.545 984.852 20.0983 Q987.456 18.6515 990.842 18.6515 Q996.426 18.6515 999.291 22.1237 Q1002.16 25.567 1002.16 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1052.94 24.3517 L1052.94 6.81709 L1058.26 6.81709 L1058.26 51.84 L1052.94 51.84 L1052.94 46.9789 Q1051.26 49.8724 1048.68 51.2902 Q1046.14 52.6791 1042.55 52.6791 Q1036.67 52.6791 1032.97 47.9916 Q1029.3 43.3042 1029.3 35.6653 Q1029.3 28.0265 1032.97 23.339 Q1036.67 18.6515 1042.55 18.6515 Q1046.14 18.6515 1048.68 20.0693 Q1051.26 21.4582 1052.94 24.3517 M1034.79 35.6653 Q1034.79 41.5391 1037.2 44.8956 Q1039.63 48.2231 1043.85 48.2231 Q1048.08 48.2231 1050.51 44.8956 Q1052.94 41.5391 1052.94 35.6653 Q1052.94 29.7915 1050.51 26.464 Q1048.08 23.1075 1043.85 23.1075 Q1039.63 23.1075 1037.2 26.464 Q1034.79 29.7915 1034.79 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1074.49 10.2314 L1074.49 19.4328 L1085.46 19.4328 L1085.46 23.5705 L1074.49 23.5705 L1074.49 41.163 Q1074.49 45.1271 1075.56 46.2555 Q1076.66 47.384 1079.99 47.384 L1085.46 47.384 L1085.46 51.84 L1079.99 51.84 Q1073.83 51.84 1071.48 49.5541 Q1069.14 47.2393 1069.14 41.163 L1069.14 23.5705 L1065.23 23.5705 L1065.23 19.4328 L1069.14 19.4328 L1069.14 10.2314 L1074.49 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1117.69 25.6538 Q1119.69 22.0659 1122.47 20.3587 Q1125.25 18.6515 1129.01 18.6515 Q1134.07 18.6515 1136.82 22.2105 Q1139.57 25.7406 1139.57 32.2799 L1139.57 51.84 L1134.21 51.84 L1134.21 32.4535 Q1134.21 27.795 1132.57 25.5381 Q1130.92 23.2811 1127.53 23.2811 Q1123.39 23.2811 1120.99 26.03 Q1118.59 28.7788 1118.59 33.5241 L1118.59 51.84 L1113.24 51.84 L1113.24 32.4535 Q1113.24 27.7661 1111.59 25.5381 Q1109.94 23.2811 1106.5 23.2811 Q1102.42 23.2811 1100.01 26.0589 Q1097.61 28.8077 1097.61 33.5241 L1097.61 51.84 L1092.26 51.84 L1092.26 19.4328 L1097.61 19.4328 L1097.61 24.4675 Q1099.43 21.4872 1101.98 20.0693 Q1104.53 18.6515 1108.03 18.6515 Q1111.56 18.6515 1114.02 20.4455 Q1116.51 22.2395 1117.69 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1164.91 35.5496 Q1158.46 35.5496 1155.97 37.0253 Q1153.49 38.501 1153.49 42.06 Q1153.49 44.8956 1155.34 46.5738 Q1157.22 48.2231 1160.43 48.2231 Q1164.86 48.2231 1167.52 45.0981 Q1170.21 41.9442 1170.21 36.7359 L1170.21 35.5496 L1164.91 35.5496 M1175.53 33.3505 L1175.53 51.84 L1170.21 51.84 L1170.21 46.921 Q1168.39 49.8724 1165.67 51.2902 Q1162.95 52.6791 1159.01 52.6791 Q1154.04 52.6791 1151.08 49.9014 Q1148.16 47.0947 1148.16 42.4072 Q1148.16 36.9385 1151.81 34.1607 Q1155.48 31.3829 1162.74 31.3829 L1170.21 31.3829 L1170.21 30.8621 Q1170.21 27.1874 1167.78 25.1908 Q1165.38 23.1654 1161.01 23.1654 Q1158.23 23.1654 1155.6 23.8309 Q1152.96 24.4964 1150.53 25.8274 L1150.53 20.9085 Q1153.46 19.78 1156.21 19.2302 Q1158.95 18.6515 1161.56 18.6515 Q1168.59 18.6515 1172.06 22.2973 Q1175.53 25.9431 1175.53 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1213.44 19.4328 L1201.72 35.2024 L1214.05 51.84 L1207.77 51.84 L1198.33 39.1086 L1188.9 51.84 L1182.62 51.84 L1195.21 34.8841 L1183.69 19.4328 L1189.97 19.4328 L1198.57 30.9778 L1207.16 19.4328 L1213.44 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1241.1 24.9304 L1278.2 24.9304 L1278.2 29.7915 L1241.1 29.7915 L1241.1 24.9304 M1241.1 36.7359 L1278.2 36.7359 L1278.2 41.6549 L1241.1 41.6549 L1241.1 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1322.15 12.4884 Q1317.63 12.4884 1315.35 16.9444 Q1313.09 21.3714 1313.09 30.2834 Q1313.09 39.1665 1315.35 43.6225 Q1317.63 48.0495 1322.15 48.0495 Q1326.69 48.0495 1328.95 43.6225 Q1331.23 39.1665 1331.23 30.2834 Q1331.23 21.3714 1328.95 16.9444 Q1326.69 12.4884 1322.15 12.4884 M1322.15 7.85875 Q1329.41 7.85875 1333.23 13.6168 Q1337.08 19.346 1337.08 30.2834 Q1337.08 41.1919 1333.23 46.95 Q1329.41 52.6791 1322.15 52.6791 Q1314.89 52.6791 1311.04 46.95 Q1307.22 41.1919 1307.22 30.2834 Q1307.22 19.346 1311.04 13.6168 Q1314.89 7.85875 1322.15 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1347.35 44.4905 L1353.46 44.4905 L1353.46 51.84 L1347.35 51.84 L1347.35 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1378.69 12.4884 Q1374.17 12.4884 1371.89 16.9444 Q1369.63 21.3714 1369.63 30.2834 Q1369.63 39.1665 1371.89 43.6225 Q1374.17 48.0495 1378.69 48.0495 Q1383.23 48.0495 1385.49 43.6225 Q1387.77 39.1665 1387.77 30.2834 Q1387.77 21.3714 1385.49 16.9444 Q1383.23 12.4884 1378.69 12.4884 M1378.69 7.85875 Q1385.95 7.85875 1389.77 13.6168 Q1393.62 19.346 1393.62 30.2834 Q1393.62 41.1919 1389.77 46.95 Q1385.95 52.6791 1378.69 52.6791 Q1371.42 52.6791 1367.58 46.95 Q1363.76 41.1919 1363.76 30.2834 Q1363.76 19.346 1367.58 13.6168 Q1371.42 7.85875 1378.69 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1403.95 8.64 L1426.89 8.64 L1426.89 13.559 L1409.3 13.559 L1409.3 24.1492 Q1410.57 23.7152 1411.85 23.5126 Q1413.12 23.2811 1414.39 23.2811 Q1421.63 23.2811 1425.85 27.2452 Q1430.08 31.2093 1430.08 37.9801 Q1430.08 44.9535 1425.74 48.8308 Q1421.4 52.6791 1413.5 52.6791 Q1410.78 52.6791 1407.94 52.2162 Q1405.13 51.7532 1402.12 50.8273 L1402.12 44.9535 Q1404.73 46.3713 1407.51 47.0657 Q1410.28 47.7602 1413.38 47.7602 Q1418.39 47.7602 1421.31 45.1271 Q1424.23 42.494 1424.23 37.9801 Q1424.23 33.4663 1421.31 30.8332 Q1418.39 28.2001 1413.38 28.2001 Q1411.04 28.2001 1408.69 28.7209 Q1406.38 29.2417 1403.95 30.3413 L1403.95 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip932)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.907 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.595 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.261 656.811,665.751 \n 659.26,638.139 661.709,609.161 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.396 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.307 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.558 769.471,483.174 771.92,506.521 774.369,532.377 776.818,560.242 779.267,589.345 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.05 791.513,721.115 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.469 872.334,796.636 874.783,787.244 877.232,776.03 \n 879.681,762.718 882.13,747.036 884.579,728.752 887.028,707.729 889.477,683.992 891.927,657.802 894.376,629.699 896.825,600.493 899.274,571.169 901.723,542.731 \n 904.172,516.039 906.621,491.702 909.07,470.041 911.519,451.131 913.969,434.865 916.418,421.028 918.867,409.354 921.316,399.564 923.765,391.392 926.214,384.596 \n 928.663,378.962 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.574 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.772 989.891,398.819 992.34,408.463 994.79,419.969 997.239,433.613 999.688,449.666 \n 1002.14,468.348 1004.59,489.778 1007.04,513.899 1009.48,540.412 1011.93,568.734 1014.38,598.022 1016.83,627.277 1019.28,655.506 1021.73,681.882 1024.18,705.839 \n 1026.63,727.093 1029.08,745.604 1031.53,761.496 1033.98,774.997 1036.42,786.376 1038.87,795.911 1041.32,803.866 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.203 1053.57,827.249 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.598 \n 1100.1,814.886 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.139 1112.35,772.336 1114.8,758.353 1117.25,741.925 1119.69,722.842 1122.14,701.007 \n 1124.59,676.508 1127.04,649.684 1129.49,621.162 1131.94,591.815 1134.39,562.651 1136.84,534.648 1139.29,508.6 1141.74,485.03 1144.19,464.182 1146.63,446.069 \n 1149.08,430.545 1151.53,417.374 1153.98,406.284 1156.43,396.998 1158.88,389.256 1161.33,382.823 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.058 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.216 1217.66,380.063 1220.11,385.926 \n 1222.56,392.993 1225.01,401.485 1227.46,411.649 1229.9,423.756 1232.35,438.084 1234.8,454.893 1237.25,474.379 1239.7,496.617 1242.15,521.487 1244.6,548.607 \n 1247.05,577.311 1249.5,606.696 1251.95,635.747 1254.4,663.506 1256.85,689.214 1259.29,712.391 1261.74,732.833 1264.19,750.552 1266.64,765.713 1269.09,778.56 \n 1271.54,789.366 1273.99,798.409 1276.44,805.945 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.166 1288.68,828.034 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.223 1313.17,835.743 1315.62,834.988 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.412 1332.77,818.302 1335.22,813.316 1337.67,807.288 1340.12,800.025 1342.56,791.303 \n 1345.01,780.87 1347.46,768.453 1349.91,753.775 1352.36,736.582 1354.81,716.691 1357.26,694.051 1359.71,668.819 1362.16,641.417 1364.61,612.551 1367.06,583.152 \n 1369.5,554.234 1371.95,526.736 1374.4,501.378 1376.85,478.597 1379.3,458.562 1381.75,441.232 1384.2,426.429 1386.65,413.901 1389.1,403.371 1391.55,394.566 \n 1394,387.233 1396.45,381.146 1398.89,376.11 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.515 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<polyline clip-path=\"url(#clip932)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.906 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.594 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.262 656.811,665.751 \n 659.26,638.139 661.709,609.162 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.397 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.306 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.557 769.471,483.173 771.92,506.52 774.369,532.376 776.818,560.242 779.267,589.344 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.049 791.513,721.114 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.47 872.334,796.637 874.783,787.244 877.232,776.03 \n 879.681,762.719 882.13,747.037 884.579,728.753 887.028,707.73 889.477,683.993 891.927,657.803 894.376,629.7 896.825,600.495 899.274,571.17 901.723,542.732 \n 904.172,516.04 906.621,491.703 909.07,470.042 911.519,451.132 913.969,434.866 916.418,421.029 918.867,409.354 921.316,399.565 923.765,391.393 926.214,384.596 \n 928.663,378.963 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.573 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.771 989.891,398.819 992.34,408.463 994.79,419.968 997.239,433.613 999.688,449.665 \n 1002.14,468.347 1004.59,489.776 1007.04,513.897 1009.48,540.411 1011.93,568.732 1014.38,598.02 1016.83,627.275 1019.28,655.505 1021.73,681.881 1024.18,705.837 \n 1026.63,727.092 1029.08,745.603 1031.53,761.495 1033.98,774.996 1036.42,786.375 1038.87,795.911 1041.32,803.865 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.202 1053.57,827.248 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.599 \n 1100.1,814.887 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.14 1112.35,772.337 1114.8,758.354 1117.25,741.926 1119.69,722.844 1122.14,701.009 \n 1124.59,676.51 1127.04,649.687 1129.49,621.164 1131.94,591.817 1134.39,562.653 1136.84,534.65 1139.29,508.602 1141.74,485.032 1144.19,464.184 1146.63,446.07 \n 1149.08,430.546 1151.53,417.375 1153.98,406.285 1156.43,396.999 1158.88,389.256 1161.33,382.824 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.057 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.215 1217.66,380.062 1220.11,385.925 \n 1222.56,392.992 1225.01,401.484 1227.46,411.648 1229.9,423.755 1232.35,438.083 1234.8,454.891 1237.25,474.376 1239.7,496.615 1242.15,521.484 1244.6,548.604 \n 1247.05,577.308 1249.5,606.692 1251.95,635.744 1254.4,663.503 1256.85,689.211 1259.29,712.389 1261.74,732.83 1264.19,750.55 1266.64,765.712 1269.09,778.558 \n 1271.54,789.365 1273.99,798.408 1276.44,805.944 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.165 1288.68,828.033 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.224 1313.17,835.743 1315.62,834.989 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.413 1332.77,818.303 1335.22,813.317 1337.67,807.289 1340.12,800.027 1342.56,791.304 \n 1345.01,780.871 1347.46,768.455 1349.91,753.777 1352.36,736.585 1354.81,716.694 1357.26,694.054 1359.71,668.822 1362.16,641.421 1364.61,612.556 1367.06,583.156 \n 1369.5,554.238 1371.95,526.74 1374.4,501.381 1376.85,478.6 1379.3,458.565 1381.75,441.235 1384.2,426.431 1386.65,413.903 1389.1,403.373 1391.55,394.567 \n 1394,387.234 1396.45,381.147 1398.89,376.111 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.516 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"\nM1040.09 296.183 L1411.96 296.183 L1411.96 114.743 L1040.09 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1040.09,296.183 1411.96,296.183 1411.96,114.743 1040.09,114.743 1040.09,296.183 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1054.52,175.223 1141.05,175.223 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M1177.19 176.855 L1177.19 192.503 L1172.93 192.503 L1172.93 176.993 Q1172.93 173.313 1171.49 171.484 Q1170.06 169.656 1167.19 169.656 Q1163.74 169.656 1161.75 171.855 Q1159.76 174.054 1159.76 177.85 L1159.76 192.503 L1155.47 192.503 L1155.47 166.577 L1159.76 166.577 L1159.76 170.605 Q1161.28 168.267 1163.34 167.109 Q1165.43 165.952 1168.14 165.952 Q1172.6 165.952 1174.89 168.73 Q1177.19 171.484 1177.19 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1185.24 182.271 L1185.24 166.577 L1189.5 166.577 L1189.5 182.109 Q1189.5 185.79 1190.94 187.642 Q1192.37 189.47 1195.24 189.47 Q1198.69 189.47 1200.68 187.271 Q1202.7 185.072 1202.7 181.276 L1202.7 166.577 L1206.95 166.577 L1206.95 192.503 L1202.7 192.503 L1202.7 188.521 Q1201.14 190.882 1199.08 192.04 Q1197.05 193.174 1194.34 193.174 Q1189.87 193.174 1187.56 190.396 Q1185.24 187.618 1185.24 182.271 M1195.96 165.952 L1195.96 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1235.91 171.554 Q1237.51 168.683 1239.73 167.318 Q1241.95 165.952 1244.96 165.952 Q1249.01 165.952 1251.21 168.799 Q1253.41 171.623 1253.41 176.855 L1253.41 192.503 L1249.13 192.503 L1249.13 176.993 Q1249.13 173.267 1247.81 171.461 Q1246.49 169.656 1243.78 169.656 Q1240.47 169.656 1238.55 171.855 Q1236.63 174.054 1236.63 177.85 L1236.63 192.503 L1232.35 192.503 L1232.35 176.993 Q1232.35 173.243 1231.03 171.461 Q1229.71 169.656 1226.95 169.656 Q1223.69 169.656 1221.77 171.878 Q1219.85 174.077 1219.85 177.85 L1219.85 192.503 L1215.57 192.503 L1215.57 166.577 L1219.85 166.577 L1219.85 170.605 Q1221.31 168.22 1223.34 167.086 Q1225.38 165.952 1228.18 165.952 Q1231.01 165.952 1232.97 167.387 Q1234.96 168.822 1235.91 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1284.08 178.475 L1284.08 180.558 L1264.5 180.558 Q1264.78 184.956 1267.14 187.271 Q1269.52 189.563 1273.76 189.563 Q1276.21 189.563 1278.51 188.961 Q1280.82 188.359 1283.09 187.155 L1283.09 191.183 Q1280.8 192.155 1278.39 192.665 Q1275.98 193.174 1273.51 193.174 Q1267.3 193.174 1263.67 189.563 Q1260.06 185.952 1260.06 179.794 Q1260.06 173.429 1263.48 169.702 Q1266.93 165.952 1272.76 165.952 Q1278 165.952 1281.03 169.331 Q1284.08 172.688 1284.08 178.475 M1279.82 177.225 Q1279.78 173.73 1277.86 171.646 Q1275.96 169.563 1272.81 169.563 Q1269.25 169.563 1267.09 171.577 Q1264.96 173.591 1264.64 177.248 L1279.82 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1306.1 170.558 Q1305.38 170.142 1304.52 169.956 Q1303.69 169.748 1302.67 169.748 Q1299.06 169.748 1297.12 172.109 Q1295.19 174.447 1295.19 178.845 L1295.19 192.503 L1290.91 192.503 L1290.91 166.577 L1295.19 166.577 L1295.19 170.605 Q1296.54 168.244 1298.69 167.109 Q1300.84 165.952 1303.92 165.952 Q1304.36 165.952 1304.89 166.021 Q1305.43 166.068 1306.07 166.183 L1306.1 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1310.57 166.577 L1314.82 166.577 L1314.82 192.503 L1310.57 192.503 L1310.57 166.577 M1310.57 156.484 L1314.82 156.484 L1314.82 161.878 L1310.57 161.878 L1310.57 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1342.39 167.572 L1342.39 171.554 Q1340.59 170.558 1338.76 170.072 Q1336.95 169.563 1335.1 169.563 Q1330.96 169.563 1328.67 172.202 Q1326.38 174.818 1326.38 179.563 Q1326.38 184.308 1328.67 186.947 Q1330.96 189.563 1335.1 189.563 Q1336.95 189.563 1338.76 189.077 Q1340.59 188.567 1342.39 187.572 L1342.39 191.507 Q1340.61 192.341 1338.69 192.757 Q1336.79 193.174 1334.64 193.174 Q1328.78 193.174 1325.33 189.493 Q1321.88 185.813 1321.88 179.563 Q1321.88 173.22 1325.36 169.586 Q1328.85 165.952 1334.92 165.952 Q1336.88 165.952 1338.76 166.369 Q1340.63 166.762 1342.39 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1361.58 179.47 Q1356.42 179.47 1354.43 180.651 Q1352.44 181.831 1352.44 184.679 Q1352.44 186.947 1353.92 188.29 Q1355.43 189.609 1358 189.609 Q1361.54 189.609 1363.67 187.109 Q1365.82 184.586 1365.82 180.419 L1365.82 179.47 L1361.58 179.47 M1370.08 177.711 L1370.08 192.503 L1365.82 192.503 L1365.82 188.567 Q1364.36 190.929 1362.19 192.063 Q1360.01 193.174 1356.86 193.174 Q1352.88 193.174 1350.52 190.952 Q1348.18 188.706 1348.18 184.956 Q1348.18 180.581 1351.1 178.359 Q1354.04 176.137 1359.85 176.137 L1365.82 176.137 L1365.82 175.72 Q1365.82 172.781 1363.87 171.183 Q1361.95 169.563 1358.46 169.563 Q1356.24 169.563 1354.13 170.095 Q1352.02 170.628 1350.08 171.693 L1350.08 167.757 Q1352.42 166.855 1354.62 166.415 Q1356.81 165.952 1358.9 165.952 Q1364.52 165.952 1367.3 168.869 Q1370.08 171.785 1370.08 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1378.85 156.484 L1383.11 156.484 L1383.11 192.503 L1378.85 192.503 L1378.85 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip930)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1054.52,235.703 1141.05,235.703 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M1179.5 238.955 L1179.5 241.038 L1159.92 241.038 Q1160.2 245.436 1162.56 247.751 Q1164.94 250.043 1169.18 250.043 Q1171.63 250.043 1173.92 249.441 Q1176.24 248.839 1178.51 247.635 L1178.51 251.663 Q1176.21 252.635 1173.81 253.145 Q1171.4 253.654 1168.92 253.654 Q1162.72 253.654 1159.08 250.043 Q1155.47 246.432 1155.47 240.274 Q1155.47 233.909 1158.9 230.182 Q1162.35 226.432 1168.18 226.432 Q1173.41 226.432 1176.45 229.811 Q1179.5 233.168 1179.5 238.955 M1175.24 237.705 Q1175.2 234.21 1173.27 232.126 Q1171.38 230.043 1168.23 230.043 Q1164.66 230.043 1162.51 232.057 Q1160.38 234.071 1160.06 237.728 L1175.24 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1207.21 227.057 L1197.83 239.673 L1207.7 252.983 L1202.67 252.983 L1195.13 242.798 L1187.58 252.983 L1182.56 252.983 L1192.63 239.418 L1183.41 227.057 L1188.44 227.057 L1195.31 236.293 L1202.19 227.057 L1207.21 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1225.5 239.95 Q1220.33 239.95 1218.34 241.131 Q1216.35 242.311 1216.35 245.159 Q1216.35 247.427 1217.83 248.77 Q1219.34 250.089 1221.91 250.089 Q1225.45 250.089 1227.58 247.589 Q1229.73 245.066 1229.73 240.899 L1229.73 239.95 L1225.5 239.95 M1233.99 238.191 L1233.99 252.983 L1229.73 252.983 L1229.73 249.047 Q1228.27 251.409 1226.1 252.543 Q1223.92 253.654 1220.77 253.654 Q1216.79 253.654 1214.43 251.432 Q1212.09 249.186 1212.09 245.436 Q1212.09 241.061 1215.01 238.839 Q1217.95 236.617 1223.76 236.617 L1229.73 236.617 L1229.73 236.2 Q1229.73 233.261 1227.79 231.663 Q1225.87 230.043 1222.37 230.043 Q1220.15 230.043 1218.04 230.575 Q1215.94 231.108 1213.99 232.173 L1213.99 228.237 Q1216.33 227.335 1218.53 226.895 Q1220.73 226.432 1222.81 226.432 Q1228.44 226.432 1231.21 229.349 Q1233.99 232.265 1233.99 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1261.42 228.052 L1261.42 232.034 Q1259.62 231.038 1257.79 230.552 Q1255.98 230.043 1254.13 230.043 Q1249.99 230.043 1247.69 232.682 Q1245.4 235.298 1245.4 240.043 Q1245.4 244.788 1247.69 247.427 Q1249.99 250.043 1254.13 250.043 Q1255.98 250.043 1257.79 249.557 Q1259.62 249.047 1261.42 248.052 L1261.42 251.987 Q1259.64 252.821 1257.72 253.237 Q1255.82 253.654 1253.67 253.654 Q1247.81 253.654 1244.36 249.973 Q1240.91 246.293 1240.91 240.043 Q1240.91 233.7 1244.38 230.066 Q1247.88 226.432 1253.94 226.432 Q1255.91 226.432 1257.79 226.849 Q1259.66 227.242 1261.42 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1273.04 219.696 L1273.04 227.057 L1281.82 227.057 L1281.82 230.367 L1273.04 230.367 L1273.04 244.441 Q1273.04 247.612 1273.9 248.515 Q1274.78 249.418 1277.44 249.418 L1281.82 249.418 L1281.82 252.983 L1277.44 252.983 Q1272.51 252.983 1270.63 251.154 Q1268.76 249.302 1268.76 244.441 L1268.76 230.367 L1265.63 230.367 L1265.63 227.057 L1268.76 227.057 L1268.76 219.696 L1273.04 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"\nM1854.72 910.808 L3152.76 910.808 L3152.76 87.2921 L1854.72 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip933\">\n <rect x=\"1854\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1891.46,910.808 1891.46,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1973.1,910.808 1973.1,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2054.73,910.808 2054.73,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2136.37,910.808 2136.37,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2218.01,910.808 2218.01,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2299.65,910.808 2299.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2381.28,910.808 2381.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2462.92,910.808 2462.92,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2544.56,910.808 2544.56,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2626.2,910.808 2626.2,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2707.83,910.808 2707.83,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2789.47,910.808 2789.47,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2871.11,910.808 2871.11,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2952.74,910.808 2952.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3034.38,910.808 3034.38,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3116.02,910.808 3116.02,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.46,910.808 1891.46,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1973.1,910.808 1973.1,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2054.73,910.808 2054.73,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2136.37,910.808 2136.37,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2218.01,910.808 2218.01,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2299.65,910.808 2299.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2381.28,910.808 2381.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2462.92,910.808 2462.92,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2544.56,910.808 2544.56,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2626.2,910.808 2626.2,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2707.83,910.808 2707.83,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2789.47,910.808 2789.47,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2871.11,910.808 2871.11,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2952.74,910.808 2952.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3034.38,910.808 3034.38,900.926 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3116.02,910.808 3116.02,900.926 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M1891.46 946.399 Q1887.85 946.399 1886.02 949.963 Q1884.21 953.505 1884.21 960.635 Q1884.21 967.741 1886.02 971.306 Q1887.85 974.847 1891.46 974.847 Q1895.09 974.847 1896.9 971.306 Q1898.73 967.741 1898.73 960.635 Q1898.73 953.505 1896.9 949.963 Q1895.09 946.399 1891.46 946.399 M1891.46 942.695 Q1897.27 942.695 1900.33 947.301 Q1903.4 951.885 1903.4 960.635 Q1903.4 969.361 1900.33 973.968 Q1897.27 978.551 1891.46 978.551 Q1885.65 978.551 1882.57 973.968 Q1879.52 969.361 1879.52 960.635 Q1879.52 951.885 1882.57 947.301 Q1885.65 942.695 1891.46 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1967.75 973.945 L1984.07 973.945 L1984.07 977.88 L1962.12 977.88 L1962.12 973.945 Q1964.79 971.19 1969.37 966.56 Q1973.98 961.908 1975.16 960.565 Q1977.4 958.042 1978.28 956.306 Q1979.18 954.547 1979.18 952.857 Q1979.18 950.102 1977.24 948.366 Q1975.32 946.63 1972.22 946.63 Q1970.02 946.63 1967.56 947.394 Q1965.13 948.158 1962.36 949.709 L1962.36 944.987 Q1965.18 943.852 1967.63 943.274 Q1970.09 942.695 1972.12 942.695 Q1977.5 942.695 1980.69 945.38 Q1983.88 948.065 1983.88 952.556 Q1983.88 954.686 1983.07 956.607 Q1982.29 958.505 1980.18 961.098 Q1979.6 961.769 1976.5 964.986 Q1973.4 968.181 1967.75 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2057.74 947.394 L2045.94 965.843 L2057.74 965.843 L2057.74 947.394 M2056.52 943.32 L2062.4 943.32 L2062.4 965.843 L2067.33 965.843 L2067.33 969.732 L2062.4 969.732 L2062.4 977.88 L2057.74 977.88 L2057.74 969.732 L2042.14 969.732 L2042.14 965.218 L2056.52 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2136.78 958.736 Q2133.63 958.736 2131.78 960.889 Q2129.95 963.042 2129.95 966.792 Q2129.95 970.519 2131.78 972.695 Q2133.63 974.847 2136.78 974.847 Q2139.92 974.847 2141.75 972.695 Q2143.61 970.519 2143.61 966.792 Q2143.61 963.042 2141.75 960.889 Q2139.92 958.736 2136.78 958.736 M2146.06 944.084 L2146.06 948.343 Q2144.3 947.51 2142.49 947.07 Q2140.71 946.63 2138.95 946.63 Q2134.32 946.63 2131.87 949.755 Q2129.44 952.88 2129.09 959.199 Q2130.46 957.186 2132.52 956.121 Q2134.58 955.033 2137.05 955.033 Q2142.26 955.033 2145.27 958.204 Q2148.3 961.352 2148.3 966.792 Q2148.3 972.116 2145.16 975.334 Q2142.01 978.551 2136.78 978.551 Q2130.78 978.551 2127.61 973.968 Q2124.44 969.361 2124.44 960.635 Q2124.44 952.44 2128.33 947.579 Q2132.22 942.695 2138.77 942.695 Q2140.53 942.695 2142.31 943.042 Q2144.11 943.389 2146.06 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2218.01 961.468 Q2214.68 961.468 2212.75 963.25 Q2210.86 965.033 2210.86 968.158 Q2210.86 971.283 2212.75 973.065 Q2214.68 974.847 2218.01 974.847 Q2221.34 974.847 2223.26 973.065 Q2225.18 971.26 2225.18 968.158 Q2225.18 965.033 2223.26 963.25 Q2221.37 961.468 2218.01 961.468 M2213.33 959.477 Q2210.32 958.736 2208.63 956.676 Q2206.97 954.616 2206.97 951.653 Q2206.97 947.51 2209.91 945.102 Q2212.87 942.695 2218.01 942.695 Q2223.17 942.695 2226.11 945.102 Q2229.05 947.51 2229.05 951.653 Q2229.05 954.616 2227.36 956.676 Q2225.69 958.736 2222.71 959.477 Q2226.09 960.264 2227.96 962.556 Q2229.86 964.848 2229.86 968.158 Q2229.86 973.181 2226.78 975.866 Q2223.73 978.551 2218.01 978.551 Q2212.29 978.551 2209.21 975.866 Q2206.16 973.181 2206.16 968.158 Q2206.16 964.848 2208.06 962.556 Q2209.95 960.264 2213.33 959.477 M2211.62 952.093 Q2211.62 954.778 2213.29 956.283 Q2214.98 957.787 2218.01 957.787 Q2221.02 957.787 2222.71 956.283 Q2224.42 954.778 2224.42 952.093 Q2224.42 949.408 2222.71 947.903 Q2221.02 946.399 2218.01 946.399 Q2214.98 946.399 2213.29 947.903 Q2211.62 949.408 2211.62 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2274.33 973.945 L2281.97 973.945 L2281.97 947.579 L2273.66 949.246 L2273.66 944.987 L2281.93 943.32 L2286.6 943.32 L2286.6 973.945 L2294.24 973.945 L2294.24 977.88 L2274.33 977.88 L2274.33 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2313.69 946.399 Q2310.07 946.399 2308.25 949.963 Q2306.44 953.505 2306.44 960.635 Q2306.44 967.741 2308.25 971.306 Q2310.07 974.847 2313.69 974.847 Q2317.32 974.847 2319.13 971.306 Q2320.95 967.741 2320.95 960.635 Q2320.95 953.505 2319.13 949.963 Q2317.32 946.399 2313.69 946.399 M2313.69 942.695 Q2319.5 942.695 2322.55 947.301 Q2325.63 951.885 2325.63 960.635 Q2325.63 969.361 2322.55 973.968 Q2319.5 978.551 2313.69 978.551 Q2307.88 978.551 2304.8 973.968 Q2301.74 969.361 2301.74 960.635 Q2301.74 951.885 2304.8 947.301 Q2307.88 942.695 2313.69 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2356.77 973.945 L2364.41 973.945 L2364.41 947.579 L2356.1 949.246 L2356.1 944.987 L2364.36 943.32 L2369.04 943.32 L2369.04 973.945 L2376.68 973.945 L2376.68 977.88 L2356.77 977.88 L2356.77 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2390.15 973.945 L2406.47 973.945 L2406.47 977.88 L2384.52 977.88 L2384.52 973.945 Q2387.19 971.19 2391.77 966.56 Q2396.38 961.908 2397.56 960.565 Q2399.8 958.042 2400.68 956.306 Q2401.58 954.547 2401.58 952.857 Q2401.58 950.102 2399.64 948.366 Q2397.72 946.63 2394.62 946.63 Q2392.42 946.63 2389.96 947.394 Q2387.53 948.158 2384.76 949.709 L2384.76 944.987 Q2387.58 943.852 2390.03 943.274 Q2392.49 942.695 2394.52 942.695 Q2399.89 942.695 2403.09 945.38 Q2406.28 948.065 2406.28 952.556 Q2406.28 954.686 2405.47 956.607 Q2404.69 958.505 2402.58 961.098 Q2402 961.769 2398.9 964.986 Q2395.8 968.181 2390.15 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2437.37 973.945 L2445 973.945 L2445 947.579 L2436.69 949.246 L2436.69 944.987 L2444.96 943.32 L2449.63 943.32 L2449.63 973.945 L2457.27 973.945 L2457.27 977.88 L2437.37 977.88 L2437.37 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2479.56 947.394 L2467.76 965.843 L2479.56 965.843 L2479.56 947.394 M2478.34 943.32 L2484.22 943.32 L2484.22 965.843 L2489.15 965.843 L2489.15 969.732 L2484.22 969.732 L2484.22 977.88 L2479.56 977.88 L2479.56 969.732 L2463.96 969.732 L2463.96 965.218 L2478.34 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2519.16 973.945 L2526.8 973.945 L2526.8 947.579 L2518.49 949.246 L2518.49 944.987 L2526.76 943.32 L2531.43 943.32 L2531.43 973.945 L2539.07 973.945 L2539.07 977.88 L2519.16 977.88 L2519.16 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2559.1 958.736 Q2555.95 958.736 2554.1 960.889 Q2552.27 963.042 2552.27 966.792 Q2552.27 970.519 2554.1 972.695 Q2555.95 974.847 2559.1 974.847 Q2562.24 974.847 2564.07 972.695 Q2565.92 970.519 2565.92 966.792 Q2565.92 963.042 2564.07 960.889 Q2562.24 958.736 2559.1 958.736 M2568.38 944.084 L2568.38 948.343 Q2566.62 947.51 2564.81 947.07 Q2563.03 946.63 2561.27 946.63 Q2556.64 946.63 2554.19 949.755 Q2551.76 952.88 2551.41 959.199 Q2552.78 957.186 2554.84 956.121 Q2556.9 955.033 2559.37 955.033 Q2564.58 955.033 2567.59 958.204 Q2570.62 961.352 2570.62 966.792 Q2570.62 972.116 2567.47 975.334 Q2564.33 978.551 2559.1 978.551 Q2553.1 978.551 2549.93 973.968 Q2546.76 969.361 2546.76 960.635 Q2546.76 952.44 2550.65 947.579 Q2554.53 942.695 2561.09 942.695 Q2562.84 942.695 2564.63 943.042 Q2566.43 943.389 2568.38 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2600.93 973.945 L2608.57 973.945 L2608.57 947.579 L2600.26 949.246 L2600.26 944.987 L2608.52 943.32 L2613.2 943.32 L2613.2 973.945 L2620.84 973.945 L2620.84 977.88 L2600.93 977.88 L2600.93 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2640.28 961.468 Q2636.95 961.468 2635.03 963.25 Q2633.13 965.033 2633.13 968.158 Q2633.13 971.283 2635.03 973.065 Q2636.95 974.847 2640.28 974.847 Q2643.61 974.847 2645.54 973.065 Q2647.46 971.26 2647.46 968.158 Q2647.46 965.033 2645.54 963.25 Q2643.64 961.468 2640.28 961.468 M2635.61 959.477 Q2632.6 958.736 2630.91 956.676 Q2629.24 954.616 2629.24 951.653 Q2629.24 947.51 2632.18 945.102 Q2635.14 942.695 2640.28 942.695 Q2645.44 942.695 2648.38 945.102 Q2651.32 947.51 2651.32 951.653 Q2651.32 954.616 2649.63 956.676 Q2647.97 958.736 2644.98 959.477 Q2648.36 960.264 2650.23 962.556 Q2652.13 964.848 2652.13 968.158 Q2652.13 973.181 2649.05 975.866 Q2646 978.551 2640.28 978.551 Q2634.56 978.551 2631.48 975.866 Q2628.43 973.181 2628.43 968.158 Q2628.43 964.848 2630.33 962.556 Q2632.23 960.264 2635.61 959.477 M2633.89 952.093 Q2633.89 954.778 2635.56 956.283 Q2637.25 957.787 2640.28 957.787 Q2643.29 957.787 2644.98 956.283 Q2646.69 954.778 2646.69 952.093 Q2646.69 949.408 2644.98 947.903 Q2643.29 946.399 2640.28 946.399 Q2637.25 946.399 2635.56 947.903 Q2633.89 949.408 2633.89 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2686.61 973.945 L2702.93 973.945 L2702.93 977.88 L2680.98 977.88 L2680.98 973.945 Q2683.64 971.19 2688.23 966.56 Q2692.83 961.908 2694.01 960.565 Q2696.26 958.042 2697.14 956.306 Q2698.04 954.547 2698.04 952.857 Q2698.04 950.102 2696.1 948.366 Q2694.18 946.63 2691.07 946.63 Q2688.87 946.63 2686.42 947.394 Q2683.99 948.158 2681.21 949.709 L2681.21 944.987 Q2684.04 943.852 2686.49 943.274 Q2688.94 942.695 2690.98 942.695 Q2696.35 942.695 2699.55 945.38 Q2702.74 948.065 2702.74 952.556 Q2702.74 954.686 2701.93 956.607 Q2701.14 958.505 2699.04 961.098 Q2698.46 961.769 2695.36 964.986 Q2692.25 968.181 2686.61 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2722.74 946.399 Q2719.13 946.399 2717.3 949.963 Q2715.49 953.505 2715.49 960.635 Q2715.49 967.741 2717.3 971.306 Q2719.13 974.847 2722.74 974.847 Q2726.37 974.847 2728.18 971.306 Q2730.01 967.741 2730.01 960.635 Q2730.01 953.505 2728.18 949.963 Q2726.37 946.399 2722.74 946.399 M2722.74 942.695 Q2728.55 942.695 2731.61 947.301 Q2734.68 951.885 2734.68 960.635 Q2734.68 969.361 2731.61 973.968 Q2728.55 978.551 2722.74 978.551 Q2716.93 978.551 2713.85 973.968 Q2710.8 969.361 2710.8 960.635 Q2710.8 951.885 2713.85 947.301 Q2716.93 942.695 2722.74 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2769.04 973.945 L2785.36 973.945 L2785.36 977.88 L2763.42 977.88 L2763.42 973.945 Q2766.08 971.19 2770.66 966.56 Q2775.27 961.908 2776.45 960.565 Q2778.69 958.042 2779.57 956.306 Q2780.48 954.547 2780.48 952.857 Q2780.48 950.102 2778.53 948.366 Q2776.61 946.63 2773.51 946.63 Q2771.31 946.63 2768.86 947.394 Q2766.43 948.158 2763.65 949.709 L2763.65 944.987 Q2766.47 943.852 2768.93 943.274 Q2771.38 942.695 2773.42 942.695 Q2778.79 942.695 2781.98 945.38 Q2785.18 948.065 2785.18 952.556 Q2785.18 954.686 2784.37 956.607 Q2783.58 958.505 2781.47 961.098 Q2780.89 961.769 2777.79 964.986 Q2774.69 968.181 2769.04 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2799.2 973.945 L2815.52 973.945 L2815.52 977.88 L2793.58 977.88 L2793.58 973.945 Q2796.24 971.19 2800.82 966.56 Q2805.43 961.908 2806.61 960.565 Q2808.86 958.042 2809.74 956.306 Q2810.64 954.547 2810.64 952.857 Q2810.64 950.102 2808.69 948.366 Q2806.77 946.63 2803.67 946.63 Q2801.47 946.63 2799.02 947.394 Q2796.59 948.158 2793.81 949.709 L2793.81 944.987 Q2796.63 943.852 2799.09 943.274 Q2801.54 942.695 2803.58 942.695 Q2808.95 942.695 2812.14 945.38 Q2815.34 948.065 2815.34 952.556 Q2815.34 954.686 2814.53 956.607 Q2813.74 958.505 2811.63 961.098 Q2811.06 961.769 2807.95 964.986 Q2804.85 968.181 2799.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2849.64 973.945 L2865.96 973.945 L2865.96 977.88 L2844.01 977.88 L2844.01 973.945 Q2846.67 971.19 2851.26 966.56 Q2855.86 961.908 2857.04 960.565 Q2859.29 958.042 2860.17 956.306 Q2861.07 954.547 2861.07 952.857 Q2861.07 950.102 2859.13 948.366 Q2857.21 946.63 2854.11 946.63 Q2851.91 946.63 2849.45 947.394 Q2847.02 948.158 2844.24 949.709 L2844.24 944.987 Q2847.07 943.852 2849.52 943.274 Q2851.98 942.695 2854.01 942.695 Q2859.38 942.695 2862.58 945.38 Q2865.77 948.065 2865.77 952.556 Q2865.77 954.686 2864.96 956.607 Q2864.17 958.505 2862.07 961.098 Q2861.49 961.769 2858.39 964.986 Q2855.29 968.181 2849.64 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2888.62 947.394 L2876.81 965.843 L2888.62 965.843 L2888.62 947.394 M2887.39 943.32 L2893.27 943.32 L2893.27 965.843 L2898.2 965.843 L2898.2 969.732 L2893.27 969.732 L2893.27 977.88 L2888.62 977.88 L2888.62 969.732 L2873.02 969.732 L2873.02 965.218 L2887.39 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2931.44 973.945 L2947.76 973.945 L2947.76 977.88 L2925.81 977.88 L2925.81 973.945 Q2928.47 971.19 2933.06 966.56 Q2937.66 961.908 2938.84 960.565 Q2941.09 958.042 2941.97 956.306 Q2942.87 954.547 2942.87 952.857 Q2942.87 950.102 2940.93 948.366 Q2939.01 946.63 2935.9 946.63 Q2933.71 946.63 2931.25 947.394 Q2928.82 948.158 2926.04 949.709 L2926.04 944.987 Q2928.87 943.852 2931.32 943.274 Q2933.77 942.695 2935.81 942.695 Q2941.18 942.695 2944.38 945.38 Q2947.57 948.065 2947.57 952.556 Q2947.57 954.686 2946.76 956.607 Q2945.97 958.505 2943.87 961.098 Q2943.29 961.769 2940.19 964.986 Q2937.08 968.181 2931.44 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2968.15 958.736 Q2965 958.736 2963.15 960.889 Q2961.32 963.042 2961.32 966.792 Q2961.32 970.519 2963.15 972.695 Q2965 974.847 2968.15 974.847 Q2971.3 974.847 2973.13 972.695 Q2974.98 970.519 2974.98 966.792 Q2974.98 963.042 2973.13 960.889 Q2971.3 958.736 2968.15 958.736 M2977.43 944.084 L2977.43 948.343 Q2975.67 947.51 2973.87 947.07 Q2972.08 946.63 2970.33 946.63 Q2965.7 946.63 2963.24 949.755 Q2960.81 952.88 2960.46 959.199 Q2961.83 957.186 2963.89 956.121 Q2965.95 955.033 2968.43 955.033 Q2973.64 955.033 2976.64 958.204 Q2979.68 961.352 2979.68 966.792 Q2979.68 972.116 2976.53 975.334 Q2973.38 978.551 2968.15 978.551 Q2962.15 978.551 2958.98 973.968 Q2955.81 969.361 2955.81 960.635 Q2955.81 952.44 2959.7 947.579 Q2963.59 942.695 2970.14 942.695 Q2971.9 942.695 2973.68 943.042 Q2975.49 943.389 2977.43 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M3013.2 973.945 L3029.52 973.945 L3029.52 977.88 L3007.58 977.88 L3007.58 973.945 Q3010.24 971.19 3014.82 966.56 Q3019.43 961.908 3020.61 960.565 Q3022.85 958.042 3023.73 956.306 Q3024.64 954.547 3024.64 952.857 Q3024.64 950.102 3022.69 948.366 Q3020.77 946.63 3017.67 946.63 Q3015.47 946.63 3013.02 947.394 Q3010.59 948.158 3007.81 949.709 L3007.81 944.987 Q3010.63 943.852 3013.09 943.274 Q3015.54 942.695 3017.58 942.695 Q3022.95 942.695 3026.14 945.38 Q3029.34 948.065 3029.34 952.556 Q3029.34 954.686 3028.53 956.607 Q3027.74 958.505 3025.63 961.098 Q3025.05 961.769 3021.95 964.986 Q3018.85 968.181 3013.2 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M3049.34 961.468 Q3046 961.468 3044.08 963.25 Q3042.18 965.033 3042.18 968.158 Q3042.18 971.283 3044.08 973.065 Q3046 974.847 3049.34 974.847 Q3052.67 974.847 3054.59 973.065 Q3056.51 971.26 3056.51 968.158 Q3056.51 965.033 3054.59 963.25 Q3052.69 961.468 3049.34 961.468 M3044.66 959.477 Q3041.65 958.736 3039.96 956.676 Q3038.29 954.616 3038.29 951.653 Q3038.29 947.51 3041.23 945.102 Q3044.2 942.695 3049.34 942.695 Q3054.5 942.695 3057.44 945.102 Q3060.38 947.51 3060.38 951.653 Q3060.38 954.616 3058.69 956.676 Q3057.02 958.736 3054.03 959.477 Q3057.41 960.264 3059.29 962.556 Q3061.19 964.848 3061.19 968.158 Q3061.19 973.181 3058.11 975.866 Q3055.05 978.551 3049.34 978.551 Q3043.62 978.551 3040.54 975.866 Q3037.48 973.181 3037.48 968.158 Q3037.48 964.848 3039.38 962.556 Q3041.28 960.264 3044.66 959.477 M3042.95 952.093 Q3042.95 954.778 3044.61 956.283 Q3046.3 957.787 3049.34 957.787 Q3052.34 957.787 3054.03 956.283 Q3055.75 954.778 3055.75 952.093 Q3055.75 949.408 3054.03 947.903 Q3052.34 946.399 3049.34 946.399 Q3046.3 946.399 3044.61 947.903 Q3042.95 949.408 3042.95 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M3104.86 959.246 Q3108.22 959.963 3110.09 962.232 Q3111.99 964.5 3111.99 967.834 Q3111.99 972.949 3108.47 975.75 Q3104.95 978.551 3098.47 978.551 Q3096.3 978.551 3093.98 978.111 Q3091.69 977.695 3089.24 976.838 L3089.24 972.324 Q3091.18 973.459 3093.5 974.037 Q3095.81 974.616 3098.33 974.616 Q3102.73 974.616 3105.02 972.88 Q3107.34 971.144 3107.34 967.834 Q3107.34 964.778 3105.19 963.065 Q3103.06 961.329 3099.24 961.329 L3095.21 961.329 L3095.21 957.486 L3099.42 957.486 Q3102.87 957.486 3104.7 956.121 Q3106.53 954.732 3106.53 952.139 Q3106.53 949.477 3104.63 948.065 Q3102.76 946.63 3099.24 946.63 Q3097.32 946.63 3095.12 947.047 Q3092.92 947.463 3090.28 948.343 L3090.28 944.176 Q3092.94 943.436 3095.26 943.065 Q3097.59 942.695 3099.65 942.695 Q3104.98 942.695 3108.08 945.125 Q3111.18 947.533 3111.18 951.653 Q3111.18 954.524 3109.54 956.514 Q3107.89 958.482 3104.86 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M3130.86 946.399 Q3127.25 946.399 3125.42 949.963 Q3123.61 953.505 3123.61 960.635 Q3123.61 967.741 3125.42 971.306 Q3127.25 974.847 3130.86 974.847 Q3134.49 974.847 3136.3 971.306 Q3138.13 967.741 3138.13 960.635 Q3138.13 953.505 3136.3 949.963 Q3134.49 946.399 3130.86 946.399 M3130.86 942.695 Q3136.67 942.695 3139.72 947.301 Q3142.8 951.885 3142.8 960.635 Q3142.8 969.361 3139.72 973.968 Q3136.67 978.551 3130.86 978.551 Q3125.05 978.551 3121.97 973.968 Q3118.91 969.361 3118.91 960.635 Q3118.91 951.885 3121.97 947.301 Q3125.05 942.695 3130.86 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,748.452 3152.76,748.452 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,538.848 3152.76,538.848 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,329.244 3152.76,329.244 \n \"/>\n<polyline clip-path=\"url(#clip933)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1854.72,119.64 3152.76,119.64 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,910.808 1854.72,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,748.452 1870.3,748.452 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,538.848 1870.3,538.848 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,329.244 1870.3,329.244 \n \"/>\n<polyline clip-path=\"url(#clip930)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,119.64 1870.3,119.64 \n \"/>\n<path clip-path=\"url(#clip930)\" d=\"M1549.46 755.351 L1579.14 755.351 L1579.14 759.286 L1549.46 759.286 L1549.46 755.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1593.26 768.244 L1609.58 768.244 L1609.58 772.18 L1587.63 772.18 L1587.63 768.244 Q1590.29 765.49 1594.88 760.86 Q1599.48 756.207 1600.66 754.865 Q1602.91 752.342 1603.79 750.606 Q1604.69 748.846 1604.69 747.157 Q1604.69 744.402 1602.75 742.666 Q1600.83 740.93 1597.72 740.93 Q1595.52 740.93 1593.07 741.694 Q1590.64 742.457 1587.86 744.008 L1587.86 739.286 Q1590.69 738.152 1593.14 737.573 Q1595.59 736.995 1597.63 736.995 Q1603 736.995 1606.2 739.68 Q1609.39 742.365 1609.39 746.856 Q1609.39 748.985 1608.58 750.906 Q1607.79 752.805 1605.69 755.397 Q1605.11 756.068 1602.01 759.286 Q1598.9 762.48 1593.26 768.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1619.39 766.3 L1624.27 766.3 L1624.27 772.18 L1619.39 772.18 L1619.39 766.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1644.46 740.698 Q1640.85 740.698 1639.02 744.263 Q1637.21 747.805 1637.21 754.934 Q1637.21 762.041 1639.02 765.605 Q1640.85 769.147 1644.46 769.147 Q1648.09 769.147 1649.9 765.605 Q1651.73 762.041 1651.73 754.934 Q1651.73 747.805 1649.9 744.263 Q1648.09 740.698 1644.46 740.698 M1644.46 736.995 Q1650.27 736.995 1653.33 741.601 Q1656.4 746.184 1656.4 754.934 Q1656.4 763.661 1653.33 768.268 Q1650.27 772.851 1644.46 772.851 Q1638.65 772.851 1635.57 768.268 Q1632.52 763.661 1632.52 754.934 Q1632.52 746.184 1635.57 741.601 Q1638.65 736.995 1644.46 736.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1692.79 746.717 L1682.21 757.342 L1692.79 767.92 L1690.04 770.721 L1679.41 760.096 L1668.79 770.721 L1666.06 767.92 L1676.61 757.342 L1666.06 746.717 L1668.79 743.916 L1679.41 754.541 L1690.04 743.916 L1692.79 746.717 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1705.15 768.244 L1712.79 768.244 L1712.79 741.879 L1704.48 743.545 L1704.48 739.286 L1712.75 737.62 L1717.42 737.62 L1717.42 768.244 L1725.06 768.244 L1725.06 772.18 L1705.15 772.18 L1705.15 768.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1744.51 740.698 Q1740.89 740.698 1739.07 744.263 Q1737.26 747.805 1737.26 754.934 Q1737.26 762.041 1739.07 765.605 Q1740.89 769.147 1744.51 769.147 Q1748.14 769.147 1749.95 765.605 Q1751.77 762.041 1751.77 754.934 Q1751.77 747.805 1749.95 744.263 Q1748.14 740.698 1744.51 740.698 M1744.51 736.995 Q1750.32 736.995 1753.37 741.601 Q1756.45 746.184 1756.45 754.934 Q1756.45 763.661 1753.37 768.268 Q1750.32 772.851 1744.51 772.851 Q1738.7 772.851 1735.62 768.268 Q1732.56 763.661 1732.56 754.934 Q1732.56 746.184 1735.62 741.601 Q1738.7 736.995 1744.51 736.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1756.45 731.096 L1780.56 731.096 L1780.56 734.293 L1756.45 734.293 L1756.45 731.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1797.36 729.215 Q1794.8 729.215 1793.29 730.964 Q1791.81 732.713 1791.81 735.76 Q1791.81 738.788 1793.29 740.556 Q1794.8 742.305 1797.36 742.305 Q1799.91 742.305 1801.4 740.556 Q1802.9 738.788 1802.9 735.76 Q1802.9 732.713 1801.4 730.964 Q1799.91 729.215 1797.36 729.215 M1804.9 717.31 L1804.9 720.77 Q1803.47 720.093 1802 719.736 Q1800.55 719.379 1799.12 719.379 Q1795.36 719.379 1793.37 721.918 Q1791.39 724.457 1791.11 729.591 Q1792.22 727.955 1793.9 727.09 Q1795.57 726.206 1797.58 726.206 Q1801.81 726.206 1804.26 728.783 Q1806.72 731.34 1806.72 735.76 Q1806.72 740.086 1804.17 742.7 Q1801.61 745.315 1797.36 745.315 Q1792.49 745.315 1789.91 741.591 Q1787.33 737.848 1787.33 730.757 Q1787.33 724.099 1790.49 720.15 Q1793.65 716.181 1798.97 716.181 Q1800.4 716.181 1801.85 716.463 Q1803.32 716.746 1804.9 717.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1794.78 524.647 Q1791.17 524.647 1789.34 528.212 Q1787.53 531.753 1787.53 538.883 Q1787.53 545.989 1789.34 549.554 Q1791.17 553.096 1794.78 553.096 Q1798.41 553.096 1800.22 549.554 Q1802.05 545.989 1802.05 538.883 Q1802.05 531.753 1800.22 528.212 Q1798.41 524.647 1794.78 524.647 M1794.78 520.943 Q1800.59 520.943 1803.64 525.549 Q1806.72 530.133 1806.72 538.883 Q1806.72 547.61 1803.64 552.216 Q1800.59 556.799 1794.78 556.799 Q1788.97 556.799 1785.89 552.216 Q1782.83 547.61 1782.83 538.883 Q1782.83 530.133 1785.89 525.549 Q1788.97 520.943 1794.78 520.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1593.26 349.037 L1609.58 349.037 L1609.58 352.972 L1587.63 352.972 L1587.63 349.037 Q1590.29 346.282 1594.88 341.652 Q1599.48 337 1600.66 335.657 Q1602.91 333.134 1603.79 331.398 Q1604.69 329.639 1604.69 327.949 Q1604.69 325.194 1602.75 323.458 Q1600.83 321.722 1597.72 321.722 Q1595.52 321.722 1593.07 322.486 Q1590.64 323.25 1587.86 324.801 L1587.86 320.078 Q1590.69 318.944 1593.14 318.365 Q1595.59 317.787 1597.63 317.787 Q1603 317.787 1606.2 320.472 Q1609.39 323.157 1609.39 327.648 Q1609.39 329.777 1608.58 331.699 Q1607.79 333.597 1605.69 336.189 Q1605.11 336.861 1602.01 340.078 Q1598.9 343.273 1593.26 349.037 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1619.39 347.092 L1624.27 347.092 L1624.27 352.972 L1619.39 352.972 L1619.39 347.092 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1644.46 321.49 Q1640.85 321.49 1639.02 325.055 Q1637.21 328.597 1637.21 335.726 Q1637.21 342.833 1639.02 346.398 Q1640.85 349.939 1644.46 349.939 Q1648.09 349.939 1649.9 346.398 Q1651.73 342.833 1651.73 335.726 Q1651.73 328.597 1649.9 325.055 Q1648.09 321.49 1644.46 321.49 M1644.46 317.787 Q1650.27 317.787 1653.33 322.393 Q1656.4 326.977 1656.4 335.726 Q1656.4 344.453 1653.33 349.06 Q1650.27 353.643 1644.46 353.643 Q1638.65 353.643 1635.57 349.06 Q1632.52 344.453 1632.52 335.726 Q1632.52 326.977 1635.57 322.393 Q1638.65 317.787 1644.46 317.787 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1692.79 327.509 L1682.21 338.134 L1692.79 348.713 L1690.04 351.513 L1679.41 340.888 L1668.79 351.513 L1666.06 348.713 L1676.61 338.134 L1666.06 327.509 L1668.79 324.708 L1679.41 335.333 L1690.04 324.708 L1692.79 327.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1705.15 349.037 L1712.79 349.037 L1712.79 322.671 L1704.48 324.338 L1704.48 320.078 L1712.75 318.412 L1717.42 318.412 L1717.42 349.037 L1725.06 349.037 L1725.06 352.972 L1705.15 352.972 L1705.15 349.037 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1744.51 321.49 Q1740.89 321.49 1739.07 325.055 Q1737.26 328.597 1737.26 335.726 Q1737.26 342.833 1739.07 346.398 Q1740.89 349.939 1744.51 349.939 Q1748.14 349.939 1749.95 346.398 Q1751.77 342.833 1751.77 335.726 Q1751.77 328.597 1749.95 325.055 Q1748.14 321.49 1744.51 321.49 M1744.51 317.787 Q1750.32 317.787 1753.37 322.393 Q1756.45 326.977 1756.45 335.726 Q1756.45 344.453 1753.37 349.06 Q1750.32 353.643 1744.51 353.643 Q1738.7 353.643 1735.62 349.06 Q1732.56 344.453 1732.56 335.726 Q1732.56 326.977 1735.62 322.393 Q1738.7 317.787 1744.51 317.787 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1756.45 311.888 L1780.56 311.888 L1780.56 315.085 L1756.45 315.085 L1756.45 311.888 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1797.36 310.007 Q1794.8 310.007 1793.29 311.756 Q1791.81 313.506 1791.81 316.552 Q1791.81 319.58 1793.29 321.348 Q1794.8 323.098 1797.36 323.098 Q1799.91 323.098 1801.4 321.348 Q1802.9 319.58 1802.9 316.552 Q1802.9 313.506 1801.4 311.756 Q1799.91 310.007 1797.36 310.007 M1804.9 298.102 L1804.9 301.563 Q1803.47 300.886 1802 300.528 Q1800.55 300.171 1799.12 300.171 Q1795.36 300.171 1793.37 302.71 Q1791.39 305.249 1791.11 310.383 Q1792.22 308.747 1793.9 307.882 Q1795.57 306.998 1797.58 306.998 Q1801.81 306.998 1804.26 309.575 Q1806.72 312.133 1806.72 316.552 Q1806.72 320.878 1804.17 323.492 Q1801.61 326.107 1797.36 326.107 Q1792.49 326.107 1789.91 322.383 Q1787.33 318.64 1787.33 311.55 Q1787.33 304.892 1790.49 300.942 Q1793.65 296.974 1798.97 296.974 Q1800.4 296.974 1801.85 297.256 Q1803.32 297.538 1804.9 298.102 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1602.08 112.882 L1590.27 131.331 L1602.08 131.331 L1602.08 112.882 M1600.85 108.808 L1606.73 108.808 L1606.73 131.331 L1611.66 131.331 L1611.66 135.22 L1606.73 135.22 L1606.73 143.368 L1602.08 143.368 L1602.08 135.22 L1586.47 135.22 L1586.47 130.706 L1600.85 108.808 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1619.39 137.488 L1624.27 137.488 L1624.27 143.368 L1619.39 143.368 L1619.39 137.488 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1644.46 111.887 Q1640.85 111.887 1639.02 115.451 Q1637.21 118.993 1637.21 126.123 Q1637.21 133.229 1639.02 136.794 Q1640.85 140.335 1644.46 140.335 Q1648.09 140.335 1649.9 136.794 Q1651.73 133.229 1651.73 126.123 Q1651.73 118.993 1649.9 115.451 Q1648.09 111.887 1644.46 111.887 M1644.46 108.183 Q1650.27 108.183 1653.33 112.789 Q1656.4 117.373 1656.4 126.123 Q1656.4 134.849 1653.33 139.456 Q1650.27 144.039 1644.46 144.039 Q1638.65 144.039 1635.57 139.456 Q1632.52 134.849 1632.52 126.123 Q1632.52 117.373 1635.57 112.789 Q1638.65 108.183 1644.46 108.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1692.79 117.905 L1682.21 128.53 L1692.79 139.109 L1690.04 141.91 L1679.41 131.285 L1668.79 141.91 L1666.06 139.109 L1676.61 128.53 L1666.06 117.905 L1668.79 115.104 L1679.41 125.729 L1690.04 115.104 L1692.79 117.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1705.15 139.433 L1712.79 139.433 L1712.79 113.067 L1704.48 114.734 L1704.48 110.475 L1712.75 108.808 L1717.42 108.808 L1717.42 139.433 L1725.06 139.433 L1725.06 143.368 L1705.15 143.368 L1705.15 139.433 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1744.51 111.887 Q1740.89 111.887 1739.07 115.451 Q1737.26 118.993 1737.26 126.123 Q1737.26 133.229 1739.07 136.794 Q1740.89 140.335 1744.51 140.335 Q1748.14 140.335 1749.95 136.794 Q1751.77 133.229 1751.77 126.123 Q1751.77 118.993 1749.95 115.451 Q1748.14 111.887 1744.51 111.887 M1744.51 108.183 Q1750.32 108.183 1753.37 112.789 Q1756.45 117.373 1756.45 126.123 Q1756.45 134.849 1753.37 139.456 Q1750.32 144.039 1744.51 144.039 Q1738.7 144.039 1735.62 139.456 Q1732.56 134.849 1732.56 126.123 Q1732.56 117.373 1735.62 112.789 Q1738.7 108.183 1744.51 108.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1756.45 102.284 L1780.56 102.284 L1780.56 105.482 L1756.45 105.482 L1756.45 102.284 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M1797.36 100.403 Q1794.8 100.403 1793.29 102.153 Q1791.81 103.902 1791.81 106.949 Q1791.81 109.977 1793.29 111.745 Q1794.8 113.494 1797.36 113.494 Q1799.91 113.494 1801.4 111.745 Q1802.9 109.977 1802.9 106.949 Q1802.9 103.902 1801.4 102.153 Q1799.91 100.403 1797.36 100.403 M1804.9 88.4981 L1804.9 91.9587 Q1803.47 91.2817 1802 90.9243 Q1800.55 90.567 1799.12 90.567 Q1795.36 90.567 1793.37 93.106 Q1791.39 95.6451 1791.11 100.78 Q1792.22 99.1433 1793.9 98.2782 Q1795.57 97.3942 1797.58 97.3942 Q1801.81 97.3942 1804.26 99.9709 Q1806.72 102.529 1806.72 106.949 Q1806.72 111.274 1804.17 113.889 Q1801.61 116.503 1797.36 116.503 Q1792.49 116.503 1789.91 112.779 Q1787.33 109.036 1787.33 101.946 Q1787.33 95.2877 1790.49 91.3381 Q1793.65 87.3696 1798.97 87.3696 Q1800.4 87.3696 1801.85 87.6518 Q1803.32 87.9339 1804.9 88.4981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2201.94 12.2777 L2201.94 23.3193 L2215.1 23.3193 L2215.1 28.2846 L2201.94 28.2846 L2201.94 49.3956 Q2201.94 54.1525 2203.22 55.5066 Q2204.54 56.8608 2208.53 56.8608 L2215.1 56.8608 L2215.1 62.208 L2208.53 62.208 Q2201.14 62.208 2198.32 59.465 Q2195.51 56.6872 2195.51 49.3956 L2195.51 28.2846 L2190.82 28.2846 L2190.82 23.3193 L2195.51 23.3193 L2195.51 12.2777 L2201.94 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2238.57 27.7985 Q2233.43 27.7985 2230.44 31.8262 Q2227.46 35.8193 2227.46 42.7984 Q2227.46 49.7775 2230.41 53.8053 Q2233.39 57.7983 2238.57 57.7983 Q2243.67 57.7983 2246.66 53.7705 Q2249.64 49.7428 2249.64 42.7984 Q2249.64 35.8887 2246.66 31.8609 Q2243.67 27.7985 2238.57 27.7985 M2238.57 22.3818 Q2246.9 22.3818 2251.66 27.7985 Q2256.41 33.2151 2256.41 42.7984 Q2256.41 52.3469 2251.66 57.7983 Q2246.9 63.2149 2238.57 63.2149 Q2230.2 63.2149 2225.44 57.7983 Q2220.72 52.3469 2220.72 42.7984 Q2220.72 33.2151 2225.44 27.7985 Q2230.2 22.3818 2238.57 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2273.32 12.2777 L2273.32 23.3193 L2286.48 23.3193 L2286.48 28.2846 L2273.32 28.2846 L2273.32 49.3956 Q2273.32 54.1525 2274.61 55.5066 Q2275.93 56.8608 2279.92 56.8608 L2286.48 56.8608 L2286.48 62.208 L2279.92 62.208 Q2272.53 62.208 2269.71 59.465 Q2266.9 56.6872 2266.9 49.3956 L2266.9 28.2846 L2262.21 28.2846 L2262.21 23.3193 L2266.9 23.3193 L2266.9 12.2777 L2273.32 12.2777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2312.56 42.6595 Q2304.82 42.6595 2301.83 44.4303 Q2298.84 46.2011 2298.84 50.472 Q2298.84 53.8747 2301.07 55.8886 Q2303.32 57.8677 2307.18 57.8677 Q2312.49 57.8677 2315.68 54.1178 Q2318.91 50.3331 2318.91 44.0831 L2318.91 42.6595 L2312.56 42.6595 M2325.3 40.0206 L2325.3 62.208 L2318.91 62.208 L2318.91 56.3053 Q2316.73 59.8469 2313.46 61.5483 Q2310.2 63.2149 2305.48 63.2149 Q2299.5 63.2149 2295.96 59.8816 Q2292.46 56.5136 2292.46 50.8886 Q2292.46 44.3262 2296.83 40.9928 Q2301.24 37.6595 2309.96 37.6595 L2318.91 37.6595 L2318.91 37.0345 Q2318.91 32.6248 2316 30.229 Q2313.12 27.7985 2307.87 27.7985 Q2304.54 27.7985 2301.38 28.5971 Q2298.22 29.3957 2295.3 30.9929 L2295.3 25.0901 Q2298.81 23.736 2302.11 23.0763 Q2305.41 22.3818 2308.53 22.3818 Q2316.97 22.3818 2321.14 26.7568 Q2325.3 31.1318 2325.3 40.0206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2338.46 8.18051 L2344.85 8.18051 L2344.85 62.208 L2338.46 62.208 L2338.46 8.18051 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2414.09 41.1664 L2414.09 44.2914 L2384.71 44.2914 Q2385.13 50.8886 2388.67 54.3608 Q2392.25 57.7983 2398.6 57.7983 Q2402.28 57.7983 2405.72 56.8955 Q2409.19 55.9928 2412.59 54.1872 L2412.59 60.2288 Q2409.16 61.6872 2405.55 62.4511 Q2401.93 63.2149 2398.22 63.2149 Q2388.91 63.2149 2383.46 57.7983 Q2378.05 52.3817 2378.05 43.1456 Q2378.05 33.597 2383.18 28.0068 Q2388.36 22.3818 2397.11 22.3818 Q2404.96 22.3818 2409.5 27.4512 Q2414.09 32.4859 2414.09 41.1664 M2407.7 39.2915 Q2407.63 34.0484 2404.75 30.9234 Q2401.9 27.7985 2397.18 27.7985 Q2391.83 27.7985 2388.6 30.8193 Q2385.41 33.8401 2384.92 39.3262 L2407.7 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2456.9 38.7359 L2456.9 62.208 L2450.51 62.208 L2450.51 38.9442 Q2450.51 33.4234 2448.36 30.6804 Q2446.2 27.9374 2441.9 27.9374 Q2436.73 27.9374 2433.74 31.2359 Q2430.75 34.5345 2430.75 40.229 L2430.75 62.208 L2424.33 62.208 L2424.33 23.3193 L2430.75 23.3193 L2430.75 29.361 Q2433.05 25.854 2436.14 24.1179 Q2439.26 22.3818 2443.32 22.3818 Q2450.02 22.3818 2453.46 26.5485 Q2456.9 30.6804 2456.9 38.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2502.91 41.1664 L2502.91 44.2914 L2473.53 44.2914 Q2473.95 50.8886 2477.49 54.3608 Q2481.07 57.7983 2487.42 57.7983 Q2491.1 57.7983 2494.54 56.8955 Q2498.01 55.9928 2501.41 54.1872 L2501.41 60.2288 Q2497.98 61.6872 2494.36 62.4511 Q2490.75 63.2149 2487.04 63.2149 Q2477.73 63.2149 2472.28 57.7983 Q2466.86 52.3817 2466.86 43.1456 Q2466.86 33.597 2472 28.0068 Q2477.18 22.3818 2485.93 22.3818 Q2493.77 22.3818 2498.32 27.4512 Q2502.91 32.4859 2502.91 41.1664 M2496.52 39.2915 Q2496.45 34.0484 2493.57 30.9234 Q2490.72 27.7985 2486 27.7985 Q2480.65 27.7985 2477.42 30.8193 Q2474.23 33.8401 2473.74 39.3262 L2496.52 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2535.93 29.2915 Q2534.85 28.6665 2533.57 28.3887 Q2532.32 28.0762 2530.79 28.0762 Q2525.37 28.0762 2522.45 31.6179 Q2519.57 35.1248 2519.57 41.722 L2519.57 62.208 L2513.15 62.208 L2513.15 23.3193 L2519.57 23.3193 L2519.57 29.361 Q2521.59 25.8193 2524.82 24.1179 Q2528.04 22.3818 2532.66 22.3818 Q2533.32 22.3818 2534.12 22.486 Q2534.92 22.5554 2535.89 22.729 L2535.93 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2566.97 42.3123 Q2566.97 35.3679 2564.09 31.5484 Q2561.24 27.729 2556.07 27.729 Q2550.93 27.729 2548.04 31.5484 Q2545.2 35.3679 2545.2 42.3123 Q2545.2 49.222 2548.04 53.0414 Q2550.93 56.8608 2556.07 56.8608 Q2561.24 56.8608 2564.09 53.0414 Q2566.97 49.222 2566.97 42.3123 M2573.36 57.3816 Q2573.36 67.3121 2568.95 72.1385 Q2564.54 76.9996 2555.44 76.9996 Q2552.07 76.9996 2549.09 76.4788 Q2546.1 75.9926 2543.29 74.951 L2543.29 68.7357 Q2546.1 70.2635 2548.84 70.9927 Q2551.59 71.7218 2554.43 71.7218 Q2560.72 71.7218 2563.84 68.4232 Q2566.97 65.1594 2566.97 58.5275 L2566.97 55.3678 Q2564.99 58.8052 2561.9 60.5066 Q2558.81 62.208 2554.5 62.208 Q2547.35 62.208 2542.98 56.7566 Q2538.6 51.3053 2538.6 42.3123 Q2538.6 33.2845 2542.98 27.8332 Q2547.35 22.3818 2554.5 22.3818 Q2558.81 22.3818 2561.9 24.0832 Q2564.99 25.7846 2566.97 29.2221 L2566.97 23.3193 L2573.36 23.3193 L2573.36 57.3816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2602.7 65.8191 Q2599.99 72.7635 2597.42 74.8815 Q2594.85 76.9996 2590.54 76.9996 L2585.44 76.9996 L2585.44 71.6524 L2589.19 71.6524 Q2591.83 71.6524 2593.29 70.4024 Q2594.75 69.1524 2596.52 64.4997 L2597.66 61.583 L2581.93 23.3193 L2588.7 23.3193 L2600.86 53.7358 L2613.01 23.3193 L2619.78 23.3193 L2602.7 65.8191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2684.47 41.1664 L2684.47 44.2914 L2655.09 44.2914 Q2655.51 50.8886 2659.05 54.3608 Q2662.63 57.7983 2668.98 57.7983 Q2672.66 57.7983 2676.1 56.8955 Q2679.57 55.9928 2682.97 54.1872 L2682.97 60.2288 Q2679.54 61.6872 2675.93 62.4511 Q2672.31 63.2149 2668.6 63.2149 Q2659.29 63.2149 2653.84 57.7983 Q2648.43 52.3817 2648.43 43.1456 Q2648.43 33.597 2653.56 28.0068 Q2658.74 22.3818 2667.49 22.3818 Q2675.34 22.3818 2679.88 27.4512 Q2684.47 32.4859 2684.47 41.1664 M2678.08 39.2915 Q2678.01 34.0484 2675.13 30.9234 Q2672.28 27.7985 2667.56 27.7985 Q2662.21 27.7985 2658.98 30.8193 Q2655.79 33.8401 2655.3 39.3262 L2678.08 39.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2717.49 29.2915 Q2716.41 28.6665 2715.13 28.3887 Q2713.88 28.0762 2712.35 28.0762 Q2706.93 28.0762 2704.02 31.6179 Q2701.13 35.1248 2701.13 41.722 L2701.13 62.208 L2694.71 62.208 L2694.71 23.3193 L2701.13 23.3193 L2701.13 29.361 Q2703.15 25.8193 2706.38 24.1179 Q2709.61 22.3818 2714.22 22.3818 Q2714.88 22.3818 2715.68 22.486 Q2716.48 22.5554 2717.45 22.729 L2717.49 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2745.47 29.2915 Q2744.4 28.6665 2743.11 28.3887 Q2741.86 28.0762 2740.34 28.0762 Q2734.92 28.0762 2732 31.6179 Q2729.12 35.1248 2729.12 41.722 L2729.12 62.208 L2722.7 62.208 L2722.7 23.3193 L2729.12 23.3193 L2729.12 29.361 Q2731.13 25.8193 2734.36 24.1179 Q2737.59 22.3818 2742.21 22.3818 Q2742.87 22.3818 2743.67 22.486 Q2744.47 22.5554 2745.44 22.729 L2745.47 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2765.68 27.7985 Q2760.54 27.7985 2757.56 31.8262 Q2754.57 35.8193 2754.57 42.7984 Q2754.57 49.7775 2757.52 53.8053 Q2760.51 57.7983 2765.68 57.7983 Q2770.79 57.7983 2773.77 53.7705 Q2776.76 49.7428 2776.76 42.7984 Q2776.76 35.8887 2773.77 31.8609 Q2770.79 27.7985 2765.68 27.7985 M2765.68 22.3818 Q2774.02 22.3818 2778.77 27.7985 Q2783.53 33.2151 2783.53 42.7984 Q2783.53 52.3469 2778.77 57.7983 Q2774.02 63.2149 2765.68 63.2149 Q2757.31 63.2149 2752.56 57.7983 Q2747.84 52.3469 2747.84 42.7984 Q2747.84 33.2151 2752.56 27.7985 Q2757.31 22.3818 2765.68 22.3818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip930)\" d=\"M2816.65 29.2915 Q2815.58 28.6665 2814.29 28.3887 Q2813.04 28.0762 2811.52 28.0762 Q2806.1 28.0762 2803.18 31.6179 Q2800.3 35.1248 2800.3 41.722 L2800.3 62.208 L2793.88 62.208 L2793.88 23.3193 L2800.3 23.3193 L2800.3 29.361 Q2802.31 25.8193 2805.54 24.1179 Q2808.77 22.3818 2813.39 22.3818 Q2814.05 22.3818 2814.85 22.486 Q2815.65 22.5554 2816.62 22.729 L2816.65 29.2915 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip933)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.46,538.848 1893.91,590.898 1896.36,868.665 1898.81,615.07 1901.26,430.484 1903.71,516.734 1906.15,533.111 1908.6,498.135 1911.05,515.474 1913.5,539.672 \n 1915.95,540.006 1918.4,536.547 1920.85,534.573 1923.3,536.114 1925.75,537.219 1928.2,537.25 1930.65,537.16 1933.09,537.093 1935.54,537.115 1937.99,537.156 \n 1940.44,537.195 1942.89,537.209 1945.34,537.187 1947.79,537.171 1950.24,537.189 1952.69,537.229 1955.14,537.243 1957.59,537.224 1960.04,537.207 1962.48,537.215 \n 1964.93,537.252 1967.38,537.286 1969.83,537.359 1972.28,537.25 1974.73,536.761 1977.18,536.751 1979.63,537.668 1982.08,541.01 1984.53,537.601 1986.98,523.911 \n 1989.42,525.318 1991.87,539.757 1994.32,545.126 1996.77,524.58 1999.22,630.818 2001.67,660.831 2004.12,477.528 2006.57,206.115 2009.02,332.323 2011.47,196.314 \n 2013.92,347.677 2016.36,574.277 2018.81,614.998 2021.26,520.737 2023.71,535.83 2026.16,548.722 2028.61,536.829 2031.06,524.086 2033.51,533.052 2035.96,540.617 \n 2038.41,540.621 2040.86,539.788 2043.31,539.357 2045.75,539.678 2048.2,539.917 2050.65,539.956 2053.1,539.951 2055.55,539.922 2058,539.913 2060.45,539.934 \n 2062.9,539.973 2065.35,539.988 2067.8,539.967 2070.25,539.951 2072.69,539.968 2075.14,540.007 2077.59,540.023 2080.04,540.012 2082.49,539.987 2084.94,539.948 \n 2087.39,539.977 2089.84,540.102 2092.29,540.548 2094.74,540.056 2097.19,537.731 2099.63,537.664 2102.08,541.427 2104.53,552.876 2106.98,541.453 2109.43,512.775 \n 2111.88,526.193 2114.33,524.061 2116.78,350.471 2119.23,389.188 2121.68,729.971 2124.13,644.689 2126.58,572.005 2129.02,825.476 2131.47,619.956 2133.92,357.28 \n 2136.37,488.404 2138.82,541.576 2141.27,501.501 2143.72,514.572 2146.17,545.974 2148.62,546.929 2151.07,541.726 2153.52,538.513 2155.96,540.997 2158.41,542.811 \n 2160.86,542.836 2163.31,542.672 2165.76,542.571 2168.21,542.622 2170.66,542.681 2173.11,542.72 2175.56,542.732 2178.01,542.71 2180.46,542.695 2182.9,542.713 \n 2185.35,542.752 2187.8,542.767 2190.25,542.746 2192.7,542.73 2195.15,542.743 2197.6,542.78 2200.05,542.806 2202.5,542.84 2204.95,542.77 2207.4,542.488 \n 2209.85,542.494 2212.29,543.055 2214.74,545.147 2217.19,542.986 2219.64,533.722 2222.09,534.207 2224.54,545.738 2226.99,562.543 2229.44,540.523 2231.89,576.391 \n 2234.34,614.247 2236.79,481.725 2239.23,110.599 2241.68,262.683 2244.13,293.832 2246.58,363.857 2249.03,596.221 2251.48,718.472 2253.93,552.704 2256.38,526.235 \n 2258.83,552.431 2261.28,541.433 2263.73,522.561 2266.17,535.008 2268.62,546.567 2271.07,546.585 2273.52,545.224 2275.97,544.512 2278.42,545.06 2280.87,545.455 \n 2283.32,545.492 2285.77,545.473 2288.22,545.437 2290.67,545.433 2293.12,545.457 2295.56,545.497 2298.01,545.511 2300.46,545.49 2302.91,545.474 2305.36,545.492 \n 2307.81,545.531 2310.26,545.546 2312.71,545.53 2315.16,545.51 2317.61,545.496 2320.06,545.528 2322.5,545.607 2324.95,545.864 2327.4,545.566 2329.85,544.149 \n 2332.3,544.096 2334.75,546.509 2337.2,554.491 2339.65,546.51 2342.1,521.32 2344.55,528.514 2347,539.933 2349.44,454.938 2351.89,462.264 2354.34,754.961 \n 2356.79,708.739 2359.24,541.388 2361.69,665.352 2364.14,570.066 2366.59,273.178 2369.04,445.492 2371.49,553.921 2373.94,518.013 2376.39,515.497 2378.83,551.774 \n 2381.28,554.206 2383.73,546.745 2386.18,541.584 2388.63,545.498 2391.08,548.446 2393.53,548.464 2395.98,548.177 2398.43,548.018 2400.88,548.117 2403.33,548.207 \n 2405.77,548.246 2408.22,548.255 2410.67,548.232 2413.12,548.218 2415.57,548.236 2418.02,548.276 2420.47,548.29 2422.92,548.27 2425.37,548.254 2427.82,548.269 \n 2430.27,548.307 2432.71,548.327 2435.16,548.338 2437.61,548.292 2440.06,548.134 2442.51,548.15 2444.96,548.492 2447.41,549.775 2449.86,548.43 2452.31,542.39 \n 2454.76,542.486 2457.21,550.909 2459.66,569.157 2462.1,549.532 2464.55,543.4 2467,575.928 2469.45,499.381 2471.9,135.282 2474.35,263.55 2476.8,460.524 \n 2479.25,437.211 2481.7,611.05 2484.15,825.898 2486.6,595.452 2489.04,500.863 2491.49,550.109 2493.94,546.371 2496.39,519.814 2498.84,535.66 2501.29,552.693 \n 2503.74,552.784 2506.19,550.607 2508.64,549.432 2511.09,550.349 2513.54,551.003 2515.98,551.037 2518.43,550.992 2520.88,550.946 2523.33,550.951 2525.78,550.981 \n 2528.23,551.021 2530.68,551.035 2533.13,551.014 2535.58,550.998 2538.03,551.015 2540.48,551.055 2542.93,551.069 2545.37,551.051 2547.82,551.033 2550.27,551.033 \n 2552.72,551.068 2555.17,551.119 2557.62,551.263 2560.07,551.081 2562.52,550.232 2564.97,550.201 2567.42,551.716 2569.87,557.023 2572.31,551.671 2574.76,532.2 \n 2577.21,535.66 2579.66,551.144 2582.11,524.706 2584.56,513.101 2587.01,716.124 2589.46,715.841 2591.91,512.341 2594.36,436.886 2596.81,469.285 2599.26,210.948 \n 2601.7,397.975 2604.15,571.233 2606.6,558.116 2609.05,522.066 2611.5,555.835 2613.95,561.539 2616.4,551.572 2618.85,543.434 2621.3,549.426 2623.75,554.149 \n 2626.2,554.157 2628.64,553.669 2631.09,553.412 2633.54,553.591 2635.99,553.735 2638.44,553.774 2640.89,553.778 2643.34,553.753 2645.79,553.74 2648.24,553.76 \n 2650.69,553.799 2653.14,553.814 2655.58,553.793 2658.03,553.777 2660.48,553.794 2662.93,553.832 2665.38,553.85 2667.83,553.847 2670.28,553.814 2672.73,553.73 \n 2675.18,553.754 2677.63,553.962 2680.08,554.735 2682.53,553.909 2684.97,550.078 2687.42,550.039 2689.87,555.841 2692.32,571.305 2694.77,555.638 2697.22,530.854 \n 2699.67,553.591 2702.12,521.994 2704.57,239.234 2707.02,322.829 2709.47,633.018 2711.91,550.105 2714.36,610.933 2716.81,887.501 2719.26,633.472 2721.71,452.839 \n 2724.16,537.235 2726.61,552.395 2729.06,517.752 2731.51,535.116 2733.96,558.985 2736.41,559.302 2738.85,555.909 2741.3,553.979 2743.75,555.486 2746.2,556.566 \n 2748.65,556.598 2751.1,556.51 2753.55,556.444 2756,556.465 2758.45,556.505 2760.9,556.545 2763.35,556.558 2765.8,556.537 2768.24,556.521 2770.69,556.539 \n 2773.14,556.578 2775.59,556.593 2778.04,556.573 2780.49,556.556 2782.94,556.565 2785.39,556.601 2787.84,556.636 2790.29,556.711 2792.74,556.599 2795.18,556.099 \n 2797.63,556.088 2800.08,557.025 2802.53,560.436 2804.98,556.959 2807.43,543.041 2809.88,544.508 2812.33,559.053 2814.78,563.544 2817.23,543.202 2819.68,653.236 \n 2822.12,682.44 2824.57,497.361 2827.02,232.867 2829.47,356.409 2831.92,213.701 2834.37,367.782 2836.82,592.849 2839.27,630.542 2841.72,539.24 2844.17,555.604 \n 2846.62,568.07 2849.07,556.22 2851.51,543.713 2853.96,552.534 2856.41,559.951 2858.86,559.955 2861.31,559.141 2863.76,558.719 2866.21,559.032 2868.66,559.266 \n 2871.11,559.305 2873.56,559.301 2876.01,559.272 2878.45,559.262 2880.9,559.283 2883.35,559.323 2885.8,559.337 2888.25,559.316 2890.7,559.3 2893.15,559.318 \n 2895.6,559.357 2898.05,559.373 2900.5,559.362 2902.95,559.337 2905.39,559.296 2907.84,559.325 2910.29,559.453 2912.74,559.91 2915.19,559.407 2917.64,557.03 \n 2920.09,556.963 2922.54,560.8 2924.99,572.419 2927.44,560.824 2929.89,532.107 2932.34,545.871 2934.78,542.824 2937.23,364.675 2939.68,405.104 2942.13,746.458 \n 2944.58,660.129 2947.03,592.787 2949.48,849.641 2951.93,640.41 2954.38,380.58 2956.83,509.622 2959.28,560.721 2961.72,520.737 2964.17,534.193 2966.62,565.294 \n 2969.07,566.207 2971.52,561.094 2973.97,557.95 2976.42,560.382 2978.87,562.157 2981.32,562.182 2983.77,562.023 2986.22,561.924 2988.66,561.972 2991.11,562.03 \n 2993.56,562.07 2996.01,562.082 2998.46,562.06 3000.91,562.044 3003.36,562.062 3005.81,562.102 3008.26,562.116 3010.71,562.096 3013.16,562.08 3015.61,562.092 \n 3018.05,562.13 3020.5,562.156 3022.95,562.191 3025.4,562.12 3027.85,561.831 3030.3,561.836 3032.75,562.409 3035.2,564.547 3037.65,562.34 3040.1,552.904 \n 3042.55,553.416 3044.99,565.09 3047.44,581.65 3049.89,559.592 3052.34,598.015 3054.79,635.873 3057.24,500.785 3059.69,131.778 3062.14,283.964 3064.59,307.19 \n 3067.04,381.491 3069.49,614.92 3071.93,733.029 3074.38,570.565 3076.83,546.55 3079.28,571.962 3081.73,560.821 3084.18,542.262 3086.63,554.546 3089.08,565.894 \n 3091.53,565.91 3093.98,564.579 3096.43,563.883 3098.88,564.418 3101.32,564.804 3103.77,564.841 3106.22,564.822 3108.67,564.788 3111.12,564.783 3113.57,564.807 \n 3116.02,564.854 \n \"/>\n</svg>\n"
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "dtmax = 0.05\nsol = solve(SecondOrderODEProblem(f2!, v0(p), u0(p), tspan, p); dtmax)\n@show length(sol.t)\nplot_pendulum(sol; title=\"SecondOrderODEProblem with dtmax = $dtmax\")",
"execution_count": 14,
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": "length(sol.t) = 604\n"
},
{
"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=\"800\" height=\"250\" viewBox=\"0 0 3200 1000\">\n<defs>\n <clipPath id=\"clip970\">\n <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip970)\" d=\"\nM0 1000 L3200 1000 L3200 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip971\">\n <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1000\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip970)\" d=\"\nM157.191 910.808 L1455.22 910.808 L1455.22 87.2921 L157.191 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip972\">\n <rect x=\"157\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 193.928,910.808 193.928,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 275.565,910.808 275.565,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 357.202,910.808 357.202,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 438.84,910.808 438.84,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 520.477,910.808 520.477,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 602.114,910.808 602.114,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 683.751,910.808 683.751,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 765.389,910.808 765.389,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 847.026,910.808 847.026,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 928.663,910.808 928.663,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1010.3,910.808 1010.3,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1091.94,910.808 1091.94,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1173.58,910.808 1173.58,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1255.21,910.808 1255.21,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1336.85,910.808 1336.85,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1418.49,910.808 1418.49,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,910.808 193.928,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 275.565,910.808 275.565,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 357.202,910.808 357.202,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 438.84,910.808 438.84,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 520.477,910.808 520.477,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 602.114,910.808 602.114,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 683.751,910.808 683.751,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 765.389,910.808 765.389,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 847.026,910.808 847.026,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 928.663,910.808 928.663,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1010.3,910.808 1010.3,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1091.94,910.808 1091.94,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1173.58,910.808 1173.58,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1255.21,910.808 1255.21,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1336.85,910.808 1336.85,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1418.49,910.808 1418.49,900.926 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"M193.928 946.399 Q190.317 946.399 188.488 949.963 Q186.682 953.505 186.682 960.635 Q186.682 967.741 188.488 971.306 Q190.317 974.847 193.928 974.847 Q197.562 974.847 199.367 971.306 Q201.196 967.741 201.196 960.635 Q201.196 953.505 199.367 949.963 Q197.562 946.399 193.928 946.399 M193.928 942.695 Q199.738 942.695 202.793 947.301 Q205.872 951.885 205.872 960.635 Q205.872 969.361 202.793 973.968 Q199.738 978.551 193.928 978.551 Q188.117 978.551 185.039 973.968 Q181.983 969.361 181.983 960.635 Q181.983 951.885 185.039 947.301 Q188.117 942.695 193.928 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M270.218 973.945 L286.537 973.945 L286.537 977.88 L264.593 977.88 L264.593 973.945 Q267.255 971.19 271.838 966.56 Q276.445 961.908 277.625 960.565 Q279.87 958.042 280.75 956.306 Q281.653 954.547 281.653 952.857 Q281.653 950.102 279.708 948.366 Q277.787 946.63 274.685 946.63 Q272.486 946.63 270.033 947.394 Q267.602 948.158 264.824 949.709 L264.824 944.987 Q267.648 943.852 270.102 943.274 Q272.556 942.695 274.593 942.695 Q279.963 942.695 283.157 945.38 Q286.352 948.065 286.352 952.556 Q286.352 954.686 285.542 956.607 Q284.755 958.505 282.648 961.098 Q282.07 961.769 278.968 964.986 Q275.866 968.181 270.218 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M360.211 947.394 L348.406 965.843 L360.211 965.843 L360.211 947.394 M358.985 943.32 L364.864 943.32 L364.864 965.843 L369.795 965.843 L369.795 969.732 L364.864 969.732 L364.864 977.88 L360.211 977.88 L360.211 969.732 L344.61 969.732 L344.61 965.218 L358.985 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M439.245 958.736 Q436.096 958.736 434.245 960.889 Q432.416 963.042 432.416 966.792 Q432.416 970.519 434.245 972.695 Q436.096 974.847 439.245 974.847 Q442.393 974.847 444.221 972.695 Q446.073 970.519 446.073 966.792 Q446.073 963.042 444.221 960.889 Q442.393 958.736 439.245 958.736 M448.527 944.084 L448.527 948.343 Q446.768 947.51 444.962 947.07 Q443.18 946.63 441.421 946.63 Q436.791 946.63 434.337 949.755 Q431.907 952.88 431.559 959.199 Q432.925 957.186 434.985 956.121 Q437.046 955.033 439.522 955.033 Q444.731 955.033 447.74 958.204 Q450.772 961.352 450.772 966.792 Q450.772 972.116 447.624 975.334 Q444.476 978.551 439.245 978.551 Q433.249 978.551 430.078 973.968 Q426.907 969.361 426.907 960.635 Q426.907 952.44 430.796 947.579 Q434.684 942.695 441.235 942.695 Q442.995 942.695 444.777 943.042 Q446.583 943.389 448.527 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M520.477 961.468 Q517.144 961.468 515.222 963.25 Q513.324 965.033 513.324 968.158 Q513.324 971.283 515.222 973.065 Q517.144 974.847 520.477 974.847 Q523.81 974.847 525.731 973.065 Q527.653 971.26 527.653 968.158 Q527.653 965.033 525.731 963.25 Q523.833 961.468 520.477 961.468 M515.801 959.477 Q512.792 958.736 511.102 956.676 Q509.435 954.616 509.435 951.653 Q509.435 947.51 512.375 945.102 Q515.338 942.695 520.477 942.695 Q525.639 942.695 528.579 945.102 Q531.518 947.51 531.518 951.653 Q531.518 954.616 529.829 956.676 Q528.162 958.736 525.176 959.477 Q528.555 960.264 530.43 962.556 Q532.329 964.848 532.329 968.158 Q532.329 973.181 529.25 975.866 Q526.194 978.551 520.477 978.551 Q514.759 978.551 511.681 975.866 Q508.625 973.181 508.625 968.158 Q508.625 964.848 510.523 962.556 Q512.421 960.264 515.801 959.477 M514.088 952.093 Q514.088 954.778 515.755 956.283 Q517.444 957.787 520.477 957.787 Q523.486 957.787 525.176 956.283 Q526.889 954.778 526.889 952.093 Q526.889 949.408 525.176 947.903 Q523.486 946.399 520.477 946.399 Q517.444 946.399 515.755 947.903 Q514.088 949.408 514.088 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M576.802 973.945 L584.441 973.945 L584.441 947.579 L576.13 949.246 L576.13 944.987 L584.394 943.32 L589.07 943.32 L589.07 973.945 L596.709 973.945 L596.709 977.88 L576.802 977.88 L576.802 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M616.153 946.399 Q612.542 946.399 610.714 949.963 Q608.908 953.505 608.908 960.635 Q608.908 967.741 610.714 971.306 Q612.542 974.847 616.153 974.847 Q619.788 974.847 621.593 971.306 Q623.422 967.741 623.422 960.635 Q623.422 953.505 621.593 949.963 Q619.788 946.399 616.153 946.399 M616.153 942.695 Q621.964 942.695 625.019 947.301 Q628.098 951.885 628.098 960.635 Q628.098 969.361 625.019 973.968 Q621.964 978.551 616.153 978.551 Q610.343 978.551 607.265 973.968 Q604.209 969.361 604.209 960.635 Q604.209 951.885 607.265 947.301 Q610.343 942.695 616.153 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M659.238 973.945 L666.877 973.945 L666.877 947.579 L658.566 949.246 L658.566 944.987 L666.83 943.32 L671.506 943.32 L671.506 973.945 L679.145 973.945 L679.145 977.88 L659.238 977.88 L659.238 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M692.617 973.945 L708.936 973.945 L708.936 977.88 L686.992 977.88 L686.992 973.945 Q689.654 971.19 694.237 966.56 Q698.844 961.908 700.024 960.565 Q702.27 958.042 703.149 956.306 Q704.052 954.547 704.052 952.857 Q704.052 950.102 702.108 948.366 Q700.187 946.63 697.085 946.63 Q694.886 946.63 692.432 947.394 Q690.001 948.158 687.224 949.709 L687.224 944.987 Q690.048 943.852 692.501 943.274 Q694.955 942.695 696.992 942.695 Q702.362 942.695 705.557 945.38 Q708.751 948.065 708.751 952.556 Q708.751 954.686 707.941 956.607 Q707.154 958.505 705.048 961.098 Q704.469 961.769 701.367 964.986 Q698.265 968.181 692.617 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M739.833 973.945 L747.472 973.945 L747.472 947.579 L739.162 949.246 L739.162 944.987 L747.426 943.32 L752.102 943.32 L752.102 973.945 L759.741 973.945 L759.741 977.88 L739.833 977.88 L739.833 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M782.032 947.394 L770.227 965.843 L782.032 965.843 L782.032 947.394 M780.805 943.32 L786.685 943.32 L786.685 965.843 L791.615 965.843 L791.615 969.732 L786.685 969.732 L786.685 977.88 L782.032 977.88 L782.032 969.732 L766.43 969.732 L766.43 965.218 L780.805 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M821.633 973.945 L829.271 973.945 L829.271 947.579 L820.961 949.246 L820.961 944.987 L829.225 943.32 L833.901 943.32 L833.901 973.945 L841.54 973.945 L841.54 977.88 L821.633 977.88 L821.633 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M861.563 958.736 Q858.415 958.736 856.563 960.889 Q854.734 963.042 854.734 966.792 Q854.734 970.519 856.563 972.695 Q858.415 974.847 861.563 974.847 Q864.711 974.847 866.54 972.695 Q868.392 970.519 868.392 966.792 Q868.392 963.042 866.54 960.889 Q864.711 958.736 861.563 958.736 M870.845 944.084 L870.845 948.343 Q869.086 947.51 867.281 947.07 Q865.498 946.63 863.739 946.63 Q859.109 946.63 856.656 949.755 Q854.225 952.88 853.878 959.199 Q855.244 957.186 857.304 956.121 Q859.364 955.033 861.841 955.033 Q867.049 955.033 870.058 958.204 Q873.091 961.352 873.091 966.792 Q873.091 972.116 869.943 975.334 Q866.794 978.551 861.563 978.551 Q855.568 978.551 852.396 973.968 Q849.225 969.361 849.225 960.635 Q849.225 952.44 853.114 947.579 Q857.003 942.695 863.554 942.695 Q865.313 942.695 867.095 943.042 Q868.901 943.389 870.845 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M903.397 973.945 L911.036 973.945 L911.036 947.579 L902.726 949.246 L902.726 944.987 L910.99 943.32 L915.666 943.32 L915.666 973.945 L923.305 973.945 L923.305 977.88 L903.397 977.88 L903.397 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M942.749 961.468 Q939.416 961.468 937.494 963.25 Q935.596 965.033 935.596 968.158 Q935.596 971.283 937.494 973.065 Q939.416 974.847 942.749 974.847 Q946.082 974.847 948.003 973.065 Q949.925 971.26 949.925 968.158 Q949.925 965.033 948.003 963.25 Q946.105 961.468 942.749 961.468 M938.073 959.477 Q935.064 958.736 933.374 956.676 Q931.707 954.616 931.707 951.653 Q931.707 947.51 934.647 945.102 Q937.61 942.695 942.749 942.695 Q947.911 942.695 950.851 945.102 Q953.79 947.51 953.79 951.653 Q953.79 954.616 952.101 956.676 Q950.434 958.736 947.448 959.477 Q950.828 960.264 952.703 962.556 Q954.601 964.848 954.601 968.158 Q954.601 973.181 951.522 975.866 Q948.466 978.551 942.749 978.551 Q937.031 978.551 933.953 975.866 Q930.897 973.181 930.897 968.158 Q930.897 964.848 932.795 962.556 Q934.693 960.264 938.073 959.477 M936.36 952.093 Q936.36 954.778 938.027 956.283 Q939.716 957.787 942.749 957.787 Q945.758 957.787 947.448 956.283 Q949.161 954.778 949.161 952.093 Q949.161 949.408 947.448 947.903 Q945.758 946.399 942.749 946.399 Q939.716 946.399 938.027 947.903 Q936.36 949.408 936.36 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M989.074 973.945 L1005.39 973.945 L1005.39 977.88 L983.449 977.88 L983.449 973.945 Q986.111 971.19 990.694 966.56 Q995.301 961.908 996.481 960.565 Q998.727 958.042 999.606 956.306 Q1000.51 954.547 1000.51 952.857 Q1000.51 950.102 998.565 948.366 Q996.643 946.63 993.541 946.63 Q991.342 946.63 988.889 947.394 Q986.458 948.158 983.68 949.709 L983.68 944.987 Q986.504 943.852 988.958 943.274 Q991.412 942.695 993.449 942.695 Q998.819 942.695 1002.01 945.38 Q1005.21 948.065 1005.21 952.556 Q1005.21 954.686 1004.4 956.607 Q1003.61 958.505 1001.5 961.098 Q1000.93 961.769 997.824 964.986 Q994.722 968.181 989.074 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1025.21 946.399 Q1021.6 946.399 1019.77 949.963 Q1017.96 953.505 1017.96 960.635 Q1017.96 967.741 1019.77 971.306 Q1021.6 974.847 1025.21 974.847 Q1028.84 974.847 1030.65 971.306 Q1032.48 967.741 1032.48 960.635 Q1032.48 953.505 1030.65 949.963 Q1028.84 946.399 1025.21 946.399 M1025.21 942.695 Q1031.02 942.695 1034.07 947.301 Q1037.15 951.885 1037.15 960.635 Q1037.15 969.361 1034.07 973.968 Q1031.02 978.551 1025.21 978.551 Q1019.4 978.551 1016.32 973.968 Q1013.26 969.361 1013.26 960.635 Q1013.26 951.885 1016.32 947.301 Q1019.4 942.695 1025.21 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1071.51 973.945 L1087.83 973.945 L1087.83 977.88 L1065.88 977.88 L1065.88 973.945 Q1068.55 971.19 1073.13 966.56 Q1077.74 961.908 1078.92 960.565 Q1081.16 958.042 1082.04 956.306 Q1082.94 954.547 1082.94 952.857 Q1082.94 950.102 1081 948.366 Q1079.08 946.63 1075.98 946.63 Q1073.78 946.63 1071.32 947.394 Q1068.89 948.158 1066.12 949.709 L1066.12 944.987 Q1068.94 943.852 1071.39 943.274 Q1073.85 942.695 1075.88 942.695 Q1081.26 942.695 1084.45 945.38 Q1087.64 948.065 1087.64 952.556 Q1087.64 954.686 1086.83 956.607 Q1086.05 958.505 1083.94 961.098 Q1083.36 961.769 1080.26 964.986 Q1077.16 968.181 1071.51 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1101.67 973.945 L1117.99 973.945 L1117.99 977.88 L1096.05 977.88 L1096.05 973.945 Q1098.71 971.19 1103.29 966.56 Q1107.9 961.908 1109.08 960.565 Q1111.32 958.042 1112.2 956.306 Q1113.11 954.547 1113.11 952.857 Q1113.11 950.102 1111.16 948.366 Q1109.24 946.63 1106.14 946.63 Q1103.94 946.63 1101.49 947.394 Q1099.06 948.158 1096.28 949.709 L1096.28 944.987 Q1099.1 943.852 1101.56 943.274 Q1104.01 942.695 1106.05 942.695 Q1111.42 942.695 1114.61 945.38 Q1117.81 948.065 1117.81 952.556 Q1117.81 954.686 1117 956.607 Q1116.21 958.505 1114.1 961.098 Q1113.52 961.769 1110.42 964.986 Q1107.32 968.181 1101.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1152.11 973.945 L1168.42 973.945 L1168.42 977.88 L1146.48 977.88 L1146.48 973.945 Q1149.14 971.19 1153.73 966.56 Q1158.33 961.908 1159.51 960.565 Q1161.76 958.042 1162.64 956.306 Q1163.54 954.547 1163.54 952.857 Q1163.54 950.102 1161.6 948.366 Q1159.67 946.63 1156.57 946.63 Q1154.37 946.63 1151.92 947.394 Q1149.49 948.158 1146.71 949.709 L1146.71 944.987 Q1149.54 943.852 1151.99 943.274 Q1154.44 942.695 1156.48 942.695 Q1161.85 942.695 1165.05 945.38 Q1168.24 948.065 1168.24 952.556 Q1168.24 954.686 1167.43 956.607 Q1166.64 958.505 1164.54 961.098 Q1163.96 961.769 1160.86 964.986 Q1157.75 968.181 1152.11 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1191.09 947.394 L1179.28 965.843 L1191.09 965.843 L1191.09 947.394 M1189.86 943.32 L1195.74 943.32 L1195.74 965.843 L1200.67 965.843 L1200.67 969.732 L1195.74 969.732 L1195.74 977.88 L1191.09 977.88 L1191.09 969.732 L1175.48 969.732 L1175.48 965.218 L1189.86 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1233.9 973.945 L1250.22 973.945 L1250.22 977.88 L1228.28 977.88 L1228.28 973.945 Q1230.94 971.19 1235.53 966.56 Q1240.13 961.908 1241.31 960.565 Q1243.56 958.042 1244.44 956.306 Q1245.34 954.547 1245.34 952.857 Q1245.34 950.102 1243.4 948.366 Q1241.47 946.63 1238.37 946.63 Q1236.17 946.63 1233.72 947.394 Q1231.29 948.158 1228.51 949.709 L1228.51 944.987 Q1231.34 943.852 1233.79 943.274 Q1236.24 942.695 1238.28 942.695 Q1243.65 942.695 1246.84 945.38 Q1250.04 948.065 1250.04 952.556 Q1250.04 954.686 1249.23 956.607 Q1248.44 958.505 1246.34 961.098 Q1245.76 961.769 1242.65 964.986 Q1239.55 968.181 1233.9 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1270.62 958.736 Q1267.47 958.736 1265.62 960.889 Q1263.79 963.042 1263.79 966.792 Q1263.79 970.519 1265.62 972.695 Q1267.47 974.847 1270.62 974.847 Q1273.77 974.847 1275.59 972.695 Q1277.45 970.519 1277.45 966.792 Q1277.45 963.042 1275.59 960.889 Q1273.77 958.736 1270.62 958.736 M1279.9 944.084 L1279.9 948.343 Q1278.14 947.51 1276.34 947.07 Q1274.55 946.63 1272.79 946.63 Q1268.16 946.63 1265.71 949.755 Q1263.28 952.88 1262.93 959.199 Q1264.3 957.186 1266.36 956.121 Q1268.42 955.033 1270.9 955.033 Q1276.1 955.033 1279.11 958.204 Q1282.15 961.352 1282.15 966.792 Q1282.15 972.116 1279 975.334 Q1275.85 978.551 1270.62 978.551 Q1264.62 978.551 1261.45 973.968 Q1258.28 969.361 1258.28 960.635 Q1258.28 952.44 1262.17 947.579 Q1266.06 942.695 1272.61 942.695 Q1274.37 942.695 1276.15 943.042 Q1277.96 943.389 1279.9 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1315.67 973.945 L1331.99 973.945 L1331.99 977.88 L1310.04 977.88 L1310.04 973.945 Q1312.71 971.19 1317.29 966.56 Q1321.9 961.908 1323.08 960.565 Q1325.32 958.042 1326.2 956.306 Q1327.1 954.547 1327.1 952.857 Q1327.1 950.102 1325.16 948.366 Q1323.24 946.63 1320.14 946.63 Q1317.94 946.63 1315.48 947.394 Q1313.05 948.158 1310.28 949.709 L1310.28 944.987 Q1313.1 943.852 1315.55 943.274 Q1318.01 942.695 1320.04 942.695 Q1325.41 942.695 1328.61 945.38 Q1331.8 948.065 1331.8 952.556 Q1331.8 954.686 1330.99 956.607 Q1330.21 958.505 1328.1 961.098 Q1327.52 961.769 1324.42 964.986 Q1321.32 968.181 1315.67 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1351.8 961.468 Q1348.47 961.468 1346.55 963.25 Q1344.65 965.033 1344.65 968.158 Q1344.65 971.283 1346.55 973.065 Q1348.47 974.847 1351.8 974.847 Q1355.14 974.847 1357.06 973.065 Q1358.98 971.26 1358.98 968.158 Q1358.98 965.033 1357.06 963.25 Q1355.16 961.468 1351.8 961.468 M1347.13 959.477 Q1344.12 958.736 1342.43 956.676 Q1340.76 954.616 1340.76 951.653 Q1340.76 947.51 1343.7 945.102 Q1346.66 942.695 1351.8 942.695 Q1356.97 942.695 1359.91 945.102 Q1362.85 947.51 1362.85 951.653 Q1362.85 954.616 1361.16 956.676 Q1359.49 958.736 1356.5 959.477 Q1359.88 960.264 1361.76 962.556 Q1363.66 964.848 1363.66 968.158 Q1363.66 973.181 1360.58 975.866 Q1357.52 978.551 1351.8 978.551 Q1346.09 978.551 1343.01 975.866 Q1339.95 973.181 1339.95 968.158 Q1339.95 964.848 1341.85 962.556 Q1343.75 960.264 1347.13 959.477 M1345.41 952.093 Q1345.41 954.778 1347.08 956.283 Q1348.77 957.787 1351.8 957.787 Q1354.81 957.787 1356.5 956.283 Q1358.22 954.778 1358.22 952.093 Q1358.22 949.408 1356.5 947.903 Q1354.81 946.399 1351.8 946.399 Q1348.77 946.399 1347.08 947.903 Q1345.41 949.408 1345.41 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1407.33 959.246 Q1410.69 959.963 1412.56 962.232 Q1414.46 964.5 1414.46 967.834 Q1414.46 972.949 1410.94 975.75 Q1407.42 978.551 1400.94 978.551 Q1398.76 978.551 1396.45 978.111 Q1394.16 977.695 1391.7 976.838 L1391.7 972.324 Q1393.65 973.459 1395.96 974.037 Q1398.28 974.616 1400.8 974.616 Q1405.2 974.616 1407.49 972.88 Q1409.81 971.144 1409.81 967.834 Q1409.81 964.778 1407.65 963.065 Q1405.52 961.329 1401.7 961.329 L1397.68 961.329 L1397.68 957.486 L1401.89 957.486 Q1405.34 957.486 1407.17 956.121 Q1409 954.732 1409 952.139 Q1409 949.477 1407.1 948.065 Q1405.22 946.63 1401.7 946.63 Q1399.78 946.63 1397.58 947.047 Q1395.39 947.463 1392.75 948.343 L1392.75 944.176 Q1395.41 943.436 1397.72 943.065 Q1400.06 942.695 1402.12 942.695 Q1407.45 942.695 1410.55 945.125 Q1413.65 947.533 1413.65 951.653 Q1413.65 954.524 1412.01 956.514 Q1410.36 958.482 1407.33 959.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1433.32 946.399 Q1429.71 946.399 1427.89 949.963 Q1426.08 953.505 1426.08 960.635 Q1426.08 967.741 1427.89 971.306 Q1429.71 974.847 1433.32 974.847 Q1436.96 974.847 1438.76 971.306 Q1440.59 967.741 1440.59 960.635 Q1440.59 953.505 1438.76 949.963 Q1436.96 946.399 1433.32 946.399 M1433.32 942.695 Q1439.14 942.695 1442.19 947.301 Q1445.27 951.885 1445.27 960.635 Q1445.27 969.361 1442.19 973.968 Q1439.14 978.551 1433.32 978.551 Q1427.51 978.551 1424.44 973.968 Q1421.38 969.361 1421.38 960.635 Q1421.38 951.885 1424.44 947.301 Q1427.51 942.695 1433.32 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,910.808 1455.22,910.808 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,832.378 1455.22,832.378 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,753.948 1455.22,753.948 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,675.518 1455.22,675.518 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,597.088 1455.22,597.088 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,518.658 1455.22,518.658 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,440.227 1455.22,440.227 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,361.797 1455.22,361.797 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,283.367 1455.22,283.367 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,204.937 1455.22,204.937 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 157.191,126.507 1455.22,126.507 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 157.191,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,910.808 172.767,910.808 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,832.378 172.767,832.378 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,753.948 172.767,753.948 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,675.518 172.767,675.518 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,597.088 172.767,597.088 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,518.658 172.767,518.658 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,440.227 172.767,440.227 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,361.797 172.767,361.797 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,283.367 172.767,283.367 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,204.937 172.767,204.937 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 157.191,126.507 172.767,126.507 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"M46.9921 911.259 L76.6679 911.259 L76.6679 915.194 L46.9921 915.194 L46.9921 911.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M99.6076 897.602 L87.8021 916.051 L99.6076 916.051 L99.6076 897.602 M98.3807 893.528 L104.26 893.528 L104.26 916.051 L109.191 916.051 L109.191 919.94 L104.26 919.94 L104.26 928.088 L99.6076 928.088 L99.6076 919.94 L84.0058 919.94 L84.0058 915.426 L98.3807 893.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M48.1264 832.829 L77.8021 832.829 L77.8021 836.764 L48.1264 836.764 L48.1264 832.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M102.061 831.024 Q105.418 831.741 107.293 834.01 Q109.191 836.278 109.191 839.612 Q109.191 844.727 105.672 847.528 Q102.154 850.329 95.6724 850.329 Q93.4965 850.329 91.1817 849.889 Q88.89 849.473 86.4364 848.616 L86.4364 844.102 Q88.3808 845.237 90.6956 845.815 Q93.0104 846.394 95.5335 846.394 Q99.9317 846.394 102.223 844.658 Q104.538 842.922 104.538 839.612 Q104.538 836.556 102.385 834.843 Q100.256 833.107 96.4363 833.107 L92.4085 833.107 L92.4085 829.264 L96.6215 829.264 Q100.071 829.264 101.899 827.899 Q103.728 826.51 103.728 823.917 Q103.728 821.255 101.83 819.843 Q99.9548 818.408 96.4363 818.408 Q94.515 818.408 92.316 818.825 Q90.1169 819.241 87.478 820.121 L87.478 815.954 Q90.14 815.214 92.4548 814.843 Q94.7928 814.473 96.853 814.473 Q102.177 814.473 105.279 816.903 Q108.381 819.311 108.381 823.431 Q108.381 826.301 106.737 828.292 Q105.094 830.26 102.061 831.024 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M49.0754 754.399 L78.7512 754.399 L78.7512 758.334 L49.0754 758.334 L49.0754 754.399 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M92.8715 767.293 L109.191 767.293 L109.191 771.228 L87.2465 771.228 L87.2465 767.293 Q89.9086 764.538 94.4919 759.908 Q99.0983 755.256 100.279 753.913 Q102.524 751.39 103.404 749.654 Q104.307 747.895 104.307 746.205 Q104.307 743.45 102.362 741.714 Q100.441 739.978 97.3391 739.978 Q95.14 739.978 92.6863 740.742 Q90.2558 741.506 87.478 743.057 L87.478 738.334 Q90.3021 737.2 92.7558 736.621 Q95.2095 736.043 97.2465 736.043 Q102.617 736.043 105.811 738.728 Q109.006 741.413 109.006 745.904 Q109.006 748.033 108.196 749.955 Q107.408 751.853 105.302 754.445 Q104.723 755.117 101.621 758.334 Q98.5196 761.529 92.8715 767.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M48.7051 675.969 L78.3808 675.969 L78.3808 679.904 L48.7051 679.904 L48.7051 675.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M89.2836 688.862 L96.9224 688.862 L96.9224 662.497 L88.6123 664.164 L88.6123 659.904 L96.8761 658.238 L101.552 658.238 L101.552 688.862 L109.191 688.862 L109.191 692.798 L89.2836 692.798 L89.2836 688.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M97.2465 582.886 Q93.6354 582.886 91.8067 586.451 Q90.0012 589.993 90.0012 597.122 Q90.0012 604.229 91.8067 607.794 Q93.6354 611.335 97.2465 611.335 Q100.881 611.335 102.686 607.794 Q104.515 604.229 104.515 597.122 Q104.515 589.993 102.686 586.451 Q100.881 582.886 97.2465 582.886 M97.2465 579.183 Q103.057 579.183 106.112 583.789 Q109.191 588.372 109.191 597.122 Q109.191 605.849 106.112 610.456 Q103.057 615.039 97.2465 615.039 Q91.4363 615.039 88.3576 610.456 Q85.3021 605.849 85.3021 597.122 Q85.3021 588.372 88.3576 583.789 Q91.4363 579.183 97.2465 579.183 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M89.2836 532.002 L96.9224 532.002 L96.9224 505.637 L88.6123 507.303 L88.6123 503.044 L96.8761 501.378 L101.552 501.378 L101.552 532.002 L109.191 532.002 L109.191 535.938 L89.2836 535.938 L89.2836 532.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M92.8715 453.572 L109.191 453.572 L109.191 457.507 L87.2465 457.507 L87.2465 453.572 Q89.9086 450.818 94.4919 446.188 Q99.0983 441.535 100.279 440.193 Q102.524 437.67 103.404 435.933 Q104.307 434.174 104.307 432.484 Q104.307 429.73 102.362 427.994 Q100.441 426.258 97.3391 426.258 Q95.14 426.258 92.6863 427.021 Q90.2558 427.785 87.478 429.336 L87.478 424.614 Q90.3021 423.48 92.7558 422.901 Q95.2095 422.322 97.2465 422.322 Q102.617 422.322 105.811 425.008 Q109.006 427.693 109.006 432.184 Q109.006 434.313 108.196 436.234 Q107.408 438.133 105.302 440.725 Q104.723 441.396 101.621 444.614 Q98.5196 447.808 92.8715 453.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M102.061 360.443 Q105.418 361.161 107.293 363.429 Q109.191 365.698 109.191 369.031 Q109.191 374.147 105.672 376.948 Q102.154 379.749 95.6724 379.749 Q93.4965 379.749 91.1817 379.309 Q88.89 378.892 86.4364 378.036 L86.4364 373.522 Q88.3808 374.656 90.6956 375.235 Q93.0104 375.814 95.5335 375.814 Q99.9317 375.814 102.223 374.077 Q104.538 372.341 104.538 369.031 Q104.538 365.976 102.385 364.263 Q100.256 362.527 96.4363 362.527 L92.4085 362.527 L92.4085 358.684 L96.6215 358.684 Q100.071 358.684 101.899 357.318 Q103.728 355.929 103.728 353.337 Q103.728 350.675 101.83 349.263 Q99.9548 347.828 96.4363 347.828 Q94.515 347.828 92.316 348.244 Q90.1169 348.661 87.478 349.54 L87.478 345.374 Q90.14 344.633 92.4548 344.263 Q94.7928 343.892 96.853 343.892 Q102.177 343.892 105.279 346.323 Q108.381 348.73 108.381 352.851 Q108.381 355.721 106.737 357.712 Q105.094 359.679 102.061 360.443 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M99.6076 270.161 L87.8021 288.61 L99.6076 288.61 L99.6076 270.161 M98.3807 266.087 L104.26 266.087 L104.26 288.61 L109.191 288.61 L109.191 292.499 L104.26 292.499 L104.26 300.647 L99.6076 300.647 L99.6076 292.499 L84.0058 292.499 L84.0058 287.985 L98.3807 266.087 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M88.2882 187.657 L106.645 187.657 L106.645 191.592 L92.5706 191.592 L92.5706 200.065 Q93.5891 199.717 94.6076 199.555 Q95.6261 199.37 96.6446 199.37 Q102.432 199.37 105.811 202.541 Q109.191 205.713 109.191 211.129 Q109.191 216.708 105.719 219.81 Q102.246 222.889 95.927 222.889 Q93.7511 222.889 91.4826 222.518 Q89.2373 222.148 86.8299 221.407 L86.8299 216.708 Q88.9132 217.842 91.1354 218.398 Q93.3576 218.953 95.8345 218.953 Q99.8391 218.953 102.177 216.847 Q104.515 214.74 104.515 211.129 Q104.515 207.518 102.177 205.412 Q99.8391 203.305 95.8345 203.305 Q93.9595 203.305 92.0845 203.722 Q90.2326 204.139 88.2882 205.018 L88.2882 187.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M97.6632 124.644 Q94.515 124.644 92.6632 126.797 Q90.8345 128.949 90.8345 132.699 Q90.8345 136.426 92.6632 138.602 Q94.515 140.755 97.6632 140.755 Q100.811 140.755 102.64 138.602 Q104.492 136.426 104.492 132.699 Q104.492 128.949 102.64 126.797 Q100.811 124.644 97.6632 124.644 M106.946 109.991 L106.946 114.25 Q105.186 113.417 103.381 112.977 Q101.598 112.537 99.8391 112.537 Q95.2095 112.537 92.7558 115.662 Q90.3252 118.787 89.978 125.107 Q91.3437 123.093 93.4039 122.028 Q95.4641 120.94 97.9409 120.94 Q103.149 120.94 106.158 124.111 Q109.191 127.259 109.191 132.699 Q109.191 138.023 106.043 141.241 Q102.895 144.458 97.6632 144.458 Q91.6678 144.458 88.4965 139.875 Q85.3253 135.269 85.3253 126.542 Q85.3253 118.347 89.2141 113.486 Q93.103 108.602 99.6539 108.602 Q101.413 108.602 103.196 108.949 Q105.001 109.297 106.946 109.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M173.008 10.0578 L173.008 15.758 Q169.68 14.1666 166.729 13.3853 Q163.777 12.6041 161.029 12.6041 Q156.254 12.6041 153.65 14.4559 Q151.075 16.3078 151.075 19.7221 Q151.075 22.5867 152.782 24.0624 Q154.518 25.5091 159.321 26.4061 L162.851 27.1295 Q169.391 28.3737 172.487 31.5276 Q175.612 34.6526 175.612 39.9188 Q175.612 46.1977 171.387 49.4384 Q167.192 52.6791 159.061 52.6791 Q155.994 52.6791 152.522 51.9847 Q149.078 51.2902 145.375 49.9303 L145.375 43.9118 Q148.934 45.9083 152.348 46.921 Q155.762 47.9338 159.061 47.9338 Q164.067 47.9338 166.787 45.9662 Q169.507 43.9986 169.507 40.3528 Q169.507 37.1699 167.539 35.376 Q165.6 33.582 161.144 32.685 L157.585 31.9906 Q151.046 30.6885 148.124 27.9107 Q145.201 25.133 145.201 20.1851 Q145.201 14.4559 149.223 11.1573 Q153.274 7.85875 160.363 7.85875 Q163.401 7.85875 166.555 8.40852 Q169.709 8.95829 173.008 10.0578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M212.215 34.3054 L212.215 36.9095 L187.736 36.9095 Q188.083 42.4072 191.034 45.3007 Q194.014 48.1653 199.31 48.1653 Q202.377 48.1653 205.241 47.4129 Q208.135 46.6606 210.97 45.156 L210.97 50.1907 Q208.106 51.406 205.097 52.0425 Q202.087 52.6791 198.991 52.6791 Q191.237 52.6791 186.694 48.1653 Q182.18 43.6514 182.18 35.9547 Q182.18 27.9975 186.462 23.339 Q190.774 18.6515 198.065 18.6515 Q204.605 18.6515 208.395 22.876 Q212.215 27.0716 212.215 34.3054 M206.891 32.7429 Q206.833 28.3737 204.431 25.7695 Q202.058 23.1654 198.123 23.1654 Q193.667 23.1654 190.976 25.6827 Q188.314 28.2001 187.909 32.7718 L206.891 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M244.275 20.677 L244.275 25.6538 Q242.018 24.4096 239.732 23.802 Q237.475 23.1654 235.16 23.1654 Q229.981 23.1654 227.116 26.464 Q224.252 29.7336 224.252 35.6653 Q224.252 41.597 227.116 44.8956 Q229.981 48.1653 235.16 48.1653 Q237.475 48.1653 239.732 47.5576 Q242.018 46.921 244.275 45.6768 L244.275 50.5958 Q242.047 51.6375 239.645 52.1583 Q237.272 52.6791 234.581 52.6791 Q227.261 52.6791 222.95 48.0784 Q218.638 43.4778 218.638 35.6653 Q218.638 27.7371 222.978 23.1943 Q227.348 18.6515 234.929 18.6515 Q237.388 18.6515 239.732 19.1724 Q242.076 19.6642 244.275 20.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M266.092 23.1654 Q261.809 23.1654 259.321 26.5218 Q256.832 29.8494 256.832 35.6653 Q256.832 41.4813 259.292 44.8377 Q261.78 48.1653 266.092 48.1653 Q270.345 48.1653 272.833 44.8088 Q275.322 41.4523 275.322 35.6653 Q275.322 29.9072 272.833 26.5508 Q270.345 23.1654 266.092 23.1654 M266.092 18.6515 Q273.036 18.6515 277 23.1654 Q280.964 27.6792 280.964 35.6653 Q280.964 43.6225 277 48.1653 Q273.036 52.6791 266.092 52.6791 Q259.118 52.6791 255.154 48.1653 Q251.219 43.6225 251.219 35.6653 Q251.219 27.6792 255.154 23.1654 Q259.118 18.6515 266.092 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M316.728 32.2799 L316.728 51.84 L311.404 51.84 L311.404 32.4535 Q311.404 27.8529 309.61 25.567 Q307.816 23.2811 304.228 23.2811 Q299.917 23.2811 297.428 26.03 Q294.94 28.7788 294.94 33.5241 L294.94 51.84 L289.587 51.84 L289.587 19.4328 L294.94 19.4328 L294.94 24.4675 Q296.85 21.545 299.425 20.0983 Q302.029 18.6515 305.414 18.6515 Q310.999 18.6515 313.863 22.1237 Q316.728 25.567 316.728 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M348.672 24.3517 L348.672 6.81709 L353.996 6.81709 L353.996 51.84 L348.672 51.84 L348.672 46.9789 Q346.994 49.8724 344.419 51.2902 Q341.872 52.6791 338.285 52.6791 Q332.411 52.6791 328.707 47.9916 Q325.032 43.3042 325.032 35.6653 Q325.032 28.0265 328.707 23.339 Q332.411 18.6515 338.285 18.6515 Q341.872 18.6515 344.419 20.0693 Q346.994 21.4582 348.672 24.3517 M330.53 35.6653 Q330.53 41.5391 332.932 44.8956 Q335.362 48.2231 339.587 48.2231 Q343.811 48.2231 346.242 44.8956 Q348.672 41.5391 348.672 35.6653 Q348.672 29.7915 346.242 26.464 Q343.811 23.1075 339.587 23.1075 Q335.362 23.1075 332.932 26.464 Q330.53 29.7915 330.53 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M382.729 12.6041 Q376.363 12.6041 372.601 17.3494 Q368.869 22.0948 368.869 30.2834 Q368.869 38.4431 372.601 43.1884 Q376.363 47.9338 382.729 47.9338 Q389.094 47.9338 392.798 43.1884 Q396.531 38.4431 396.531 30.2834 Q396.531 22.0948 392.798 17.3494 Q389.094 12.6041 382.729 12.6041 M382.729 7.85875 Q391.814 7.85875 397.254 13.964 Q402.694 20.0404 402.694 30.2834 Q402.694 40.4975 397.254 46.6028 Q391.814 52.6791 382.729 52.6791 Q373.614 52.6791 368.145 46.6028 Q362.706 40.5264 362.706 30.2834 Q362.706 20.0404 368.145 13.964 Q373.614 7.85875 382.729 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M430.385 24.4096 Q429.488 23.8888 428.417 23.6573 Q427.375 23.3969 426.102 23.3969 Q421.588 23.3969 419.158 26.3482 Q416.756 29.2707 416.756 34.7683 L416.756 51.84 L411.403 51.84 L411.403 19.4328 L416.756 19.4328 L416.756 24.4675 Q418.435 21.5161 421.126 20.0983 Q423.816 18.6515 427.665 18.6515 Q428.215 18.6515 428.88 18.7383 Q429.546 18.7962 430.356 18.9409 L430.385 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M456.253 24.3517 L456.253 6.81709 L461.577 6.81709 L461.577 51.84 L456.253 51.84 L456.253 46.9789 Q454.574 49.8724 451.999 51.2902 Q449.453 52.6791 445.865 52.6791 Q439.991 52.6791 436.287 47.9916 Q432.613 43.3042 432.613 35.6653 Q432.613 28.0265 436.287 23.339 Q439.991 18.6515 445.865 18.6515 Q449.453 18.6515 451.999 20.0693 Q454.574 21.4582 456.253 24.3517 M438.11 35.6653 Q438.11 41.5391 440.512 44.8956 Q442.943 48.2231 447.167 48.2231 Q451.392 48.2231 453.822 44.8956 Q456.253 41.5391 456.253 35.6653 Q456.253 29.7915 453.822 26.464 Q451.392 23.1075 447.167 23.1075 Q442.943 23.1075 440.512 26.464 Q438.11 29.7915 438.11 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M500.263 34.3054 L500.263 36.9095 L475.784 36.9095 Q476.131 42.4072 479.082 45.3007 Q482.063 48.1653 487.358 48.1653 Q490.425 48.1653 493.289 47.4129 Q496.183 46.6606 499.019 45.156 L499.019 50.1907 Q496.154 51.406 493.145 52.0425 Q490.136 52.6791 487.04 52.6791 Q479.285 52.6791 474.742 48.1653 Q470.228 43.6514 470.228 35.9547 Q470.228 27.9975 474.511 23.339 Q478.822 18.6515 486.114 18.6515 Q492.653 18.6515 496.443 22.876 Q500.263 27.0716 500.263 34.3054 M494.939 32.7429 Q494.881 28.3737 492.479 25.7695 Q490.107 23.1654 486.171 23.1654 Q481.715 23.1654 479.025 25.6827 Q476.362 28.2001 475.957 32.7718 L494.939 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M527.78 24.4096 Q526.883 23.8888 525.812 23.6573 Q524.771 23.3969 523.498 23.3969 Q518.984 23.3969 516.553 26.3482 Q514.152 29.2707 514.152 34.7683 L514.152 51.84 L508.799 51.84 L508.799 19.4328 L514.152 19.4328 L514.152 24.4675 Q515.83 21.5161 518.521 20.0983 Q521.212 18.6515 525.06 18.6515 Q525.61 18.6515 526.275 18.7383 Q526.941 18.7962 527.751 18.9409 L527.78 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M551.131 12.6041 Q544.765 12.6041 541.003 17.3494 Q537.271 22.0948 537.271 30.2834 Q537.271 38.4431 541.003 43.1884 Q544.765 47.9338 551.131 47.9338 Q557.496 47.9338 561.2 43.1884 Q564.933 38.4431 564.933 30.2834 Q564.933 22.0948 561.2 17.3494 Q557.496 12.6041 551.131 12.6041 M551.131 7.85875 Q560.216 7.85875 565.656 13.964 Q571.096 20.0404 571.096 30.2834 Q571.096 40.4975 565.656 46.6028 Q560.216 52.6791 551.131 52.6791 Q542.016 52.6791 536.547 46.6028 Q531.108 40.5264 531.108 30.2834 Q531.108 20.0404 536.547 13.964 Q542.016 7.85875 551.131 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M586.084 13.4432 L586.084 47.0368 L593.144 47.0368 Q602.085 47.0368 606.223 42.9859 Q610.39 38.935 610.39 30.1966 Q610.39 21.5161 606.223 17.4941 Q602.085 13.4432 593.144 13.4432 L586.084 13.4432 M580.239 8.64 L592.247 8.64 Q604.805 8.64 610.679 13.8772 Q616.553 19.0855 616.553 30.1966 Q616.553 41.3655 610.65 46.6028 Q604.747 51.84 592.247 51.84 L580.239 51.84 L580.239 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M625.87 8.64 L653.184 8.64 L653.184 13.559 L631.715 13.559 L631.715 26.3482 L652.287 26.3482 L652.287 31.2672 L631.715 31.2672 L631.715 46.921 L653.705 46.921 L653.705 51.84 L625.87 51.84 L625.87 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M669.157 13.4432 L669.157 29.6758 L676.506 29.6758 Q680.586 29.6758 682.814 27.5635 Q685.042 25.4513 685.042 21.545 Q685.042 17.6677 682.814 15.5555 Q680.586 13.4432 676.506 13.4432 L669.157 13.4432 M663.312 8.64 L676.506 8.64 Q683.769 8.64 687.472 11.9386 Q691.205 15.2083 691.205 21.545 Q691.205 27.9397 687.472 31.2093 Q683.769 34.479 676.506 34.479 L669.157 34.479 L669.157 51.84 L663.312 51.84 L663.312 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M716.552 24.4096 Q715.655 23.8888 714.585 23.6573 Q713.543 23.3969 712.27 23.3969 Q707.756 23.3969 705.325 26.3482 Q702.924 29.2707 702.924 34.7683 L702.924 51.84 L697.571 51.84 L697.571 19.4328 L702.924 19.4328 L702.924 24.4675 Q704.602 21.5161 707.293 20.0983 Q709.984 18.6515 713.832 18.6515 Q714.382 18.6515 715.048 18.7383 Q715.713 18.7962 716.523 18.9409 L716.552 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M733.392 23.1654 Q729.11 23.1654 726.622 26.5218 Q724.133 29.8494 724.133 35.6653 Q724.133 41.4813 726.593 44.8377 Q729.081 48.1653 733.392 48.1653 Q737.646 48.1653 740.134 44.8088 Q742.623 41.4523 742.623 35.6653 Q742.623 29.9072 740.134 26.5508 Q737.646 23.1654 733.392 23.1654 M733.392 18.6515 Q740.337 18.6515 744.301 23.1654 Q748.265 27.6792 748.265 35.6653 Q748.265 43.6225 744.301 48.1653 Q740.337 52.6791 733.392 52.6791 Q726.419 52.6791 722.455 48.1653 Q718.52 43.6225 718.52 35.6653 Q718.52 27.6792 722.455 23.1654 Q726.419 18.6515 733.392 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M780.354 35.6653 Q780.354 29.7915 777.923 26.464 Q775.522 23.1075 771.297 23.1075 Q767.073 23.1075 764.642 26.464 Q762.241 29.7915 762.241 35.6653 Q762.241 41.5391 764.642 44.8956 Q767.073 48.2231 771.297 48.2231 Q775.522 48.2231 777.923 44.8956 Q780.354 41.5391 780.354 35.6653 M762.241 24.3517 Q763.919 21.4582 766.465 20.0693 Q769.04 18.6515 772.599 18.6515 Q778.502 18.6515 782.177 23.339 Q785.881 28.0265 785.881 35.6653 Q785.881 43.3042 782.177 47.9916 Q778.502 52.6791 772.599 52.6791 Q769.04 52.6791 766.465 51.2902 Q763.919 49.8724 762.241 46.9789 L762.241 51.84 L756.888 51.84 L756.888 6.81709 L762.241 6.81709 L762.241 24.3517 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M794.706 6.81709 L800.03 6.81709 L800.03 51.84 L794.706 51.84 L794.706 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M838.889 34.3054 L838.889 36.9095 L814.41 36.9095 Q814.758 42.4072 817.709 45.3007 Q820.689 48.1653 825.984 48.1653 Q829.052 48.1653 831.916 47.4129 Q834.81 46.6606 837.645 45.156 L837.645 50.1907 Q834.781 51.406 831.771 52.0425 Q828.762 52.6791 825.666 52.6791 Q817.912 52.6791 813.369 48.1653 Q808.855 43.6514 808.855 35.9547 Q808.855 27.9975 813.137 23.339 Q817.449 18.6515 824.74 18.6515 Q831.28 18.6515 835.07 22.876 Q838.889 27.0716 838.889 34.3054 M833.565 32.7429 Q833.508 28.3737 831.106 25.7695 Q828.733 23.1654 824.798 23.1654 Q820.342 23.1654 817.651 25.6827 Q814.989 28.2001 814.584 32.7718 L833.565 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M872.859 25.6538 Q874.856 22.0659 877.633 20.3587 Q880.411 18.6515 884.173 18.6515 Q889.236 18.6515 891.985 22.2105 Q894.734 25.7406 894.734 32.2799 L894.734 51.84 L889.381 51.84 L889.381 32.4535 Q889.381 27.795 887.732 25.5381 Q886.083 23.2811 882.697 23.2811 Q878.559 23.2811 876.158 26.03 Q873.756 28.7788 873.756 33.5241 L873.756 51.84 L868.403 51.84 L868.403 32.4535 Q868.403 27.7661 866.754 25.5381 Q865.105 23.2811 861.661 23.2811 Q857.582 23.2811 855.18 26.0589 Q852.778 28.8077 852.778 33.5241 L852.778 51.84 L847.425 51.84 L847.425 19.4328 L852.778 19.4328 L852.778 24.4675 Q854.601 21.4872 857.147 20.0693 Q859.694 18.6515 863.195 18.6515 Q866.725 18.6515 869.184 20.4455 Q871.673 22.2395 872.859 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M921.094 19.4328 L926.418 19.4328 L933.073 44.722 L939.699 19.4328 L945.978 19.4328 L952.633 44.722 L959.259 19.4328 L964.583 19.4328 L956.105 51.84 L949.826 51.84 L942.853 25.2776 L935.851 51.84 L929.572 51.84 L921.094 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M972.656 19.4328 L977.98 19.4328 L977.98 51.84 L972.656 51.84 L972.656 19.4328 M972.656 6.81709 L977.98 6.81709 L977.98 13.559 L972.656 13.559 L972.656 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M994.386 10.2314 L994.386 19.4328 L1005.35 19.4328 L1005.35 23.5705 L994.386 23.5705 L994.386 41.163 Q994.386 45.1271 995.457 46.2555 Q996.556 47.384 999.884 47.384 L1005.35 47.384 L1005.35 51.84 L999.884 51.84 Q993.721 51.84 991.377 49.5541 Q989.033 47.2393 989.033 41.163 L989.033 23.5705 L985.127 23.5705 L985.127 19.4328 L989.033 19.4328 L989.033 10.2314 L994.386 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1039.29 32.2799 L1039.29 51.84 L1033.97 51.84 L1033.97 32.4535 Q1033.97 27.8529 1032.18 25.567 Q1030.38 23.2811 1026.79 23.2811 Q1022.48 23.2811 1019.99 26.03 Q1017.51 28.7788 1017.51 33.5241 L1017.51 51.84 L1012.15 51.84 L1012.15 6.81709 L1017.51 6.81709 L1017.51 24.4675 Q1019.42 21.545 1021.99 20.0983 Q1024.59 18.6515 1027.98 18.6515 Q1033.56 18.6515 1036.43 22.1237 Q1039.29 25.567 1039.29 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1090.07 24.3517 L1090.07 6.81709 L1095.4 6.81709 L1095.4 51.84 L1090.07 51.84 L1090.07 46.9789 Q1088.4 49.8724 1085.82 51.2902 Q1083.27 52.6791 1079.69 52.6791 Q1073.81 52.6791 1070.11 47.9916 Q1066.43 43.3042 1066.43 35.6653 Q1066.43 28.0265 1070.11 23.339 Q1073.81 18.6515 1079.69 18.6515 Q1083.27 18.6515 1085.82 20.0693 Q1088.4 21.4582 1090.07 24.3517 M1071.93 35.6653 Q1071.93 41.5391 1074.33 44.8956 Q1076.76 48.2231 1080.99 48.2231 Q1085.21 48.2231 1087.64 44.8956 Q1090.07 41.5391 1090.07 35.6653 Q1090.07 29.7915 1087.64 26.464 Q1085.21 23.1075 1080.99 23.1075 Q1076.76 23.1075 1074.33 26.464 Q1071.93 29.7915 1071.93 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1111.63 10.2314 L1111.63 19.4328 L1122.6 19.4328 L1122.6 23.5705 L1111.63 23.5705 L1111.63 41.163 Q1111.63 45.1271 1112.7 46.2555 Q1113.8 47.384 1117.13 47.384 L1122.6 47.384 L1122.6 51.84 L1117.13 51.84 Q1110.97 51.84 1108.62 49.5541 Q1106.28 47.2393 1106.28 41.163 L1106.28 23.5705 L1102.37 23.5705 L1102.37 19.4328 L1106.28 19.4328 L1106.28 10.2314 L1111.63 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1154.83 25.6538 Q1156.83 22.0659 1159.61 20.3587 Q1162.38 18.6515 1166.14 18.6515 Q1171.21 18.6515 1173.96 22.2105 Q1176.71 25.7406 1176.71 32.2799 L1176.71 51.84 L1171.35 51.84 L1171.35 32.4535 Q1171.35 27.795 1169.7 25.5381 Q1168.05 23.2811 1164.67 23.2811 Q1160.53 23.2811 1158.13 26.03 Q1155.73 28.7788 1155.73 33.5241 L1155.73 51.84 L1150.38 51.84 L1150.38 32.4535 Q1150.38 27.7661 1148.73 25.5381 Q1147.08 23.2811 1143.63 23.2811 Q1139.55 23.2811 1137.15 26.0589 Q1134.75 28.8077 1134.75 33.5241 L1134.75 51.84 L1129.4 51.84 L1129.4 19.4328 L1134.75 19.4328 L1134.75 24.4675 Q1136.57 21.4872 1139.12 20.0693 Q1141.67 18.6515 1145.17 18.6515 Q1148.7 18.6515 1151.16 20.4455 Q1153.64 22.2395 1154.83 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1202.05 35.5496 Q1195.6 35.5496 1193.11 37.0253 Q1190.62 38.501 1190.62 42.06 Q1190.62 44.8956 1192.48 46.5738 Q1194.36 48.2231 1197.57 48.2231 Q1202 48.2231 1204.66 45.0981 Q1207.35 41.9442 1207.35 36.7359 L1207.35 35.5496 L1202.05 35.5496 M1212.67 33.3505 L1212.67 51.84 L1207.35 51.84 L1207.35 46.921 Q1205.53 49.8724 1202.81 51.2902 Q1200.09 52.6791 1196.15 52.6791 Q1191.17 52.6791 1188.22 49.9014 Q1185.3 47.0947 1185.3 42.4072 Q1185.3 36.9385 1188.95 34.1607 Q1192.62 31.3829 1199.88 31.3829 L1207.35 31.3829 L1207.35 30.8621 Q1207.35 27.1874 1204.92 25.1908 Q1202.52 23.1654 1198.15 23.1654 Q1195.37 23.1654 1192.74 23.8309 Q1190.1 24.4964 1187.67 25.8274 L1187.67 20.9085 Q1190.59 19.78 1193.34 19.2302 Q1196.09 18.6515 1198.7 18.6515 Q1205.73 18.6515 1209.2 22.2973 Q1212.67 25.9431 1212.67 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1250.58 19.4328 L1238.86 35.2024 L1251.18 51.84 L1244.91 51.84 L1235.47 39.1086 L1226.04 51.84 L1219.76 51.84 L1232.35 34.8841 L1220.83 19.4328 L1227.11 19.4328 L1235.7 30.9778 L1244.3 19.4328 L1250.58 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1278.24 24.9304 L1315.33 24.9304 L1315.33 29.7915 L1278.24 29.7915 L1278.24 24.9304 M1278.24 36.7359 L1315.33 36.7359 L1315.33 41.6549 L1278.24 41.6549 L1278.24 36.7359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1359.29 12.4884 Q1354.77 12.4884 1352.49 16.9444 Q1350.23 21.3714 1350.23 30.2834 Q1350.23 39.1665 1352.49 43.6225 Q1354.77 48.0495 1359.29 48.0495 Q1363.83 48.0495 1366.09 43.6225 Q1368.37 39.1665 1368.37 30.2834 Q1368.37 21.3714 1366.09 16.9444 Q1363.83 12.4884 1359.29 12.4884 M1359.29 7.85875 Q1366.55 7.85875 1370.37 13.6168 Q1374.22 19.346 1374.22 30.2834 Q1374.22 41.1919 1370.37 46.95 Q1366.55 52.6791 1359.29 52.6791 Q1352.02 52.6791 1348.17 46.95 Q1344.36 41.1919 1344.36 30.2834 Q1344.36 19.346 1348.17 13.6168 Q1352.02 7.85875 1359.29 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1384.49 44.4905 L1390.59 44.4905 L1390.59 51.84 L1384.49 51.84 L1384.49 44.4905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1415.83 12.4884 Q1411.31 12.4884 1409.03 16.9444 Q1406.77 21.3714 1406.77 30.2834 Q1406.77 39.1665 1409.03 43.6225 Q1411.31 48.0495 1415.83 48.0495 Q1420.37 48.0495 1422.62 43.6225 Q1424.91 39.1665 1424.91 30.2834 Q1424.91 21.3714 1422.62 16.9444 Q1420.37 12.4884 1415.83 12.4884 M1415.83 7.85875 Q1423.09 7.85875 1426.91 13.6168 Q1430.76 19.346 1430.76 30.2834 Q1430.76 41.1919 1426.91 46.95 Q1423.09 52.6791 1415.83 52.6791 Q1408.56 52.6791 1404.71 46.95 Q1400.89 41.1919 1400.89 30.2834 Q1400.89 19.346 1404.71 13.6168 Q1408.56 7.85875 1415.83 7.85875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1441.09 8.64 L1464.03 8.64 L1464.03 13.559 L1446.44 13.559 L1446.44 24.1492 Q1447.71 23.7152 1448.98 23.5126 Q1450.26 23.2811 1451.53 23.2811 Q1458.76 23.2811 1462.99 27.2452 Q1467.21 31.2093 1467.21 37.9801 Q1467.21 44.9535 1462.87 48.8308 Q1458.53 52.6791 1450.63 52.6791 Q1447.91 52.6791 1445.08 52.2162 Q1442.27 51.7532 1439.26 50.8273 L1439.26 44.9535 Q1441.87 46.3713 1444.64 47.0657 Q1447.42 47.7602 1450.52 47.7602 Q1455.52 47.7602 1458.45 45.1271 Q1461.37 42.494 1461.37 37.9801 Q1461.37 33.4663 1458.45 30.8332 Q1455.52 28.2001 1450.52 28.2001 Q1448.17 28.2001 1445.83 28.7209 Q1443.52 29.2417 1441.09 30.3413 L1441.09 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip972)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.907 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.595 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.261 656.811,665.751 \n 659.26,638.139 661.709,609.161 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.396 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.307 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.558 769.471,483.174 771.92,506.521 774.369,532.377 776.818,560.242 779.267,589.345 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.05 791.513,721.115 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.469 872.334,796.636 874.783,787.244 877.232,776.03 \n 879.681,762.718 882.13,747.036 884.579,728.752 887.028,707.729 889.477,683.992 891.927,657.802 894.376,629.699 896.825,600.493 899.274,571.169 901.723,542.731 \n 904.172,516.039 906.621,491.702 909.07,470.041 911.519,451.131 913.969,434.865 916.418,421.028 918.867,409.354 921.316,399.564 923.765,391.392 926.214,384.596 \n 928.663,378.962 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.574 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.772 989.891,398.819 992.34,408.463 994.79,419.969 997.239,433.613 999.688,449.666 \n 1002.14,468.348 1004.59,489.778 1007.04,513.899 1009.48,540.412 1011.93,568.734 1014.38,598.022 1016.83,627.277 1019.28,655.506 1021.73,681.882 1024.18,705.839 \n 1026.63,727.093 1029.08,745.604 1031.53,761.496 1033.98,774.997 1036.42,786.376 1038.87,795.911 1041.32,803.866 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.203 1053.57,827.249 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.598 \n 1100.1,814.886 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.139 1112.35,772.336 1114.8,758.353 1117.25,741.925 1119.69,722.842 1122.14,701.007 \n 1124.59,676.508 1127.04,649.684 1129.49,621.162 1131.94,591.815 1134.39,562.651 1136.84,534.648 1139.29,508.6 1141.74,485.03 1144.19,464.182 1146.63,446.069 \n 1149.08,430.545 1151.53,417.374 1153.98,406.284 1156.43,396.998 1158.88,389.256 1161.33,382.823 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.058 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.216 1217.66,380.063 1220.11,385.926 \n 1222.56,392.993 1225.01,401.485 1227.46,411.649 1229.9,423.756 1232.35,438.084 1234.8,454.893 1237.25,474.379 1239.7,496.617 1242.15,521.487 1244.6,548.607 \n 1247.05,577.311 1249.5,606.696 1251.95,635.747 1254.4,663.506 1256.85,689.214 1259.29,712.391 1261.74,732.833 1264.19,750.552 1266.64,765.713 1269.09,778.56 \n 1271.54,789.366 1273.99,798.409 1276.44,805.945 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.166 1288.68,828.034 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.223 1313.17,835.743 1315.62,834.988 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.412 1332.77,818.302 1335.22,813.316 1337.67,807.288 1340.12,800.025 1342.56,791.303 \n 1345.01,780.87 1347.46,768.453 1349.91,753.775 1352.36,736.582 1354.81,716.691 1357.26,694.051 1359.71,668.819 1362.16,641.417 1364.61,612.551 1367.06,583.152 \n 1369.5,554.234 1371.95,526.736 1374.4,501.378 1376.85,478.597 1379.3,458.562 1381.75,441.232 1384.2,426.429 1386.65,413.901 1389.1,403.371 1391.55,394.566 \n 1394,387.233 1396.45,381.146 1398.89,376.11 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.515 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<polyline clip-path=\"url(#clip972)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 193.928,597.088 196.377,567.816 198.826,539.54 201.275,513.095 203.724,489.056 206.173,467.714 208.622,449.117 211.071,433.145 213.521,419.572 215.97,408.13 \n 218.419,398.541 220.868,390.54 223.317,383.889 225.766,378.377 228.215,373.825 230.664,370.08 233.114,367.014 235.563,364.522 238.012,362.517 240.461,360.929 \n 242.91,359.702 245.359,358.794 247.808,358.172 250.257,357.814 252.707,357.709 255.156,357.851 257.605,358.246 260.054,358.909 262.503,359.862 264.952,361.139 \n 267.401,362.784 269.85,364.857 272.299,367.427 274.749,370.586 277.198,374.442 279.647,379.125 282.096,384.793 284.545,391.629 286.994,399.848 289.443,409.694 \n 291.892,421.432 294.342,435.342 296.791,451.689 299.24,470.685 301.689,492.433 304.138,516.852 306.587,543.609 309.036,572.09 311.485,601.426 313.934,630.612 \n 316.384,658.665 318.833,684.784 321.282,708.438 323.731,729.373 326.18,747.572 328.629,763.175 331.078,776.416 333.527,787.568 335.977,796.907 338.426,804.695 \n 340.875,811.166 343.324,816.525 345.773,820.95 348.222,824.587 350.671,827.562 353.12,829.978 355.569,831.917 358.019,833.449 360.468,834.626 362.917,835.49 \n 365.366,836.072 367.815,836.392 370.264,836.461 372.713,836.282 375.162,835.848 377.612,835.145 380.061,834.146 382.51,832.818 384.959,831.114 387.408,828.973 \n 389.857,826.322 392.306,823.067 394.755,819.099 397.205,814.281 399.654,808.453 402.103,801.427 404.552,792.984 407.001,782.877 409.45,770.836 411.899,756.583 \n 414.348,739.857 416.797,720.458 419.247,698.306 421.696,673.515 424.145,646.458 426.594,617.792 429.043,588.413 431.492,559.336 433.941,531.523 436.39,505.741 \n 438.84,482.478 441.289,461.95 443.738,444.145 446.187,428.906 448.636,415.991 451.085,405.123 453.534,396.029 455.983,388.449 458.432,382.154 460.882,376.943 \n 463.331,372.643 465.78,369.111 468.229,366.224 470.678,363.884 473.127,362.008 475.576,360.532 478.025,359.403 480.475,358.582 482.924,358.04 485.373,357.757 \n 487.822,357.725 490.271,357.941 492.72,358.413 495.169,359.158 497.618,360.203 500.068,361.583 502.517,363.348 504.966,365.559 507.415,368.293 509.864,371.645 \n 512.313,375.73 514.762,380.686 517.211,386.677 519.66,393.898 522.11,402.57 524.559,412.945 527.008,425.294 529.457,439.896 531.906,457.006 534.355,476.809 \n 536.804,499.363 539.253,524.518 541.703,551.86 544.152,580.692 546.601,610.091 549.05,639.039 551.499,666.594 553.948,692.029 556.397,714.896 558.846,735.018 \n 561.295,752.432 563.745,767.312 566.194,779.908 568.643,790.497 571.092,799.353 573.541,806.729 575.99,812.853 578.439,817.92 580.888,822.098 583.338,825.528 \n 585.787,828.328 588.236,830.596 590.685,832.408 593.134,833.831 595.583,834.912 598.032,835.69 600.481,836.193 602.931,836.438 605.38,836.434 607.829,836.181 \n 610.278,835.67 612.727,834.882 615.176,833.791 617.625,832.357 620.074,830.531 622.523,828.248 624.973,825.43 627.422,821.977 629.871,817.774 632.32,812.676 \n 634.769,806.516 637.218,799.096 639.667,790.19 642.116,779.541 644.566,766.877 647.015,751.92 649.464,734.423 651.913,714.214 654.362,691.262 656.811,665.751 \n 659.26,638.139 661.709,609.162 664.158,579.765 666.608,550.967 669.057,523.685 671.506,498.607 673.955,476.14 676.404,456.423 678.853,439.397 681.302,424.87 \n 683.751,412.587 686.201,402.27 688.65,393.648 691.099,386.47 693.548,380.514 695.997,375.588 698.446,371.528 700.895,368.197 703.344,365.481 705.793,363.286 \n 708.243,361.534 710.692,360.165 713.141,359.13 715.59,358.394 718.039,357.93 720.488,357.722 722.937,357.762 725.386,358.053 727.836,358.603 730.285,359.434 \n 732.734,360.573 735.183,362.061 737.632,363.95 740.081,366.306 742.53,369.212 744.979,372.767 747.429,377.093 749.878,382.336 752.327,388.668 754.776,396.292 \n 757.225,405.439 759.674,416.367 762.123,429.352 764.572,444.669 767.021,462.557 769.471,483.173 771.92,506.52 774.369,532.376 776.818,560.242 779.267,589.344 \n 781.716,618.716 784.165,647.344 786.614,674.338 789.064,699.049 791.513,721.114 793.962,740.427 796.411,757.071 798.86,771.25 801.309,783.225 803.758,793.276 \n 806.207,801.67 808.656,808.655 811.106,814.448 813.555,819.237 816.004,823.181 818.453,826.414 820.902,829.048 823.351,831.174 825.8,832.866 828.249,834.183 \n 830.699,835.171 833.148,835.866 835.597,836.292 838.046,836.463 840.495,836.386 842.944,836.058 845.393,835.468 847.842,834.594 850.292,833.406 852.741,831.862 \n 855.19,829.909 857.639,827.477 860.088,824.483 862.537,820.822 864.986,816.371 867.435,810.979 869.884,804.47 872.334,796.637 874.783,787.244 877.232,776.03 \n 879.681,762.719 882.13,747.037 884.579,728.753 887.028,707.73 889.477,683.993 891.927,657.803 894.376,629.7 896.825,600.495 899.274,571.17 901.723,542.732 \n 904.172,516.04 906.621,491.703 909.07,470.042 911.519,451.132 913.969,434.866 916.418,421.029 918.867,409.354 921.316,399.565 923.765,391.393 926.214,384.596 \n 928.663,378.963 931.112,374.308 933.562,370.476 936.011,367.337 938.46,364.784 940.909,362.726 943.358,361.093 945.807,359.827 948.256,358.884 950.705,358.23 \n 953.155,357.843 955.604,357.708 958.053,357.822 960.502,358.187 962.951,358.818 965.4,359.736 967.849,360.973 970.298,362.573 972.747,364.593 975.197,367.102 \n 977.646,370.187 980.095,373.956 982.544,378.536 984.993,384.081 987.442,390.771 989.891,398.819 992.34,408.463 994.79,419.968 997.239,433.613 999.688,449.665 \n 1002.14,468.347 1004.59,489.776 1007.04,513.897 1009.48,540.411 1011.93,568.732 1014.38,598.02 1016.83,627.275 1019.28,655.505 1021.73,681.881 1024.18,705.837 \n 1026.63,727.092 1029.08,745.603 1031.53,761.495 1033.98,774.996 1036.42,786.375 1038.87,795.911 1041.32,803.865 1043.77,810.478 1046.22,815.956 1048.67,820.481 \n 1051.12,824.202 1053.57,827.248 1056.02,829.724 1058.47,831.715 1060.92,833.291 1063.36,834.507 1065.81,835.405 1068.26,836.019 1070.71,836.368 1073.16,836.466 \n 1075.61,836.316 1078.06,835.912 1080.51,835.241 1082.96,834.278 1085.41,832.99 1087.86,831.332 1090.31,829.245 1092.75,826.657 1095.2,823.478 1097.65,819.599 \n 1100.1,814.887 1102.55,809.185 1105,802.308 1107.45,794.041 1109.9,784.14 1112.35,772.337 1114.8,758.354 1117.25,741.926 1119.69,722.844 1122.14,701.009 \n 1124.59,676.51 1127.04,649.687 1129.49,621.164 1131.94,591.817 1134.39,562.653 1136.84,534.65 1139.29,508.602 1141.74,485.032 1144.19,464.184 1146.63,446.07 \n 1149.08,430.546 1151.53,417.375 1153.98,406.285 1156.43,396.999 1158.88,389.256 1161.33,382.824 1163.78,377.496 1166.23,373.099 1168.68,369.484 1171.13,366.528 \n 1173.58,364.129 1176.02,362.203 1178.47,360.684 1180.92,359.517 1183.37,358.662 1185.82,358.089 1188.27,357.777 1190.72,357.716 1193.17,357.903 1195.62,358.345 \n 1198.07,359.057 1200.52,360.066 1202.96,361.405 1205.41,363.122 1207.86,365.278 1210.31,367.947 1212.76,371.222 1215.21,375.215 1217.66,380.062 1220.11,385.925 \n 1222.56,392.992 1225.01,401.484 1227.46,411.648 1229.9,423.755 1232.35,438.083 1234.8,454.891 1237.25,474.376 1239.7,496.615 1242.15,521.484 1244.6,548.604 \n 1247.05,577.308 1249.5,606.692 1251.95,635.744 1254.4,663.503 1256.85,689.211 1259.29,712.389 1261.74,732.83 1264.19,750.55 1266.64,765.712 1269.09,778.558 \n 1271.54,789.365 1273.99,798.408 1276.44,805.944 1278.89,812.202 1281.34,817.382 1283.79,821.655 1286.23,825.165 1288.68,828.033 1291.13,830.358 1293.58,832.22 \n 1296.03,833.684 1298.48,834.803 1300.93,835.615 1303.38,836.148 1305.83,836.423 1308.28,836.448 1310.73,836.224 1313.17,835.743 1315.62,834.989 1318.07,833.934 \n 1320.52,832.542 1322.97,830.764 1325.42,828.538 1327.87,825.786 1330.32,822.413 1332.77,818.303 1335.22,813.317 1337.67,807.289 1340.12,800.027 1342.56,791.304 \n 1345.01,780.871 1347.46,768.455 1349.91,753.777 1352.36,736.585 1354.81,716.694 1357.26,694.054 1359.71,668.822 1362.16,641.421 1364.61,612.556 1367.06,583.156 \n 1369.5,554.238 1371.95,526.74 1374.4,501.381 1376.85,478.6 1379.3,458.565 1381.75,441.235 1384.2,426.431 1386.65,413.903 1389.1,403.373 1391.55,394.567 \n 1394,387.234 1396.45,381.147 1398.89,376.111 1401.34,371.958 1403.79,368.549 1406.24,365.767 1408.69,363.516 1411.14,361.716 1413.59,360.305 1416.04,359.234 \n 1418.49,358.465 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"\nM1040.09 296.183 L1411.96 296.183 L1411.96 114.743 L1040.09 114.743 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1040.09,296.183 1411.96,296.183 1411.96,114.743 1040.09,114.743 1040.09,296.183 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1054.52,175.223 1141.05,175.223 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"M1177.19 176.855 L1177.19 192.503 L1172.93 192.503 L1172.93 176.993 Q1172.93 173.313 1171.49 171.484 Q1170.06 169.656 1167.19 169.656 Q1163.74 169.656 1161.75 171.855 Q1159.76 174.054 1159.76 177.85 L1159.76 192.503 L1155.47 192.503 L1155.47 166.577 L1159.76 166.577 L1159.76 170.605 Q1161.28 168.267 1163.34 167.109 Q1165.43 165.952 1168.14 165.952 Q1172.6 165.952 1174.89 168.73 Q1177.19 171.484 1177.19 176.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1185.24 182.271 L1185.24 166.577 L1189.5 166.577 L1189.5 182.109 Q1189.5 185.79 1190.94 187.642 Q1192.37 189.47 1195.24 189.47 Q1198.69 189.47 1200.68 187.271 Q1202.7 185.072 1202.7 181.276 L1202.7 166.577 L1206.95 166.577 L1206.95 192.503 L1202.7 192.503 L1202.7 188.521 Q1201.14 190.882 1199.08 192.04 Q1197.05 193.174 1194.34 193.174 Q1189.87 193.174 1187.56 190.396 Q1185.24 187.618 1185.24 182.271 M1195.96 165.952 L1195.96 165.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1235.91 171.554 Q1237.51 168.683 1239.73 167.318 Q1241.95 165.952 1244.96 165.952 Q1249.01 165.952 1251.21 168.799 Q1253.41 171.623 1253.41 176.855 L1253.41 192.503 L1249.13 192.503 L1249.13 176.993 Q1249.13 173.267 1247.81 171.461 Q1246.49 169.656 1243.78 169.656 Q1240.47 169.656 1238.55 171.855 Q1236.63 174.054 1236.63 177.85 L1236.63 192.503 L1232.35 192.503 L1232.35 176.993 Q1232.35 173.243 1231.03 171.461 Q1229.71 169.656 1226.95 169.656 Q1223.69 169.656 1221.77 171.878 Q1219.85 174.077 1219.85 177.85 L1219.85 192.503 L1215.57 192.503 L1215.57 166.577 L1219.85 166.577 L1219.85 170.605 Q1221.31 168.22 1223.34 167.086 Q1225.38 165.952 1228.18 165.952 Q1231.01 165.952 1232.97 167.387 Q1234.96 168.822 1235.91 171.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1284.08 178.475 L1284.08 180.558 L1264.5 180.558 Q1264.78 184.956 1267.14 187.271 Q1269.52 189.563 1273.76 189.563 Q1276.21 189.563 1278.51 188.961 Q1280.82 188.359 1283.09 187.155 L1283.09 191.183 Q1280.8 192.155 1278.39 192.665 Q1275.98 193.174 1273.51 193.174 Q1267.3 193.174 1263.67 189.563 Q1260.06 185.952 1260.06 179.794 Q1260.06 173.429 1263.48 169.702 Q1266.93 165.952 1272.76 165.952 Q1278 165.952 1281.03 169.331 Q1284.08 172.688 1284.08 178.475 M1279.82 177.225 Q1279.78 173.73 1277.86 171.646 Q1275.96 169.563 1272.81 169.563 Q1269.25 169.563 1267.09 171.577 Q1264.96 173.591 1264.64 177.248 L1279.82 177.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1306.1 170.558 Q1305.38 170.142 1304.52 169.956 Q1303.69 169.748 1302.67 169.748 Q1299.06 169.748 1297.12 172.109 Q1295.19 174.447 1295.19 178.845 L1295.19 192.503 L1290.91 192.503 L1290.91 166.577 L1295.19 166.577 L1295.19 170.605 Q1296.54 168.244 1298.69 167.109 Q1300.84 165.952 1303.92 165.952 Q1304.36 165.952 1304.89 166.021 Q1305.43 166.068 1306.07 166.183 L1306.1 170.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1310.57 166.577 L1314.82 166.577 L1314.82 192.503 L1310.57 192.503 L1310.57 166.577 M1310.57 156.484 L1314.82 156.484 L1314.82 161.878 L1310.57 161.878 L1310.57 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1342.39 167.572 L1342.39 171.554 Q1340.59 170.558 1338.76 170.072 Q1336.95 169.563 1335.1 169.563 Q1330.96 169.563 1328.67 172.202 Q1326.38 174.818 1326.38 179.563 Q1326.38 184.308 1328.67 186.947 Q1330.96 189.563 1335.1 189.563 Q1336.95 189.563 1338.76 189.077 Q1340.59 188.567 1342.39 187.572 L1342.39 191.507 Q1340.61 192.341 1338.69 192.757 Q1336.79 193.174 1334.64 193.174 Q1328.78 193.174 1325.33 189.493 Q1321.88 185.813 1321.88 179.563 Q1321.88 173.22 1325.36 169.586 Q1328.85 165.952 1334.92 165.952 Q1336.88 165.952 1338.76 166.369 Q1340.63 166.762 1342.39 167.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1361.58 179.47 Q1356.42 179.47 1354.43 180.651 Q1352.44 181.831 1352.44 184.679 Q1352.44 186.947 1353.92 188.29 Q1355.43 189.609 1358 189.609 Q1361.54 189.609 1363.67 187.109 Q1365.82 184.586 1365.82 180.419 L1365.82 179.47 L1361.58 179.47 M1370.08 177.711 L1370.08 192.503 L1365.82 192.503 L1365.82 188.567 Q1364.36 190.929 1362.19 192.063 Q1360.01 193.174 1356.86 193.174 Q1352.88 193.174 1350.52 190.952 Q1348.18 188.706 1348.18 184.956 Q1348.18 180.581 1351.1 178.359 Q1354.04 176.137 1359.85 176.137 L1365.82 176.137 L1365.82 175.72 Q1365.82 172.781 1363.87 171.183 Q1361.95 169.563 1358.46 169.563 Q1356.24 169.563 1354.13 170.095 Q1352.02 170.628 1350.08 171.693 L1350.08 167.757 Q1352.42 166.855 1354.62 166.415 Q1356.81 165.952 1358.9 165.952 Q1364.52 165.952 1367.3 168.869 Q1370.08 171.785 1370.08 177.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1378.85 156.484 L1383.11 156.484 L1383.11 192.503 L1378.85 192.503 L1378.85 156.484 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip970)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 1054.52,235.703 1141.05,235.703 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"M1179.5 238.955 L1179.5 241.038 L1159.92 241.038 Q1160.2 245.436 1162.56 247.751 Q1164.94 250.043 1169.18 250.043 Q1171.63 250.043 1173.92 249.441 Q1176.24 248.839 1178.51 247.635 L1178.51 251.663 Q1176.21 252.635 1173.81 253.145 Q1171.4 253.654 1168.92 253.654 Q1162.72 253.654 1159.08 250.043 Q1155.47 246.432 1155.47 240.274 Q1155.47 233.909 1158.9 230.182 Q1162.35 226.432 1168.18 226.432 Q1173.41 226.432 1176.45 229.811 Q1179.5 233.168 1179.5 238.955 M1175.24 237.705 Q1175.2 234.21 1173.27 232.126 Q1171.38 230.043 1168.23 230.043 Q1164.66 230.043 1162.51 232.057 Q1160.38 234.071 1160.06 237.728 L1175.24 237.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1207.21 227.057 L1197.83 239.673 L1207.7 252.983 L1202.67 252.983 L1195.13 242.798 L1187.58 252.983 L1182.56 252.983 L1192.63 239.418 L1183.41 227.057 L1188.44 227.057 L1195.31 236.293 L1202.19 227.057 L1207.21 227.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1225.5 239.95 Q1220.33 239.95 1218.34 241.131 Q1216.35 242.311 1216.35 245.159 Q1216.35 247.427 1217.83 248.77 Q1219.34 250.089 1221.91 250.089 Q1225.45 250.089 1227.58 247.589 Q1229.73 245.066 1229.73 240.899 L1229.73 239.95 L1225.5 239.95 M1233.99 238.191 L1233.99 252.983 L1229.73 252.983 L1229.73 249.047 Q1228.27 251.409 1226.1 252.543 Q1223.92 253.654 1220.77 253.654 Q1216.79 253.654 1214.43 251.432 Q1212.09 249.186 1212.09 245.436 Q1212.09 241.061 1215.01 238.839 Q1217.95 236.617 1223.76 236.617 L1229.73 236.617 L1229.73 236.2 Q1229.73 233.261 1227.79 231.663 Q1225.87 230.043 1222.37 230.043 Q1220.15 230.043 1218.04 230.575 Q1215.94 231.108 1213.99 232.173 L1213.99 228.237 Q1216.33 227.335 1218.53 226.895 Q1220.73 226.432 1222.81 226.432 Q1228.44 226.432 1231.21 229.349 Q1233.99 232.265 1233.99 238.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1261.42 228.052 L1261.42 232.034 Q1259.62 231.038 1257.79 230.552 Q1255.98 230.043 1254.13 230.043 Q1249.99 230.043 1247.69 232.682 Q1245.4 235.298 1245.4 240.043 Q1245.4 244.788 1247.69 247.427 Q1249.99 250.043 1254.13 250.043 Q1255.98 250.043 1257.79 249.557 Q1259.62 249.047 1261.42 248.052 L1261.42 251.987 Q1259.64 252.821 1257.72 253.237 Q1255.82 253.654 1253.67 253.654 Q1247.81 253.654 1244.36 249.973 Q1240.91 246.293 1240.91 240.043 Q1240.91 233.7 1244.38 230.066 Q1247.88 226.432 1253.94 226.432 Q1255.91 226.432 1257.79 226.849 Q1259.66 227.242 1261.42 228.052 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1273.04 219.696 L1273.04 227.057 L1281.82 227.057 L1281.82 230.367 L1273.04 230.367 L1273.04 244.441 Q1273.04 247.612 1273.9 248.515 Q1274.78 249.418 1277.44 249.418 L1281.82 249.418 L1281.82 252.983 L1277.44 252.983 Q1272.51 252.983 1270.63 251.154 Q1268.76 249.302 1268.76 244.441 L1268.76 230.367 L1265.63 230.367 L1265.63 227.057 L1268.76 227.057 L1268.76 219.696 L1273.04 219.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"\nM1854.72 910.808 L3152.76 910.808 L3152.76 87.2921 L1854.72 87.2921 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip973\">\n <rect x=\"1854\" y=\"87\" width=\"1299\" height=\"825\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1891.46,910.808 1891.46,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1973.1,910.808 1973.1,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2054.73,910.808 2054.73,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2136.37,910.808 2136.37,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2218.01,910.808 2218.01,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2299.65,910.808 2299.65,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2381.28,910.808 2381.28,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2462.92,910.808 2462.92,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2544.56,910.808 2544.56,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2626.2,910.808 2626.2,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2707.83,910.808 2707.83,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2789.47,910.808 2789.47,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2871.11,910.808 2871.11,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2952.74,910.808 2952.74,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3034.38,910.808 3034.38,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip973)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 3116.02,910.808 3116.02,87.2921 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1854.72,910.808 3152.76,910.808 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.46,910.808 1891.46,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1973.1,910.808 1973.1,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2054.73,910.808 2054.73,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2136.37,910.808 2136.37,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2218.01,910.808 2218.01,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2299.65,910.808 2299.65,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2381.28,910.808 2381.28,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2462.92,910.808 2462.92,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2544.56,910.808 2544.56,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2626.2,910.808 2626.2,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2707.83,910.808 2707.83,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2789.47,910.808 2789.47,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2871.11,910.808 2871.11,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2952.74,910.808 2952.74,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3034.38,910.808 3034.38,900.926 \n \"/>\n<polyline clip-path=\"url(#clip970)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 3116.02,910.808 3116.02,900.926 \n \"/>\n<path clip-path=\"url(#clip970)\" d=\"M1891.46 946.399 Q1887.85 946.399 1886.02 949.963 Q1884.21 953.505 1884.21 960.635 Q1884.21 967.741 1886.02 971.306 Q1887.85 974.847 1891.46 974.847 Q1895.09 974.847 1896.9 971.306 Q1898.73 967.741 1898.73 960.635 Q1898.73 953.505 1896.9 949.963 Q1895.09 946.399 1891.46 946.399 M1891.46 942.695 Q1897.27 942.695 1900.33 947.301 Q1903.4 951.885 1903.4 960.635 Q1903.4 969.361 1900.33 973.968 Q1897.27 978.551 1891.46 978.551 Q1885.65 978.551 1882.57 973.968 Q1879.52 969.361 1879.52 960.635 Q1879.52 951.885 1882.57 947.301 Q1885.65 942.695 1891.46 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M1967.75 973.945 L1984.07 973.945 L1984.07 977.88 L1962.12 977.88 L1962.12 973.945 Q1964.79 971.19 1969.37 966.56 Q1973.98 961.908 1975.16 960.565 Q1977.4 958.042 1978.28 956.306 Q1979.18 954.547 1979.18 952.857 Q1979.18 950.102 1977.24 948.366 Q1975.32 946.63 1972.22 946.63 Q1970.02 946.63 1967.56 947.394 Q1965.13 948.158 1962.36 949.709 L1962.36 944.987 Q1965.18 943.852 1967.63 943.274 Q1970.09 942.695 1972.12 942.695 Q1977.5 942.695 1980.69 945.38 Q1983.88 948.065 1983.88 952.556 Q1983.88 954.686 1983.07 956.607 Q1982.29 958.505 1980.18 961.098 Q1979.6 961.769 1976.5 964.986 Q1973.4 968.181 1967.75 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2057.74 947.394 L2045.94 965.843 L2057.74 965.843 L2057.74 947.394 M2056.52 943.32 L2062.4 943.32 L2062.4 965.843 L2067.33 965.843 L2067.33 969.732 L2062.4 969.732 L2062.4 977.88 L2057.74 977.88 L2057.74 969.732 L2042.14 969.732 L2042.14 965.218 L2056.52 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2136.78 958.736 Q2133.63 958.736 2131.78 960.889 Q2129.95 963.042 2129.95 966.792 Q2129.95 970.519 2131.78 972.695 Q2133.63 974.847 2136.78 974.847 Q2139.92 974.847 2141.75 972.695 Q2143.61 970.519 2143.61 966.792 Q2143.61 963.042 2141.75 960.889 Q2139.92 958.736 2136.78 958.736 M2146.06 944.084 L2146.06 948.343 Q2144.3 947.51 2142.49 947.07 Q2140.71 946.63 2138.95 946.63 Q2134.32 946.63 2131.87 949.755 Q2129.44 952.88 2129.09 959.199 Q2130.46 957.186 2132.52 956.121 Q2134.58 955.033 2137.05 955.033 Q2142.26 955.033 2145.27 958.204 Q2148.3 961.352 2148.3 966.792 Q2148.3 972.116 2145.16 975.334 Q2142.01 978.551 2136.78 978.551 Q2130.78 978.551 2127.61 973.968 Q2124.44 969.361 2124.44 960.635 Q2124.44 952.44 2128.33 947.579 Q2132.22 942.695 2138.77 942.695 Q2140.53 942.695 2142.31 943.042 Q2144.11 943.389 2146.06 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2218.01 961.468 Q2214.68 961.468 2212.75 963.25 Q2210.86 965.033 2210.86 968.158 Q2210.86 971.283 2212.75 973.065 Q2214.68 974.847 2218.01 974.847 Q2221.34 974.847 2223.26 973.065 Q2225.18 971.26 2225.18 968.158 Q2225.18 965.033 2223.26 963.25 Q2221.37 961.468 2218.01 961.468 M2213.33 959.477 Q2210.32 958.736 2208.63 956.676 Q2206.97 954.616 2206.97 951.653 Q2206.97 947.51 2209.91 945.102 Q2212.87 942.695 2218.01 942.695 Q2223.17 942.695 2226.11 945.102 Q2229.05 947.51 2229.05 951.653 Q2229.05 954.616 2227.36 956.676 Q2225.69 958.736 2222.71 959.477 Q2226.09 960.264 2227.96 962.556 Q2229.86 964.848 2229.86 968.158 Q2229.86 973.181 2226.78 975.866 Q2223.73 978.551 2218.01 978.551 Q2212.29 978.551 2209.21 975.866 Q2206.16 973.181 2206.16 968.158 Q2206.16 964.848 2208.06 962.556 Q2209.95 960.264 2213.33 959.477 M2211.62 952.093 Q2211.62 954.778 2213.29 956.283 Q2214.98 957.787 2218.01 957.787 Q2221.02 957.787 2222.71 956.283 Q2224.42 954.778 2224.42 952.093 Q2224.42 949.408 2222.71 947.903 Q2221.02 946.399 2218.01 946.399 Q2214.98 946.399 2213.29 947.903 Q2211.62 949.408 2211.62 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2274.33 973.945 L2281.97 973.945 L2281.97 947.579 L2273.66 949.246 L2273.66 944.987 L2281.93 943.32 L2286.6 943.32 L2286.6 973.945 L2294.24 973.945 L2294.24 977.88 L2274.33 977.88 L2274.33 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2313.69 946.399 Q2310.07 946.399 2308.25 949.963 Q2306.44 953.505 2306.44 960.635 Q2306.44 967.741 2308.25 971.306 Q2310.07 974.847 2313.69 974.847 Q2317.32 974.847 2319.13 971.306 Q2320.95 967.741 2320.95 960.635 Q2320.95 953.505 2319.13 949.963 Q2317.32 946.399 2313.69 946.399 M2313.69 942.695 Q2319.5 942.695 2322.55 947.301 Q2325.63 951.885 2325.63 960.635 Q2325.63 969.361 2322.55 973.968 Q2319.5 978.551 2313.69 978.551 Q2307.88 978.551 2304.8 973.968 Q2301.74 969.361 2301.74 960.635 Q2301.74 951.885 2304.8 947.301 Q2307.88 942.695 2313.69 942.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2356.77 973.945 L2364.41 973.945 L2364.41 947.579 L2356.1 949.246 L2356.1 944.987 L2364.36 943.32 L2369.04 943.32 L2369.04 973.945 L2376.68 973.945 L2376.68 977.88 L2356.77 977.88 L2356.77 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2390.15 973.945 L2406.47 973.945 L2406.47 977.88 L2384.52 977.88 L2384.52 973.945 Q2387.19 971.19 2391.77 966.56 Q2396.38 961.908 2397.56 960.565 Q2399.8 958.042 2400.68 956.306 Q2401.58 954.547 2401.58 952.857 Q2401.58 950.102 2399.64 948.366 Q2397.72 946.63 2394.62 946.63 Q2392.42 946.63 2389.96 947.394 Q2387.53 948.158 2384.76 949.709 L2384.76 944.987 Q2387.58 943.852 2390.03 943.274 Q2392.49 942.695 2394.52 942.695 Q2399.89 942.695 2403.09 945.38 Q2406.28 948.065 2406.28 952.556 Q2406.28 954.686 2405.47 956.607 Q2404.69 958.505 2402.58 961.098 Q2402 961.769 2398.9 964.986 Q2395.8 968.181 2390.15 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2437.37 973.945 L2445 973.945 L2445 947.579 L2436.69 949.246 L2436.69 944.987 L2444.96 943.32 L2449.63 943.32 L2449.63 973.945 L2457.27 973.945 L2457.27 977.88 L2437.37 977.88 L2437.37 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2479.56 947.394 L2467.76 965.843 L2479.56 965.843 L2479.56 947.394 M2478.34 943.32 L2484.22 943.32 L2484.22 965.843 L2489.15 965.843 L2489.15 969.732 L2484.22 969.732 L2484.22 977.88 L2479.56 977.88 L2479.56 969.732 L2463.96 969.732 L2463.96 965.218 L2478.34 943.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2519.16 973.945 L2526.8 973.945 L2526.8 947.579 L2518.49 949.246 L2518.49 944.987 L2526.76 943.32 L2531.43 943.32 L2531.43 973.945 L2539.07 973.945 L2539.07 977.88 L2519.16 977.88 L2519.16 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2559.1 958.736 Q2555.95 958.736 2554.1 960.889 Q2552.27 963.042 2552.27 966.792 Q2552.27 970.519 2554.1 972.695 Q2555.95 974.847 2559.1 974.847 Q2562.24 974.847 2564.07 972.695 Q2565.92 970.519 2565.92 966.792 Q2565.92 963.042 2564.07 960.889 Q2562.24 958.736 2559.1 958.736 M2568.38 944.084 L2568.38 948.343 Q2566.62 947.51 2564.81 947.07 Q2563.03 946.63 2561.27 946.63 Q2556.64 946.63 2554.19 949.755 Q2551.76 952.88 2551.41 959.199 Q2552.78 957.186 2554.84 956.121 Q2556.9 955.033 2559.37 955.033 Q2564.58 955.033 2567.59 958.204 Q2570.62 961.352 2570.62 966.792 Q2570.62 972.116 2567.47 975.334 Q2564.33 978.551 2559.1 978.551 Q2553.1 978.551 2549.93 973.968 Q2546.76 969.361 2546.76 960.635 Q2546.76 952.44 2550.65 947.579 Q2554.53 942.695 2561.09 942.695 Q2562.84 942.695 2564.63 943.042 Q2566.43 943.389 2568.38 944.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2600.93 973.945 L2608.57 973.945 L2608.57 947.579 L2600.26 949.246 L2600.26 944.987 L2608.52 943.32 L2613.2 943.32 L2613.2 973.945 L2620.84 973.945 L2620.84 977.88 L2600.93 977.88 L2600.93 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2640.28 961.468 Q2636.95 961.468 2635.03 963.25 Q2633.13 965.033 2633.13 968.158 Q2633.13 971.283 2635.03 973.065 Q2636.95 974.847 2640.28 974.847 Q2643.61 974.847 2645.54 973.065 Q2647.46 971.26 2647.46 968.158 Q2647.46 965.033 2645.54 963.25 Q2643.64 961.468 2640.28 961.468 M2635.61 959.477 Q2632.6 958.736 2630.91 956.676 Q2629.24 954.616 2629.24 951.653 Q2629.24 947.51 2632.18 945.102 Q2635.14 942.695 2640.28 942.695 Q2645.44 942.695 2648.38 945.102 Q2651.32 947.51 2651.32 951.653 Q2651.32 954.616 2649.63 956.676 Q2647.97 958.736 2644.98 959.477 Q2648.36 960.264 2650.23 962.556 Q2652.13 964.848 2652.13 968.158 Q2652.13 973.181 2649.05 975.866 Q2646 978.551 2640.28 978.551 Q2634.56 978.551 2631.48 975.866 Q2628.43 973.181 2628.43 968.158 Q2628.43 964.848 2630.33 962.556 Q2632.23 960.264 2635.61 959.477 M2633.89 952.093 Q2633.89 954.778 2635.56 956.283 Q2637.25 957.787 2640.28 957.787 Q2643.29 957.787 2644.98 956.283 Q2646.69 954.778 2646.69 952.093 Q2646.69 949.408 2644.98 947.903 Q2643.29 946.399 2640.28 946.399 Q2637.25 946.399 2635.56 947.903 Q2633.89 949.408 2633.89 952.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2686.61 973.945 L2702.93 973.945 L2702.93 977.88 L2680.98 977.88 L2680.98 973.945 Q2683.64 971.19 2688.23 966.56 Q2692.83 961.908 2694.01 960.565 Q2696.26 958.042 2697.14 956.306 Q2698.04 954.547 2698.04 952.857 Q2698.04 950.102 2696.1 948.366 Q2694.18 946.63 2691.07 946.63 Q2688.87 946.63 2686.42 947.394 Q2683.99 948.158 2681.21 949.709 L2681.21 944.987 Q2684.04 943.852 2686.49 943.274 Q2688.94 942.695 2690.98 942.695 Q2696.35 942.695 2699.55 945.38 Q2702.74 948.065 2702.74 952.556 Q2702.74 954.686 2701.93 956.607 Q2701.14 958.505 2699.04 961.098 Q2698.46 961.769 2695.36 964.986 Q2692.25 968.181 2686.61 973.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip970)\" d=\"M2722.74 946.399 Q2719.13 946.399 2717.3 949.963 Q2715.49 953.505 2715.49 960.635 Q2715.49 967.741 2717.3 971.306 Q2719.13 974.847 2722.74 974.847 Q2726.37 974.847 2728.18 971.306 Q2730.01 967.741 2730.01 960.635 Q2730.01 953.505 2728.18 949.963 Q2726.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment