2088 lines
1.0 MiB
Plaintext
Raw Permalink Normal View History

{
"cells": [
{
"cell_type": "code",
"execution_count": 81,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Threads: 32\n"
]
}
],
"source": [
"#using Pkg\n",
"#Pkg.add(url=\"https://github.com/QEDjl-project/QEDprocesses.jl/\")\n",
"\n",
"using MetagraphOptimization\n",
"using CUDA\n",
"using UUIDs\n",
"using BenchmarkTools\n",
"\n",
"println(\"Threads: $(Threads.nthreads())\")"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"compute__f86f16c2_dcba_11ee_3d4b_6b88d96bf393 (generic function with 1 method)"
]
},
"execution_count": 98,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Random\n",
"\n",
"# preparation of graph\n",
"machine = Machine([MetagraphOptimization.NumaNode(0, 1, MetagraphOptimization.default_strategy(MetagraphOptimization.NumaNode), -1.0, UUIDs.uuid1())], [-1.0;;])\n",
"model = QEDModel()\n",
"process = parse_process(\"ke->kkke\", model)\n",
"graph = gen_graph(process)\n",
"n_inputs = 2^20\n",
"inputs = [gen_process_input(process) for _ in 1:n_inputs]\n",
"cu_inputs = CuArray(inputs)\n",
"optimizer = RandomWalkOptimizer(MersenneTwister(0))# GreedyOptimizer(GlobalMetricEstimator())\n",
"\n",
"#done: split, reduce, fuse, greedy\n",
"\n",
"process_str_short = \"qed_k3\"\n",
"optim_str = \"Random Walk Optimization\"\n",
"optim_str_short=\"random\"\n",
"\n",
"get_compute_function(graph, process, machine) # run once for compilation"
]
},
{
"cell_type": "code",
"execution_count": 99,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"bench (generic function with 1 method)"
]
},
"execution_count": 99,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function bench(func, kernel!, inputs, cu_inputs)\n",
" compile_time = @elapsed func(inputs[1])\n",
"\n",
" # b = @benchmark $func.($inputs) samples = 10 evals = 1\n",
" single_thread = 0. # median(b.times) / 1e9\n",
" st_std = 0. # std(b.times) / 1e9\n",
"\n",
" b = @benchmark begin \n",
" Threads.@threads for i in eachindex($inputs)\n",
" $func($inputs[i]) \n",
" end \n",
" end samples = 10 evals = 1\n",
" multi_threaded = median(b.times) / 1e9\n",
" mt_std = std(b.times) / 1e9\n",
" \n",
" n = length(cu_inputs)\n",
" ts = 32\n",
" bs = Int(n / ts)\n",
" cu_outputs = CuVector{ComplexF64}()\n",
" resize!(cu_outputs, n)\n",
" b = @benchmark begin\n",
" @cuda threads = $ts blocks = $bs always_inline=true $kernel!($cu_inputs, $cu_outputs, $n)\n",
" CUDA.device_synchronize()\n",
" end samples = 10 evals = 1\n",
" gpu_compile = 0\n",
" gpu = median(b.times) / 1e9\n",
" gpu_std = std(b.times) / 1e9\n",
"\n",
" return (cpu_compile_time = compile_time, gpu_compile_time = gpu_compile, cpu_single_thread_time = single_thread, cpu_st_std = st_std, cpu_multi_thread_time = multi_threaded, cpu_mt_std = mt_std, gpu_time = gpu, gpu_std = gpu_std)\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 100,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII\n",
"Done\n"
]
}
],
"source": [
"# bench and produce data\n",
"using DataFrames\n",
"\n",
"STEPSIZE = 1\n",
"n = 0\n",
"\n",
"df = DataFrame(\n",
" operations=Int[], \n",
" graph_nodes=Int[], \n",
" graph_edges=Int[], \n",
" graph_ce=Float64[], \n",
" graph_dt=Float64[], \n",
" graph_ci=Float64[], \n",
" gen_func_t=Float64[], \n",
" cpu_compile_t=Float64[], \n",
" cpu_st_t=Float64[], \n",
" cpu_st_std=Float64[],\n",
" cpu_mt_t=Float64[], \n",
" cpu_mt_std=Float64[],\n",
" gpu_compile_t=Float64[], \n",
" gpu_t=Float64[],\n",
" gpu_std=Float64[]\n",
")\n",
"\n",
"while true\n",
" func_gen_time = @elapsed func = get_compute_function(graph, process, machine)\n",
" kernel! = get_cuda_kernel(graph, process, machine)\n",
" res = bench(func, kernel!, inputs, cu_inputs)\n",
"\n",
" graph_properties = get_properties(graph)\n",
" push!(df, (\n",
" n,\n",
" graph_properties.noNodes,\n",
" graph_properties.noEdges,\n",
" graph_properties.computeEffort,\n",
" graph_properties.data,\n",
" graph_properties.computeIntensity,\n",
" func_gen_time,\n",
" res.cpu_compile_time,\n",
" res.cpu_single_thread_time,\n",
" res.cpu_st_std,\n",
" res.cpu_multi_thread_time,\n",
" res.cpu_mt_std,\n",
" res.gpu_compile_time,\n",
" res.gpu_time,\n",
" res.gpu_std\n",
" ))\n",
"\n",
" print(\"I\")\n",
"\n",
" if fixpoint_reached(optimizer, graph)\n",
" break\n",
" end\n",
"\n",
" if n >= 100\n",
" break\n",
" end\n",
"\n",
" optimize!(optimizer, graph, STEPSIZE)\n",
" n += STEPSIZE\n",
"end\n",
"println(\"\\nDone\")\n",
";"
]
},
{
"cell_type": "code",
"execution_count": 101,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"beautify_title (generic function with 1 method)"
]
},
"execution_count": 101,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using LaTeXStrings\n",
"\n",
"function beautify_title(str::AbstractString)\n",
" parts = split(str, \"'\")\n",
"\n",
" preprefix = parts[1]\n",
" infix = parts[2]\n",
" sufsuffix = parts[3]\n",
"\n",
" parts = split(infix, \"->\")\n",
"\n",
" prefix = parts[1]\n",
" suffix = parts[2]\n",
"\n",
" k_count = count(c -> c == 'k', suffix)\n",
" B_count = count(c -> c == 'B', suffix)\n",
"\n",
" if k_count == 1 || B_count == 1\n",
" new_suffix = suffix\n",
" elseif k_count >= 1\n",
" new_suffix = replace(suffix, r\"k+\" => \"k^$k_count\")\n",
" elseif B_count >= 1\n",
" new_suffix = replace(suffix, r\"B+\" => \"B^$B_count\")\n",
" end\n",
"\n",
" return preprefix * L\"%$prefix \\rightarrow %$new_suffix\" * sufsuffix\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 102,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"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=\"600\" viewBox=\"0 0 3200 2400\">\n",
"<defs>\n",
" <clipPath id=\"clip570\">\n",
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip570)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip571\">\n",
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip570)\" d=\"M265.312 1885.34 L3152.76 1885.34 L3152.76 199.072 L265.312 199.072 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip572\">\n",
" <rect x=\"265\" y=\"199\" width=\"2888\" height=\"1687\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"347.032,1885.34 347.032,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1028.03,1885.34 1028.03,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1709.03,1885.34 1709.03,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2390.03,1885.34 2390.03,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3071.04,1885.34 3071.04,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"483.232,1885.34 483.232,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"619.433,1885.34 619.433,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"755.633,1885.34 755.633,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"891.833,1885.34 891.833,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1164.23,1885.34 1164.23,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1300.43,1885.34 1300.43,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1436.63,1885.34 1436.63,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1572.83,1885.34 1572.83,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1845.23,1885.34 1845.23,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"1981.43,1885.34 1981.43,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2117.63,1885.34 2117.63,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2253.83,1885.34 2253.83,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2526.24,1885.34 2526.24,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2662.44,1885.34 2662.44,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2798.64,1885.34 2798.64,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"2934.84,1885.34 2934.84,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1885.34 3152.76,1885.34 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"347.032,1885.34 347.032,1869.45 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1028.03,1885.34 1028.03,1869.45 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1709.03,1885.34 1709.03,1869.45 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2390.03,1885.34 2390.03,1869.45 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3071.04,1885.34 3071.04,1869.45 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"483.232,1885.34 483.232,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"619.433,1885.34 619.433,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"755.633,1885.34 755.633,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"891.833,1885.34 891.833,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1164.23,1885.34 1164.23,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1300.43,1885.34 1300.43,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1436.63,1885.34 1436.63,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1572.83,1885.34 1572.83,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1845.23,1885.34 1845.23,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1981.43,1885.34 1981.43,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2117.63,1885.34 2117.63,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2253.83,1885.34 2253.83,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2526.24,1885.34 2526.24,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2662.44,1885.34 2662.44,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2798.64,1885.34 2798.64,1877.39 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2934.84,1885.34 2934.84,1877.39 \"/>\n",
"<path clip-path=\"url(#clip570)\" d=\"M347.032 1922.66 Q343.421 1922.66 341.592 1926.22 Q339.787 1929.76 339.787 1936.89 Q339.787 1944 341.592 1947.56 Q343.421 1951.11 347.032 1951.11 Q350.667 1951.11 352.472 1947.56 Q354.301 1944 354.301 1936.89 Q354.301 1929.76 352.472 1926.22 Q350.667 1922.66 347.032 1922.66 M347.032 1918.95 Q352.842 1918.95 355.898 1923.56 Q358.977 1928.14 358.977 1936.89 Q358.977 1945.62 355.898 1950.23 Q352.842 1954.81 347.032 1954.81 Q341.222 1954.81 338.143 1950.23 Q335.088 1945.62 335.088 1936.89 Q335.088 1928.14 338.143 1923.56 Q341.222 1918.95 347.032 1918.95 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1007.3 1950.2 L1023.62 1950.2 L1023.62 1954.14 L1001.68 1954.14 L1001.68 1950.2 Q1004.34 1947.45 1008.92 1942.82 Q1013.53 1938.17 1014.71 1936.82 Q1016.96 1934.3 1017.84 1932.56 Q1018.74 1930.81 1018.74 1929.12 Q1018.74 1926.36 1016.79 1924.62 Q1014.87 1922.89 1011.77 1922.89 Q1009.57 1922.89 1007.12 1923.65 Q1004.69 1924.42 1001.91 1925.97 L1001.91 1921.24 Q1004.73 1920.11 1007.19 1919.53 Q1009.64 1918.95 1011.68 1918.95 Q1017.05 1918.95 1020.24 1921.64 Q1023.44 1924.32 1023.44 1928.81 Q1023.44 1930.94 1022.63 1932.87 Q1021.84 1934.76 1019.73 1937.36 Q1019.16 1938.03 1016.05 1941.24 Q1012.95 1944.44 1007.3 1950.2 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1033.48 1919.58 L1051.84 1919.58 L1051.84 1923.51 L1037.77 1923.51 L1037.77 1931.99 Q1038.79 1931.64 1039.8 1931.48 Q1040.82 1931.29 1041.84 1931.29 Q1047.63 1931.29 1051.01 1934.46 Q1054.39 1937.63 1054.39 1943.05 Q1054.39 1948.63 1050.91 1951.73 Q1047.44 1954.81 1041.12 1954.81 Q1038.95 1954.81 1036.68 1954.44 Q1034.43 1954.07 1032.03 1953.33 L1032.03 1948.63 Q1034.11 1949.76 1036.33 1950.32 Q1038.55 1950.87 1041.03 1950.87 Q1045.04 1950.87 1047.37 1948.77 Q1049.71 1946.66 1049.71 1943.05 Q1049.71 1939.44 1047.37 1937.33 Q1045.04 1935.23 1041.03 1935.23 Q1039.16 1935.23 1037.28 1935.64 Q1035.43 1936.06 1033.48 1936.94 L1033.48 1919.58 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1683.73 1919.58 L1702.09 1919.58 L1702.09 1923.51 L1688.02 1923.51 L1688.02 1931.99 Q1689.03 1931.64 1690.05 1931.48 Q1691.07 1931.29 1692.09 1931.29 Q1697.88 1931.29 1701.26 1934.46 Q1704.64 1937.63 1704.64 1943.05 Q1704.64 1948.63 1701.16 1951.73 Q1697.69 1954.81 1691.37 1954.81 Q1689.2 1954.81 1686.93 1954.44 Q1684.68 1954.07 1682.27 1953.33 L1682.27 1948.63 Q1684.36 1949.76 1686.58 1950.32 Q1688.8 1950.87 1691.28 1950.87 Q1695.28 1950.87 1697.62 1948.77 Q1699.96 1946.66 1699.96 1943.05 Q1699.96 1939.44 1697.62 1937.33 Q1695.28 1935.23 1691.28 1935.23 Q1689.4 1935.23 1687.53 1935.64 Q1685.68 1936.06 1683.73 1936.94 L1683.73 1919.58 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1723.85 1922.66 Q1720.24 1922.66 1718.41 1926.22 Q1716.6 1929.76 1716.6 1936.89 Q1716.6 1944 1718.41 1947.56 Q1720.24 1951.11 1723.85 1951.11 Q1727.48 1951.11 1729.29 1947.56 Q1731.12 1944 1731.12 1936.89 Q1731.12 1929.76 1729.29 1926.22 Q1727.48 1922.66 1723.85 1922.66 M1723.85 1918.95 Q1729.66 1918.95 1732.71 1923.56 Q1735.79 1928.14 1735.79 1936.89 Q1735.79 1945.62 1732.71 1950.23 Q1729.66 1954.81 1723.85 1954.81 Q1718.04 1954.81 1714.96 1950.23 Q1711.9 1945.62 1711.9 1936.89 Q1711.9 1928.14 1714.96 1923.56 Q1718.04 1918.95 1723.85 1918.95 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2363.89 1919.58 L2386.11 1919.58 L2386.11 1921.57 L2373.57 1954.14 L2368.68 1954.14 L2380.49 1923.51 L2363.89 1923.51 L2363.89 1919.58 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2395.28 1919.58 L2413.63 1919.58 L2413.63 1923.51 L2399.56 1923.51 L2399.56 1931.99 Q2400.58 1931.64 2401.6 1931.48 Q2402.62 1931.29 2403.63 1931.29 Q2409.42 1931.29 2412.8 1934.46 Q2416.18 1937.63 2416.18 1943.05 Q2416.18 1948.63 2412.71 1951.73 Q2409.24 1954.81 2402.92 1954.81 Q
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"265.312,948.119 3152.76,948.119 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1838.56 3152.76,1838.56 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1793.85 3152.76,1793.85 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1754.41 3152.76,1754.41 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1487.03 3152.76,1487.03 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1351.27 3152.76,1351.27 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1254.94 3152.76,1254.94 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1180.22 3152.76,1180.22 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1119.17 3152.76,1119.17 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1067.55 3152.76,1067.55 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,1022.84 3152.76,1022.84 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,983.399 3152.76,983.399 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,716.021 3152.76,716.021 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,580.253 3152.76,580.253 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,483.923 3152.76,483.923 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,409.204 3152.76,409.204 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,348.155 3152.76,348.155 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,296.538 3152.76,296.538 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,251.825 3152.76,251.825 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.05; fill:none\" points=\"265.312,212.386 3152.76,212.386 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1885.34 265.312,199.072 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1719.13 284.21,1719.13 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,948.119 284.21,948.119 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1838.56 274.761,1838.56 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1793.85 274.761,1793.85 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1754.41 274.761,1754.41 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1487.03 274.761,1487.03 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1351.27 274.761,1351.27 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1254.94 274.761,1254.94 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1180.22 274.761,1180.22 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1119.17 274.761,1119.17 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1067.55 274.761,1067.55 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,1022.84 274.761,1022.84 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,983.399 274.761,983.399 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,716.021 274.761,716.021 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,580.253 274.761,580.253 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,483.923 274.761,483.923 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,409.204 274.761,409.204 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,348.155 274.761,348.155 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,296.538 274.761,296.538 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,251.825 274.761,251.825 \"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"265.312,212.386 274.761,212.386 \"/>\n",
"<path clip-path=\"url(#clip570)\" d=\"M117.172 1738.93 L124.811 1738.93 L124.811 1712.56 L116.501 1714.23 L116.501 1709.97 L124.765 1708.3 L129.441 1708.3 L129.441 1738.93 L137.08 1738.93 L137.08 1742.86 L117.172 1742.86 L117.172 1738.93 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M156.524 1711.38 Q152.913 1711.38 151.084 1714.94 Q149.279 1718.49 149.279 1725.61 Q149.279 1732.72 151.084 1736.29 Q152.913 1739.83 156.524 1739.83 Q160.158 1739.83 161.964 1736.29 Q163.792 1732.72 163.792 1725.61 Q163.792 1718.49 161.964 1714.94 Q160.158 1711.38 156.524 1711.38 M156.524 1707.68 Q162.334 1707.68 165.39 1712.28 Q168.468 1716.87 168.468 1725.61 Q168.468 1734.34 165.39 1738.95 Q162.334 1743.53 156.524 1743.53 Q150.714 1743.53 147.635 1738.95 Q144.58 1734.34 144.58 1725.61 Q144.58 1716.87 147.635 1712.28 Q150.714 1707.68 156.524 1707.68 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M168.468 1701.78 L192.58 1701.78 L192.58 1704.97 L168.468 1704.97 L168.468 1701.78 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M204.053 1712.25 L217.312 1712.25 L217.312 1715.45 L199.482 1715.45 L199.482 1712.25 Q201.645 1710.01 205.369 1706.25 Q209.112 1702.47 210.071 1701.38 Q211.896 1699.33 212.61 1697.92 Q213.344 1696.49 213.344 1695.12 Q213.344 1692.88 211.764 1691.47 Q210.203 1690.06 207.683 1690.06 Q205.896 1690.06 203.902 1690.68 Q201.927 1691.3 199.67 1692.56 L199.67 1688.72 Q201.965 1687.8 203.959 1687.33 Q205.952 1686.86 207.607 1686.86 Q211.971 1686.86 214.566 1689.04 Q217.162 1691.23 217.162 1694.87 Q217.162 1696.6 216.503 1698.17 Q215.864 1699.71 214.152 1701.81 Q213.682 1702.36 211.162 1704.97 Q208.642 1707.57 204.053 1712.25 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M116.871 967.912 L124.51 967.912 L124.51 941.546 L116.2 943.213 L116.2 938.954 L124.464 937.287 L129.14 937.287 L129.14 967.912 L136.779 967.912 L136.779 971.847 L116.871 971.847 L116.871 967.912 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M156.223 940.366 Q152.612 940.366 150.783 943.931 Q148.978 947.472 148.978 954.602 Q148.978 961.708 150.783 965.273 Q152.612 968.815 156.223 968.815 Q159.857 968.815 161.663 965.273 Q163.492 961.708 163.492 954.602 Q163.492 947.472 161.663 943.931 Q159.857 940.366 156.223 940.366 M156.223 936.662 Q162.033 936.662 165.089 941.268 Q168.167 945.852 168.167 954.602 Q168.167 963.329 165.089 967.935 Q162.033 972.518 156.223 972.518 Q150.413 972.518 147.334 967.935 Q144.279 963.329 144.279 954.602 Q144.279 945.852 147.334 941.268 Q150.413 936.662 156.223 936.662 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M168.167 930.763 L192.279 930.763 L192.279 933.961 L168.167 933.961 L168.167 930.763 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M201.137 941.239 L207.344 941.239 L207.344 919.817 L200.592 921.171 L200.592 917.711 L207.306 916.357 L211.106 916.357 L211.106 941.239 L217.312 941.239 L217.312 944.437 L201.137 944.437 L201.137 941.239 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M8.17473 1154.75 L18.2962 1154.75 L18.2962 1142.69 L22.8477 1142.69 L22.8477 1154.75 L42.1994 1154.75 Q46.5599 1154.75 47.8013 1153.57 Q49.0426 1152.36 49.0426 1148.7 L49.0426 1142.69 L53.9442 1142.69 L53.9442 1148.7 Q53.9442 1155.48 51.4297 1158.06 Q48.8834 1160.64 42.1994 1160.64 L22.8477 1160.64 L22.8477 1164.94 L18.2962 1164.94 L18.2962 1160.64 L8.17473 1160.64 L8.17473 1154.75 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M18.2962 1134.99 L18.2962 1129.13 L53.9442 1129.13 L53.9442 1134.99 L18.2962 1134.99 M4.41896 1134.99 L4.41896 1129.13 L11.835 1129.13 L11.835 1134.99 L4.41896 1134.99 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><pa
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"374.272,287.907 374.272,281.1 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"401.512,287.806 401.512,282.236 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"428.752,286.867 428.752,280.727 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"455.992,285.758 455.992,280.168 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"483.232,286.071 483.232,280.499 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"510.472,303.98 510.472,295.796 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"537.713,286.504 537.713,279.539 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"564.953,253.075 564.953,248.912 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"592.193,266.212 592.193,261.265 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"619.433,253.193 619.433,246.797 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"646.673,252.665 646.673,247.463 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"673.913,253.287 673.913,248.029 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"701.153,271.584 701.153,264.54 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"728.393,272.775 728.393,268.265 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"755.633,284.866 755.633,279.714 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"782.873,283.944 782.873,279.137 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"810.113,286.621 810.113,279.328 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"837.353,286.797 837.353,279.677 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"864.593,283.091 864.593,277.276 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"891.833,286.379 891.833,281.12 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"919.073,283.703 919.073,278.91 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"946.313,283.623 946.313,278.141 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"973.553,287.063 973.553,279.407 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1000.79,283.144 1000.79,276.532 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1028.03,288.008 1028.03,281.684 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1055.27,284.737 1055.27,278.773 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1082.51,282.9 1082.51,277.45 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1109.75,285.612 1109.75,280.472 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1136.99,285.219 1136.99,279.85 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1164.23,270.104 1164.23,266.209 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1191.47,267.383 1191.47,265.025 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1218.71,268.203 1218.71,263.201 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1245.95,269.724 1245.95,263.395 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1273.19,270.423 1273.19,264.412 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1300.43,282.615 1300.43,277.587 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1327.67,286.765 1327.67,278.975 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1354.91,284.195 1354.91,279.477 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1382.15,268.197 1382.15,263.251 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1409.39,288.747 1409.39,281.306 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1436.63,269.625 1436.63,263.331 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1463.87,285.063 1463.87,279.597 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1491.11,292.849 1491.11,281.657 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1518.35,292.66 1518.35,281.775 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1545.59,293.988 1545.59,280.393 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1572.83,304.668 1572.83,296.943 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1600.07,303.783 1600.07,294.421 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1627.31,302.676 1627.31,296.953 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1654.55,297.965 1654.55,287.222 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1681.79,287.368 1681.79,277.886 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1709.03,289.506 1709.03,281.451 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1736.27,291.214 1736.27,277.272 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1763.51,295.143 1763.51,281.947 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1790.75,293.159 1790.75,282.079 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1817.99,293.887 1817.99,280.416 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1845.23,296.155 1845.23,283.274 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1872.47,297.336 1872.47,286.808 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1899.71,299.055 1899.71,291.959 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1926.95,297.588 1926.95,292.05 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1954.19,315.033 1954.19,306.536 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1981.43,319.953 1981.43,314.138 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2008.67,305.789 2008.67,300.198 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2035.91,306.424 2035.91,300.664 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2063.15,306.628 2063.15,299.309 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2090.39,306.835 2090.39,299.212 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2117.63,304.439 2117.63,298.71 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2144.87,304.18 2144.87,297.764 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2172.11,304.633 2172.11,297.64 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2199.35,303.848 2199.35,298.157 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2226.59,304.614 2226.59,297.136 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2253.83,306.551 2253.83,299.897 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2281.07,303.829 2281.07,298.243 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2308.31,304.989 2308.31,298.927 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2335.55,303.794 2335.55,298.477 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2362.79,304.992 2362.79,298.784 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2390.03,305.644 2390.03,298.355 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2417.27,297.517 2417.27,291.565 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2444.51,306.979 2444.51,299.312 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2471.76,305.369 2471.76,299.797 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2499,304.642 2499,297.983 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2526.24,304.777 2526.24,298.519 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2553.48,302.782 2553.48,297.489 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2580.72,319.209 2580.72,284.374 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2607.96,303.969 2607.96,298.478 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2635.2,294.142 2635.2,288.723 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2662.44,302.303 2662.44,297.464 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2689.68,302.191 2689.68,297.145 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2716.92,315.876 2716.92,260.315 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2744.16,303.522 2744.16,300.023 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2771.4,302.12 2771.4,299.137 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2798.64,304.027 2798.64,299.429 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2825.88,301.363 2825.88,298.101 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2853.12,302.267 2853.12,297.772 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2880.36,303.351 2880.36,298.665 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2907.6,284.883 2907.6,281.757 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2934.84,303.908 2934.84,299.32 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2962.08,300.452 2962.08,296.686 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2989.32,303.699 2989.32,299.142 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3016.56,300.986 3016.56,296.028 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3043.8,296.707 3043.8,289.408 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3071.04,298.481 3071.04,293.496 \"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"363.032\" y1=\"287.224\" x2=\"331.032\" y2=\"287.224\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"363.032\" y1=\"281.33\" x2=\"331.032\" y2=\"281.33\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"390.272\" y1=\"287.907\" x2=\"358.272\" y2=\"287.907\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"390.272\" y1=\"281.1\" x2=\"358.272\" y2=\"281.1\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"417.512\" y1=\"287.806\" x2=\"385.512\" y2=\"287.806\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"417.512\" y1=\"282.236\" x2=\"385.512\" y2=\"282.236\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"444.752\" y1=\"286.867\" x2=\"412.752\" y2=\"286.867\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"444.752\" y1=\"280.727\" x2=\"412.752\" y2=\"280.727\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"471.992\" y1=\"285.758\" x2=\"439.992\" y2=\"285.758\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"471.992\" y1=\"280.168\" x2=\"439.992\" y2=\"280.168\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"499.232\" y1=\"286.071\" x2=\"467.232\" y2=\"286.071\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"499.232\" y1=\"280.499\" x2=\"467.232\" y2=\"280.499\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"526.472\" y1=\"303.98\" x2=\"494.472\" y2=\"303.98\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"526.472\" y1=\"295.796\" x2=\"494.472\" y2=\"295.796\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"553.713\" y1=\"286.504\" x2=\"521.713\" y2=\"286.504\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"553.713\" y1=\"279.539\" x2=\"521.713\" y2=\"279.539\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"580.953\" y1=\"253.075\" x2=\"548.953\" y2=\"253.075\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"580.953\" y1=\"248.912\" x2=\"548.953\" y2=\"248.912\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"608.193\" y1=\"266.212\" x2=\"576.193\" y2=\"266.212\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"608.193\" y1=\"261.265\" x2=\"576.193\" y2=\"261.265\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"635.433\" y1=\"253.193\" x2=\"603.433\" y2=\"253.193\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"635.433\" y1=\"246.797\" x2=\"603.433\" y2=\"246.797\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"662.673\" y1=\"252.665\" x2=\"630.673\" y2=\"252.665\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"662.673\" y1=\"247.463\" x2=\"630.673\" y2=\"247.463\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"689.913\" y1=\"253.287\" x2=\"657.913\" y2=\"253.287\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"689.913\" y1=\"248.029\" x2=\"657.913\" y2=\"248.029\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"717.153\" y1=\"271.584\" x2=\"685.153\" y2=\"271.584\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"717.153\" y1=\"264.54\" x2=\"685.153\" y2=\"264.54\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"744.393\" y1=\"272.775\" x2=\"712.393\" y2=\"272.775\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"744.393\" y1=\"268.265\" x2=\"712.393\" y2=\"268.265\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"771.633\" y1=\"284.866\" x2=\"739.633\" y2=\"284.866\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"771.633\" y1=\"279.714\" x2=\"739.633\" y2=\"279.714\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"798.873\" y1=\"283.944\" x2=\"766.873\" y2=\"283.944\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"798.873\" y1=\"279.137\" x2=\"766.873\" y2=\"279.137\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"826.113\" y1=\"286.621\" x2=\"794.113\" y2=\"286.621\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"826.113\" y1=\"279.328\" x2=\"794.113\" y2=\"279.328\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"853.353\" y1=\"286.797\" x2=\"821.353\" y2=\"286.797\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"853.353\" y1=\"279.677\" x2=\"821.353\" y2=\"279.677\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"880.593\" y1=\"283.091\" x2=\"848.593\" y2=\"283.091\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"880.593\" y1=\"277.276\" x2=\"848.593\" y2=\"277.276\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"907.833\" y1=\"286.379\" x2=\"875.833\" y2=\"286.379\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"907.833\" y1=\"281.12\" x2=\"875.833\" y2=\"281.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"935.073\" y1=\"283.703\" x2=\"903.073\" y2=\"283.703\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"935.073\" y1=\"278.91\" x2=\"903.073\" y2=\"278.91\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"962.313\" y1=\"283.623\" x2=\"930.313\" y2=\"283.623\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"962.313\" y1=\"278.141\" x2=\"930.313\" y2=\"278.141\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"989.553\" y1=\"287.063\" x2=\"957.553\" y2=\"287.063\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"989.553\" y1=\"279.407\" x2=\"957.553\" y2=\"279.407\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1016.79\" y1=\"283.144\" x2=\"984.793\" y2=\"283.144\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1016.79\" y1=\"276.532\" x2=\"984.793\" y2=\"276.532\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1044.03\" y1=\"288.008\" x2=\"1012.03\" y2=\"288.008\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1044.03\" y1=\"281.684\" x2=\"1012.03\" y2=\"281.684\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1071.27\" y1=\"284.737\" x2=\"1039.27\" y2=\"284.737\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1071.27\" y1=\"278.773\" x2=\"1039.27\" y2=\"278.773\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1098.51\" y1=\"282.9\" x2=\"1066.51\" y2=\"282.9\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1098.51\" y1=\"277.45\" x2=\"1066.51\" y2=\"277.45\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1125.75\" y1=\"285.612\" x2=\"1093.75\" y2=\"285.612\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1125.75\" y1=\"280.472\" x2=\"1093.75\" y2=\"280.472\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1152.99\" y1=\"285.219\" x2=\"1120.99\" y2=\"285.219\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1152.99\" y1=\"279.85\" x2=\"1120.99\" y2=\"279.85\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1180.23\" y1=\"270.104\" x2=\"1148.23\" y2=\"270.104\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1180.23\" y1=\"266.209\" x2=\"1148.23\" y2=\"266.209\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1207.47\" y1=\"267.383\" x2=\"1175.47\" y2=\"267.383\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1207.47\" y1=\"265.025\" x2=\"1175.47\" y2=\"265.025\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1234.71\" y1=\"268.203\" x2=\"1202.71\" y2=\"268.203\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1234.71\" y1=\"263.201\" x2=\"1202.71\" y2=\"263.201\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1261.95\" y1=\"269.724\" x2=\"1229.95\" y2=\"269.724\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1261.95\" y1=\"263.395\" x2=\"1229.95\" y2=\"263.395\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1289.19\" y1=\"270.423\" x2=\"1257.19\" y2=\"270.423\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1289.19\" y1=\"264.412\" x2=\"1257.19\" y2=\"264.412\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1316.43\" y1=\"282.615\" x2=\"1284.43\" y2=\"282.615\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1316.43\" y1=\"277.587\" x2=\"1284.43\" y2=\"277.587\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1343.67\" y1=\"286.765\" x2=\"1311.67\" y2=\"286.765\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1343.67\" y1=\"278.975\" x2=\"1311.67\" y2=\"278.975\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1370.91\" y1=\"284.195\" x2=\"1338.91\" y2=\"284.195\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1370.91\" y1=\"279.477\" x2=\"1338.91\" y2=\"279.477\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1398.15\" y1=\"268.197\" x2=\"1366.15\" y2=\"268.197\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1398.15\" y1=\"263.251\" x2=\"1366.15\" y2=\"263.251\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1425.39\" y1=\"288.747\" x2=\"1393.39\" y2=\"288.747\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1425.39\" y1=\"281.306\" x2=\"1393.39\" y2=\"281.306\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1452.63\" y1=\"269.625\" x2=\"1420.63\" y2=\"269.625\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1452.63\" y1=\"263.331\" x2=\"1420.63\" y2=\"263.331\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1479.87\" y1=\"285.063\" x2=\"1447.87\" y2=\"285.063\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1479.87\" y1=\"279.597\" x2=\"1447.87\" y2=\"279.597\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1507.11\" y1=\"292.849\" x2=\"1475.11\" y2=\"292.849\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1507.11\" y1=\"281.657\" x2=\"1475.11\" y2=\"281.657\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1534.35\" y1=\"292.66\" x2=\"1502.35\" y2=\"292.66\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1534.35\" y1=\"281.775\" x2=\"1502.35\" y2=\"281.775\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1561.59\" y1=\"293.988\" x2=\"1529.59\" y2=\"293.988\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1561.59\" y1=\"280.393\" x2=\"1529.59\" y2=\"280.393\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1588.83\" y1=\"304.668\" x2=\"1556.83\" y2=\"304.668\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1588.83\" y1=\"296.943\" x2=\"1556.83\" y2=\"296.943\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1616.07\" y1=\"303.783\" x2=\"1584.07\" y2=\"303.783\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1616.07\" y1=\"294.421\" x2=\"1584.07\" y2=\"294.421\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1643.31\" y1=\"302.676\" x2=\"1611.31\" y2=\"302.676\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1643.31\" y1=\"296.953\" x2=\"1611.31\" y2=\"296.953\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1670.55\" y1=\"297.965\" x2=\"1638.55\" y2=\"297.965\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1670.55\" y1=\"287.222\" x2=\"1638.55\" y2=\"287.222\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1697.79\" y1=\"287.368\" x2=\"1665.79\" y2=\"287.368\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1697.79\" y1=\"277.886\" x2=\"1665.79\" y2=\"277.886\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1725.03\" y1=\"289.506\" x2=\"1693.03\" y2=\"289.506\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1725.03\" y1=\"281.451\" x2=\"1693.03\" y2=\"281.451\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1752.27\" y1=\"291.214\" x2=\"1720.27\" y2=\"291.214\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1752.27\" y1=\"277.272\" x2=\"1720.27\" y2=\"277.272\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1779.51\" y1=\"295.143\" x2=\"1747.51\" y2=\"295.143\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1779.51\" y1=\"281.947\" x2=\"1747.51\" y2=\"281.947\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1806.75\" y1=\"293.159\" x2=\"1774.75\" y2=\"293.159\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1806.75\" y1=\"282.079\" x2=\"1774.75\" y2=\"282.079\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1833.99\" y1=\"293.887\" x2=\"1801.99\" y2=\"293.887\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1833.99\" y1=\"280.416\" x2=\"1801.99\" y2=\"280.416\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1861.23\" y1=\"296.155\" x2=\"1829.23\" y2=\"296.155\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1861.23\" y1=\"283.274\" x2=\"1829.23\" y2=\"283.274\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1888.47\" y1=\"297.336\" x2=\"1856.47\" y2=\"297.336\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1888.47\" y1=\"286.808\" x2=\"1856.47\" y2=\"286.808\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1915.71\" y1=\"299.055\" x2=\"1883.71\" y2=\"299.055\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1915.71\" y1=\"291.959\" x2=\"1883.71\" y2=\"291.959\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1942.95\" y1=\"297.588\" x2=\"1910.95\" y2=\"297.588\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1942.95\" y1=\"292.05\" x2=\"1910.95\" y2=\"292.05\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1970.19\" y1=\"315.033\" x2=\"1938.19\" y2=\"315.033\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1970.19\" y1=\"306.536\" x2=\"1938.19\" y2=\"306.536\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1997.43\" y1=\"319.953\" x2=\"1965.43\" y2=\"319.953\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1997.43\" y1=\"314.138\" x2=\"1965.43\" y2=\"314.138\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2024.67\" y1=\"305.789\" x2=\"1992.67\" y2=\"305.789\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2024.67\" y1=\"300.198\" x2=\"1992.67\" y2=\"300.198\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2051.91\" y1=\"306.424\" x2=\"2019.91\" y2=\"306.424\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2051.91\" y1=\"300.664\" x2=\"2019.91\" y2=\"300.664\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2079.15\" y1=\"306.628\" x2=\"2047.15\" y2=\"306.628\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2079.15\" y1=\"299.309\" x2=\"2047.15\" y2=\"299.309\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2106.39\" y1=\"306.835\" x2=\"2074.39\" y2=\"306.835\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2106.39\" y1=\"299.212\" x2=\"2074.39\" y2=\"299.212\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2133.63\" y1=\"304.439\" x2=\"2101.63\" y2=\"304.439\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2133.63\" y1=\"298.71\" x2=\"2101.63\" y2=\"298.71\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2160.87\" y1=\"304.18\" x2=\"2128.87\" y2=\"304.18\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2160.87\" y1=\"297.764\" x2=\"2128.87\" y2=\"297.764\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2188.11\" y1=\"304.633\" x2=\"2156.11\" y2=\"304.633\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2188.11\" y1=\"297.64\" x2=\"2156.11\" y2=\"297.64\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2215.35\" y1=\"303.848\" x2=\"2183.35\" y2=\"303.848\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2215.35\" y1=\"298.157\" x2=\"2183.35\" y2=\"298.157\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2242.59\" y1=\"304.614\" x2=\"2210.59\" y2=\"304.614\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2242.59\" y1=\"297.136\" x2=\"2210.59\" y2=\"297.136\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2269.83\" y1=\"306.551\" x2=\"2237.83\" y2=\"306.551\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2269.83\" y1=\"299.897\" x2=\"2237.83\" y2=\"299.897\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2297.07\" y1=\"303.829\" x2=\"2265.07\" y2=\"303.829\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2297.07\" y1=\"298.243\" x2=\"2265.07\" y2=\"298.243\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2324.31\" y1=\"304.989\" x2=\"2292.31\" y2=\"304.989\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2324.31\" y1=\"298.927\" x2=\"2292.31\" y2=\"298.927\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2351.55\" y1=\"303.794\" x2=\"2319.55\" y2=\"303.794\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2351.55\" y1=\"298.477\" x2=\"2319.55\" y2=\"298.477\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2378.79\" y1=\"304.992\" x2=\"2346.79\" y2=\"304.992\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2378.79\" y1=\"298.784\" x2=\"2346.79\" y2=\"298.784\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2406.03\" y1=\"305.644\" x2=\"2374.03\" y2=\"305.644\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2406.03\" y1=\"298.355\" x2=\"2374.03\" y2=\"298.355\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2433.27\" y1=\"297.517\" x2=\"2401.27\" y2=\"297.517\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2433.27\" y1=\"291.565\" x2=\"2401.27\" y2=\"291.565\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2460.51\" y1=\"306.979\" x2=\"2428.51\" y2=\"306.979\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2460.51\" y1=\"299.312\" x2=\"2428.51\" y2=\"299.312\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2487.76\" y1=\"305.369\" x2=\"2455.76\" y2=\"305.369\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2487.76\" y1=\"299.797\" x2=\"2455.76\" y2=\"299.797\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2515\" y1=\"304.642\" x2=\"2483\" y2=\"304.642\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2515\" y1=\"297.983\" x2=\"2483\" y2=\"297.983\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2542.24\" y1=\"304.777\" x2=\"2510.24\" y2=\"304.777\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2542.24\" y1=\"298.519\" x2=\"2510.24\" y2=\"298.519\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2569.48\" y1=\"302.782\" x2=\"2537.48\" y2=\"302.782\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2569.48\" y1=\"297.489\" x2=\"2537.48\" y2=\"297.489\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2596.72\" y1=\"319.209\" x2=\"2564.72\" y2=\"319.209\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2596.72\" y1=\"284.374\" x2=\"2564.72\" y2=\"284.374\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2623.96\" y1=\"303.969\" x2=\"2591.96\" y2=\"303.969\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2623.96\" y1=\"298.478\" x2=\"2591.96\" y2=\"298.478\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2651.2\" y1=\"294.142\" x2=\"2619.2\" y2=\"294.142\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2651.2\" y1=\"288.723\" x2=\"2619.2\" y2=\"288.723\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2678.44\" y1=\"302.303\" x2=\"2646.44\" y2=\"302.303\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2678.44\" y1=\"297.464\" x2=\"2646.44\" y2=\"297.464\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2705.68\" y1=\"302.191\" x2=\"2673.68\" y2=\"302.191\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2705.68\" y1=\"297.145\" x2=\"2673.68\" y2=\"297.145\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2732.92\" y1=\"315.876\" x2=\"2700.92\" y2=\"315.876\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2732.92\" y1=\"260.315\" x2=\"2700.92\" y2=\"260.315\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2760.16\" y1=\"303.522\" x2=\"2728.16\" y2=\"303.522\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2760.16\" y1=\"300.023\" x2=\"2728.16\" y2=\"300.023\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2787.4\" y1=\"302.12\" x2=\"2755.4\" y2=\"302.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2787.4\" y1=\"299.137\" x2=\"2755.4\" y2=\"299.137\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2814.64\" y1=\"304.027\" x2=\"2782.64\" y2=\"304.027\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2814.64\" y1=\"299.429\" x2=\"2782.64\" y2=\"299.429\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2841.88\" y1=\"301.363\" x2=\"2809.88\" y2=\"301.363\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2841.88\" y1=\"298.101\" x2=\"2809.88\" y2=\"298.101\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2869.12\" y1=\"302.267\" x2=\"2837.12\" y2=\"302.267\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2869.12\" y1=\"297.772\" x2=\"2837.12\" y2=\"297.772\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2896.36\" y1=\"303.351\" x2=\"2864.36\" y2=\"303.351\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2896.36\" y1=\"298.665\" x2=\"2864.36\" y2=\"298.665\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2923.6\" y1=\"284.883\" x2=\"2891.6\" y2=\"284.883\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2923.6\" y1=\"281.757\" x2=\"2891.6\" y2=\"281.757\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2950.84\" y1=\"303.908\" x2=\"2918.84\" y2=\"303.908\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2950.84\" y1=\"299.32\" x2=\"2918.84\" y2=\"299.32\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2978.08\" y1=\"300.452\" x2=\"2946.08\" y2=\"300.452\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2978.08\" y1=\"296.686\" x2=\"2946.08\" y2=\"296.686\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3005.32\" y1=\"303.699\" x2=\"2973.32\" y2=\"303.699\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3005.32\" y1=\"299.142\" x2=\"2973.32\" y2=\"299.142\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3032.56\" y1=\"300.986\" x2=\"3000.56\" y2=\"300.986\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3032.56\" y1=\"296.028\" x2=\"3000.56\" y2=\"296.028\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3059.8\" y1=\"296.707\" x2=\"3027.8\" y2=\"296.707\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3059.8\" y1=\"289.408\" x2=\"3027.8\" y2=\"289.408\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3087.04\" y1=\"298.481\" x2=\"3055.04\" y2=\"298.481\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3087.04\" y1=\"293.496\" x2=\"3055.04\" y2=\"293.496\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"347.032\" cy=\"284.264\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"374.272\" cy=\"284.486\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"401.512\" cy=\"285.009\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"428.752\" cy=\"283.783\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"455.992\" cy=\"282.951\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"483.232\" cy=\"283.274\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"510.472\" cy=\"299.863\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"537.713\" cy=\"283.003\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"564.953\" cy=\"250.987\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"592.193\" cy=\"263.729\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"619.433\" cy=\"249.98\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"646.673\" cy=\"250.054\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"673.913\" cy=\"250.648\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"701.153\" cy=\"268.044\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"728.393\" cy=\"270.513\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"755.633\" cy=\"282.28\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"782.873\" cy=\"281.532\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"810.113\" cy=\"282.955\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"837.353\" cy=\"283.218\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"864.593\" cy=\"280.171\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"891.833\" cy=\"283.739\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"919.073\" cy=\"281.298\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"946.313\" cy=\"280.871\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"973.553\" cy=\"283.214\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1000.79\" cy=\"279.822\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1028.03\" cy=\"284.831\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1055.27\" cy=\"281.742\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1082.51\" cy=\"280.164\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1109.75\" cy=\"283.032\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1136.99\" cy=\"282.524\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1164.23\" cy=\"268.151\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1191.47\" cy=\"266.202\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1218.71\" cy=\"265.693\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1245.95\" cy=\"266.545\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1273.19\" cy=\"267.404\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1300.43\" cy=\"280.091\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1327.67\" cy=\"282.847\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1354.91\" cy=\"281.827\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1382.15\" cy=\"265.715\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1409.39\" cy=\"285.006\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1436.63\" cy=\"266.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1463.87\" cy=\"282.319\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1491.11\" cy=\"287.206\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1518.35\" cy=\"287.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1545.59\" cy=\"287.122\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1572.83\" cy=\"300.783\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1600.07\" cy=\"299.069\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1627.31\" cy=\"299.802\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1654.55\" cy=\"292.55\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1681.79\" cy=\"282.593\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1709.03\" cy=\"285.454\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1736.27\" cy=\"284.17\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1763.51\" cy=\"288.48\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1790.75\" cy=\"287.573\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1817.99\" cy=\"287.084\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1845.23\" cy=\"289.652\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1872.47\" cy=\"292.031\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1899.71\" cy=\"295.488\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1926.95\" cy=\"294.808\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1954.19\" cy=\"310.757\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1981.43\" cy=\"317.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2008.67\" cy=\"302.982\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2035.91\" cy=\"303.532\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2063.15\" cy=\"302.949\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2090.39\" cy=\"303.002\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2117.63\" cy=\"301.562\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2144.87\" cy=\"300.957\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2172.11\" cy=\"301.118\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2199.35\" cy=\"300.99\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2226.59\" cy=\"300.854\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2253.83\" cy=\"303.208\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2281.07\" cy=\"301.024\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2308.31\" cy=\"301.944\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2335.55\" cy=\"301.125\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2362.79\" cy=\"301.874\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2390.03\" cy=\"301.98\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2417.27\" cy=\"294.528\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2444.51\" cy=\"303.124\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2471.76\" cy=\"302.571\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2499\" cy=\"301.296\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2526.24\" cy=\"301.634\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2553.48\" cy=\"300.125\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2580.72\" cy=\"301.339\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2607.96\" cy=\"301.212\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2635.2\" cy=\"291.421\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2662.44\" cy=\"299.875\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2689.68\" cy=\"299.658\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2716.92\" cy=\"286.944\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2744.16\" cy=\"301.768\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2771.4\" cy=\"300.626\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2798.64\" cy=\"301.72\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2825.88\" cy=\"299.728\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2853.12\" cy=\"300.012\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2880.36\" cy=\"301\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2907.6\" cy=\"283.316\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2934.84\" cy=\"301.606\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2962.08\" cy=\"298.564\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2989.32\" cy=\"301.413\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3016.56\" cy=\"298.498\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3043.8\" cy=\"293.038\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3071.04\" cy=\"295.979\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"347.032,1729.93 347.032,1682.51 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"374.272,1651.08 374.272,1649.86 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"401.512,1654.12 401.512,1652.75 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"428.752,1652.35 428.752,1651.22 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"455.992,1837.61 455.992,1832.92 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"483.232,1709.3 483.232,1705.01 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"510.472,1795.79 510.472,1777.39 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"537.713,1690.25 537.713,1684.17 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"564.953,1652.13 564.953,1649.38 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"592.193,1641.54 592.193,1640.29 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"619.433,1654.29 619.433,1652.77 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"646.673,1648.74 646.673,1646.47 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"673.913,1625.67 673.913,1624.65 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"701.153,1688.19 701.153,1686.74 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"728.393,1670.44 728.393,1668.91 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"755.633,1655.42 755.633,1653.81 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"782.873,1684.02 782.873,1682.85 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"810.113,1696.33 810.113,1694.74 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"837.353,1696.77 837.353,1694.81 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"864.593,1676.85 864.593,1675.27 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"891.833,1670.82 891.833,1669.63 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"919.073,1679.2 919.073,1676.61 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"946.313,1671.91 946.313,1670.4 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"973.553,1676.51 973.553,1675.04 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1000.79,1680.88 1000.79,1678.56 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1028.03,1672.17 1028.03,1670.76 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1055.27,1673.63 1055.27,1672.46 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1082.51,1681.41 1082.51,1679.73 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1109.75,1648.78 1109.75,1646.74 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1136.99,1653.5 1136.99,1650.75 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1164.23,1653.36 1164.23,1648.85 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1191.47,1625.66 1191.47,1623.21 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1218.71,1742.84 1218.71,1692.65 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1245.95,1621.76 1245.95,1620.05 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1273.19,1660.92 1273.19,1656.54 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1300.43,1677.22 1300.43,1670.61 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1327.67,1814.37 1327.67,1793.12 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1354.91,1652.06 1354.91,1650.5 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1382.15,1664.61 1382.15,1659.76 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1409.39,1758.39 1409.39,1755.81 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1436.63,1708.16 1436.63,1700.49 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1463.87,1661.61 1463.87,1660.45 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1491.11,1798.16 1491.11,1752.21 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1518.35,1666.33 1518.35,1665.16 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1545.59,1672.17 1545.59,1670.63 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1572.83,1641.44 1572.83,1640.55 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1600.07,1682.14 1600.07,1680.56 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1627.31,1643.6 1627.31,1642.41 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1654.55,1674.75 1654.55,1673.52 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1681.79,1640.06 1681.79,1639.38 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1709.03,1651.45 1709.03,1650.64 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1736.27,1650.9 1736.27,1649.03 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1763.51,1646.81 1763.51,1645.88 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1790.75,1633.1 1790.75,1632.23 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1817.99,1630.52 1817.99,1629.35 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1845.23,1629.56 1845.23,1628.37 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1872.47,1639.74 1872.47,1638.81 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1899.71,1566.86 1899.71,1566 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1926.95,1565.78 1926.95,1564.69 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1954.19,1553.21 1954.19,1551.92 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1981.43,1550.32 1981.43,1549.59 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2008.67,1560.95 2008.67,1559.96 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2035.91,1541.94 2035.91,1541.01 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2063.15,1540.12 2063.15,1539.36 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2090.39,1543.52 2090.39,1542.68 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2117.63,1558.55 2117.63,1557.72 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2144.87,1541.83 2144.87,1541.13 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2172.11,1553.46 2172.11,1552.64 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2199.35,1545.28 2199.35,1544.7 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2226.59,1547.36 2226.59,1546.33 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2253.83,1545.97 2253.83,1544.98 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2281.07,1539.92 2281.07,1538.75 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2308.31,1552.34 2308.31,1551.56 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2335.55,1538.79 2335.55,1537.87 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2362.79,1524.39 2362.79,1523.53 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2390.03,1530.14 2390.03,1529.39 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2417.27,1535.47 2417.27,1534.52 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2444.51,1528.34 2444.51,1527.42 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2471.76,1527.88 2471.76,1527.1 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2499,1530.49 2499,1529.93 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2526.24,1537.2 2526.24,1536.49 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2553.48,1540.52 2553.48,1540.03 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2580.72,1544.13 2580.72,1543.32 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2607.96,1532.25 2607.96,1531.59 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2635.2,1536.12 2635.2,1535.42 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2662.44,1532.73 2662.44,1531.95 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2689.68,1529.94 2689.68,1529.04 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2716.92,1528.95 2716.92,1528.16 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2744.16,1529.56 2744.16,1528.82 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2771.4,1535.79 2771.4,1534.93 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2798.64,1528.34 2798.64,1527.5 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2825.88,1527.45 2825.88,1526.55 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2853.12,1556.6 2853.12,1555.51 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2880.36,1550.35 2880.36,1549.27 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2907.6,1538.6 2907.6,1537.65 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2934.84,1550.64 2934.84,1549.72 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2962.08,1570.17 2962.08,1569.13 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2989.32,1632.17 2989.32,1631.16 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3016.56,1520 3016.56,1519.24 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3043.8,1542.69 3043.8,1541.6 \"/>\n",
"<polyline clip-path=\"url(#clip572)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"3071.04,1500.48 3071.04,1499.71 \"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"363.032\" y1=\"1729.93\" x2=\"331.032\" y2=\"1729.93\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"363.032\" y1=\"1682.51\" x2=\"331.032\" y2=\"1682.51\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"390.272\" y1=\"1651.08\" x2=\"358.272\" y2=\"1651.08\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"390.272\" y1=\"1649.86\" x2=\"358.272\" y2=\"1649.86\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"417.512\" y1=\"1654.12\" x2=\"385.512\" y2=\"1654.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"417.512\" y1=\"1652.75\" x2=\"385.512\" y2=\"1652.75\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"444.752\" y1=\"1652.35\" x2=\"412.752\" y2=\"1652.35\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"444.752\" y1=\"1651.22\" x2=\"412.752\" y2=\"1651.22\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"471.992\" y1=\"1837.61\" x2=\"439.992\" y2=\"1837.61\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"471.992\" y1=\"1832.92\" x2=\"439.992\" y2=\"1832.92\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"499.232\" y1=\"1709.3\" x2=\"467.232\" y2=\"1709.3\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"499.232\" y1=\"1705.01\" x2=\"467.232\" y2=\"1705.01\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"526.472\" y1=\"1795.79\" x2=\"494.472\" y2=\"1795.79\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"526.472\" y1=\"1777.39\" x2=\"494.472\" y2=\"1777.39\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"553.713\" y1=\"1690.25\" x2=\"521.713\" y2=\"1690.25\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"553.713\" y1=\"1684.17\" x2=\"521.713\" y2=\"1684.17\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"580.953\" y1=\"1652.13\" x2=\"548.953\" y2=\"1652.13\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"580.953\" y1=\"1649.38\" x2=\"548.953\" y2=\"1649.38\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"608.193\" y1=\"1641.54\" x2=\"576.193\" y2=\"1641.54\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"608.193\" y1=\"1640.29\" x2=\"576.193\" y2=\"1640.29\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"635.433\" y1=\"1654.29\" x2=\"603.433\" y2=\"1654.29\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"635.433\" y1=\"1652.77\" x2=\"603.433\" y2=\"1652.77\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"662.673\" y1=\"1648.74\" x2=\"630.673\" y2=\"1648.74\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"662.673\" y1=\"1646.47\" x2=\"630.673\" y2=\"1646.47\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"689.913\" y1=\"1625.67\" x2=\"657.913\" y2=\"1625.67\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"689.913\" y1=\"1624.65\" x2=\"657.913\" y2=\"1624.65\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"717.153\" y1=\"1688.19\" x2=\"685.153\" y2=\"1688.19\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"717.153\" y1=\"1686.74\" x2=\"685.153\" y2=\"1686.74\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"744.393\" y1=\"1670.44\" x2=\"712.393\" y2=\"1670.44\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"744.393\" y1=\"1668.91\" x2=\"712.393\" y2=\"1668.91\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"771.633\" y1=\"1655.42\" x2=\"739.633\" y2=\"1655.42\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"771.633\" y1=\"1653.81\" x2=\"739.633\" y2=\"1653.81\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"798.873\" y1=\"1684.02\" x2=\"766.873\" y2=\"1684.02\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"798.873\" y1=\"1682.85\" x2=\"766.873\" y2=\"1682.85\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"826.113\" y1=\"1696.33\" x2=\"794.113\" y2=\"1696.33\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"826.113\" y1=\"1694.74\" x2=\"794.113\" y2=\"1694.74\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"853.353\" y1=\"1696.77\" x2=\"821.353\" y2=\"1696.77\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"853.353\" y1=\"1694.81\" x2=\"821.353\" y2=\"1694.81\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"880.593\" y1=\"1676.85\" x2=\"848.593\" y2=\"1676.85\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"880.593\" y1=\"1675.27\" x2=\"848.593\" y2=\"1675.27\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"907.833\" y1=\"1670.82\" x2=\"875.833\" y2=\"1670.82\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"907.833\" y1=\"1669.63\" x2=\"875.833\" y2=\"1669.63\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"935.073\" y1=\"1679.2\" x2=\"903.073\" y2=\"1679.2\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"935.073\" y1=\"1676.61\" x2=\"903.073\" y2=\"1676.61\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"962.313\" y1=\"1671.91\" x2=\"930.313\" y2=\"1671.91\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"962.313\" y1=\"1670.4\" x2=\"930.313\" y2=\"1670.4\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"989.553\" y1=\"1676.51\" x2=\"957.553\" y2=\"1676.51\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"989.553\" y1=\"1675.04\" x2=\"957.553\" y2=\"1675.04\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1016.79\" y1=\"1680.88\" x2=\"984.793\" y2=\"1680.88\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1016.79\" y1=\"1678.56\" x2=\"984.793\" y2=\"1678.56\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1044.03\" y1=\"1672.17\" x2=\"1012.03\" y2=\"1672.17\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1044.03\" y1=\"1670.76\" x2=\"1012.03\" y2=\"1670.76\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1071.27\" y1=\"1673.63\" x2=\"1039.27\" y2=\"1673.63\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1071.27\" y1=\"1672.46\" x2=\"1039.27\" y2=\"1672.46\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1098.51\" y1=\"1681.41\" x2=\"1066.51\" y2=\"1681.41\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1098.51\" y1=\"1679.73\" x2=\"1066.51\" y2=\"1679.73\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1125.75\" y1=\"1648.78\" x2=\"1093.75\" y2=\"1648.78\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1125.75\" y1=\"1646.74\" x2=\"1093.75\" y2=\"1646.74\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1152.99\" y1=\"1653.5\" x2=\"1120.99\" y2=\"1653.5\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1152.99\" y1=\"1650.75\" x2=\"1120.99\" y2=\"1650.75\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1180.23\" y1=\"1653.36\" x2=\"1148.23\" y2=\"1653.36\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1180.23\" y1=\"1648.85\" x2=\"1148.23\" y2=\"1648.85\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1207.47\" y1=\"1625.66\" x2=\"1175.47\" y2=\"1625.66\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1207.47\" y1=\"1623.21\" x2=\"1175.47\" y2=\"1623.21\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1234.71\" y1=\"1742.84\" x2=\"1202.71\" y2=\"1742.84\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1234.71\" y1=\"1692.65\" x2=\"1202.71\" y2=\"1692.65\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1261.95\" y1=\"1621.76\" x2=\"1229.95\" y2=\"1621.76\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1261.95\" y1=\"1620.05\" x2=\"1229.95\" y2=\"1620.05\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1289.19\" y1=\"1660.92\" x2=\"1257.19\" y2=\"1660.92\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1289.19\" y1=\"1656.54\" x2=\"1257.19\" y2=\"1656.54\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1316.43\" y1=\"1677.22\" x2=\"1284.43\" y2=\"1677.22\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1316.43\" y1=\"1670.61\" x2=\"1284.43\" y2=\"1670.61\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1343.67\" y1=\"1814.37\" x2=\"1311.67\" y2=\"1814.37\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1343.67\" y1=\"1793.12\" x2=\"1311.67\" y2=\"1793.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1370.91\" y1=\"1652.06\" x2=\"1338.91\" y2=\"1652.06\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1370.91\" y1=\"1650.5\" x2=\"1338.91\" y2=\"1650.5\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1398.15\" y1=\"1664.61\" x2=\"1366.15\" y2=\"1664.61\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1398.15\" y1=\"1659.76\" x2=\"1366.15\" y2=\"1659.76\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1425.39\" y1=\"1758.39\" x2=\"1393.39\" y2=\"1758.39\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1425.39\" y1=\"1755.81\" x2=\"1393.39\" y2=\"1755.81\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1452.63\" y1=\"1708.16\" x2=\"1420.63\" y2=\"1708.16\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1452.63\" y1=\"1700.49\" x2=\"1420.63\" y2=\"1700.49\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1479.87\" y1=\"1661.61\" x2=\"1447.87\" y2=\"1661.61\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1479.87\" y1=\"1660.45\" x2=\"1447.87\" y2=\"1660.45\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1507.11\" y1=\"1798.16\" x2=\"1475.11\" y2=\"1798.16\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1507.11\" y1=\"1752.21\" x2=\"1475.11\" y2=\"1752.21\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1534.35\" y1=\"1666.33\" x2=\"1502.35\" y2=\"1666.33\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1534.35\" y1=\"1665.16\" x2=\"1502.35\" y2=\"1665.16\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1561.59\" y1=\"1672.17\" x2=\"1529.59\" y2=\"1672.17\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1561.59\" y1=\"1670.63\" x2=\"1529.59\" y2=\"1670.63\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1588.83\" y1=\"1641.44\" x2=\"1556.83\" y2=\"1641.44\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1588.83\" y1=\"1640.55\" x2=\"1556.83\" y2=\"1640.55\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1616.07\" y1=\"1682.14\" x2=\"1584.07\" y2=\"1682.14\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1616.07\" y1=\"1680.56\" x2=\"1584.07\" y2=\"1680.56\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1643.31\" y1=\"1643.6\" x2=\"1611.31\" y2=\"1643.6\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1643.31\" y1=\"1642.41\" x2=\"1611.31\" y2=\"1642.41\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1670.55\" y1=\"1674.75\" x2=\"1638.55\" y2=\"1674.75\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1670.55\" y1=\"1673.52\" x2=\"1638.55\" y2=\"1673.52\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1697.79\" y1=\"1640.06\" x2=\"1665.79\" y2=\"1640.06\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1697.79\" y1=\"1639.38\" x2=\"1665.79\" y2=\"1639.38\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1725.03\" y1=\"1651.45\" x2=\"1693.03\" y2=\"1651.45\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1725.03\" y1=\"1650.64\" x2=\"1693.03\" y2=\"1650.64\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1752.27\" y1=\"1650.9\" x2=\"1720.27\" y2=\"1650.9\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1752.27\" y1=\"1649.03\" x2=\"1720.27\" y2=\"1649.03\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1779.51\" y1=\"1646.81\" x2=\"1747.51\" y2=\"1646.81\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1779.51\" y1=\"1645.88\" x2=\"1747.51\" y2=\"1645.88\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1806.75\" y1=\"1633.1\" x2=\"1774.75\" y2=\"1633.1\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1806.75\" y1=\"1632.23\" x2=\"1774.75\" y2=\"1632.23\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1833.99\" y1=\"1630.52\" x2=\"1801.99\" y2=\"1630.52\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1833.99\" y1=\"1629.35\" x2=\"1801.99\" y2=\"1629.35\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1861.23\" y1=\"1629.56\" x2=\"1829.23\" y2=\"1629.56\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1861.23\" y1=\"1628.37\" x2=\"1829.23\" y2=\"1628.37\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1888.47\" y1=\"1639.74\" x2=\"1856.47\" y2=\"1639.74\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1888.47\" y1=\"1638.81\" x2=\"1856.47\" y2=\"1638.81\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1915.71\" y1=\"1566.86\" x2=\"1883.71\" y2=\"1566.86\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1915.71\" y1=\"1566\" x2=\"1883.71\" y2=\"1566\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1942.95\" y1=\"1565.78\" x2=\"1910.95\" y2=\"1565.78\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1942.95\" y1=\"1564.69\" x2=\"1910.95\" y2=\"1564.69\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1970.19\" y1=\"1553.21\" x2=\"1938.19\" y2=\"1553.21\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1970.19\" y1=\"1551.92\" x2=\"1938.19\" y2=\"1551.92\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1997.43\" y1=\"1550.32\" x2=\"1965.43\" y2=\"1550.32\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"1997.43\" y1=\"1549.59\" x2=\"1965.43\" y2=\"1549.59\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2024.67\" y1=\"1560.95\" x2=\"1992.67\" y2=\"1560.95\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2024.67\" y1=\"1559.96\" x2=\"1992.67\" y2=\"1559.96\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2051.91\" y1=\"1541.94\" x2=\"2019.91\" y2=\"1541.94\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2051.91\" y1=\"1541.01\" x2=\"2019.91\" y2=\"1541.01\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2079.15\" y1=\"1540.12\" x2=\"2047.15\" y2=\"1540.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2079.15\" y1=\"1539.36\" x2=\"2047.15\" y2=\"1539.36\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2106.39\" y1=\"1543.52\" x2=\"2074.39\" y2=\"1543.52\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2106.39\" y1=\"1542.68\" x2=\"2074.39\" y2=\"1542.68\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2133.63\" y1=\"1558.55\" x2=\"2101.63\" y2=\"1558.55\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2133.63\" y1=\"1557.72\" x2=\"2101.63\" y2=\"1557.72\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2160.87\" y1=\"1541.83\" x2=\"2128.87\" y2=\"1541.83\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2160.87\" y1=\"1541.13\" x2=\"2128.87\" y2=\"1541.13\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2188.11\" y1=\"1553.46\" x2=\"2156.11\" y2=\"1553.46\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2188.11\" y1=\"1552.64\" x2=\"2156.11\" y2=\"1552.64\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2215.35\" y1=\"1545.28\" x2=\"2183.35\" y2=\"1545.28\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2215.35\" y1=\"1544.7\" x2=\"2183.35\" y2=\"1544.7\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2242.59\" y1=\"1547.36\" x2=\"2210.59\" y2=\"1547.36\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2242.59\" y1=\"1546.33\" x2=\"2210.59\" y2=\"1546.33\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2269.83\" y1=\"1545.97\" x2=\"2237.83\" y2=\"1545.97\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2269.83\" y1=\"1544.98\" x2=\"2237.83\" y2=\"1544.98\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2297.07\" y1=\"1539.92\" x2=\"2265.07\" y2=\"1539.92\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2297.07\" y1=\"1538.75\" x2=\"2265.07\" y2=\"1538.75\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2324.31\" y1=\"1552.34\" x2=\"2292.31\" y2=\"1552.34\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2324.31\" y1=\"1551.56\" x2=\"2292.31\" y2=\"1551.56\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2351.55\" y1=\"1538.79\" x2=\"2319.55\" y2=\"1538.79\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2351.55\" y1=\"1537.87\" x2=\"2319.55\" y2=\"1537.87\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2378.79\" y1=\"1524.39\" x2=\"2346.79\" y2=\"1524.39\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2378.79\" y1=\"1523.53\" x2=\"2346.79\" y2=\"1523.53\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2406.03\" y1=\"1530.14\" x2=\"2374.03\" y2=\"1530.14\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2406.03\" y1=\"1529.39\" x2=\"2374.03\" y2=\"1529.39\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2433.27\" y1=\"1535.47\" x2=\"2401.27\" y2=\"1535.47\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2433.27\" y1=\"1534.52\" x2=\"2401.27\" y2=\"1534.52\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2460.51\" y1=\"1528.34\" x2=\"2428.51\" y2=\"1528.34\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2460.51\" y1=\"1527.42\" x2=\"2428.51\" y2=\"1527.42\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2487.76\" y1=\"1527.88\" x2=\"2455.76\" y2=\"1527.88\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2487.76\" y1=\"1527.1\" x2=\"2455.76\" y2=\"1527.1\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2515\" y1=\"1530.49\" x2=\"2483\" y2=\"1530.49\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2515\" y1=\"1529.93\" x2=\"2483\" y2=\"1529.93\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2542.24\" y1=\"1537.2\" x2=\"2510.24\" y2=\"1537.2\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2542.24\" y1=\"1536.49\" x2=\"2510.24\" y2=\"1536.49\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2569.48\" y1=\"1540.52\" x2=\"2537.48\" y2=\"1540.52\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2569.48\" y1=\"1540.03\" x2=\"2537.48\" y2=\"1540.03\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2596.72\" y1=\"1544.13\" x2=\"2564.72\" y2=\"1544.13\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2596.72\" y1=\"1543.32\" x2=\"2564.72\" y2=\"1543.32\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2623.96\" y1=\"1532.25\" x2=\"2591.96\" y2=\"1532.25\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2623.96\" y1=\"1531.59\" x2=\"2591.96\" y2=\"1531.59\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2651.2\" y1=\"1536.12\" x2=\"2619.2\" y2=\"1536.12\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2651.2\" y1=\"1535.42\" x2=\"2619.2\" y2=\"1535.42\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2678.44\" y1=\"1532.73\" x2=\"2646.44\" y2=\"1532.73\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2678.44\" y1=\"1531.95\" x2=\"2646.44\" y2=\"1531.95\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2705.68\" y1=\"1529.94\" x2=\"2673.68\" y2=\"1529.94\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2705.68\" y1=\"1529.04\" x2=\"2673.68\" y2=\"1529.04\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2732.92\" y1=\"1528.95\" x2=\"2700.92\" y2=\"1528.95\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2732.92\" y1=\"1528.16\" x2=\"2700.92\" y2=\"1528.16\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2760.16\" y1=\"1529.56\" x2=\"2728.16\" y2=\"1529.56\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2760.16\" y1=\"1528.82\" x2=\"2728.16\" y2=\"1528.82\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2787.4\" y1=\"1535.79\" x2=\"2755.4\" y2=\"1535.79\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2787.4\" y1=\"1534.93\" x2=\"2755.4\" y2=\"1534.93\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2814.64\" y1=\"1528.34\" x2=\"2782.64\" y2=\"1528.34\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2814.64\" y1=\"1527.5\" x2=\"2782.64\" y2=\"1527.5\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2841.88\" y1=\"1527.45\" x2=\"2809.88\" y2=\"1527.45\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2841.88\" y1=\"1526.55\" x2=\"2809.88\" y2=\"1526.55\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2869.12\" y1=\"1556.6\" x2=\"2837.12\" y2=\"1556.6\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2869.12\" y1=\"1555.51\" x2=\"2837.12\" y2=\"1555.51\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2896.36\" y1=\"1550.35\" x2=\"2864.36\" y2=\"1550.35\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2896.36\" y1=\"1549.27\" x2=\"2864.36\" y2=\"1549.27\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2923.6\" y1=\"1538.6\" x2=\"2891.6\" y2=\"1538.6\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2923.6\" y1=\"1537.65\" x2=\"2891.6\" y2=\"1537.65\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2950.84\" y1=\"1550.64\" x2=\"2918.84\" y2=\"1550.64\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2950.84\" y1=\"1549.72\" x2=\"2918.84\" y2=\"1549.72\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2978.08\" y1=\"1570.17\" x2=\"2946.08\" y2=\"1570.17\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"2978.08\" y1=\"1569.13\" x2=\"2946.08\" y2=\"1569.13\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3005.32\" y1=\"1632.17\" x2=\"2973.32\" y2=\"1632.17\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3005.32\" y1=\"1631.16\" x2=\"2973.32\" y2=\"1631.16\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3032.56\" y1=\"1520\" x2=\"3000.56\" y2=\"1520\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3032.56\" y1=\"1519.24\" x2=\"3000.56\" y2=\"1519.24\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3059.8\" y1=\"1542.69\" x2=\"3027.8\" y2=\"1542.69\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3059.8\" y1=\"1541.6\" x2=\"3027.8\" y2=\"1541.6\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3087.04\" y1=\"1500.48\" x2=\"3055.04\" y2=\"1500.48\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<line clip-path=\"url(#clip572)\" x1=\"3087.04\" y1=\"1499.71\" x2=\"3055.04\" y2=\"1499.71\" style=\"stroke:#000000; stroke-width:8; stroke-opacity:1\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"347.032\" cy=\"1705.38\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"374.272\" cy=\"1650.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"401.512\" cy=\"1653.44\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"428.752\" cy=\"1651.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"455.992\" cy=\"1835.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"483.232\" cy=\"1707.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"510.472\" cy=\"1786.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"537.713\" cy=\"1687.19\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"564.953\" cy=\"1650.75\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"592.193\" cy=\"1640.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"619.433\" cy=\"1653.53\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"646.673\" cy=\"1647.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"673.913\" cy=\"1625.16\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"701.153\" cy=\"1687.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"728.393\" cy=\"1669.68\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"755.633\" cy=\"1654.61\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"782.873\" cy=\"1683.44\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"810.113\" cy=\"1695.54\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"837.353\" cy=\"1695.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"864.593\" cy=\"1676.06\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"891.833\" cy=\"1670.23\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"919.073\" cy=\"1677.9\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"946.313\" cy=\"1671.15\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"973.553\" cy=\"1675.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1000.79\" cy=\"1679.71\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1028.03\" cy=\"1671.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1055.27\" cy=\"1673.04\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1082.51\" cy=\"1680.57\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1109.75\" cy=\"1647.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1136.99\" cy=\"1652.13\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1164.23\" cy=\"1651.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1191.47\" cy=\"1624.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1218.71\" cy=\"1716.81\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1245.95\" cy=\"1620.91\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1273.19\" cy=\"1658.72\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1300.43\" cy=\"1673.9\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1327.67\" cy=\"1803.58\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1354.91\" cy=\"1651.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1382.15\" cy=\"1662.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1409.39\" cy=\"1757.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1436.63\" cy=\"1704.3\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1463.87\" cy=\"1661.03\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1491.11\" cy=\"1774.4\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1518.35\" cy=\"1665.75\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1545.59\" cy=\"1671.4\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1572.83\" cy=\"1640.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1600.07\" cy=\"1681.35\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1627.31\" cy=\"1643.01\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1654.55\" cy=\"1674.13\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1681.79\" cy=\"1639.72\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1709.03\" cy=\"1651.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1736.27\" cy=\"1649.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1763.51\" cy=\"1646.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1790.75\" cy=\"1632.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1817.99\" cy=\"1629.94\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1845.23\" cy=\"1628.97\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1872.47\" cy=\"1639.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1899.71\" cy=\"1566.43\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1926.95\" cy=\"1565.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1954.19\" cy=\"1552.56\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"1981.43\" cy=\"1549.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2008.67\" cy=\"1560.46\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2035.91\" cy=\"1541.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2063.15\" cy=\"1539.74\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2090.39\" cy=\"1543.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2117.63\" cy=\"1558.13\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2144.87\" cy=\"1541.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2172.11\" cy=\"1553.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2199.35\" cy=\"1544.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2226.59\" cy=\"1546.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2253.83\" cy=\"1545.48\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2281.07\" cy=\"1539.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2308.31\" cy=\"1551.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2335.55\" cy=\"1538.33\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2362.79\" cy=\"1523.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2390.03\" cy=\"1529.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2417.27\" cy=\"1534.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2444.51\" cy=\"1527.88\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2471.76\" cy=\"1527.49\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2499\" cy=\"1530.21\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2526.24\" cy=\"1536.84\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2553.48\" cy=\"1540.28\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2580.72\" cy=\"1543.73\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2607.96\" cy=\"1531.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2635.2\" cy=\"1535.77\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2662.44\" cy=\"1532.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2689.68\" cy=\"1529.49\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2716.92\" cy=\"1528.55\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2744.16\" cy=\"1529.19\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2771.4\" cy=\"1535.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2798.64\" cy=\"1527.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2825.88\" cy=\"1527\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2853.12\" cy=\"1556.06\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2880.36\" cy=\"1549.81\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2907.6\" cy=\"1538.12\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2934.84\" cy=\"1550.18\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2962.08\" cy=\"1569.65\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"2989.32\" cy=\"1631.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3016.56\" cy=\"1519.62\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3043.8\" cy=\"1542.14\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip572)\" cx=\"3071.04\" cy=\"1500.1\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<path clip-path=\"url(#clip570)\" d=\"M537.956 2204.92 L2880.11 2204.92 L2880.11 2075.32 L537.956 2075.32 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip570)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"537.956,2204.92 2880.11,2204.92 2880.11,2075.32 537.956,2075.32 537.956,2204.92 \"/>\n",
"<circle clip-path=\"url(#clip570)\" cx=\"666.287\" cy=\"2140.12\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
"<path clip-path=\"url(#clip570)\" d=\"M814.149 2138.43 Q818.345 2139.32 820.688 2142.16 Q823.061 2145 823.061 2149.16 Q823.061 2155.56 818.663 2159.06 Q814.265 2162.56 806.163 2162.56 Q803.443 2162.56 800.55 2162.01 Q797.685 2161.49 794.618 2160.42 L794.618 2154.78 Q797.048 2156.19 799.942 2156.92 Q802.835 2157.64 805.989 2157.64 Q811.487 2157.64 814.352 2155.47 Q817.245 2153.3 817.245 2149.16 Q817.245 2145.34 814.554 2143.2 Q811.892 2141.03 807.118 2141.03 L802.083 2141.03 L802.083 2136.23 L807.349 2136.23 Q811.661 2136.23 813.946 2134.52 Q816.232 2132.78 816.232 2129.54 Q816.232 2126.22 813.86 2124.45 Q811.516 2122.66 807.118 2122.66 Q804.716 2122.66 801.967 2123.18 Q799.219 2123.7 795.92 2124.8 L795.92 2119.59 Q799.247 2118.66 802.141 2118.2 Q805.063 2117.74 807.639 2117.74 Q814.294 2117.74 818.171 2120.78 Q822.048 2123.79 822.048 2128.94 Q822.048 2132.52 819.994 2135.01 Q817.94 2137.47 814.149 2138.43 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M839.178 2156.8 L859.577 2156.8 L859.577 2161.72 L832.147 2161.72 L832.147 2156.8 Q835.474 2153.36 841.203 2147.57 Q846.961 2141.75 848.437 2140.08 Q851.244 2136.92 852.343 2134.75 Q853.472 2132.55 853.472 2130.44 Q853.472 2127 851.041 2124.83 Q848.64 2122.66 844.762 2122.66 Q842.013 2122.66 838.946 2123.61 Q835.908 2124.57 832.436 2126.51 L832.436 2120.6 Q835.966 2119.19 839.033 2118.46 Q842.1 2117.74 844.647 2117.74 Q851.359 2117.74 855.352 2121.1 Q859.346 2124.45 859.346 2130.06 Q859.346 2132.73 858.333 2135.13 Q857.349 2137.5 854.716 2140.74 Q853.993 2141.58 850.115 2145.6 Q846.238 2149.6 839.178 2156.8 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M868.402 2143.11 L883.998 2143.11 L883.998 2147.86 L868.402 2147.86 L868.402 2143.11 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M897.742 2120.11 L897.742 2129.31 L908.709 2129.31 L908.709 2133.45 L897.742 2133.45 L897.742 2151.04 Q897.742 2155.01 898.813 2156.14 Q899.912 2157.26 903.24 2157.26 L908.709 2157.26 L908.709 2161.72 L903.24 2161.72 Q897.077 2161.72 894.733 2159.43 Q892.389 2157.12 892.389 2151.04 L892.389 2133.45 L888.483 2133.45 L888.483 2129.31 L892.389 2129.31 L892.389 2120.11 L897.742 2120.11 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M942.649 2142.16 L942.649 2161.72 L937.325 2161.72 L937.325 2142.33 Q937.325 2137.73 935.531 2135.45 Q933.737 2133.16 930.15 2133.16 Q925.838 2133.16 923.35 2135.91 Q920.861 2138.66 920.861 2143.4 L920.861 2161.72 L915.508 2161.72 L915.508 2116.7 L920.861 2116.7 L920.861 2134.35 Q922.771 2131.42 925.346 2129.98 Q927.95 2128.53 931.336 2128.53 Q936.92 2128.53 939.785 2132 Q942.649 2135.45 942.649 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M972.047 2134.29 Q971.15 2133.77 970.08 2133.54 Q969.038 2133.28 967.765 2133.28 Q963.251 2133.28 960.821 2136.23 Q958.419 2139.15 958.419 2144.65 L958.419 2161.72 L953.066 2161.72 L953.066 2129.31 L958.419 2129.31 L958.419 2134.35 Q960.097 2131.4 962.788 2129.98 Q965.479 2128.53 969.328 2128.53 Q969.877 2128.53 970.543 2128.62 Q971.208 2128.68 972.019 2128.82 L972.047 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M1004.05 2144.19 L1004.05 2146.79 L979.571 2146.79 Q979.918 2152.29 982.869 2155.18 Q985.849 2158.05 991.145 2158.05 Q994.212 2158.05 997.076 2157.29 Q999.97 2156.54 1002.81 2155.04 L1002.81 2160.07 Q999.941 2161.29 996.932 2161.92 Q993.922 2162.56 990.826 2162.56 Q983.072 2162.56 978.529 2158.05 Q974.015 2153.53 974.015 2145.83 Q974.015 2137.88 978.297 2133.22 Q982.609 2128.53 989.9 2128.53 Q996.44 2128.53 1000.23 2132.76 Q1004.05 2136.95 1004.05 2144.19 M998.726 2142.62 Q998.668 2138.25 996.266 2135.65 Q993.893 2133.05 989.958 2133.05 Q985.502 2133.05 982.811 2135.56 Q980.149 2138.08 979.744 2142.65 L998.726 2142.62 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"
"<path clip-path=\"url(#clip570)\" d=\"M1981.6 2155.56 L1981.6 2143.95 L1972.05 2143.95 L1972.05 2139.15 L1987.39 2139.15 L1987.39 2157.7 Q1984 2160.1 1979.92 2161.34 Q1975.84 2162.56 1971.21 2162.56 Q1961.08 2162.56 1955.35 2156.66 Q1949.65 2150.72 1949.65 2140.16 Q1949.65 2129.57 1955.35 2123.67 Q1961.08 2117.74 1971.21 2117.74 Q1975.44 2117.74 1979.23 2118.78 Q1983.05 2119.82 1986.26 2121.85 L1986.26 2128.07 Q1983.02 2125.32 1979.37 2123.93 Q1975.72 2122.54 1971.7 2122.54 Q1963.77 2122.54 1959.78 2126.97 Q1955.82 2131.4 1955.82 2140.16 Q1955.82 2148.9 1959.78 2153.33 Q1963.77 2157.76 1971.7 2157.76 Q1974.8 2157.76 1977.23 2157.23 Q1979.66 2156.69 1981.6 2155.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2003.91 2123.32 L2003.91 2139.56 L2011.26 2139.56 Q2015.34 2139.56 2017.56 2137.44 Q2019.79 2135.33 2019.79 2131.42 Q2019.79 2127.55 2017.56 2125.44 Q2015.34 2123.32 2011.26 2123.32 L2003.91 2123.32 M1998.06 2118.52 L2011.26 2118.52 Q2018.52 2118.52 2022.22 2121.82 Q2025.96 2125.09 2025.96 2131.42 Q2025.96 2137.82 2022.22 2141.09 Q2018.52 2144.36 2011.26 2144.36 L2003.91 2144.36 L2003.91 2161.72 L1998.06 2161.72 L1998.06 2118.52 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2033.13 2118.52 L2039.01 2118.52 L2039.01 2144.76 Q2039.01 2151.71 2041.52 2154.78 Q2044.04 2157.81 2049.68 2157.81 Q2055.3 2157.81 2057.81 2154.78 Q2060.33 2151.71 2060.33 2144.76 L2060.33 2118.52 L2066.2 2118.52 L2066.2 2145.49 Q2066.2 2153.94 2062.01 2158.25 Q2057.84 2162.56 2049.68 2162.56 Q2041.49 2162.56 2037.3 2158.25 Q2033.13 2153.94 2033.13 2145.49 L2033.13 2118.52 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2123.5 2144.19 L2123.5 2146.79 L2099.02 2146.79 Q2099.36 2152.29 2102.32 2155.18 Q2105.3 2158.05 2110.59 2158.05 Q2113.66 2158.05 2116.52 2157.29 Q2119.42 2156.54 2122.25 2155.04 L2122.25 2160.07 Q2119.39 2161.29 2116.38 2161.92 Q2113.37 2162.56 2110.27 2162.56 Q2102.52 2162.56 2097.98 2158.05 Q2093.46 2153.53 2093.46 2145.83 Q2093.46 2137.88 2097.74 2133.22 Q2102.06 2128.53 2109.35 2128.53 Q2115.89 2128.53 2119.68 2132.76 Q2123.5 2136.95 2123.5 2144.19 M2118.17 2142.62 Q2118.11 2138.25 2115.71 2135.65 Q2113.34 2133.05 2109.4 2133.05 Q2104.95 2133.05 2102.26 2135.56 Q2099.6 2138.08 2099.19 2142.65 L2118.17 2142.62 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2158.13 2129.31 L2146.41 2145.08 L2158.74 2161.72 L2152.46 2161.72 L2143.03 2148.99 L2133.59 2161.72 L2127.32 2161.72 L2139.9 2144.76 L2128.39 2129.31 L2134.66 2129.31 L2143.26 2140.86 L2151.85 2129.31 L2158.13 2129.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2192.16 2144.19 L2192.16 2146.79 L2167.68 2146.79 Q2168.03 2152.29 2170.98 2155.18 Q2173.96 2158.05 2179.25 2158.05 Q2182.32 2158.05 2185.19 2157.29 Q2188.08 2156.54 2190.91 2155.04 L2190.91 2160.07 Q2188.05 2161.29 2185.04 2161.92 Q2182.03 2162.56 2178.94 2162.56 Q2171.18 2162.56 2166.64 2158.05 Q2162.12 2153.53 2162.12 2145.83 Q2162.12 2137.88 2166.41 2133.22 Q2170.72 2128.53 2178.01 2128.53 Q2184.55 2128.53 2188.34 2132.76 Q2192.16 2136.95 2192.16 2144.19 M2186.83 2142.62 Q2186.78 2138.25 2184.38 2135.65 Q2182 2133.05 2178.07 2133.05 Q2173.61 2133.05 2170.92 2135.56 Q2168.26 2138.08 2167.85 2142.65 L2186.83 2142.62 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip570)\" d=\"M2224.22 2130.56 L2224.22 2135.53 Q2221.96 2134.29 2219.68 2133.68 Q2217.42 2133.05 2215.1 2133.05 Q2209.92 2133.05 2207.06 2136.34 Q2204.2 2139.61 2204.2 2145.55 Q2204.2 2151.48 2207.06 2154.78 Q2209.92 2158.05 2215.1 2158.05 Q2217.42 2158.05 2219.68 2157.44 Q2221.96 2156.8 2224.22 2155.56 L2224.22 2160.48 Q2221.99 2161.52 2219.59 2162.04 Q2217.22 2162.56 2214.53 2162.56 Q2207.21 2162.56 2202.89 2157.96 Q2198.58 2153.36 2198.58 2145.55 Q2198.58 2137.62 2202.92 2133.07 Q2207.29 2128.53 2214.87 2128.53 Q2217.33 2128.
]
},
"execution_count": 102,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# plot data\n",
"using Plots\n",
"using StatsPlots\n",
"\n",
"img = @df df scatter(\n",
" :operations, \n",
" [#=:cpu_st_t=# :cpu_mt_t :gpu_t],\n",
" label=[#=\"Single threaded execution (s)\"=# \"$(Threads.nthreads())-threaded CPU execution (s)\" \"GPU execution (Tesla A30) (s)\"],\n",
" yerror=[#=:cpu_st_std=# :cpu_mt_std :gpu_std],\n",
" title=\"$(beautify_title(string(process))) Using $(optim_str)\\nCalculate $(n_inputs) (\\$2^{20}\\$) Matrix Elements\",\n",
" linewidth=2,\n",
" xlabel=\"optimizer steps\",\n",
" ylabel=\"time (s)\",\n",
" yscale=:log10,\n",
" legend=:outerbottom,\n",
" legendcolumns=2,\n",
" legend_font_pointsize=10,\n",
" minorgrid=true,\n",
" size=(800, 600),\n",
" fmt=:pdf\n",
")\n",
"\n",
"savefig(img, \"../images/$(process_str_short)_execution_$(optim_str_short).pdf\")\n",
"\n",
"img"
]
},
{
"cell_type": "code",
"execution_count": 103,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"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=\"600\" viewBox=\"0 0 3200 2400\">\n",
"<defs>\n",
" <clipPath id=\"clip630\">\n",
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip630)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip631\">\n",
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip630)\" d=\"M180.015 1883.07 L3152.76 1883.07 L3152.76 131.032 L180.015 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip632\">\n",
" <rect x=\"180\" y=\"131\" width=\"2974\" height=\"1753\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"264.149,1883.07 264.149,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"965.267,1883.07 965.267,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1666.39,1883.07 1666.39,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2367.5,1883.07 2367.5,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3068.62,1883.07 3068.62,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 3152.76,1883.07 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"264.149,1883.07 264.149,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"965.267,1883.07 965.267,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1666.39,1883.07 1666.39,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2367.5,1883.07 2367.5,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3068.62,1883.07 3068.62,1867.11 \"/>\n",
"<path clip-path=\"url(#clip630)\" d=\"M264.149 1920.39 Q260.538 1920.39 258.709 1923.95 Q256.904 1927.5 256.904 1934.62 Q256.904 1941.73 258.709 1945.3 Q260.538 1948.84 264.149 1948.84 Q267.783 1948.84 269.589 1945.3 Q271.417 1941.73 271.417 1934.62 Q271.417 1927.5 269.589 1923.95 Q267.783 1920.39 264.149 1920.39 M264.149 1916.69 Q269.959 1916.69 273.015 1921.29 Q276.093 1925.88 276.093 1934.62 Q276.093 1943.35 273.015 1947.96 Q269.959 1952.54 264.149 1952.54 Q258.339 1952.54 255.26 1947.96 Q252.205 1943.35 252.205 1934.62 Q252.205 1925.88 255.26 1921.29 Q258.339 1916.69 264.149 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M944.538 1947.94 L960.857 1947.94 L960.857 1951.87 L938.913 1951.87 L938.913 1947.94 Q941.575 1945.18 946.158 1940.55 Q950.765 1935.9 951.945 1934.56 Q954.191 1932.03 955.07 1930.3 Q955.973 1928.54 955.973 1926.85 Q955.973 1924.09 954.029 1922.36 Q952.108 1920.62 949.006 1920.62 Q946.807 1920.62 944.353 1921.38 Q941.922 1922.15 939.145 1923.7 L939.145 1918.98 Q941.969 1917.84 944.422 1917.26 Q946.876 1916.69 948.913 1916.69 Q954.283 1916.69 957.478 1919.37 Q960.672 1922.06 960.672 1926.55 Q960.672 1928.68 959.862 1930.6 Q959.075 1932.5 956.969 1935.09 Q956.39 1935.76 953.288 1938.98 Q950.186 1942.17 944.538 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M970.719 1917.31 L989.075 1917.31 L989.075 1921.25 L975.001 1921.25 L975.001 1929.72 Q976.019 1929.37 977.038 1929.21 Q978.056 1929.02 979.075 1929.02 Q984.862 1929.02 988.242 1932.19 Q991.621 1935.37 991.621 1940.78 Q991.621 1946.36 988.149 1949.46 Q984.677 1952.54 978.357 1952.54 Q976.181 1952.54 973.913 1952.17 Q971.668 1951.8 969.26 1951.06 L969.26 1946.36 Q971.344 1947.5 973.566 1948.05 Q975.788 1948.61 978.265 1948.61 Q982.269 1948.61 984.607 1946.5 Q986.945 1944.39 986.945 1940.78 Q986.945 1937.17 984.607 1935.06 Q982.269 1932.96 978.265 1932.96 Q976.39 1932.96 974.515 1933.37 Q972.663 1933.79 970.719 1934.67 L970.719 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1641.08 1917.31 L1659.44 1917.31 L1659.44 1921.25 L1645.37 1921.25 L1645.37 1929.72 Q1646.39 1929.37 1647.4 1929.21 Q1648.42 1929.02 1649.44 1929.02 Q1655.23 1929.02 1658.61 1932.19 Q1661.99 1935.37 1661.99 1940.78 Q1661.99 1946.36 1658.52 1949.46 Q1655.04 1952.54 1648.72 1952.54 Q1646.55 1952.54 1644.28 1952.17 Q1642.03 1951.8 1639.63 1951.06 L1639.63 1946.36 Q1641.71 1947.5 1643.93 1948.05 Q1646.15 1948.61 1648.63 1948.61 Q1652.64 1948.61 1654.97 1946.5 Q1657.31 1944.39 1657.31 1940.78 Q1657.31 1937.17 1654.97 1935.06 Q1652.64 1932.96 1648.63 1932.96 Q1646.76 1932.96 1644.88 1933.37 Q1643.03 1933.79 1641.08 1934.67 L1641.08 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1681.2 1920.39 Q1677.59 1920.39 1675.76 1923.95 Q1673.95 1927.5 1673.95 1934.62 Q1673.95 1941.73 1675.76 1945.3 Q1677.59 1948.84 1681.2 1948.84 Q1684.83 1948.84 1686.64 1945.3 Q1688.47 1941.73 1688.47 1934.62 Q1688.47 1927.5 1686.64 1923.95 Q1684.83 1920.39 1681.2 1920.39 M1681.2 1916.69 Q1687.01 1916.69 1690.07 1921.29 Q1693.14 1925.88 1693.14 1934.62 Q1693.14 1943.35 1690.07 1947.96 Q1687.01 1952.54 1681.2 1952.54 Q1675.39 1952.54 1672.31 1947.96 Q1669.26 1943.35 1669.26 1934.62 Q1669.26 1925.88 1672.31 1921.29 Q1675.39 1916.69 1681.2 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M2341.36 1917.31 L2363.58 1917.31 L2363.58 1919.3 L2351.03 1951.87 L2346.15 1951.87 L2357.95 1921.25 L2341.36 1921.25 L2341.36 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M2372.75 1917.31 L2391.1 1917.31 L2391.1 1921.25 L2377.03 1921.25 L2377.03 1929.72 Q2378.05 1929.37 2379.07 1929.21 Q2380.08 1929.02 2381.1 1929.02 Q2386.89 1929.02 2390.27 1932.19 Q2393.65 1935.37 2393.65 1940.78 Q2393.65 1946.36 2390.18 1949.46 Q2386.7 1952.54 2380.39 1952.54 Q2378.21
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,1577.46 3152.76,1577.46 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,1271.86 3152.76,1271.86 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,966.253 3152.76,966.253 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,660.647 3152.76,660.647 \"/>\n",
"<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"180.015,355.041 3152.76,355.041 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 180.015,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1883.07 198.912,1883.07 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1577.46 198.912,1577.46 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,1271.86 198.912,1271.86 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,966.253 198.912,966.253 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,660.647 198.912,660.647 \"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"180.015,355.041 198.912,355.041 \"/>\n",
"<path clip-path=\"url(#clip630)\" d=\"M120.07 1868.87 Q116.459 1868.87 114.631 1872.43 Q112.825 1875.98 112.825 1883.1 Q112.825 1890.21 114.631 1893.78 Q116.459 1897.32 120.07 1897.32 Q123.705 1897.32 125.51 1893.78 Q127.339 1890.21 127.339 1883.1 Q127.339 1875.98 125.51 1872.43 Q123.705 1868.87 120.07 1868.87 M120.07 1865.17 Q125.881 1865.17 128.936 1869.77 Q132.015 1874.36 132.015 1883.1 Q132.015 1891.83 128.936 1896.44 Q125.881 1901.02 120.07 1901.02 Q114.26 1901.02 111.182 1896.44 Q108.126 1891.83 108.126 1883.1 Q108.126 1874.36 111.182 1869.77 Q114.26 1865.17 120.07 1865.17 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M50.5569 1590.81 L58.1958 1590.81 L58.1958 1564.44 L49.8856 1566.11 L49.8856 1561.85 L58.1495 1560.18 L62.8254 1560.18 L62.8254 1590.81 L70.4642 1590.81 L70.4642 1594.74 L50.5569 1594.74 L50.5569 1590.81 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M89.9086 1563.26 Q86.2975 1563.26 84.4688 1566.83 Q82.6632 1570.37 82.6632 1577.5 Q82.6632 1584.61 84.4688 1588.17 Q86.2975 1591.71 89.9086 1591.71 Q93.5428 1591.71 95.3483 1588.17 Q97.177 1584.61 97.177 1577.5 Q97.177 1570.37 95.3483 1566.83 Q93.5428 1563.26 89.9086 1563.26 M89.9086 1559.56 Q95.7187 1559.56 98.7743 1564.17 Q101.853 1568.75 101.853 1577.5 Q101.853 1586.23 98.7743 1590.83 Q95.7187 1595.42 89.9086 1595.42 Q84.0984 1595.42 81.0197 1590.83 Q77.9642 1586.23 77.9642 1577.5 Q77.9642 1568.75 81.0197 1564.17 Q84.0984 1559.56 89.9086 1559.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M120.07 1563.26 Q116.459 1563.26 114.631 1566.83 Q112.825 1570.37 112.825 1577.5 Q112.825 1584.61 114.631 1588.17 Q116.459 1591.71 120.07 1591.71 Q123.705 1591.71 125.51 1588.17 Q127.339 1584.61 127.339 1577.5 Q127.339 1570.37 125.51 1566.83 Q123.705 1563.26 120.07 1563.26 M120.07 1559.56 Q125.881 1559.56 128.936 1564.17 Q132.015 1568.75 132.015 1577.5 Q132.015 1586.23 128.936 1590.83 Q125.881 1595.42 120.07 1595.42 Q114.26 1595.42 111.182 1590.83 Q108.126 1586.23 108.126 1577.5 Q108.126 1568.75 111.182 1564.17 Q114.26 1559.56 120.07 1559.56 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M53.7745 1285.2 L70.0939 1285.2 L70.0939 1289.14 L48.1495 1289.14 L48.1495 1285.2 Q50.8115 1282.45 55.3949 1277.82 Q60.0013 1273.17 61.1819 1271.82 Q63.4272 1269.3 64.3068 1267.56 Q65.2096 1265.81 65.2096 1264.12 Q65.2096 1261.36 63.2652 1259.62 Q61.3439 1257.89 58.2421 1257.89 Q56.043 1257.89 53.5893 1258.65 Q51.1588 1259.42 48.381 1260.97 L48.381 1256.25 Q51.2051 1255.11 53.6588 1254.53 Q56.1124 1253.95 58.1495 1253.95 Q63.5198 1253.95 66.7142 1256.64 Q69.9087 1259.32 69.9087 1263.81 Q69.9087 1265.94 69.0985 1267.87 Q68.3115 1269.76 66.205 1272.36 Q65.6263 1273.03 62.5245 1276.25 Q59.4226 1279.44 53.7745 1285.2 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M89.9086 1257.66 Q86.2975 1257.66 84.4688 1261.22 Q82.6632 1264.76 82.6632 1271.89 Q82.6632 1279 84.4688 1282.56 Q86.2975 1286.11 89.9086 1286.11 Q93.5428 1286.11 95.3483 1282.56 Q97.177 1279 97.177 1271.89 Q97.177 1264.76 95.3483 1261.22 Q93.5428 1257.66 89.9086 1257.66 M89.9086 1253.95 Q95.7187 1253.95 98.7743 1258.56 Q101.853 1263.14 101.853 1271.89 Q101.853 1280.62 98.7743 1285.23 Q95.7187 1289.81 89.9086 1289.81 Q84.0984 1289.81 81.0197 1285.23 Q77.9642 1280.62 77.9642 1271.89 Q77.9642 1263.14 81.0197 1258.56 Q84.0984 1253.95 89.9086 1253.95 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M120.07 1257.66 Q116.459 1257.66 114.631 1261.22 Q112.825 1264.76 112.825 1271.89 Q112.825 1279 114.631 1282.56 Q116.459 1286.11 120.07 1286.11 Q123.705 1286.11 125.51 1282.56 Q127.339 1279 127.339 1271.89 Q127.339 1264.76 125.51 1261.22 Q123.705 1257.66 120.07 1257.66 M120.07 1253.95 Q125.881 1253.95 128.936 1258.56 Q132.015 1263.14 132.015 1271.89 Q132.015 1280.62 128.936 1285.23 Q125.881 1289.81 120.07
"<circle clip-path=\"url(#clip632)\" cx=\"292.194\" cy=\"724.824\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"320.238\" cy=\"730.936\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"348.283\" cy=\"724.824\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"376.328\" cy=\"795.114\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"404.373\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"432.417\" cy=\"816.506\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"460.462\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"488.507\" cy=\"730.936\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"516.552\" cy=\"746.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"544.596\" cy=\"730.936\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"572.641\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"600.686\" cy=\"807.338\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"628.73\" cy=\"822.618\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"656.775\" cy=\"752.329\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"684.82\" cy=\"697.32\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"712.865\" cy=\"752.329\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"740.909\" cy=\"822.618\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"768.954\" cy=\"828.73\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"796.999\" cy=\"834.842\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"825.044\" cy=\"764.553\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"853.088\" cy=\"834.842\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"881.133\" cy=\"764.553\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"909.178\" cy=\"834.842\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"937.222\" cy=\"828.73\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"965.267\" cy=\"834.842\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"993.312\" cy=\"828.73\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1021.36\" cy=\"822.618\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1049.4\" cy=\"828.73\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1077.45\" cy=\"822.618\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1105.49\" cy=\"807.338\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1133.54\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1161.58\" cy=\"807.338\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1189.62\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1217.67\" cy=\"795.114\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1245.71\" cy=\"810.394\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1273.76\" cy=\"825.674\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1301.8\" cy=\"810.394\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1329.85\" cy=\"795.114\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1357.89\" cy=\"810.394\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1385.94\" cy=\"795.114\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1413.98\" cy=\"810.394\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1442.03\" cy=\"825.674\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1470.07\" cy=\"840.954\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1498.12\" cy=\"825.674\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1526.16\" cy=\"840.954\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1554.21\" cy=\"801.226\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1582.25\" cy=\"840.954\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1610.3\" cy=\"825.674\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1638.34\" cy=\"810.394\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1666.39\" cy=\"816.506\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1694.43\" cy=\"831.786\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1722.47\" cy=\"776.777\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1750.52\" cy=\"792.057\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1778.56\" cy=\"776.777\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1806.61\" cy=\"721.768\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1834.65\" cy=\"776.777\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1862.7\" cy=\"721.768\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1890.74\" cy=\"727.88\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1918.79\" cy=\"672.871\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1946.83\" cy=\"688.152\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1974.88\" cy=\"648.423\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2002.92\" cy=\"593.414\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2030.97\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2059.01\" cy=\"553.685\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2087.06\" cy=\"568.965\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2115.1\" cy=\"575.077\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2143.15\" cy=\"568.965\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2171.19\" cy=\"553.685\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2199.24\" cy=\"559.797\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2227.28\" cy=\"553.685\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2255.32\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2283.37\" cy=\"623.974\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2311.41\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2339.46\" cy=\"614.806\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2367.5\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2395.55\" cy=\"593.414\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2423.59\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2451.64\" cy=\"623.974\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2479.68\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2507.73\" cy=\"648.423\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2535.77\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2563.82\" cy=\"623.974\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2591.86\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2619.91\" cy=\"553.685\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2647.95\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2676\" cy=\"614.806\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2704.04\" cy=\"559.797\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2732.08\" cy=\"614.806\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2760.13\" cy=\"620.918\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2788.17\" cy=\"614.806\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2816.22\" cy=\"608.694\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2844.26\" cy=\"593.414\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2872.31\" cy=\"648.423\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2900.35\" cy=\"633.142\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2928.4\" cy=\"648.423\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2956.44\" cy=\"688.152\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2984.49\" cy=\"743.161\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3012.53\" cy=\"688.152\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3040.58\" cy=\"672.871\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3068.62\" cy=\"602.582\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"264.149\" cy=\"376.434\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"292.194\" cy=\"306.144\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"320.238\" cy=\"312.256\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"348.283\" cy=\"306.144\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"376.328\" cy=\"376.434\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"404.373\" cy=\"382.546\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"432.417\" cy=\"413.106\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"460.462\" cy=\"382.546\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"488.507\" cy=\"312.256\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"516.552\" cy=\"342.817\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"544.596\" cy=\"312.256\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"572.641\" cy=\"382.546\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"600.686\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"628.73\" cy=\"419.218\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"656.775\" cy=\"348.929\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"684.82\" cy=\"293.92\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"712.865\" cy=\"348.929\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"740.909\" cy=\"419.218\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"768.954\" cy=\"425.331\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"796.999\" cy=\"431.443\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"825.044\" cy=\"361.153\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"853.088\" cy=\"431.443\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"881.133\" cy=\"361.153\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"909.178\" cy=\"431.443\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"937.222\" cy=\"425.331\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"965.267\" cy=\"431.443\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"993.312\" cy=\"425.331\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1021.36\" cy=\"419.218\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1049.4\" cy=\"425.331\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1077.45\" cy=\"419.218\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1105.49\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1133.54\" cy=\"382.546\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1161.58\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1189.62\" cy=\"382.546\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1217.67\" cy=\"376.434\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1245.71\" cy=\"406.994\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1273.76\" cy=\"437.555\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1301.8\" cy=\"406.994\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1329.85\" cy=\"376.434\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1357.89\" cy=\"406.994\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1385.94\" cy=\"376.434\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1413.98\" cy=\"406.994\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1442.03\" cy=\"437.555\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1470.07\" cy=\"452.835\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1498.12\" cy=\"437.555\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1526.16\" cy=\"468.115\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1554.21\" cy=\"428.387\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1582.25\" cy=\"468.115\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1610.3\" cy=\"437.555\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1638.34\" cy=\"406.994\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1666.39\" cy=\"413.106\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1694.43\" cy=\"443.667\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1722.47\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1750.52\" cy=\"403.938\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1778.56\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1806.61\" cy=\"333.649\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1834.65\" cy=\"388.658\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1862.7\" cy=\"333.649\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1890.74\" cy=\"339.761\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1918.79\" cy=\"284.752\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1946.83\" cy=\"315.312\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"1974.88\" cy=\"275.584\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2002.92\" cy=\"275.584\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2030.97\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2059.01\" cy=\"235.855\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2087.06\" cy=\"251.135\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2115.1\" cy=\"257.247\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2143.15\" cy=\"251.135\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2171.19\" cy=\"235.855\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2199.24\" cy=\"241.967\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2227.28\" cy=\"235.855\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2255.32\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2283.37\" cy=\"306.144\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2311.41\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2339.46\" cy=\"296.976\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2367.5\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2395.55\" cy=\"260.303\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2423.59\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2451.64\" cy=\"306.144\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2479.68\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2507.73\" cy=\"330.593\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2535.77\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2563.82\" cy=\"306.144\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2591.86\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2619.91\" cy=\"235.855\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2647.95\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2676\" cy=\"296.976\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2704.04\" cy=\"241.967\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2732.08\" cy=\"296.976\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2760.13\" cy=\"303.088\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2788.17\" cy=\"296.976\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2816.22\" cy=\"290.864\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2844.26\" cy=\"275.584\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2872.31\" cy=\"275.584\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2900.35\" cy=\"245.023\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2928.4\" cy=\"275.584\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2956.44\" cy=\"315.312\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"2984.49\" cy=\"370.321\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3012.53\" cy=\"315.312\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3040.58\" cy=\"284.752\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip632)\" cx=\"3068.62\" cy=\"214.463\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<path clip-path=\"url(#clip630)\" d=\"M907.938 2204.92 L2424.83 2204.92 L2424.83 2075.32 L907.938 2075.32 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"907.938,2204.92 2424.83,2204.92 2424.83,2075.32 907.938,2075.32 907.938,2204.92 \"/>\n",
"<circle clip-path=\"url(#clip630)\" cx=\"1040.06\" cy=\"2140.12\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
"<path clip-path=\"url(#clip630)\" d=\"M1195.82 2145.14 Q1195.82 2139.35 1193.42 2136.17 Q1191.05 2132.99 1186.74 2132.99 Q1182.45 2132.99 1180.05 2136.17 Q1177.68 2139.35 1177.68 2145.14 Q1177.68 2150.9 1180.05 2154.08 Q1182.45 2157.26 1186.74 2157.26 Q1191.05 2157.26 1193.42 2154.08 Q1195.82 2150.9 1195.82 2145.14 M1201.15 2157.7 Q1201.15 2165.97 1197.47 2170 Q1193.8 2174.05 1186.22 2174.05 Q1183.41 2174.05 1180.92 2173.61 Q1178.43 2173.21 1176.09 2172.34 L1176.09 2167.16 Q1178.43 2168.43 1180.72 2169.04 Q1183 2169.65 1185.38 2169.65 Q1190.61 2169.65 1193.22 2166.9 Q1195.82 2164.18 1195.82 2158.65 L1195.82 2156.02 Q1194.17 2158.88 1191.6 2160.3 Q1189.02 2161.72 1185.43 2161.72 Q1179.47 2161.72 1175.83 2157.18 Q1172.18 2152.63 1172.18 2145.14 Q1172.18 2137.62 1175.83 2133.07 Q1179.47 2128.53 1185.43 2128.53 Q1189.02 2128.53 1191.6 2129.95 Q1194.17 2131.37 1195.82 2134.23 L1195.82 2129.31 L1201.15 2129.31 L1201.15 2157.7 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1230.89 2134.29 Q1229.99 2133.77 1228.92 2133.54 Q1227.88 2133.28 1226.61 2133.28 Q1222.09 2133.28 1219.66 2136.23 Q1217.26 2139.15 1217.26 2144.65 L1217.26 2161.72 L1211.91 2161.72 L1211.91 2129.31 L1217.26 2129.31 L1217.26 2134.35 Q1218.94 2131.4 1221.63 2129.98 Q1224.32 2128.53 1228.17 2128.53 Q1228.72 2128.53 1229.39 2128.62 Q1230.05 2128.68 1230.86 2128.82 L1230.89 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1251.2 2145.43 Q1244.75 2145.43 1242.26 2146.91 Q1239.77 2148.38 1239.77 2151.94 Q1239.77 2154.78 1241.63 2156.45 Q1243.51 2158.1 1246.72 2158.1 Q1251.15 2158.1 1253.81 2154.98 Q1256.5 2151.82 1256.5 2146.62 L1256.5 2145.43 L1251.2 2145.43 M1261.82 2143.23 L1261.82 2161.72 L1256.5 2161.72 L1256.5 2156.8 Q1254.68 2159.75 1251.96 2161.17 Q1249.24 2162.56 1245.3 2162.56 Q1240.32 2162.56 1237.37 2159.78 Q1234.45 2156.97 1234.45 2152.29 Q1234.45 2146.82 1238.1 2144.04 Q1241.77 2141.26 1249.03 2141.26 L1256.5 2141.26 L1256.5 2140.74 Q1256.5 2137.07 1254.07 2135.07 Q1251.67 2133.05 1247.3 2133.05 Q1244.52 2133.05 1241.89 2133.71 Q1239.25 2134.38 1236.82 2135.71 L1236.82 2130.79 Q1239.75 2129.66 1242.49 2129.11 Q1245.24 2128.53 1247.85 2128.53 Q1254.88 2128.53 1258.35 2132.18 Q1261.82 2135.82 1261.82 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1277.94 2156.86 L1277.94 2174.05 L1272.59 2174.05 L1272.59 2129.31 L1277.94 2129.31 L1277.94 2134.23 Q1279.62 2131.34 1282.16 2129.95 Q1284.74 2128.53 1288.3 2128.53 Q1294.2 2128.53 1297.88 2133.22 Q1301.58 2137.91 1301.58 2145.55 Q1301.58 2153.18 1297.88 2157.87 Q1294.2 2162.56 1288.3 2162.56 Q1284.74 2162.56 1282.16 2161.17 Q1279.62 2159.75 1277.94 2156.86 M1296.05 2145.55 Q1296.05 2139.67 1293.62 2136.34 Q1291.22 2132.99 1287 2132.99 Q1282.77 2132.99 1280.34 2136.34 Q1277.94 2139.67 1277.94 2145.55 Q1277.94 2151.42 1280.34 2154.78 Q1282.77 2158.1 1287 2158.1 Q1291.22 2158.1 1293.62 2154.78 Q1296.05 2151.42 1296.05 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1337.34 2142.16 L1337.34 2161.72 L1332.02 2161.72 L1332.02 2142.33 Q1332.02 2137.73 1330.22 2135.45 Q1328.43 2133.16 1324.84 2133.16 Q1320.53 2133.16 1318.04 2135.91 Q1315.55 2138.66 1315.55 2143.4 L1315.55 2161.72 L1310.2 2161.72 L1310.2 2116.7 L1315.55 2116.7 L1315.55 2134.35 Q1317.46 2131.42 1320.04 2129.98 Q1322.64 2128.53 1326.03 2128.53 Q1331.61 2128.53 1334.48 2132 Q1337.34 2135.45 1337.34 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1393.74 2142.16 L1393.74 2161.72 L1388.41 2161.72 L1388.41 2142.33 Q1388.41 2137.73 1386.62 2135.45 Q1384.83 2133.16 1381.24 2133.16 Q1376.93 2133.16 1374.44 2135.91 Q1371.95 2138.66 1371.95 2143.4 L1371.95 2161.72 L1366.6 2161.72 L1366.6 2129.31 L1371.95 2129.31 L1371.95 2134.35 Q1373.86 2131.42 1376.43 2129.98 Q1379.04 2128.53 1382.42 2128.53 Q1388.01 2128.53 1390.87 2132 Q1393.74 2135.45 1393.74 21
"<path clip-path=\"url(#clip630)\" d=\"M1937.75 2145.14 Q1937.75 2139.35 1935.35 2136.17 Q1932.98 2132.99 1928.67 2132.99 Q1924.39 2132.99 1921.98 2136.17 Q1919.61 2139.35 1919.61 2145.14 Q1919.61 2150.9 1921.98 2154.08 Q1924.39 2157.26 1928.67 2157.26 Q1932.98 2157.26 1935.35 2154.08 Q1937.75 2150.9 1937.75 2145.14 M1943.08 2157.7 Q1943.08 2165.97 1939.4 2170 Q1935.73 2174.05 1928.15 2174.05 Q1925.34 2174.05 1922.85 2173.61 Q1920.36 2173.21 1918.02 2172.34 L1918.02 2167.16 Q1920.36 2168.43 1922.65 2169.04 Q1924.94 2169.65 1927.31 2169.65 Q1932.55 2169.65 1935.15 2166.9 Q1937.75 2164.18 1937.75 2158.65 L1937.75 2156.02 Q1936.1 2158.88 1933.53 2160.3 Q1930.95 2161.72 1927.37 2161.72 Q1921.41 2161.72 1917.76 2157.18 Q1914.11 2152.63 1914.11 2145.14 Q1914.11 2137.62 1917.76 2133.07 Q1921.41 2128.53 1927.37 2128.53 Q1930.95 2128.53 1933.53 2129.95 Q1936.1 2131.37 1937.75 2134.23 L1937.75 2129.31 L1943.08 2129.31 L1943.08 2157.7 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1972.82 2134.29 Q1971.93 2133.77 1970.86 2133.54 Q1969.81 2133.28 1968.54 2133.28 Q1964.03 2133.28 1961.6 2136.23 Q1959.19 2139.15 1959.19 2144.65 L1959.19 2161.72 L1953.84 2161.72 L1953.84 2129.31 L1959.19 2129.31 L1959.19 2134.35 Q1960.87 2131.4 1963.56 2129.98 Q1966.25 2128.53 1970.1 2128.53 Q1970.65 2128.53 1971.32 2128.62 Q1971.98 2128.68 1972.79 2128.82 L1972.82 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M1993.14 2145.43 Q1986.68 2145.43 1984.19 2146.91 Q1981.71 2148.38 1981.71 2151.94 Q1981.71 2154.78 1983.56 2156.45 Q1985.44 2158.1 1988.65 2158.1 Q1993.08 2158.1 1995.74 2154.98 Q1998.43 2151.82 1998.43 2146.62 L1998.43 2145.43 L1993.14 2145.43 M2003.75 2143.23 L2003.75 2161.72 L1998.43 2161.72 L1998.43 2156.8 Q1996.61 2159.75 1993.89 2161.17 Q1991.17 2162.56 1987.23 2162.56 Q1982.26 2162.56 1979.3 2159.78 Q1976.38 2156.97 1976.38 2152.29 Q1976.38 2146.82 1980.03 2144.04 Q1983.7 2141.26 1990.97 2141.26 L1998.43 2141.26 L1998.43 2140.74 Q1998.43 2137.07 1996 2135.07 Q1993.6 2133.05 1989.23 2133.05 Q1986.45 2133.05 1983.82 2133.71 Q1981.19 2134.38 1978.75 2135.71 L1978.75 2130.79 Q1981.68 2129.66 1984.43 2129.11 Q1987.17 2128.53 1989.78 2128.53 Q1996.81 2128.53 2000.28 2132.18 Q2003.75 2135.82 2003.75 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M2019.87 2156.86 L2019.87 2174.05 L2014.52 2174.05 L2014.52 2129.31 L2019.87 2129.31 L2019.87 2134.23 Q2021.55 2131.34 2024.1 2129.95 Q2026.67 2128.53 2030.23 2128.53 Q2036.13 2128.53 2039.81 2133.22 Q2043.51 2137.91 2043.51 2145.55 Q2043.51 2153.18 2039.81 2157.87 Q2036.13 2162.56 2030.23 2162.56 Q2026.67 2162.56 2024.1 2161.17 Q2021.55 2159.75 2019.87 2156.86 M2037.98 2145.55 Q2037.98 2139.67 2035.55 2136.34 Q2033.15 2132.99 2028.93 2132.99 Q2024.7 2132.99 2022.27 2136.34 Q2019.87 2139.67 2019.87 2145.55 Q2019.87 2151.42 2022.27 2154.78 Q2024.7 2158.1 2028.93 2158.1 Q2033.15 2158.1 2035.55 2154.78 Q2037.98 2151.42 2037.98 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M2079.27 2142.16 L2079.27 2161.72 L2073.95 2161.72 L2073.95 2142.33 Q2073.95 2137.73 2072.16 2135.45 Q2070.36 2133.16 2066.78 2133.16 Q2062.46 2133.16 2059.98 2135.91 Q2057.49 2138.66 2057.49 2143.4 L2057.49 2161.72 L2052.13 2161.72 L2052.13 2116.7 L2057.49 2116.7 L2057.49 2134.35 Q2059.4 2131.42 2061.97 2129.98 Q2064.58 2128.53 2067.96 2128.53 Q2073.55 2128.53 2076.41 2132 Q2079.27 2135.45 2079.27 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M2136.45 2144.19 L2136.45 2146.79 L2111.97 2146.79 Q2112.32 2152.29 2115.27 2155.18 Q2118.25 2158.05 2123.55 2158.05 Q2126.61 2158.05 2129.48 2157.29 Q2132.37 2156.54 2135.21 2155.04 L2135.21 2160.07 Q2132.34 2161.29 2129.33 2161.92 Q2126.32 2162.56 2123.23 2162.56 Q2115.47 2162.56 2110.93 2158.05 Q2106.42 2153.53 2106.42 2145.83 Q2106.42 2137.88 2110.7 2133.22 Q2115.01 2128.53 2122.3 21
]
},
"execution_count": 103,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"img = @df df scatter(\n",
" :operations,\n",
" [:graph_nodes, :graph_edges],\n",
" label=[\"graph nodes (#)\" \"graph edges (#)\"],\n",
" title=\"$(beautify_title(string(process))) Using $(optim_str)\",\n",
" linewidth=2,\n",
" xlabel=\"optimizer steps\",\n",
" ylims=(0.0, 1.05 * maximum(df.graph_edges)),\n",
" legend=:outerbottom,\n",
" legendcolumns=2,\n",
" legend_font_pointsize=10,\n",
" fmt=:pdf,\n",
" size=(800, 600)\n",
")\n",
"\n",
"savefig(img, \"../images/$(process_str_short)_nodes_edges_$(optim_str_short).pdf\")\n",
"\n",
"img"
]
},
{
"cell_type": "code",
"execution_count": 104,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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
"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=\"600\" viewBox=\"0 0 3200 2400\">\n",
"<defs>\n",
" <clipPath id=\"clip690\">\n",
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip690)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip691\">\n",
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip690)\" d=\"M315.593 1883.07 L3152.76 1883.07 L3152.76 131.032 L315.593 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip692\">\n",
" <rect x=\"315\" y=\"131\" width=\"2838\" height=\"1753\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"395.89,1883.07 395.89,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1065.03,1883.07 1065.03,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1734.17,1883.07 1734.17,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2403.32,1883.07 2403.32,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"3072.46,1883.07 3072.46,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 3152.76,1883.07 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"395.89,1883.07 395.89,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1065.03,1883.07 1065.03,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1734.17,1883.07 1734.17,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2403.32,1883.07 2403.32,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"3072.46,1883.07 3072.46,1867.11 \"/>\n",
"<path clip-path=\"url(#clip690)\" d=\"M395.89 1920.39 Q392.279 1920.39 390.45 1923.95 Q388.645 1927.5 388.645 1934.62 Q388.645 1941.73 390.45 1945.3 Q392.279 1948.84 395.89 1948.84 Q399.524 1948.84 401.33 1945.3 Q403.158 1941.73 403.158 1934.62 Q403.158 1927.5 401.33 1923.95 Q399.524 1920.39 395.89 1920.39 M395.89 1916.69 Q401.7 1916.69 404.756 1921.29 Q407.834 1925.88 407.834 1934.62 Q407.834 1943.35 404.756 1947.96 Q401.7 1952.54 395.89 1952.54 Q390.08 1952.54 387.001 1947.96 Q383.945 1943.35 383.945 1934.62 Q383.945 1925.88 387.001 1921.29 Q390.08 1916.69 395.89 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1044.3 1947.94 L1060.62 1947.94 L1060.62 1951.87 L1038.68 1951.87 L1038.68 1947.94 Q1041.34 1945.18 1045.92 1940.55 Q1050.53 1935.9 1051.71 1934.56 Q1053.96 1932.03 1054.84 1930.3 Q1055.74 1928.54 1055.74 1926.85 Q1055.74 1924.09 1053.79 1922.36 Q1051.87 1920.62 1048.77 1920.62 Q1046.57 1920.62 1044.12 1921.38 Q1041.69 1922.15 1038.91 1923.7 L1038.91 1918.98 Q1041.73 1917.84 1044.19 1917.26 Q1046.64 1916.69 1048.68 1916.69 Q1054.05 1916.69 1057.24 1919.37 Q1060.44 1922.06 1060.44 1926.55 Q1060.44 1928.68 1059.63 1930.6 Q1058.84 1932.5 1056.73 1935.09 Q1056.15 1935.76 1053.05 1938.98 Q1049.95 1942.17 1044.3 1947.94 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1070.48 1917.31 L1088.84 1917.31 L1088.84 1921.25 L1074.77 1921.25 L1074.77 1929.72 Q1075.78 1929.37 1076.8 1929.21 Q1077.82 1929.02 1078.84 1929.02 Q1084.63 1929.02 1088.01 1932.19 Q1091.39 1935.37 1091.39 1940.78 Q1091.39 1946.36 1087.91 1949.46 Q1084.44 1952.54 1078.12 1952.54 Q1075.95 1952.54 1073.68 1952.17 Q1071.43 1951.8 1069.03 1951.06 L1069.03 1946.36 Q1071.11 1947.5 1073.33 1948.05 Q1075.55 1948.61 1078.03 1948.61 Q1082.03 1948.61 1084.37 1946.5 Q1086.71 1944.39 1086.71 1940.78 Q1086.71 1937.17 1084.37 1935.06 Q1082.03 1932.96 1078.03 1932.96 Q1076.15 1932.96 1074.28 1933.37 Q1072.43 1933.79 1070.48 1934.67 L1070.48 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1708.87 1917.31 L1727.23 1917.31 L1727.23 1921.25 L1713.16 1921.25 L1713.16 1929.72 Q1714.17 1929.37 1715.19 1929.21 Q1716.21 1929.02 1717.23 1929.02 Q1723.02 1929.02 1726.4 1932.19 Q1729.78 1935.37 1729.78 1940.78 Q1729.78 1946.36 1726.3 1949.46 Q1722.83 1952.54 1716.51 1952.54 Q1714.34 1952.54 1712.07 1952.17 Q1709.82 1951.8 1707.42 1951.06 L1707.42 1946.36 Q1709.5 1947.5 1711.72 1948.05 Q1713.94 1948.61 1716.42 1948.61 Q1720.42 1948.61 1722.76 1946.5 Q1725.1 1944.39 1725.1 1940.78 Q1725.1 1937.17 1722.76 1935.06 Q1720.42 1932.96 1716.42 1932.96 Q1714.54 1932.96 1712.67 1933.37 Q1710.82 1933.79 1708.87 1934.67 L1708.87 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1748.99 1920.39 Q1745.38 1920.39 1743.55 1923.95 Q1741.74 1927.5 1741.74 1934.62 Q1741.74 1941.73 1743.55 1945.3 Q1745.38 1948.84 1748.99 1948.84 Q1752.62 1948.84 1754.43 1945.3 Q1756.26 1941.73 1756.26 1934.62 Q1756.26 1927.5 1754.43 1923.95 Q1752.62 1920.39 1748.99 1920.39 M1748.99 1916.69 Q1754.8 1916.69 1757.85 1921.29 Q1760.93 1925.88 1760.93 1934.62 Q1760.93 1943.35 1757.85 1947.96 Q1754.8 1952.54 1748.99 1952.54 Q1743.18 1952.54 1740.1 1947.96 Q1737.04 1943.35 1737.04 1934.62 Q1737.04 1925.88 1740.1 1921.29 Q1743.18 1916.69 1748.99 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2377.17 1917.31 L2399.39 1917.31 L2399.39 1919.3 L2386.85 1951.87 L2381.96 1951.87 L2393.77 1921.25 L2377.17 1921.25 L2377.17 1917.31 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2408.56 1917.31 L2426.92 1917.31 L2426.92 1921.25 L2412.84 1921.25 L2412.84 1929.72 Q2413.86 1929.37 2414.88 1929.21 Q2415.9 1929.02 2416.92 1929.02 Q2422.7 1929.02 2426.08 1932.19 Q2429.46 1935.37 2429.46 1940.78 Q2429.46 1946.36 2425.99 1949.46 Q2422.52 1952.54 2416.2 1952.54 Q2414.02 1952.54 2411.
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1613.62 3152.76,1613.62 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1344.16 3152.76,1344.16 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,1074.71 3152.76,1074.71 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,805.258 3152.76,805.258 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,535.805 3152.76,535.805 \"/>\n",
"<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"315.593,266.352 3152.76,266.352 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 315.593,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1883.07 334.49,1883.07 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1613.62 334.49,1613.62 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1344.16 334.49,1344.16 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,1074.71 334.49,1074.71 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,805.258 334.49,805.258 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,535.805 334.49,535.805 \"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"315.593,266.352 334.49,266.352 \"/>\n",
"<path clip-path=\"url(#clip690)\" d=\"M255.648 1868.87 Q252.037 1868.87 250.209 1872.43 Q248.403 1875.98 248.403 1883.1 Q248.403 1890.21 250.209 1893.78 Q252.037 1897.32 255.648 1897.32 Q259.283 1897.32 261.088 1893.78 Q262.917 1890.21 262.917 1883.1 Q262.917 1875.98 261.088 1872.43 Q259.283 1868.87 255.648 1868.87 M255.648 1865.17 Q261.459 1865.17 264.514 1869.77 Q267.593 1874.36 267.593 1883.1 Q267.593 1891.83 264.514 1896.44 Q261.459 1901.02 255.648 1901.02 Q249.838 1901.02 246.76 1896.44 Q243.704 1891.83 243.704 1883.1 Q243.704 1874.36 246.76 1869.77 Q249.838 1865.17 255.648 1865.17 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M53.7745 1633.41 L70.0939 1633.41 L70.0939 1637.34 L48.1495 1637.34 L48.1495 1633.41 Q50.8115 1630.66 55.3949 1626.03 Q60.0013 1621.37 61.1819 1620.03 Q63.4272 1617.51 64.3068 1615.77 Q65.2096 1614.01 65.2096 1612.32 Q65.2096 1609.57 63.2652 1607.83 Q61.3439 1606.1 58.2421 1606.1 Q56.043 1606.1 53.5893 1606.86 Q51.1588 1607.62 48.381 1609.17 L48.381 1604.45 Q51.2051 1603.32 53.6588 1602.74 Q56.1124 1602.16 58.1495 1602.16 Q63.5198 1602.16 66.7142 1604.85 Q69.9087 1607.53 69.9087 1612.02 Q69.9087 1614.15 69.0985 1616.07 Q68.3115 1617.97 66.205 1620.56 Q65.6263 1621.23 62.5245 1624.45 Q59.4226 1627.65 53.7745 1633.41 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M79.9086 1631.47 L84.7928 1631.47 L84.7928 1637.34 L79.9086 1637.34 L79.9086 1631.47 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M104.978 1605.86 Q101.367 1605.86 99.5381 1609.43 Q97.7326 1612.97 97.7326 1620.1 Q97.7326 1627.21 99.5381 1630.77 Q101.367 1634.31 104.978 1634.31 Q108.612 1634.31 110.418 1630.77 Q112.246 1627.21 112.246 1620.1 Q112.246 1612.97 110.418 1609.43 Q108.612 1605.86 104.978 1605.86 M104.978 1602.16 Q110.788 1602.16 113.844 1606.77 Q116.922 1611.35 116.922 1620.1 Q116.922 1628.83 113.844 1633.43 Q110.788 1638.02 104.978 1638.02 Q99.1678 1638.02 96.0891 1633.43 Q93.0335 1628.83 93.0335 1620.1 Q93.0335 1611.35 96.0891 1606.77 Q99.1678 1602.16 104.978 1602.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M135.14 1605.86 Q131.529 1605.86 129.7 1609.43 Q127.894 1612.97 127.894 1620.1 Q127.894 1627.21 129.7 1630.77 Q131.529 1634.31 135.14 1634.31 Q138.774 1634.31 140.58 1630.77 Q142.408 1627.21 142.408 1620.1 Q142.408 1612.97 140.58 1609.43 Q138.774 1605.86 135.14 1605.86 M135.14 1602.16 Q140.95 1602.16 144.005 1606.77 Q147.084 1611.35 147.084 1620.1 Q147.084 1628.83 144.005 1633.43 Q140.95 1638.02 135.14 1638.02 Q129.33 1638.02 126.251 1633.43 Q123.195 1628.83 123.195 1620.1 Q123.195 1611.35 126.251 1606.77 Q129.33 1602.16 135.14 1602.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M183.473 1611.88 L172.894 1622.51 L183.473 1633.09 L180.718 1635.89 L170.093 1625.26 L159.468 1635.89 L156.737 1633.09 L167.292 1622.51 L156.737 1611.88 L159.468 1609.08 L170.093 1619.71 L180.718 1609.08 L183.473 1611.88 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M195.834 1633.41 L203.473 1633.41 L203.473 1607.04 L195.163 1608.71 L195.163 1604.45 L203.426 1602.78 L208.102 1602.78 L208.102 1633.41 L215.741 1633.41 L215.741 1637.34 L195.834 1637.34 L195.834 1633.41 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M235.186 1605.86 Q231.574 1605.86 229.746 1609.43 Q227.94 1612.97 227.94 1620.1 Q227.94 1627.21 229.746 1630.77 Q231.574 1634.31 235.186 1634.31 Q238.82 1634.31 240.625 1630.77 Q242.454 1627.21 242.454 1620.1 Q242.454 1612.97 240.625 1609.43 Q238.82 1605.86 235.186 1605.86 M235.186 1602.16 Q240.996 1602.16 244.051 1606.77 Q247.13 1611.35 247.13 1620.1 Q247.13 1628.83 244.051 1633.43 Q240.996 1638.02 235.186 1638.02 Q229.375 1638.02 226.297 1633.43 Q223.241 1628.83 223.241 1620.1 Q223.241 1611.35 226.297 1606.77 Q229.375 1602.16 235.186 1602
"<circle clip-path=\"url(#clip692)\" cx=\"422.656\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"449.421\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"476.187\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"502.953\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"529.718\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"556.484\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"583.25\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"610.015\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"636.781\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"663.547\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"690.312\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"717.078\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"743.844\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"770.61\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"797.375\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"824.141\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"850.907\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"877.672\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"904.438\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"931.204\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"957.969\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"984.735\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1011.5\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1038.27\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1065.03\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1091.8\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1118.56\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1145.33\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1172.09\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1198.86\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1225.63\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1252.39\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1279.16\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1305.92\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1332.69\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1359.45\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1386.22\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1412.99\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1439.75\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1466.52\" cy=\"214.463\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1493.28\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1520.05\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1546.81\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1573.58\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1600.35\" cy=\"399.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1627.11\" cy=\"399.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1653.88\" cy=\"399.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1680.64\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1707.41\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1734.17\" cy=\"276.033\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1760.94\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1787.71\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1814.47\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1841.24\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1868\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1894.77\" cy=\"337.603\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1921.53\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1948.3\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1975.07\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2001.83\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2028.6\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2055.36\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2082.13\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2108.89\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2135.66\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2162.43\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2189.19\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2215.96\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2242.72\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2269.49\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2296.25\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2323.02\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2349.79\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2376.55\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2403.32\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2430.08\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2456.85\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2483.61\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2510.38\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2537.15\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2563.91\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2590.68\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2617.44\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2644.21\" cy=\"303.261\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2670.97\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2697.74\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2724.5\" cy=\"303.261\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2751.27\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2778.04\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2804.8\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2831.57\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2858.33\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2885.1\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2911.86\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2938.63\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2965.4\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2992.16\" cy=\"399.173\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3018.93\" cy=\"351.217\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3045.69\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3072.46\" cy=\"289.647\" r=\"14.4\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"395.89\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"422.656\" cy=\"1442.03\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"449.421\" cy=\"1443.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"476.187\" cy=\"1442.03\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"502.953\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"529.718\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"556.484\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"583.25\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"610.015\" cy=\"1443.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"636.781\" cy=\"1443.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"663.547\" cy=\"1443.32\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"690.312\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"717.078\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"743.844\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"770.61\" cy=\"1444.62\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"797.375\" cy=\"1421.34\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"824.141\" cy=\"1444.62\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"850.907\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"877.672\" cy=\"1475.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"904.438\" cy=\"1476.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"931.204\" cy=\"1447.2\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"957.969\" cy=\"1476.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"984.735\" cy=\"1447.2\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1011.5\" cy=\"1476.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1038.27\" cy=\"1475.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1065.03\" cy=\"1476.95\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1091.8\" cy=\"1475.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1118.56\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1145.33\" cy=\"1475.66\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1172.09\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1198.86\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1225.63\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1252.39\" cy=\"1474.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1279.16\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1305.92\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1332.69\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1359.45\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1386.22\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1412.99\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1439.75\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1466.52\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1493.28\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1520.05\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1546.81\" cy=\"1478.24\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1573.58\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1600.35\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1627.11\" cy=\"1454.96\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1653.88\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1680.64\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1707.41\" cy=\"1471.78\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1734.17\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1760.94\" cy=\"1473.07\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1787.71\" cy=\"1449.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1814.47\" cy=\"1456.26\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1841.24\" cy=\"1449.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1868\" cy=\"1426.51\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1894.77\" cy=\"1449.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1921.53\" cy=\"1449.79\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1948.3\" cy=\"1451.08\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"1975.07\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2001.83\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2028.6\" cy=\"1410.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2055.36\" cy=\"1387.71\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2082.13\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2108.89\" cy=\"1370.89\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2135.66\" cy=\"1377.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2162.43\" cy=\"1378.65\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2189.19\" cy=\"1377.36\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2215.96\" cy=\"1370.89\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2242.72\" cy=\"1372.19\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2269.49\" cy=\"1370.89\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2296.25\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2323.02\" cy=\"1400.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2349.79\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2376.55\" cy=\"1395.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2403.32\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2430.08\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2456.85\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2483.61\" cy=\"1400.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2510.38\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2537.15\" cy=\"1410.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2563.91\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2590.68\" cy=\"1400.64\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2617.44\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2644.21\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2670.97\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2697.74\" cy=\"1395.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2724.5\" cy=\"1395.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2751.27\" cy=\"1395.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2778.04\" cy=\"1396.76\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2804.8\" cy=\"1395.47\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2831.57\" cy=\"1394.17\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2858.33\" cy=\"1387.71\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2885.1\" cy=\"1410.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2911.86\" cy=\"1410.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2938.63\" cy=\"1410.99\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2965.4\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"2992.16\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3018.93\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3045.69\" cy=\"1427.8\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<circle clip-path=\"url(#clip692)\" cx=\"3072.46\" cy=\"1398.05\" r=\"14.4\" fill=\"#e26f46\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"4.8\"/>\n",
"<path clip-path=\"url(#clip690)\" d=\"M627.538 2204.92 L2840.81 2204.92 L2840.81 2075.32 L627.538 2075.32 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"627.538,2204.92 2840.81,2204.92 2840.81,2075.32 627.538,2075.32 627.538,2204.92 \"/>\n",
"<circle clip-path=\"url(#clip690)\" cx=\"753.634\" cy=\"2140.12\" r=\"25.6\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"8.53333\"/>\n",
"<path clip-path=\"url(#clip690)\" d=\"M903.37 2145.14 Q903.37 2139.35 900.969 2136.17 Q898.596 2132.99 894.285 2132.99 Q890.002 2132.99 887.601 2136.17 Q885.228 2139.35 885.228 2145.14 Q885.228 2150.9 887.601 2154.08 Q890.002 2157.26 894.285 2157.26 Q898.596 2157.26 900.969 2154.08 Q903.37 2150.9 903.37 2145.14 M908.694 2157.7 Q908.694 2165.97 905.02 2170 Q901.345 2174.05 893.764 2174.05 Q890.957 2174.05 888.469 2173.61 Q885.98 2173.21 883.637 2172.34 L883.637 2167.16 Q885.98 2168.43 888.266 2169.04 Q890.552 2169.65 892.925 2169.65 Q898.162 2169.65 900.766 2166.9 Q903.37 2164.18 903.37 2158.65 L903.37 2156.02 Q901.721 2158.88 899.146 2160.3 Q896.571 2161.72 892.983 2161.72 Q887.022 2161.72 883.376 2157.18 Q879.73 2152.63 879.73 2145.14 Q879.73 2137.62 883.376 2133.07 Q887.022 2128.53 892.983 2128.53 Q896.571 2128.53 899.146 2129.95 Q901.721 2131.37 903.37 2134.23 L903.37 2129.31 L908.694 2129.31 L908.694 2157.7 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M938.44 2134.29 Q937.543 2133.77 936.472 2133.54 Q935.43 2133.28 934.157 2133.28 Q929.643 2133.28 927.213 2136.23 Q924.811 2139.15 924.811 2144.65 L924.811 2161.72 L919.458 2161.72 L919.458 2129.31 L924.811 2129.31 L924.811 2134.35 Q926.489 2131.4 929.18 2129.98 Q931.871 2128.53 935.72 2128.53 Q936.27 2128.53 936.935 2128.62 Q937.601 2128.68 938.411 2128.82 L938.44 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M958.752 2145.43 Q952.3 2145.43 949.811 2146.91 Q947.323 2148.38 947.323 2151.94 Q947.323 2154.78 949.175 2156.45 Q951.055 2158.1 954.267 2158.1 Q958.694 2158.1 961.356 2154.98 Q964.047 2151.82 964.047 2146.62 L964.047 2145.43 L958.752 2145.43 M969.371 2143.23 L969.371 2161.72 L964.047 2161.72 L964.047 2156.8 Q962.224 2159.75 959.504 2161.17 Q956.784 2162.56 952.849 2162.56 Q947.872 2162.56 944.921 2159.78 Q941.999 2156.97 941.999 2152.29 Q941.999 2146.82 945.644 2144.04 Q949.319 2141.26 956.582 2141.26 L964.047 2141.26 L964.047 2140.74 Q964.047 2137.07 961.617 2135.07 Q959.215 2133.05 954.846 2133.05 Q952.068 2133.05 949.435 2133.71 Q946.802 2134.38 944.371 2135.71 L944.371 2130.79 Q947.294 2129.66 950.043 2129.11 Q952.791 2128.53 955.396 2128.53 Q962.427 2128.53 965.899 2132.18 Q969.371 2135.82 969.371 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M985.488 2156.86 L985.488 2174.05 L980.135 2174.05 L980.135 2129.31 L985.488 2129.31 L985.488 2134.23 Q987.166 2131.34 989.713 2129.95 Q992.288 2128.53 995.847 2128.53 Q1001.75 2128.53 1005.42 2133.22 Q1009.13 2137.91 1009.13 2145.55 Q1009.13 2153.18 1005.42 2157.87 Q1001.75 2162.56 995.847 2162.56 Q992.288 2162.56 989.713 2161.17 Q987.166 2159.75 985.488 2156.86 M1003.6 2145.55 Q1003.6 2139.67 1001.17 2136.34 Q998.769 2132.99 994.545 2132.99 Q990.32 2132.99 987.89 2136.34 Q985.488 2139.67 985.488 2145.55 Q985.488 2151.42 987.89 2154.78 Q990.32 2158.1 994.545 2158.1 Q998.769 2158.1 1001.17 2154.78 Q1003.6 2151.42 1003.6 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1044.89 2142.16 L1044.89 2161.72 L1039.57 2161.72 L1039.57 2142.33 Q1039.57 2137.73 1037.77 2135.45 Q1035.98 2133.16 1032.39 2133.16 Q1028.08 2133.16 1025.59 2135.91 Q1023.1 2138.66 1023.1 2143.4 L1023.1 2161.72 L1017.75 2161.72 L1017.75 2116.7 L1023.1 2116.7 L1023.1 2134.35 Q1025.01 2131.42 1027.59 2129.98 Q1030.19 2128.53 1033.58 2128.53 Q1039.16 2128.53 1042.03 2132 Q1044.89 2135.45 1044.89 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M1097.67 2130.56 L1097.67 2135.53 Q1095.41 2134.29 1093.13 2133.68 Q1090.87 2133.05 1088.55 2133.05 Q1083.38 2133.05 1080.51 2136.34 Q1077.65 2139.61 1077.65 2145.55 Q1077.65 2151.48 1080.51 2154.78 Q1083.38 2158.05 1088.55 2158.05 Q1090.87 2158.05 1093.13 2157.44 Q1095.41 2156.8 1097.67 2155.56 L1097.67 2160.48 Q1095.44 2161.52 1093.04 2162.04 Q1090.67 2162.56 1087.98 2162.56 Q1080.66 2162.56 1076.34 2157.
"<path clip-path=\"url(#clip690)\" d=\"M1994.24 2145.14 Q1994.24 2139.35 1991.84 2136.17 Q1989.47 2132.99 1985.16 2132.99 Q1980.88 2132.99 1978.47 2136.17 Q1976.1 2139.35 1976.1 2145.14 Q1976.1 2150.9 1978.47 2154.08 Q1980.88 2157.26 1985.16 2157.26 Q1989.47 2157.26 1991.84 2154.08 Q1994.24 2150.9 1994.24 2145.14 M1999.57 2157.7 Q1999.57 2165.97 1995.89 2170 Q1992.22 2174.05 1984.64 2174.05 Q1981.83 2174.05 1979.34 2173.61 Q1976.85 2173.21 1974.51 2172.34 L1974.51 2167.16 Q1976.85 2168.43 1979.14 2169.04 Q1981.43 2169.65 1983.8 2169.65 Q1989.04 2169.65 1991.64 2166.9 Q1994.24 2164.18 1994.24 2158.65 L1994.24 2156.02 Q1992.6 2158.88 1990.02 2160.3 Q1987.44 2161.72 1983.86 2161.72 Q1977.9 2161.72 1974.25 2157.18 Q1970.6 2152.63 1970.6 2145.14 Q1970.6 2137.62 1974.25 2133.07 Q1977.9 2128.53 1983.86 2128.53 Q1987.44 2128.53 1990.02 2129.95 Q1992.6 2131.37 1994.24 2134.23 L1994.24 2129.31 L1999.57 2129.31 L1999.57 2157.7 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2029.31 2134.29 Q2028.42 2133.77 2027.35 2133.54 Q2026.3 2133.28 2025.03 2133.28 Q2020.52 2133.28 2018.09 2136.23 Q2015.69 2139.15 2015.69 2144.65 L2015.69 2161.72 L2010.33 2161.72 L2010.33 2129.31 L2015.69 2129.31 L2015.69 2134.35 Q2017.36 2131.4 2020.05 2129.98 Q2022.75 2128.53 2026.59 2128.53 Q2027.14 2128.53 2027.81 2128.62 Q2028.47 2128.68 2029.28 2128.82 L2029.31 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2049.63 2145.43 Q2043.17 2145.43 2040.69 2146.91 Q2038.2 2148.38 2038.2 2151.94 Q2038.2 2154.78 2040.05 2156.45 Q2041.93 2158.1 2045.14 2158.1 Q2049.57 2158.1 2052.23 2154.98 Q2054.92 2151.82 2054.92 2146.62 L2054.92 2145.43 L2049.63 2145.43 M2060.25 2143.23 L2060.25 2161.72 L2054.92 2161.72 L2054.92 2156.8 Q2053.1 2159.75 2050.38 2161.17 Q2047.66 2162.56 2043.72 2162.56 Q2038.75 2162.56 2035.8 2159.78 Q2032.87 2156.97 2032.87 2152.29 Q2032.87 2146.82 2036.52 2144.04 Q2040.19 2141.26 2047.46 2141.26 L2054.92 2141.26 L2054.92 2140.74 Q2054.92 2137.07 2052.49 2135.07 Q2050.09 2133.05 2045.72 2133.05 Q2042.94 2133.05 2040.31 2133.71 Q2037.68 2134.38 2035.25 2135.71 L2035.25 2130.79 Q2038.17 2129.66 2040.92 2129.11 Q2043.67 2128.53 2046.27 2128.53 Q2053.3 2128.53 2056.77 2132.18 Q2060.25 2135.82 2060.25 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2076.36 2156.86 L2076.36 2174.05 L2071.01 2174.05 L2071.01 2129.31 L2076.36 2129.31 L2076.36 2134.23 Q2078.04 2131.34 2080.59 2129.95 Q2083.16 2128.53 2086.72 2128.53 Q2092.62 2128.53 2096.3 2133.22 Q2100 2137.91 2100 2145.55 Q2100 2153.18 2096.3 2157.87 Q2092.62 2162.56 2086.72 2162.56 Q2083.16 2162.56 2080.59 2161.17 Q2078.04 2159.75 2076.36 2156.86 M2094.48 2145.55 Q2094.48 2139.67 2092.04 2136.34 Q2089.64 2132.99 2085.42 2132.99 Q2081.19 2132.99 2078.76 2136.34 Q2076.36 2139.67 2076.36 2145.55 Q2076.36 2151.42 2078.76 2154.78 Q2081.19 2158.1 2085.42 2158.1 Q2089.64 2158.1 2092.04 2154.78 Q2094.48 2151.42 2094.48 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2135.77 2142.16 L2135.77 2161.72 L2130.44 2161.72 L2130.44 2142.33 Q2130.44 2137.73 2128.65 2135.45 Q2126.85 2133.16 2123.27 2133.16 Q2118.95 2133.16 2116.47 2135.91 Q2113.98 2138.66 2113.98 2143.4 L2113.98 2161.72 L2108.62 2161.72 L2108.62 2116.7 L2113.98 2116.7 L2113.98 2134.35 Q2115.89 2131.42 2118.46 2129.98 Q2121.07 2128.53 2124.45 2128.53 Q2130.04 2128.53 2132.9 2132 Q2135.77 2135.45 2135.77 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M2186.55 2134.23 L2186.55 2116.7 L2191.87 2116.7 L2191.87 2161.72 L2186.55 2161.72 L2186.55 2156.86 Q2184.87 2159.75 2182.29 2161.17 Q2179.75 2162.56 2176.16 2162.56 Q2170.29 2162.56 2166.58 2157.87 Q2162.91 2153.18 2162.91 2145.55 Q2162.91 2137.91 2166.58 2133.22 Q2170.29 2128.53 2176.16 2128.53 Q2179.75 2128.53 2182.29 2129.95 Q2184.87 2131.34 2186.55 2134.23 M2168.4 2145.55 Q2168.4 2151.42 2170.81
]
},
"execution_count": 104,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"img = @df df scatter(\n",
" :operations,\n",
" [:graph_ce, :graph_dt],\n",
" label=[\"graph compute effort (FLOP)\" \"graph data transfer (B)\"],\n",
" title=\"$(beautify_title(string(process))) Using $(optim_str)\",\n",
" linewidth=2,\n",
" xlabel=\"optimizer steps\",\n",
" ylims=(0.0, 1.05 * maximum(df.graph_ce)),\n",
" legend=:outerbottom,\n",
" legendcolumns=2,\n",
" legend_font_pointsize=10,\n",
" fmt=:pdf,\n",
" size=(800, 600)\n",
")\n",
"\n",
"savefig(img, \"../images/$(process_str_short)_ce_dt_$(optim_str_short).pdf\")\n",
"\n",
"img"
]
},
{
"cell_type": "code",
"execution_count": 106,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"\u001b[33m\u001b[1m┌ \u001b[22m\u001b[39m\u001b[33m\u001b[1mWarning: \u001b[22m\u001b[39mn° of legend_column=2 is larger than n° of series=1\n",
"\u001b[33m\u001b[1m└ \u001b[22m\u001b[39m\u001b[90m@ Plots ~/.julia/packages/Plots/sxUvK/src/backends/gr.jl:1235\u001b[39m\n"
]
},
{
"data": {
"image/png": "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
"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=\"600\" viewBox=\"0 0 3200 2400\">\n",
"<defs>\n",
" <clipPath id=\"clip810\">\n",
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip810)\" d=\"M0 2400 L3200 2400 L3200 0 L0 0 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip811\">\n",
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip810)\" d=\"M439.937 1883.07 L2769.76 1883.07 L2769.76 131.032 L439.937 131.032 Z\" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip812\">\n",
" <rect x=\"439\" y=\"131\" width=\"2331\" height=\"1753\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"492.634,1883.07 492.634,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1044.33,1883.07 1044.33,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"1596.02,1883.07 1596.02,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2147.72,1883.07 2147.72,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"2699.41,1883.07 2699.41,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,1883.07 2769.76,1883.07 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"492.634,1883.07 492.634,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1044.33,1883.07 1044.33,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1596.02,1883.07 1596.02,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2147.72,1883.07 2147.72,1867.11 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"2699.41,1883.07 2699.41,1867.11 \"/>\n",
"<path clip-path=\"url(#clip810)\" d=\"M436.234 1933.24 Q439.591 1933.95 441.466 1936.22 Q443.364 1938.49 443.364 1941.82 Q443.364 1946.94 439.845 1949.74 Q436.327 1952.54 429.845 1952.54 Q427.669 1952.54 425.355 1952.1 Q423.063 1951.69 420.609 1950.83 L420.609 1946.31 Q422.554 1947.45 424.869 1948.03 Q427.183 1948.61 429.706 1948.61 Q434.105 1948.61 436.396 1946.87 Q438.711 1945.13 438.711 1941.82 Q438.711 1938.77 436.558 1937.06 Q434.429 1935.32 430.609 1935.32 L426.581 1935.32 L426.581 1931.48 L430.794 1931.48 Q434.243 1931.48 436.072 1930.11 Q437.901 1928.72 437.901 1926.13 Q437.901 1923.47 436.003 1922.06 Q434.128 1920.62 430.609 1920.62 Q428.688 1920.62 426.489 1921.04 Q424.29 1921.45 421.651 1922.33 L421.651 1918.17 Q424.313 1917.43 426.628 1917.06 Q428.966 1916.69 431.026 1916.69 Q436.35 1916.69 439.452 1919.12 Q442.554 1921.52 442.554 1925.64 Q442.554 1928.51 440.91 1930.5 Q439.267 1932.47 436.234 1933.24 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M462.229 1920.39 Q458.618 1920.39 456.79 1923.95 Q454.984 1927.5 454.984 1934.62 Q454.984 1941.73 456.79 1945.3 Q458.618 1948.84 462.229 1948.84 Q465.864 1948.84 467.669 1945.3 Q469.498 1941.73 469.498 1934.62 Q469.498 1927.5 467.669 1923.95 Q465.864 1920.39 462.229 1920.39 M462.229 1916.69 Q468.04 1916.69 471.095 1921.29 Q474.174 1925.88 474.174 1934.62 Q474.174 1943.35 471.095 1947.96 Q468.04 1952.54 462.229 1952.54 Q456.419 1952.54 453.341 1947.96 Q450.285 1943.35 450.285 1934.62 Q450.285 1925.88 453.341 1921.29 Q456.419 1916.69 462.229 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M492.391 1920.39 Q488.78 1920.39 486.952 1923.95 Q485.146 1927.5 485.146 1934.62 Q485.146 1941.73 486.952 1945.3 Q488.78 1948.84 492.391 1948.84 Q496.026 1948.84 497.831 1945.3 Q499.66 1941.73 499.66 1934.62 Q499.66 1927.5 497.831 1923.95 Q496.026 1920.39 492.391 1920.39 M492.391 1916.69 Q498.201 1916.69 501.257 1921.29 Q504.336 1925.88 504.336 1934.62 Q504.336 1943.35 501.257 1947.96 Q498.201 1952.54 492.391 1952.54 Q486.581 1952.54 483.502 1947.96 Q480.447 1943.35 480.447 1934.62 Q480.447 1925.88 483.502 1921.29 Q486.581 1916.69 492.391 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M522.553 1920.39 Q518.942 1920.39 517.113 1923.95 Q515.308 1927.5 515.308 1934.62 Q515.308 1941.73 517.113 1945.3 Q518.942 1948.84 522.553 1948.84 Q526.187 1948.84 527.993 1945.3 Q529.822 1941.73 529.822 1934.62 Q529.822 1927.5 527.993 1923.95 Q526.187 1920.39 522.553 1920.39 M522.553 1916.69 Q528.363 1916.69 531.419 1921.29 Q534.498 1925.88 534.498 1934.62 Q534.498 1943.35 531.419 1947.96 Q528.363 1952.54 522.553 1952.54 Q516.743 1952.54 513.664 1947.96 Q510.609 1943.35 510.609 1934.62 Q510.609 1925.88 513.664 1921.29 Q516.743 1916.69 522.553 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M552.715 1920.39 Q549.104 1920.39 547.275 1923.95 Q545.47 1927.5 545.47 1934.62 Q545.47 1941.73 547.275 1945.3 Q549.104 1948.84 552.715 1948.84 Q556.349 1948.84 558.155 1945.3 Q559.984 1941.73 559.984 1934.62 Q559.984 1927.5 558.155 1923.95 Q556.349 1920.39 552.715 1920.39 M552.715 1916.69 Q558.525 1916.69 561.581 1921.29 Q564.659 1925.88 564.659 1934.62 Q564.659 1943.35 561.581 1947.96 Q558.525 1952.54 552.715 1952.54 Q546.905 1952.54 543.826 1947.96 Q540.771 1943.35 540.771 1934.62 Q540.771 1925.88 543.826 1921.29 Q546.905 1916.69 552.715 1916.69 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M987.929 1933.24 Q991.285 1933.95 993.16 1936.22 Q995.058 1938.49 995.058 1941.82 Q995.058 1946.94 991.54 1949.74 Q988.021 1952.54 981.54 1952.54 Q979.364 1952.54 977.049 1952.1 Q974.757 1951.69 972.304 1950.83 L972.304 1946.31 Q974.248 1947.45 976.563 1948.03 Q978.878 1948.61 981.401 1948.61 Q985.799 1948.61 988.091 1946.87 Q990.405 1945.13 990.405 1941.82 Q990.405 1938.77 988.253 1937.06 Q986.123 1935.32 982.304 1935.32 L978
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"439.937,1549.15 2769.76,1549.15 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"439.937,1247.75 2769.76,1247.75 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"439.937,946.35 2769.76,946.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"439.937,644.952 2769.76,644.952 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"439.937,343.554 2769.76,343.554 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,1883.07 439.937,131.032 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,1850.54 456.552,1850.54 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,1549.15 456.552,1549.15 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,1247.75 456.552,1247.75 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,946.35 456.552,946.35 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,644.952 456.552,644.952 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"439.937,343.554 456.552,343.554 \"/>\n",
"<path clip-path=\"url(#clip810)\" d=\"M116.871 1870.34 L124.51 1870.34 L124.51 1843.97 L116.2 1845.64 L116.2 1841.38 L124.464 1839.71 L129.14 1839.71 L129.14 1870.34 L136.779 1870.34 L136.779 1874.27 L116.871 1874.27 L116.871 1870.34 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M146.223 1868.39 L151.107 1868.39 L151.107 1874.27 L146.223 1874.27 L146.223 1868.39 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M162.103 1870.34 L169.742 1870.34 L169.742 1843.97 L161.431 1845.64 L161.431 1841.38 L169.695 1839.71 L174.371 1839.71 L174.371 1870.34 L182.01 1870.34 L182.01 1874.27 L162.103 1874.27 L162.103 1870.34 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M201.454 1842.79 Q197.843 1842.79 196.015 1846.35 Q194.209 1849.9 194.209 1857.03 Q194.209 1864.13 196.015 1867.7 Q197.843 1871.24 201.454 1871.24 Q205.089 1871.24 206.894 1867.7 Q208.723 1864.13 208.723 1857.03 Q208.723 1849.9 206.894 1846.35 Q205.089 1842.79 201.454 1842.79 M201.454 1839.09 Q207.264 1839.09 210.32 1843.69 Q213.399 1848.28 213.399 1857.03 Q213.399 1865.75 210.32 1870.36 Q207.264 1874.94 201.454 1874.94 Q195.644 1874.94 192.565 1870.36 Q189.51 1865.75 189.51 1857.03 Q189.51 1848.28 192.565 1843.69 Q195.644 1839.09 201.454 1839.09 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M231.616 1842.79 Q228.005 1842.79 226.176 1846.35 Q224.371 1849.9 224.371 1857.03 Q224.371 1864.13 226.176 1867.7 Q228.005 1871.24 231.616 1871.24 Q235.25 1871.24 237.056 1867.7 Q238.885 1864.13 238.885 1857.03 Q238.885 1849.9 237.056 1846.35 Q235.25 1842.79 231.616 1842.79 M231.616 1839.09 Q237.426 1839.09 240.482 1843.69 Q243.561 1848.28 243.561 1857.03 Q243.561 1865.75 240.482 1870.36 Q237.426 1874.94 231.616 1874.94 Q225.806 1874.94 222.727 1870.36 Q219.672 1865.75 219.672 1857.03 Q219.672 1848.28 222.727 1843.69 Q225.806 1839.09 231.616 1839.09 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M261.778 1842.79 Q258.167 1842.79 256.338 1846.35 Q254.533 1849.9 254.533 1857.03 Q254.533 1864.13 256.338 1867.7 Q258.167 1871.24 261.778 1871.24 Q265.412 1871.24 267.218 1867.7 Q269.047 1864.13 269.047 1857.03 Q269.047 1849.9 267.218 1846.35 Q265.412 1842.79 261.778 1842.79 M261.778 1839.09 Q267.588 1839.09 270.644 1843.69 Q273.722 1848.28 273.722 1857.03 Q273.722 1865.75 270.644 1870.36 Q267.588 1874.94 261.778 1874.94 Q255.968 1874.94 252.889 1870.36 Q249.834 1865.75 249.834 1857.03 Q249.834 1848.28 252.889 1843.69 Q255.968 1839.09 261.778 1839.09 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M310.111 1848.81 L299.533 1859.43 L310.111 1870.01 L307.357 1872.81 L296.732 1862.19 L286.107 1872.81 L283.375 1870.01 L293.931 1859.43 L283.375 1848.81 L286.107 1846.01 L296.732 1856.63 L307.357 1846.01 L310.111 1848.81 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M322.472 1870.34 L330.111 1870.34 L330.111 1843.97 L321.801 1845.64 L321.801 1841.38 L330.065 1839.71 L334.741 1839.71 L334.741 1870.34 L342.38 1870.34 L342.38 1874.27 L322.472 1874.27 L322.472 1870.34 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M361.824 1842.79 Q358.213 1842.79 356.384 1846.35 Q354.579 1849.9 354.579 1857.03 Q354.579 1864.13 356.384 1867.7 Q358.213 1871.24 361.824 1871.24 Q365.458 1871.24 367.264 1867.7 Q369.092 1864.13 369.092 1857.03 Q369.092 1849.9 367.264 1846.35 Q365.458 1842.79 361.824 1842.79 M361.824 1839.09 Q367.634 1839.09 370.69 1843.69 Q373.768 1848.28 373.768 1857.03 Q373.768 1865.75 370.69 1870.36 Q367.634 1874.94 361.824 1874.94 Q356.014 1874.94 352.935 1870.36 Q349.879 1865.75 349.879 1857.03 Q349.879 1848.28 352.935 1843.69 Q356.014 1839.09 361.824 1839.09 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#450457; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1247.35,180.618 1220.87,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#45085b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1220.87,180.618 1247.35,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#460c5f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1247.35,180.618 638.282,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#471062; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,180.618 611.8,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#471366; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,180.618 611.8,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#471769; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,731.573 611.8,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#481a6c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,180.618 1220.87,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#481e6f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1220.87,180.618 1220.87,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#482172; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1220.87,731.573 1220.87,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#482475; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1220.87,180.618 611.8,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#472777; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,180.618 585.319,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#472b7a; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,180.618 585.319,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#462e7c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,731.573 1194.39,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#46317e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1194.39,731.573 1671.05,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#453480; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1671.05,731.573 1194.39,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#443781; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1194.39,731.573 585.319,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#433a83; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,731.573 558.838,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#423d84; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"558.838,731.573 532.356,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#414086; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"532.356,731.573 1141.43,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#404387; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1141.43,731.573 532.356,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3f4688; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"532.356,731.573 1141.43,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3e4989; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1141.43,731.573 532.356,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3d4c89; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"532.356,731.573 558.838,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3b4f8a; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"558.838,731.573 532.356,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3a518b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"532.356,731.573 558.838,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#39548b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"558.838,731.573 585.319,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#38578c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,731.573 558.838,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#365a8c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"558.838,731.573 585.319,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#355c8c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,731.573 585.319,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#345f8d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,180.618 611.8,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#33618d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,180.618 585.319,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#32648d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"585.319,180.618 611.8,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#30668d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,180.618 638.282,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2f698d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,180.618 638.282,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2e6b8e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,731.573 638.282,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2d6e8e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1282.53 638.282,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2c708e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,731.573 638.282,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2b738e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,180.618 638.282,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2a758e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,731.573 638.282,180.618 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#29788e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,180.618 638.282,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#287a8e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,731.573 638.282,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#277c8e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1282.53 505.875,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#267f8e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"505.875,1282.53 638.282,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#25818e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1282.53 638.282,1833.48 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#25848d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1833.48 982.539,1833.48 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#24868d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"982.539,1833.48 638.282,1833.48 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#23888d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1833.48 638.282,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#228b8d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,1282.53 638.282,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#218d8c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"638.282,731.573 611.8,731.573 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#20908c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,731.573 611.8,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1f928c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"611.8,1282.53 1088.46,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1f948b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1088.46,1282.53 956.058,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1e978a; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"956.058,1282.53 1088.46,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1e998a; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1088.46,1282.53 1565.13,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1e9c89; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1565.13,1282.53 1088.46,1282.53 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1e9e88; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1088.46,1282.53 1088.46,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1fa087; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1088.46,853.399 1061.98,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#1fa386; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1061.98,853.399 1538.65,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#20a585; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,853.399 1538.65,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#22a784; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,1404.35 1882.9,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#24aa82; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1882.9,1404.35 2359.57,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#26ac81; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2359.57,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#28ae7f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2703.83,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2bb17d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2703.83,1404.35 2571.42,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#2fb37b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2571.42,1404.35 2544.94,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#32b579; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2544.94,1404.35 2571.42,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#36b877; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2571.42,1404.35 2703.83,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3aba75; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2703.83,1404.35 2677.34,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#3ebc73; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2677.34,1404.35 2703.83,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#43be70; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2703.83,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#47c06e; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2094.75,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#4cc26b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2094.75,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#51c468; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2200.68,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#57c665; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2200.68,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#5cc862; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2227.16,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#62ca5f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,853.399 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#67cc5b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2094.75,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#6dce58; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2094.75,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#73cf54; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 1882.9,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#79d151; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1882.9,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#7fd34d; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2094.75,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#86d449; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2094.75,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#8cd645; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2227.16,975.224 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#93d741; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,975.224 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#99d83c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2200.68,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#a0da38; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2200.68,1404.35 2200.68,975.224 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#a7db34; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2200.68,975.224 2200.68,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#aedc2f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2200.68,1404.35 2174.2,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#b4dd2b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2174.2,1404.35 2200.68,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#bbde26; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2200.68,1404.35 2227.16,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#c2df22; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2227.16,1404.35 2359.57,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#c9e01f; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"2359.57,1404.35 1882.9,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#d0e11b; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1882.9,1404.35 1882.9,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#d6e219; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1882.9,853.399 1882.9,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#dde218; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1882.9,1404.35 1538.65,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#e4e318; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,1404.35 1538.65,1833.48 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#eae419; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,1833.48 1538.65,1404.35 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#f0e51c; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,1404.35 1538.65,853.399 \"/>\n",
"<polyline clip-path=\"url(#clip812)\" style=\"stroke:#f7e620; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"1538.65,853.399 2147.72,853.399 \"/>\n",
"<defs>\n",
" <clipPath id=\"clip813\">\n",
" <rect x=\"2833\" y=\"131\" width=\"97\" height=\"1753\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<g clip-path=\"url(#clip813)\">\n",
"<image width=\"96\" height=\"1752\" xlink:href=\"data:image/png;base64,\n",
"iVBORw0KGgoAAAANSUhEUgAAAGAAAAbYCAYAAAB30dMaAAAQN0lEQVR4nO3d0U3FMBQFQRvdUui/\n",
"LaqwTRnzkZ0KUFZHipzksc/f71thfvQf8HUFwAqAFQArAFYAbM67+m/4tBaAFQArAFYArABYAbC5\n",
"q8NQqQVgBcAKgBUAKwBWAGzu6jRUagFYAbACYAXACoAVAJvzOg2VWgBWAKwAWAGwAmAFwDoNxVoA\n",
"VgCsAFgBsAJgBcDm9G4o1QKwAmAFwAqAFQCb2zNhqgVgBcAKgBUAKwBWAKzDOKwFYAXACoAVACsA\n",
"VgBsejHRagFYAbACYAXACoAVAOtDbawFYAXACoAVACsAVgBsjv4LPq4FYAXACoAVACsAVgCsh/JY\n",
"C8AKgBUAKwBWAGxOj4SpFoAVACsAVgCsAFgBsA7jsBaAFQArAFYArABYAbA5a+u/4dNaAFYArABY\n",
"AbACYAXA5rxuQ6UWgBUAKwBWAKwAWAGwuZ2GUi0AKwBWAKwAWAGwAmA9lMdaAFYArABYAbACYAXA\n",
"5vZQnmoBWAGwAmAFwAqAdRiHtQCsAFgBsAJgBcAKgHUbirUArABYAbACYAXACoDNfTWQuvpYAbAC\n",
"YAXACoAVAOs0FGsBWAGwAmAFwAqAFQCbUwOqq48VACsAVgCsAFgBsB7KY119rABYAbACYAXAeiaM\n",
"tQCsAFgBsAJgBcAKgM3pMI7q6mMFwAqAFQArAFYAbG4NqK4+VgCsAFgBsAJgBcB6KI+1AKwAWAGw\n",
"AmAFwAqA9VAe6+pjBcAKgBUAKwBWAKyH8lhXHysAVgCsAFgBsA7jsK4+VgCsAFgBsAJgBcB6NRFr\n",
"AVgBsAJgBcAKgBUA68e7sa4+VgCsAFgBsAJgBcD6V4ZYVx8rAFYArABYAbACYHNeD+WlFoAVACsA\n",
"VgCsAFgBsD7Uxrr6WAGwAmAFwAqAFQDrS3msq48VACsAVgCsAFivJmJdfawAWAGwAmAFwAqAze3V\n",
"RKoFYAXACoAVACsAVgCs01Csq48VACsAVgCsAFgBsH62EuvqYwXACoAVACsAVgCsf+KDtQCsAFgB\n",
"sAJgBcAKgHUainX1sQJgBcAKgBUA6zAOawFYAbACYAXACoAVAOswDuvqYwXACoAVACsAVgCsH+/G\n",
"uvpYAbACYAXACoAVAJvbQ3mqBWAFwAqAFQArAFYArNNQrKuPFQArAFYArABYAbBOQ7EWgBUAKwBW\n",
"AKwAWAGwTkOxrj5WAKwAWAGwAmD9R22sBWAFwAqAFQArAFYArP+ojXX1sQJgBcAKgBUAKwDWaSjW\n",
"ArACYAXACoAVACsA1m0o1gKwAmAFwAqAFQArANZDeayrjxUAKwBWAKwAWAGwTkOxFoAVACsAVgCs\n",
"AFj/URvr6mMFwAqAFQArAFYArB/vxloAVgCsAFgBsAJgBcDm9EyYagFYAbACYAXACoAVAOuhPNbV\n",
"xwqAFQArAFYArABYX8hgLQArAFYArABYAbACYL0birUArABYAbACYAXAejURawFYAbACYAXACoAV\n",
"AOvVRKyrjxUAKwBWAKwAWAGwXk3EWgBWAKwAWAGwAmAFwHo1EWsBWAGwAmAFwAqAFQDrNBRrAVgB\n",
"sAJgBcAKgBUA6zYUawFYAbACYAXACoAVAOs2FGsBWAGwAmAFwAqA9aE21tXHCoAVACsAVgCsAFhf\n",
"yGAtACsAVgCsAFgBsAJgPRPGWgBWAKwAWAGwAmAFwLoNxVoAVgCsAFgBsAJgBcC6DcVaAFYArABY\n",
"AbACYAXA5nUbSrUArABYAbACYAXA+kIGawFYAbACYAXACoAVAOuZMNYCsAJgBcAKgBUAKwDWbSjW\n",
"ArACYAXACoAVACsA1quJWAvACoAVACsAVgCsAFinoVgLwAqAFQArAFYArABYt6FYC8AKgBUAKwBW\n",
"AKwA2Dz9F3xcC8AKgBUAKwBWAKzDOKwFYAXACoAVACsAVgCsL2SwFoAVACsAVgCsAFgBsE5DsRaA\n",
"FQArAFYArABYAbBOQ7EWgBUAKwBWAKwAWAGwuX0iQ7UArABYAbACYAXACoB1Goq1AKwAWAGwAmAF\n",
"wLoLwloAVgCsAFgBsAJgBcD6QgZrAVgBsAJgBcAKgBUA68e7sRaAFQArAFYArABYAbAeymMtACsA\n",
"VgCsAFgBsAJg3YZiLQArAFYArABYAbACYPN6Kk+1AKwAWAGwAmAFwDqMw1oAVgCsAFgBsAJgBcC6\n",
"DcVaAFYArABYAbACYAXAeiaMtQCsAFgBsAJgBcAKgHUairUArABYAbACYAXACoB1Goq1AKwAWAGw\n",
"AmAFwAqAzeo0lGoBWAGwAmAFwAqAFQDroTzWArACYAXACoAVAOtfGWItACsAVgCsAFgBsAJgPRPG\n",
"WgBWAKwAWAGwAmAFwPpCBmsBWAGwAmAFwAqAFQCb1W0o1QKwAmAFwAqAFQArANYXMlgLwAqAFQAr\n",
"AFYArABYp6FYC8AKgBUAKwBWAKwvZLAWgBUAKwBWAKwAWAGwvpDBWgBWAKwAWAGwAmAFwDoNxVoA\n",
"VgCsAFgBsAJgBcB6NRFrAVgBsAJgBcAKgBUA6zYUawFYAbACYAXACoAVAOuhPNYCsAJgBcAKgBUA\n",
"KwDWaSjWArACYAXACoAVAOsuCGsBWAGwAmAFwAqAFQDrmTDWArACYAXACoAVACsAVgCsAFgBsAJg\n",
"BcAKgBUA66E81gKwAmAFwAqAFQArANZtKNYCsAJgBcAKgBUAKwA2u3dDqRaAFQArAFYArABYh3FY\n",
"C8AKgBUAKwBWAKwAWLehWAvACoAVACsAVgCsAFi3oVgLwAqAFQArAFYArABYP1uJtQCsAFgBsAJg\n",
"BcAKgM3uNJRqAVgBsAJgBcAKgBUA66E81gKwAmAFwAqAFQDrLghrAVgBsAJgBcAKgBUA65kw1gKw\n",
"AmAFwAqAFQArANZpKNYCsAJgBcAKgBUAKwDWh9pYC8AKgBUAKwBWAKwAWA/lsRaAFQArAFYArABY\n",
"AbAeymMtACsAVgCsAFgBsAJg3YZiLQArAFYArABYAbDpxUSrBWAFwAqAFQArAFYArMM4rAVgBcAK\n",
"gBUAKwBWAKzbUKwFYAXACoAVACsAVgCsD7WxFoAVACsAVgCsAFgBsE5DsRaAFQArAFYArABYAbBu\n",
"Q7EWgBUAKwBWAKwAWM+EsRaAFQArAFYArABYAbD+lSHWArACYAXACoAVACsA1mko1gKwAmAFwAqA\n",
"FQArANariVgLwAqAFQArAFYArABYt6FYC8AKgBUAKwBWAKwAWA/lsRaAFQArAFYArABYAbBOQ7EW\n",
"gBUAKwBWAKwAWHdBWAvACoAVACsAVgCsAFjPhLEWgBUAKwBWAKwAWAGwTkOxFoAVACsAVgCsAFgB\n",
"sAJgBcAKgBUAKwBWAKwAWA/lsRaAFQArAFYArABYAbAeymMtACsAVgCsAFgBsA7jsBaAFQArAFYA\n",
"rABYAbAO47AWgBUAKwBWAKwAWAGwbkOxFoAVACsAVgCsAFgBsB7KYy0AKwBWAKwAWAGwAmCdhmIt\n",
"ACsAVgCsAFgBsAJgnYZiLQArAFYArABYAbAO47AWgBUAKwBWAKwAWAGwbkOxFoAVACsAVgCsAFgB\n",
"sJ4JYy0AKwBWAKwAWAGwAmCdhmItACsAVgCsAFgBsAJgnYZiLQArAFYArABYAbACYJ2GYi0AKwBW\n",
"AKwAWAGwAmDdhmItACsAVgCsAFgBsNmv2yCpBWAFwAqAFQArAFYArMM4rAVgBcAKgBUAKwBWAKwv\n",
"ZLAWgBUAKwBWAKwAWAGwTkOxFoAVACsAVgCsAFgBsE5DsRaAFQArAFYArABYAbBOQ7EWgBUAKwBW\n",
"AKwAWHdBWAvACoAVACsAVgCsAFjPhLEWgBUAKwBWAKwAWAGwTkOxFoAVACsAVgCsAFgBsE5DsRaA\n",
"FQArAFYArABYAbBOQ7EWgBUAKwBWAKwAWAGwTkOxFoAVACsAVgCsAFgBsE5DsRaAFQArAFYArADY\n",
"7NdtkNQCsAJgBcAKgBUAKwDWYRzWArACYAXACoAVACsA1quJWAvACoAVACsAVgCsAFinoVgLwAqA\n",
"FQArAFYArABYp6FYC8AKgBUAKwBWAKwAWKehWAvACoAVACsAVgCswzisBWAFwAqAFQArAFYAbFa/\n",
"F0S1AKwAWAGwAmAFwAqAdRqKtQCsAFgBsAJgBcAKgPVqItYCsAJgBcAKgBUAKwDWaSjWArACYAXA\n",
"CoAVACsA1mko1gKwAmAFwAqAFQDrP2pjLQArAFYArABYAbACYB3GYS0AKwBWAKwAWAGwAmCzr/4T\n",
"vq0FYAXACoAVACsAVgCs01CsBWAFwAqAFQArAFYArHdDsRaAFQArAFYArABYAbBOQ7EWgBUAKwBW\n",
"AKwAWAGwbkOxFoAVACsAVgCsAFg/3o21AKwAWAGwAmAFwAqAzerVRKoFYAXACoAVACsAVgCs01Cs\n",
"BWAFwAqAFQArAFYAbNbtPlRqAVgBsAJgBcAKgBUA6zQUawFYAbACYAXACoAVAOtDbawFYAXACoAV\n",
"ACsA1o93Yy0AKwBWAKwAWAGwAmAdxmEtACsAVgCsAFgBsAJgnYZiLQArAFYArABYAbACYLOu/hO+\n",
"rQVgBcAKgBUAKwBWAKxfT8daAFYArABYAbACYAXA+r0grAVgBcAKgBUAKwBWAKzTUKwFYAXACoAV\n",
"ACsA1ofaWAvACoAVACsAVgCsAFgfamMtACsAVgCsAFgBsAJg/UdtrAVgBcAKgBUAKwBWAKwvZLAW\n",
"gBUAKwBWAKwAWAGwvpDBWgBWAKwAWAGwAmAFwLoNxVoAVgCsAFgBsAJg/Q8ZrAVgBcAKgBUAKwBW\n",
"AKwPtbEWgBUAKwBWAKwAWAGwngljLQArAFYArABYAbACYN2GYi0AKwBWAKwAWAGwAmC9G4q1AKwA\n",
"WAGwAmAFwAqA9W4o1gKwAmAFwAqAFQDrmTDWArACYAXACoAVACsA1m0o1gKwAmAFwAqAFQArANZ/\n",
"1MZaAFYArABYAbACYAXAOg3FWgBWAKwAWAGwAmAFwLoNxVoAVgCsAFgBsAJgBcC6DcVaAFYArABY\n",
"AbACYAXAZvduKNUCsAJgBcAKgBUA6zAOawFYAbACYAXACoAVAOs2FGsBWAGwAmAFwAqAFQDrNhRr\n",
"AVgBsAJgBcAKgBUA62crsRaAFQArAFYArABYAbBOQ7EWgBUAKwBWAKwAWAGwbkOxFoAVACsAVgCs\n",
"ANise/Xf8GktACsAVgCsAFgBsAJgHcZhLQArAFYArABYAbACYPO6DaVaAFYArABYAbACYAXA+lAb\n",
"awFYAbACYAXACoAVAJv1ejdUagFYAbACYAXACoAVAOvdUKwFYAXACoAVACsAVgCsh/JYC8AKgBUA\n",
"KwBWAKxnwlgLwAqAFQArAFYArABYh3FYC8AKgBUAKwBWAKwAWL8XhLUArABYAbACYAXACoD1T3yw\n",
"FoAVACsAVgCsAFgBsD7UxloAVgCsAFgBsAJgBcA6DcVaAFYArABYAbACYL2aiLUArABYAbACYAXA\n",
"CoD1oTbWArACYAXACoAVACsA1s9WYi0AKwBWAKwAWAGwAmDzOg2lWgBWAKwAWAGwAmAFwDoNxVoA\n",
"VgCsAFgBsAJgBcD6vSCsBWAFwAqAFQArAPYPvl2PUQYMcKkAAAAASUVORK5CYII=\n",
"\" transform=\"translate(2834, 131)\"/>\n",
"</g>\n",
"<path clip-path=\"url(#clip810)\" d=\"M2989.71 1865.24 Q2986.1 1865.24 2984.27 1868.8 Q2982.46 1872.35 2982.46 1879.48 Q2982.46 1886.58 2984.27 1890.15 Q2986.1 1893.69 2989.71 1893.69 Q2993.34 1893.69 2995.15 1890.15 Q2996.98 1886.58 2996.98 1879.48 Q2996.98 1872.35 2995.15 1868.8 Q2993.34 1865.24 2989.71 1865.24 M2989.71 1861.54 Q2995.52 1861.54 2998.57 1866.14 Q3001.65 1870.73 3001.65 1879.48 Q3001.65 1888.2 2998.57 1892.81 Q2995.52 1897.39 2989.71 1897.39 Q2983.9 1897.39 2980.82 1892.81 Q2977.76 1888.2 2977.76 1879.48 Q2977.76 1870.73 2980.82 1866.14 Q2983.9 1861.54 2989.71 1861.54 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2978.44 1717.58 L2986.07 1717.58 L2986.07 1691.22 L2977.76 1692.88 L2977.76 1688.62 L2986.03 1686.96 L2990.7 1686.96 L2990.7 1717.58 L2998.34 1717.58 L2998.34 1721.52 L2978.44 1721.52 L2978.44 1717.58 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3017.79 1690.04 Q3014.18 1690.04 3012.35 1693.6 Q3010.54 1697.14 3010.54 1704.27 Q3010.54 1711.38 3012.35 1714.94 Q3014.18 1718.49 3017.79 1718.49 Q3021.42 1718.49 3023.23 1714.94 Q3025.06 1711.38 3025.06 1704.27 Q3025.06 1697.14 3023.23 1693.6 Q3021.42 1690.04 3017.79 1690.04 M3017.79 1686.33 Q3023.6 1686.33 3026.65 1690.94 Q3029.73 1695.52 3029.73 1704.27 Q3029.73 1713 3026.65 1717.61 Q3023.6 1722.19 3017.79 1722.19 Q3011.98 1722.19 3008.9 1717.61 Q3005.84 1713 3005.84 1704.27 Q3005.84 1695.52 3008.9 1690.94 Q3011.98 1686.33 3017.79 1686.33 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2983.39 1542.38 L2999.71 1542.38 L2999.71 1546.31 L2977.76 1546.31 L2977.76 1542.38 Q2980.43 1539.62 2985.01 1534.99 Q2989.62 1530.34 2990.8 1529 Q2993.04 1526.48 2993.92 1524.74 Q2994.82 1522.98 2994.82 1521.29 Q2994.82 1518.54 2992.88 1516.8 Q2990.96 1515.06 2987.86 1515.06 Q2985.66 1515.06 2983.2 1515.83 Q2980.77 1516.59 2978 1518.14 L2978 1513.42 Q2980.82 1512.29 2983.27 1511.71 Q2985.73 1511.13 2987.76 1511.13 Q2993.13 1511.13 2996.33 1513.81 Q2999.52 1516.5 2999.52 1520.99 Q2999.52 1523.12 2998.71 1525.04 Q2997.93 1526.94 2995.82 1529.53 Q2995.24 1530.2 2992.14 1533.42 Q2989.04 1536.61 2983.39 1542.38 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3019.52 1514.83 Q3015.91 1514.83 3014.08 1518.4 Q3012.28 1521.94 3012.28 1529.07 Q3012.28 1536.17 3014.08 1539.74 Q3015.91 1543.28 3019.52 1543.28 Q3023.16 1543.28 3024.96 1539.74 Q3026.79 1536.17 3026.79 1529.07 Q3026.79 1521.94 3024.96 1518.4 Q3023.16 1514.83 3019.52 1514.83 M3019.52 1511.13 Q3025.33 1511.13 3028.39 1515.74 Q3031.47 1520.32 3031.47 1529.07 Q3031.47 1537.8 3028.39 1542.4 Q3025.33 1546.99 3019.52 1546.99 Q3013.71 1546.99 3010.63 1542.4 Q3007.58 1537.8 3007.58 1529.07 Q3007.58 1520.32 3010.63 1515.74 Q3013.71 1511.13 3019.52 1511.13 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M2993.39 1352.48 Q2996.75 1353.19 2998.62 1355.46 Q3000.52 1357.73 3000.52 1361.06 Q3000.52 1366.18 2997 1368.98 Q2993.48 1371.78 2987 1371.78 Q2984.82 1371.78 2982.51 1371.34 Q2980.22 1370.92 2977.76 1370.07 L2977.76 1365.55 Q2979.71 1366.69 2982.02 1367.27 Q2984.34 1367.85 2986.86 1367.85 Q2991.26 1367.85 2993.55 1366.11 Q2995.87 1364.37 2995.87 1361.06 Q2995.87 1358.01 2993.71 1356.3 Q2991.58 1354.56 2987.76 1354.56 L2983.74 1354.56 L2983.74 1350.72 L2987.95 1350.72 Q2991.4 1350.72 2993.23 1349.35 Q2995.06 1347.96 2995.06 1345.37 Q2995.06 1342.71 2993.16 1341.3 Q2991.28 1339.86 2987.76 1339.86 Q2985.84 1339.86 2983.64 1340.28 Q2981.44 1340.69 2978.81 1341.57 L2978.81 1337.41 Q2981.47 1336.67 2983.78 1336.3 Q2986.12 1335.93 2988.18 1335.93 Q2993.5 1335.93 2996.61 1338.36 Q2999.71 1340.76 2999.71 1344.88 Q2999.71 1347.75 2998.06 1349.74 Q2996.42 1351.71 2993.39 1352.48 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3019.38 1339.63 Q3015.77 1339.63 3013.94 1343.19 Q3012.14 1346.74 3012.14 1
"<path clip-path=\"url(#clip810)\" d=\"M3125.31 1319.72 Q3125.31 1326.18 3126.79 1328.66 Q3128.26 1331.15 3131.82 1331.15 Q3134.66 1331.15 3136.34 1329.3 Q3137.99 1327.42 3137.99 1324.21 Q3137.99 1319.78 3134.86 1317.12 Q3131.71 1314.43 3126.5 1314.43 L3125.31 1314.43 L3125.31 1319.72 M3123.11 1309.1 L3141.6 1309.1 L3141.6 1314.43 L3136.68 1314.43 Q3139.64 1316.25 3141.05 1318.97 Q3142.44 1321.69 3142.44 1325.63 Q3142.44 1330.6 3139.67 1333.55 Q3136.86 1336.48 3132.17 1336.48 Q3126.7 1336.48 3123.92 1332.83 Q3121.15 1329.16 3121.15 1321.89 L3121.15 1314.43 L3120.63 1314.43 Q3116.95 1314.43 3114.95 1316.86 Q3112.93 1319.26 3112.93 1323.63 Q3112.93 1326.41 3113.59 1329.04 Q3114.26 1331.67 3115.59 1334.1 L3110.67 1334.1 Q3109.54 1331.18 3108.99 1328.43 Q3108.42 1325.68 3108.42 1323.08 Q3108.42 1316.05 3112.06 1312.58 Q3115.71 1309.1 3123.11 1309.1 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3136.74 1292.99 L3153.93 1292.99 L3153.93 1298.34 L3109.2 1298.34 L3109.2 1292.99 L3114.12 1292.99 Q3111.22 1291.31 3109.83 1288.76 Q3108.42 1286.19 3108.42 1282.63 Q3108.42 1276.73 3113.1 1273.05 Q3117.79 1269.35 3125.43 1269.35 Q3133.07 1269.35 3137.76 1273.05 Q3142.44 1276.73 3142.44 1282.63 Q3142.44 1286.19 3141.05 1288.76 Q3139.64 1291.31 3136.74 1292.99 M3125.43 1274.87 Q3119.56 1274.87 3116.23 1277.3 Q3112.87 1279.71 3112.87 1283.93 Q3112.87 1288.16 3116.23 1290.59 Q3119.56 1292.99 3125.43 1292.99 Q3131.3 1292.99 3134.66 1290.59 Q3137.99 1288.16 3137.99 1283.93 Q3137.99 1279.71 3134.66 1277.3 Q3131.3 1274.87 3125.43 1274.87 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3136.74 1255.37 L3153.93 1255.37 L3153.93 1260.72 L3109.2 1260.72 L3109.2 1255.37 L3114.12 1255.37 Q3111.22 1253.69 3109.83 1251.15 Q3108.42 1248.57 3108.42 1245.01 Q3108.42 1239.11 3113.1 1235.44 Q3117.79 1231.73 3125.43 1231.73 Q3133.07 1231.73 3137.76 1235.44 Q3142.44 1239.11 3142.44 1245.01 Q3142.44 1248.57 3141.05 1251.15 Q3139.64 1253.69 3136.74 1255.37 M3125.43 1237.26 Q3119.56 1237.26 3116.23 1239.69 Q3112.87 1242.09 3112.87 1246.31 Q3112.87 1250.54 3116.23 1252.97 Q3119.56 1255.37 3125.43 1255.37 Q3131.3 1255.37 3134.66 1252.97 Q3137.99 1250.54 3137.99 1246.31 Q3137.99 1242.09 3134.66 1239.69 Q3131.3 1237.26 3125.43 1237.26 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3096.58 1222.91 L3096.58 1217.58 L3141.6 1217.58 L3141.6 1222.91 L3096.58 1222.91 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3109.2 1206.44 L3109.2 1201.12 L3141.6 1201.12 L3141.6 1206.44 L3109.2 1206.44 M3096.58 1206.44 L3096.58 1201.12 L3103.32 1201.12 L3103.32 1206.44 L3096.58 1206.44 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3124.07 1162.26 L3126.67 1162.26 L3126.67 1186.74 Q3132.17 1186.39 3135.06 1183.44 Q3137.93 1180.46 3137.93 1175.16 Q3137.93 1172.1 3137.18 1169.23 Q3136.42 1166.34 3134.92 1163.5 L3139.95 1163.5 Q3141.17 1166.37 3141.81 1169.38 Q3142.44 1172.39 3142.44 1175.48 Q3142.44 1183.24 3137.93 1187.78 Q3133.42 1192.29 3125.72 1192.29 Q3117.76 1192.29 3113.1 1188.01 Q3108.42 1183.7 3108.42 1176.41 Q3108.42 1169.87 3112.64 1166.08 Q3116.84 1162.26 3124.07 1162.26 M3122.51 1167.58 Q3118.14 1167.64 3115.53 1170.04 Q3112.93 1172.41 3112.93 1176.35 Q3112.93 1180.81 3115.45 1183.5 Q3117.96 1186.16 3122.54 1186.56 L3122.51 1167.58 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M3114.12 1132.2 L3096.58 1132.2 L3096.58 1126.87 L3141.6 1126.87 L3141.6 1132.2 L3136.74 1132.2 Q3139.64 1133.87 3141.05 1136.45 Q3142.44 1138.99 3142.44 1142.58 Q3142.44 1148.46 3137.76 1152.16 Q3133.07 1155.84 3125.43 1155.84 Q3117.79 1155.84 3113.1 1152.16 Q3108.42 1148.46 3108.42 1142.58 Q3108.42 1138.99 3109.83 1136.45 Q3111.22 1133.87 3114.12 1132.2 M3125.43 1150.34 Q3131.3 1150.34 3134.66 1147.94 Q3137.99 1145.51 3137.99 1141.28 Q3137.99 1137.06 3134.66
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"1126.14,2204.92 2083.56,2204.92 2083.56,2075.32 1126.14,2075.32 1126.14,2204.92 \"/>\n",
"<polyline clip-path=\"url(#clip810)\" style=\"stroke:#440154; stroke-linecap:round; stroke-linejoin:round; stroke-width:10; stroke-opacity:1; fill:none\" points=\"1152.02,2140.12 1307.34,2140.12 \"/>\n",
"<path clip-path=\"url(#clip810)\" d=\"M1356.87 2145.14 Q1356.87 2139.35 1354.47 2136.17 Q1352.1 2132.99 1347.79 2132.99 Q1343.5 2132.99 1341.1 2136.17 Q1338.73 2139.35 1338.73 2145.14 Q1338.73 2150.9 1341.1 2154.08 Q1343.5 2157.26 1347.79 2157.26 Q1352.1 2157.26 1354.47 2154.08 Q1356.87 2150.9 1356.87 2145.14 M1362.2 2157.7 Q1362.2 2165.97 1358.52 2170 Q1354.85 2174.05 1347.26 2174.05 Q1344.46 2174.05 1341.97 2173.61 Q1339.48 2173.21 1337.14 2172.34 L1337.14 2167.16 Q1339.48 2168.43 1341.77 2169.04 Q1344.05 2169.65 1346.43 2169.65 Q1351.66 2169.65 1354.27 2166.9 Q1356.87 2164.18 1356.87 2158.65 L1356.87 2156.02 Q1355.22 2158.88 1352.65 2160.3 Q1350.07 2161.72 1346.48 2161.72 Q1340.52 2161.72 1336.88 2157.18 Q1333.23 2152.63 1333.23 2145.14 Q1333.23 2137.62 1336.88 2133.07 Q1340.52 2128.53 1346.48 2128.53 Q1350.07 2128.53 1352.65 2129.95 Q1355.22 2131.37 1356.87 2134.23 L1356.87 2129.31 L1362.2 2129.31 L1362.2 2157.7 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1391.94 2134.29 Q1391.04 2133.77 1389.97 2133.54 Q1388.93 2133.28 1387.66 2133.28 Q1383.14 2133.28 1380.71 2136.23 Q1378.31 2139.15 1378.31 2144.65 L1378.31 2161.72 L1372.96 2161.72 L1372.96 2129.31 L1378.31 2129.31 L1378.31 2134.35 Q1379.99 2131.4 1382.68 2129.98 Q1385.37 2128.53 1389.22 2128.53 Q1389.77 2128.53 1390.44 2128.62 Q1391.1 2128.68 1391.91 2128.82 L1391.94 2134.29 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1412.25 2145.43 Q1405.8 2145.43 1403.31 2146.91 Q1400.82 2148.38 1400.82 2151.94 Q1400.82 2154.78 1402.68 2156.45 Q1404.56 2158.1 1407.77 2158.1 Q1412.2 2158.1 1414.86 2154.98 Q1417.55 2151.82 1417.55 2146.62 L1417.55 2145.43 L1412.25 2145.43 M1422.87 2143.23 L1422.87 2161.72 L1417.55 2161.72 L1417.55 2156.8 Q1415.73 2159.75 1413.01 2161.17 Q1410.29 2162.56 1406.35 2162.56 Q1401.37 2162.56 1398.42 2159.78 Q1395.5 2156.97 1395.5 2152.29 Q1395.5 2146.82 1399.15 2144.04 Q1402.82 2141.26 1410.08 2141.26 L1417.55 2141.26 L1417.55 2140.74 Q1417.55 2137.07 1415.12 2135.07 Q1412.72 2133.05 1408.35 2133.05 Q1405.57 2133.05 1402.94 2133.71 Q1400.3 2134.38 1397.87 2135.71 L1397.87 2130.79 Q1400.79 2129.66 1403.54 2129.11 Q1406.29 2128.53 1408.9 2128.53 Q1415.93 2128.53 1419.4 2132.18 Q1422.87 2135.82 1422.87 2143.23 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1438.99 2156.86 L1438.99 2174.05 L1433.64 2174.05 L1433.64 2129.31 L1438.99 2129.31 L1438.99 2134.23 Q1440.67 2131.34 1443.21 2129.95 Q1445.79 2128.53 1449.35 2128.53 Q1455.25 2128.53 1458.93 2133.22 Q1462.63 2137.91 1462.63 2145.55 Q1462.63 2153.18 1458.93 2157.87 Q1455.25 2162.56 1449.35 2162.56 Q1445.79 2162.56 1443.21 2161.17 Q1440.67 2159.75 1438.99 2156.86 M1457.1 2145.55 Q1457.1 2139.67 1454.67 2136.34 Q1452.27 2132.99 1448.05 2132.99 Q1443.82 2132.99 1441.39 2136.34 Q1438.99 2139.67 1438.99 2145.55 Q1438.99 2151.42 1441.39 2154.78 Q1443.82 2158.1 1448.05 2158.1 Q1452.27 2158.1 1454.67 2154.78 Q1457.1 2151.42 1457.1 2145.55 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1498.39 2142.16 L1498.39 2161.72 L1493.07 2161.72 L1493.07 2142.33 Q1493.07 2137.73 1491.27 2135.45 Q1489.48 2133.16 1485.89 2133.16 Q1481.58 2133.16 1479.09 2135.91 Q1476.6 2138.66 1476.6 2143.4 L1476.6 2161.72 L1471.25 2161.72 L1471.25 2116.7 L1476.6 2116.7 L1476.6 2134.35 Q1478.51 2131.42 1481.09 2129.98 Q1483.69 2128.53 1487.08 2128.53 Q1492.66 2128.53 1495.53 2132 Q1498.39 2135.45 1498.39 2142.16 Z\" fill=\"#000000\" fill-rule=\"nonzero\" fill-opacity=\"1\" /><path clip-path=\"url(#clip810)\" d=\"M1551.17 2130.56 L1551.17 2135.53 Q1548.91 2134.29 1546.63 2133.68 Q1544.37 2133.05 1542.06 2133.05 Q1536.88 2133.05 1534.01 2136.34 Q1531.15 2139.61 1531.15 2145.55 Q1531.15 2151.48 1534.01 2154.78 Q1536.88 2158.05 1542.06 2158.05 Q1544.37 2158.05 1546.63 2157.44 Q1548.91 2156.8 1551.17 2155.56 L1551.17 2160.48 Q1548.94 2161.52 1546.54 2162.04 Q1544.17 2162.56 1541.48 2162.56 Q1534.16 2162.56 1529.
]
},
"execution_count": 106,
"metadata": {},
"output_type": "execute_result"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\u001b[33m\u001b[1m┌ \u001b[22m\u001b[39m\u001b[33m\u001b[1mWarning: \u001b[22m\u001b[39mn° of legend_column=2 is larger than n° of series=1\n",
"\u001b[33m\u001b[1m└ \u001b[22m\u001b[39m\u001b[90m@ Plots ~/.julia/packages/Plots/sxUvK/src/backends/gr.jl:1235\u001b[39m\n",
"\u001b[33m\u001b[1m┌ \u001b[22m\u001b[39m\u001b[33m\u001b[1mWarning: \u001b[22m\u001b[39mn° of legend_column=2 is larger than n° of series=1\n",
"\u001b[33m\u001b[1m└ \u001b[22m\u001b[39m\u001b[90m@ Plots ~/.julia/packages/Plots/sxUvK/src/backends/gr.jl:1235\u001b[39m\n"
]
}
],
"source": [
"img = @df df plot(\n",
" :graph_dt,\n",
" :graph_ce,\n",
" label=\"graph compute intensity\",\n",
" title=\"$(beautify_title(string(process))) Using $(optim_str)\",\n",
" line_z=:operations,\n",
" color=:viridis,\n",
" linewidth=2,\n",
" xlabel=\"data transfer (Byte)\",\n",
" ylabel=\"compute effort (FLOPS)\",\n",
" colorbar_title=\"applied operations (#)\",\n",
" colorbar_ticks=(0, maximum(df.operations)),\n",
" #ylims=(0.0, 1.05 * maximum(df.graph_ce)),\n",
" #xlims=(0.0, 1.05 * maximum(df.graph_dt)),\n",
" legend=:outerbottom,\n",
" legendcolumns=2,\n",
" legend_font_pointsize=10,\n",
" fmt=:pdf,\n",
" size=(800, 600)\n",
")\n",
"\n",
"savefig(img, \"../images/$(process_str_short)_cdplot_$(optim_str_short).pdf\")\n",
"\n",
"img"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.10.2",
"language": "julia",
"name": "julia-1.10"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.10.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}