HSG-MCS-HS21_Julia/Problemsets/Solutions/PS05_TradingStrategy_Solution.ipynb

1840 lines
183 KiB
Plaintext
Raw Permalink Normal View History

{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"printyellow (generic function with 1 method)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Printf, Dates, Statistics, DelimitedFiles, StatsBase\n",
"\n",
"include(\"jlFiles/printmat.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"using Plots\n",
"\n",
"gr(size=(480,320))\n",
"default(fmt = :svg)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Load Data"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(10340, 25)"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x = readdlm(\"Data/25_Portfolios_5x5_Daily.CSV\",',',skipstart=1) #daily return data\n",
"ym = round.(Int,x[:,1]) #yearmonthday, like 20071231\n",
"\n",
"dN = Date.(string.(ym),\"yyyymmdd\") #covert to Julia date, eg. 2001-12-31\n",
"\n",
"\n",
"vv = Date(1980,1,1) .<= dN .<= Date(2020,12,31) #pick out the correct sample\n",
"ym = ym[vv]\n",
"R = x[vv,2:end] #returns\n",
"\n",
"(T,n) = size(R) #number of data points, number of assets"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 1: Two Simple Strategies\n",
"\n",
"`R_1`: go long each of asset 1-24 (each with the weight 1/24) and short asset 25\n",
"\n",
"`R_2`: go long asset 1 and short asset 25\n",
"\n",
"The returns of these portfolios are easy to calculate without having to explicitly construct the portfolio weights, but it still a good preparation for later to do the explicit calculations as follows:\n",
"\n",
"1. Construct the vector of portfolio weights `w`\n",
"2. The portfolio return in `t` is `w'*R[t,:]`.\n",
"\n",
"Also, do not be afraid of loops: they are quick.\n",
"\n",
"Show means and standard deviations of the two strategies. Annualize the mean by `*252` and the standard deviation by `*sqrt(252)`.\n",
"\n",
"Plot histograms with bins that are 0.25 wide. (Don't annualize anything in the histograms.)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"w1 = [ones(24)/24;-1] #static\n",
"w2 = [1;zeros(23);-1]\n",
"\n",
"(R_1,R_2) = (fill(NaN,T),fill(NaN,T))\n",
"for t = 1:T \n",
" R_1[t] = w1'*R[t,:]\n",
" R_2[t] = w2'*R[t,:]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" R_1 R_2\n",
"mean -0.348 -8.665\n",
"std 13.860 18.996\n",
"SR -0.025 -0.456\n",
"\n"
]
}
],
"source": [
"R_all = [R_1 R_2]\n",
"\n",
"μ = mean(R_all,dims=1)*252\n",
"σ = std(R_all,dims=1)*sqrt(252)\n",
"SR = μ./σ\n",
"\n",
"printmat([μ;σ;SR],colNames=[\"R_1\",\"R_2\"],rowNames=[\"mean\",\"std\",\"SR\"])"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip700\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip701\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M151.798 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.798 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip702\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip700)\" d=\"M328.154 1211.38 L357.83 1211.38 L357.83 1215.31 L328.154 1215.31 L328.154 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M368.732 1224.27 L376.371 1224.27 L376.371 1197.91 L368.061 1199.57 L368.061 1195.31 L376.325 1193.65 L381.001 1193.65 L381.001 1224.27 L388.64 1224.27 L388.64 1228.21 L368.732 1228.21 L368.732 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M408.084 1196.73 Q404.473 1196.73 402.644 1200.29 Q400.839 1203.83 400.839 1210.96 Q400.839 1218.07 402.644 1221.63 Q404.473 1225.18 408.084 1225.18 Q411.718 1225.18 413.524 1221.63 Q415.353 1218.07 415.353 1210.96 Q415.353 1203.83 413.524 1200.29 Q411.718 1196.73 408.084 1196.73 M408.084 1193.02 Q413.894 1193.02 416.95 1197.63 Q420.028 1202.21 420.028 1210.96 Q420.028 1219.69 416.95 1224.3 Q413.894 1228.88 408.084 1228.88 Q402.274 1228.88 399.195 1224.3 Q396.14 1219.69 396.14 1210.96 Q396.14 1202.21 399.195 1197.63 Q402.274 1193.02 408.084 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M662.825 1211.38 L692.501 1211.38 L692.501 1215.31 L662.825 1215.31 L662.825 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M702.64 1193.65 L720.996 1193.65 L720.996 1197.58 L706.922 1197.58 L706.922 1206.06 Q707.941 1205.71 708.959 1205.55 Q709.978 1205.36 710.997 1205.36 Q716.784 1205.36 720.163 1208.53 Q723.543 1211.7 723.543 1217.12 Q723.543 1222.7 720.071 1225.8 Q716.598 1228.88 710.279 1228.88 Q708.103 1228.88 705.835 1228.51 Q703.589 1228.14 701.182 1227.4 L701.182 1222.7 Q703.265 1223.83 705.487 1224.39 Q707.709 1224.94 710.186 1224.94 Q714.191 1224.94 716.529 1222.84 Q718.867 1220.73 718.867 1217.12 Q718.867 1213.51 716.529 1211.4 Q714.191 1209.3 710.186 1209.3 Q708.311 1209.3 706.436 1209.71 Q704.585 1210.13 702.64 1211.01 L702.64 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1012.28 1196.73 Q1008.67 1196.73 1006.84 1200.29 Q1005.03 1203.83 1005.03 1210.96 Q1005.03 1218.07 1006.84 1221.63 Q1008.67 1225.18 1012.28 1225.18 Q1015.91 1225.18 1017.72 1221.63 Q1019.55 1218.07 1019.55 1210.96 Q1019.55 1203.83 1017.72 1200.29 Q1015.91 1196.73 1012.28 1196.73 M1012.28 1193.02 Q1018.09 1193.02 1021.14 1197.63 Q1024.22 1202.21 1024.22 1210.96 Q1024.22 1219.69 1021.14 1224.3 Q1018.09 1228.88 1012.28 1228.88 Q1006.47 1228.88 1003.39 1224.3 Q1000.33 1219.69 1000.33 1210.96 Q1000.33 1202.21 1003.39 1197.63 Q1006.47 1193.02 1012.28 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1321.65 1193.65 L1340 1193.65 L1340 1197.58 L1325.93 1197.58 L1325.93 1206.06 Q1326.95 1205.71 1327.97 1205.55 Q1328.99 1205.36 1330 1205.36 Q1335.79 1205.36 1339.17 1208.53 Q1342.55 1211.7 1342.55 1217.12 Q1342.55 1222.7 1339.08 1225.8 Q1335.61 1228.88 1329.29 1228.88 Q1327.11 1228.88 1324.84 1228.51 Q1322.6 1228.14 1320.19 1227.4 L1320.19 1222.7 Q1322.27 1223.83 1324.5 1224.39 Q1326.72 1224.94 1329.19 1224.94 Q1333.2 1224.94 1335.54 1222.84 Q1337.87 1220.73 1337.87 1217.12 Q1337.87 1213.51 1335.54 1211.4 Q1333.2 1209.3 1329.19 1209.3 Q1327.32 1209.3 1325.44 1209.71 Q1323.59 1210.13 1321.65 1211.01 L1321.65 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1625.15 1224.27 L1632.79 1224.27 L1632.79 1197.91 L1624.48 1199.57 L1624.48 1195.31 L1632.74 1193.65 L1637.42 1193.65 L1637.42 1224.27 L1645.06 1224.27 L1645.06 1228.21 L1625.15 1228.21 L1625.15 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1664.5 1196.73 Q1660.89 1196.73 1659.06 1200.29 Q1657.26 1203.83 1657.26 1210.96 Q1657.26 1218.07 1659.06 1221.63 Q1660.89 1225.18 1664.5 1225.18 Q1668.14 1225.18 1669.94 1221.63 Q1671.77 1218.07 1671.77 1210.96 Q1671.77 1203.83 1669.94 1200.29 Q1668.14 1196.73 1664.5 1196.73 M1664.
" 151.798,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,994.749 1872.76,994.749 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,849.46 1872.76,849.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,704.17 1872.76,704.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,558.88 1872.76,558.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,413.591 1872.76,413.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,268.301 1872.76,268.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 151.798,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1140.04 170.696,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,994.749 170.696,994.749 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,849.46 170.696,849.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,704.17 170.696,704.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,558.88 170.696,558.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,413.591 170.696,413.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,268.301 170.696,268.301 \n",
" \"/>\n",
"<path clip-path=\"url(#clip700)\" d=\"M65.8226 1125.84 Q62.2115 1125.84 60.3828 1129.4 Q58.5773 1132.94 58.5773 1140.07 Q58.5773 1147.18 60.3828 1150.75 Q62.2115 1154.29 65.8226 1154.29 Q69.4569 1154.29 71.2624 1150.75 Q73.0911 1147.18 73.0911 1140.07 Q73.0911 1132.94 71.2624 1129.4 Q69.4569 1125.84 65.8226 1125.84 M65.8226 1122.13 Q71.6328 1122.13 74.6883 1126.74 Q77.767 1131.32 77.767 1140.07 Q77.767 1148.8 74.6883 1153.41 Q71.6328 1157.99 65.8226 1157.99 Q60.0125 1157.99 56.9338 1153.41 Q53.8782 1148.8 53.8782 1140.07 Q53.8782 1131.32 56.9338 1126.74 Q60.0125 1122.13 65.8226 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M85.9845 1151.44 L90.8688 1151.44 L90.8688 1157.32 L85.9845 1157.32 L85.9845 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M111.054 1125.84 Q107.443 1125.84 105.614 1129.4 Q103.809 1132.94 103.809 1140.07 Q103.809 1147.18 105.614 1150.75 Q107.443 1154.29 111.054 1154.29 Q114.688 1154.29 116.494 1150.75 Q118.322 1147.18 118.322 1140.07 Q118.322 1132.94 116.494 1129.4 Q114.688 1125.84 111.054 1125.84 M111.054 1122.13 Q116.864 1122.13 119.92 1126.74 Q122.998 1131.32 122.998 1140.07 Q122.998 1148.8 119.92 1153.41 Q116.864 1157.99 111.054 1157.99 Q105.244 1157.99 102.165 1153.41 Q99.1095 1148.8 99.1095 1140.07 Q99.1095 1131.32 102.165 1126.74 Q105.244 1122.13 111.054 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M67.0495 980.548 Q63.4384 980.548 61.6097 984.113 Q59.8041 987.655 59.8041 994.784 Q59.8041 1001.89 61.6097 1005.46 Q63.4384 1009 67.0495 1009 Q70.6837 1009 72.4892 1005.46 Q74.3179 1001.89 74.3179 994.784 Q74.3179 987.655 72.4892 984.113 Q70.6837 980.548 67.0495 980.548 M67.0495 976.844 Q72.8596 976.844 75.9152 981.451 Q78.9938 986.034 78.9938 994.784 Q78.9938 1003.51 75.9152 1008.12 Q72.8596 1012.7 67.0495 1012.7 Q61.2393 1012.7 58.1606 1008.12 Q55.1051 1003.51 55.1051 994.784 Q55.1051 986.034 58.1606 981.451 Q61.2393 976.844 67.0495 976.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M87.2114 1006.15 L92.0956 1006.15 L92.0956 1012.03 L87.2114 1012.03 L87.2114 1006.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M103.091 1008.09 L110.73 1008.09 L110.73 981.729 L102.42 983.395 L102.42 979.136 L110.683 977.469 L115.359 977.469 L115.359 1008.09 L122.998 1008.09 L122.998 1012.03 L103.091 1012.03 L103.091 1008.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M67.4198 835.258 Q63.8087 835.258 61.98 838.823 Q60.1745 842.365 60.1745 849.494 Q60.1745 856.601 61.98 860.166 Q63.8087 863.707 67.4198 863.707 Q71.0541 863.707 72.8596 860.166 Q74.6883 856.601 74.6883 849.494 Q74.6883 842.365 72.8596 838.823 Q71.0541 835.258 67.4198 835.258 M67.4198 831.555 Q73.23 831.555 76.2855 836.161 Q79.3642 840.745 79.3642 849.494 Q79.3642 858.221 76.2855 862.828 Q73.23 867.411 67.4198 867.411 Q61.6097 867.411 58.531 862.828 Q55.4754 858.221 55.4754 849.494 Q55.4754 840.745 58.531 836.161 Q61.6097 831.555 67.4198 831.555 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M87.5818 860.86 L92.466 860.86 L92.466 866.74 L87.5818 866.74 L87.5818 860.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M106.679 862.805 L122.998 862.805 L122.998 866.74 L101.054 866.74 L101.054 862.805 Q103.716 860.05 108.299 855.42 Q112.906 850.768 114.086 849.425 Q116.332 846.902 117.211 845.166 Q118.114 843.407 118.114 841.717 Q118.114 838.962 116.17 837.226 Q114.248 835.49 111.146 835.49 Q108.947 835.49 106.494 836.254 Q104.063 837.018 101.285 838.569 L101.285 833.846 Q104.109 832.712 106.563 832.133 Q109.017 831.555 111.054 831.555 Q116.424 831.555 119.619 834.24 Q122.813 836.925 122.813 841.416 Q122.813 843.545 122.003 845.467 Q121.216 847.365 119.109 849.957 Q118.531 850.629
"M246.454 1140.04 L246.454 1140.04 L262.409 1140.04 L262.409 1140.04 L246.454 1140.04 L246.454 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 246.454,1140.04 246.454,1140.04 262.409,1140.04 246.454,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M262.409 1139.48 L262.409 1140.04 L278.363 1140.04 L278.363 1139.48 L262.409 1139.48 L262.409 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.409,1139.48 262.409,1140.04 278.363,1140.04 278.363,1139.48 262.409,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M278.363 1140.04 L278.363 1140.04 L294.318 1140.04 L294.318 1140.04 L278.363 1140.04 L278.363 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.363,1140.04 278.363,1140.04 294.318,1140.04 278.363,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M294.318 1140.04 L294.318 1140.04 L310.273 1140.04 L310.273 1140.04 L294.318 1140.04 L294.318 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 294.318,1140.04 294.318,1140.04 310.273,1140.04 294.318,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M310.273 1140.04 L310.273 1140.04 L326.227 1140.04 L326.227 1140.04 L310.273 1140.04 L310.273 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 310.273,1140.04 310.273,1140.04 326.227,1140.04 310.273,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M326.227 1140.04 L326.227 1140.04 L342.182 1140.04 L342.182 1140.04 L326.227 1140.04 L326.227 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 326.227,1140.04 326.227,1140.04 342.182,1140.04 326.227,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M342.182 1140.04 L342.182 1140.04 L358.137 1140.04 L358.137 1140.04 L342.182 1140.04 L342.182 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 342.182,1140.04 342.182,1140.04 358.137,1140.04 342.182,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M358.137 1140.04 L358.137 1140.04 L374.091 1140.04 L374.091 1140.04 L358.137 1140.04 L358.137 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 358.137,1140.04 358.137,1140.04 374.091,1140.04 358.137,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M374.091 1140.04 L374.091 1140.04 L390.046 1140.04 L390.046 1140.04 L374.091 1140.04 L374.091 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1140.04 374.091,1140.04 390.046,1140.04 374.091,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M390.046 1140.04 L390.046 1140.04 L406 1140.04 L406 1140.04 L390.046 1140.04 L390.046 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 390.046,1140.04 390.046,1140.04 406,1140.04 390.046,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M406 1140.04 L406 1140.04 L421.955 1140.04 L421.955 1140.04 L406 1140.04 L406 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 406,1140.04 406,1140.04 421.955,1140.04 406,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M421.955 1140.04 L421.955 1140.04 L437.91 1140.04 L437.91 1140.04 L421.955 1140.04 L421.955 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 421.955,1140.04 421.955,1140.04 437.91,1140.04 421.955,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M437.91 1138.92 L437.91 1140.04 L453.864 1140.04 L453.864 1138.92 L437.91 1138.92 L437.91 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.91,1138.92 437.91,1140.04 453.864,1140.04 453.864,1138.92 437.91,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M453.864 1140.04 L453.864 1140.04 L469.819 1140.04 L469.819 1140.04 L453.864 1140.04 L453.864 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 453.864,1140.04 453.864,1140.04 469.819,1140.04 453.864,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M469.819 1140.04 L469.819 1140.04 L485.774 1140.04 L485.774 1140.04 L469.819 1140.04 L469.819 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 469.819,1140.04 469.819,1140.04 485.774,1140.04 469.819,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M485.774 1140.04 L485.774 1140.04 L501.728 1140.04 L501.728 1140.04 L485.774 1140.04 L485.774 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 485.774,1140.04 485.774,1140.04 501.728,1140.04 485.774,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M501.728 1140.04 L501.728 1140.04 L517.683 1140.04 L517.683 1140.04 L501.728 1140.04 L501.728 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 501.728,1140.04 501.728,1140.04 517.683,1140.04 501.728,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M517.683 1138.92 L517.683 1140.04 L533.638 1140.04 L533.638 1138.92 L517.683 1138.92 L517.683 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.683,1138.92 517.683,1140.04 533.638,1140.04 533.638,1138.92 517.683,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M533.638 1140.04 L533.638 1140.04 L549.592 1140.04 L549.592 1140.04 L533.638 1140.04 L533.638 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 533.638,1140.04 533.638,1140.04 549.592,1140.04 533.638,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M549.592 1140.04 L549.592 1140.04 L565.547 1140.04 L565.547 1140.04 L549.592 1140.04 L549.592 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 549.592,1140.04 549.592,1140.04 565.547,1140.04 549.592,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M565.547 1138.92 L565.547 1140.04 L581.502 1140.04 L581.502 1138.92 L565.547 1138.92 L565.547 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 565.547,1138.92 565.547,1140.04 581.502,1140.04 581.502,1138.92 565.547,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M581.502 1139.48 L581.502 1140.04 L597.456 1140.04 L597.456 1139.48 L581.502 1139.48 L581.502 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 581.502,1139.48 581.502,1140.04 597.456,1140.04 597.456,1139.48 581.502,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M597.456 1138.92 L597.456 1140.04 L613.411 1140.04 L613.411 1138.92 L597.456 1138.92 L597.456 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 597.456,1138.92 597.456,1140.04 613.411,1140.04 613.411,1138.92 597.456,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M613.411 1138.92 L613.411 1140.04 L629.366 1140.04 L629.366 1138.92 L613.411 1138.92 L613.411 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.411,1138.92 613.411,1140.04 629.366,1140.04 629.366,1138.92 613.411,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M629.366 1139.48 L629.366 1140.04 L645.32 1140.04 L645.32 1139.48 L629.366 1139.48 L629.366 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.366,1139.48 629.366,1140.04 645.32,1140.04 645.32,1139.48 629.366,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M645.32 1139.48 L645.32 1140.04 L661.275 1140.04 L661.275 1139.48 L645.32 1139.48 L645.32 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 645.32,1139.48 645.32,1140.04 661.275,1140.04 661.275,1139.48 645.32,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M661.275 1139.48 L661.275 1140.04 L677.229 1140.04 L677.229 1139.48 L661.275 1139.48 L661.275 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 661.275,1139.48 661.275,1140.04 677.229,1140.04 677.229,1139.48 661.275,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M677.229 1140.04 L677.229 1140.04 L693.184 1140.04 L693.184 1140.04 L677.229 1140.04 L677.229 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 677.229,1140.04 677.229,1140.04 693.184,1140.04 677.229,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M693.184 1138.35 L693.184 1140.04 L709.139 1140.04 L709.139 1138.35 L693.184 1138.35 L693.184 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1138.35 693.184,1140.04 709.139,1140.04 709.139,1138.35 693.184,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M709.139 1138.92 L709.139 1140.04 L725.093 1140.04 L725.093 1138.92 L709.139 1138.92 L709.139 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 709.139,1138.92 709.139,1140.04 725.093,1140.04 725.093,1138.92 709.139,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M725.093 1138.92 L725.093 1140.04 L741.048 1140.04 L741.048 1138.92 L725.093 1138.92 L725.093 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 725.093,1138.92 725.093,1140.04 741.048,1140.04 741.048,1138.92 725.093,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M741.048 1136.1 L741.048 1140.04 L757.003 1140.04 L757.003 1136.1 L741.048 1136.1 L741.048 1136.1 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 741.048,1136.1 741.048,1140.04 757.003,1140.04 757.003,1136.1 741.048,1136.1 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M757.003 1135.54 L757.003 1140.04 L772.957 1140.04 L772.957 1135.54 L757.003 1135.54 L757.003 1135.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 757.003,1135.54 757.003,1140.04 772.957,1140.04 772.957,1135.54 757.003,1135.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M772.957 1134.98 L772.957 1140.04 L788.912 1140.04 L788.912 1134.98 L772.957 1134.98 L772.957 1134.98 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 772.957,1134.98 772.957,1140.04 788.912,1140.04 788.912,1134.98 772.957,1134.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M788.912 1135.54 L788.912 1140.04 L804.867 1140.04 L804.867 1135.54 L788.912 1135.54 L788.912 1135.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 788.912,1135.54 788.912,1140.04 804.867,1140.04 804.867,1135.54 788.912,1135.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M804.867 1134.42 L804.867 1140.04 L820.821 1140.04 L820.821 1134.42 L804.867 1134.42 L804.867 1134.42 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 804.867,1134.42 804.867,1140.04 820.821,1140.04 820.821,1134.42 804.867,1134.42 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M820.821 1128.8 L820.821 1140.04 L836.776 1140.04 L836.776 1128.8 L820.821 1128.8 L820.821 1128.8 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.821,1128.8 820.821,1140.04 836.776,1140.04 836.776,1128.8 820.821,1128.8 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M836.776 1129.36 L836.776 1140.04 L852.731 1140.04 L852.731 1129.36 L836.776 1129.36 L836.776 1129.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 836.776,1129.36 836.776,1140.04 852.731,1140.04 852.731,1129.36 836.776,1129.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M852.731 1120.37 L852.731 1140.04 L868.685 1140.04 L868.685 1120.37 L852.731 1120.37 L852.731 1120.37 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 852.731,1120.37 852.731,1140.04 868.685,1140.04 868.685,1120.37 852.731,1120.37 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M868.685 1115.87 L868.685 1140.04 L884.64 1140.04 L884.64 1115.87 L868.685 1115.87 L868.685 1115.87 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 868.685,1115.87 868.685,1140.04 884.64,1140.04 884.64,1115.87 868.685,1115.87 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M884.64 1100.13 L884.64 1140.04 L900.595 1140.04 L900.595 1100.13 L884.64 1100.13 L884.64 1100.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 884.64,1100.13 884.64,1140.04 900.595,1140.04 900.595,1100.13 884.64,1100.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M900.595 1082.71 L900.595 1140.04 L916.549 1140.04 L916.549 1082.71 L900.595 1082.71 L900.595 1082.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 900.595,1082.71 900.595,1140.04 916.549,1140.04 916.549,1082.71 900.595,1082.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M916.549 1052.92 L916.549 1140.04 L932.504 1140.04 L932.504 1052.92 L916.549 1052.92 L916.549 1052.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 916.549,1052.92 916.549,1140.04 932.504,1140.04 932.504,1052.92 916.549,1052.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M932.504 982.103 L932.504 1140.04 L948.458 1140.04 L948.458 982.103 L932.504 982.103 L932.504 982.103 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 932.504,982.103 932.504,1140.04 948.458,1140.04 948.458,982.103 932.504,982.103 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M948.458 877 L948.458 1140.04 L964.413 1140.04 L964.413 877 L948.458 877 L948.458 877 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 948.458,877 948.458,1140.04 964.413,1140.04 964.413,877 948.458,877 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M964.413 673.538 L964.413 1140.04 L980.368 1140.04 L980.368 673.538 L964.413 673.538 L964.413 673.538 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 964.413,673.538 964.413,1140.04 980.368,1140.04 980.368,673.538 964.413,673.538 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M980.368 426.799 L980.368 1140.04 L996.322 1140.04 L996.322 426.799 L980.368 426.799 L980.368 426.799 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 980.368,426.799 980.368,1140.04 996.322,1140.04 996.322,426.799 980.368,426.799 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M996.322 186.242 L996.322 1140.04 L1012.28 1140.04 L1012.28 186.242 L996.322 186.242 L996.322 186.242 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 996.322,186.242 996.322,1140.04 1012.28,1140.04 1012.28,186.242 996.322,186.242 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1012.28 153.081 L1012.28 1140.04 L1028.23 1140.04 L1028.23 153.081 L1012.28 153.081 L1012.28 153.081 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,153.081 1012.28,1140.04 1028.23,1140.04 1028.23,153.081 1012.28,153.081 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1028.23 350.922 L1028.23 1140.04 L1044.19 1140.04 L1044.19 350.922 L1028.23 350.922 L1028.23 350.922 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.23,350.922 1028.23,1140.04 1044.19,1140.04 1044.19,350.922 1028.23,350.922 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1044.19 647.684 L1044.19 1140.04 L1060.14 1140.04 L1060.14 647.684 L1044.19 647.684 L1044.19 647.684 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1044.19,647.684 1044.19,1140.04 1060.14,1140.04 1060.14,647.684 1044.19,647.684 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1060.14 864.073 L1060.14 1140.04 L1076.1 1140.04 L1076.1 864.073 L1060.14 864.073 L1060.14 864.073 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1060.14,864.073 1060.14,1140.04 1076.1,1140.04 1076.1,864.073 1060.14,864.073 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1076.1 978.731 L1076.1 1140.04 L1092.05 1140.04 L1092.05 978.731 L1076.1 978.731 L1076.1 978.731 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1076.1,978.731 1076.1,1140.04 1092.05,1140.04 1092.05,978.731 1076.1,978.731 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1092.05 1049.55 L1092.05 1140.04 L1108 1140.04 L1108 1049.55 L1092.05 1049.55 L1092.05 1049.55 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1092.05,1049.55 1092.05,1140.04 1108,1140.04 1108,1049.55 1092.05,1049.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1108 1084.4 L1108 1140.04 L1123.96 1140.04 L1123.96 1084.4 L1108 1084.4 L1108 1084.4 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1108,1084.4 1108,1140.04 1123.96,1140.04 1123.96,1084.4 1108,1084.4 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1123.96 1104.07 L1123.96 1140.04 L1139.91 1140.04 L1139.91 1104.07 L1123.96 1104.07 L1123.96 1104.07 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.96,1104.07 1123.96,1140.04 1139.91,1140.04 1139.91,1104.07 1123.96,1104.07 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1139.91 1114.75 L1139.91 1140.04 L1155.87 1140.04 L1155.87 1114.75 L1139.91 1114.75 L1139.91 1114.75 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1139.91,1114.75 1139.91,1140.04 1155.87,1140.04 1155.87,1114.75 1139.91,1114.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1155.87 1128.8 L1155.87 1140.04 L1171.82 1140.04 L1171.82 1128.8 L1155.87 1128.8 L1155.87 1128.8 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1155.87,1128.8 1155.87,1140.04 1171.82,1140.04 1171.82,1128.8 1155.87,1128.8 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1171.82 1124.86 L1171.82 1140.04 L1187.78 1140.04 L1187.78 1124.86 L1171.82 1124.86 L1171.82 1124.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1171.82,1124.86 1171.82,1140.04 1187.78,1140.04 1187.78,1124.86 1171.82,1124.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1187.78 1134.42 L1187.78 1140.04 L1203.73 1140.04 L1203.73 1134.42 L1187.78 1134.42 L1187.78 1134.42 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1187.78,1134.42 1187.78,1140.04 1203.73,1140.04 1203.73,1134.42 1187.78,1134.42 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1203.73 1137.79 L1203.73 1140.04 L1219.69 1140.04 L1219.69 1137.79 L1203.73 1137.79 L1203.73 1137.79 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.73,1137.79 1203.73,1140.04 1219.69,1140.04 1219.69,1137.79 1203.73,1137.79 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1219.69 1133.86 L1219.69 1140.04 L1235.64 1140.04 L1235.64 1133.86 L1219.69 1133.86 L1219.69 1133.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1219.69,1133.86 1219.69,1140.04 1235.64,1140.04 1235.64,1133.86 1219.69,1133.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1235.64 1137.79 L1235.64 1140.04 L1251.6 1140.04 L1251.6 1137.79 L1235.64 1137.79 L1235.64 1137.79 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1235.64,1137.79 1235.64,1140.04 1251.6,1140.04 1251.6,1137.79 1235.64,1137.79 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1251.6 1138.35 L1251.6 1140.04 L1267.55 1140.04 L1267.55 1138.35 L1251.6 1138.35 L1251.6 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1251.6,1138.35 1251.6,1140.04 1267.55,1140.04 1267.55,1138.35 1251.6,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1267.55 1137.23 L1267.55 1140.04 L1283.51 1140.04 L1283.51 1137.23 L1267.55 1137.23 L1267.55 1137.23 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1267.55,1137.23 1267.55,1140.04 1283.51,1140.04 1283.51,1137.23 1267.55,1137.23 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1283.51 1138.35 L1283.51 1140.04 L1299.46 1140.04 L1299.46 1138.35 L1283.51 1138.35 L1283.51 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1283.51,1138.35 1283.51,1140.04 1299.46,1140.04 1299.46,1138.35 1283.51,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1299.46 1138.92 L1299.46 1140.04 L1315.42 1140.04 L1315.42 1138.92 L1299.46 1138.92 L1299.46 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1299.46,1138.92 1299.46,1140.04 1315.42,1140.04 1315.42,1138.92 1299.46,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1315.42 1138.92 L1315.42 1140.04 L1331.37 1140.04 L1331.37 1138.92 L1315.42 1138.92 L1315.42 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1315.42,1138.92 1315.42,1140.04 1331.37,1140.04 1331.37,1138.92 1315.42,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1331.37 1138.92 L1331.37 1140.04 L1347.32 1140.04 L1347.32 1138.92 L1331.37 1138.92 L1331.37 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1138.92 1331.37,1140.04 1347.32,1140.04 1347.32,1138.92 1331.37,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1347.32 1138.92 L1347.32 1140.04 L1363.28 1140.04 L1363.28 1138.92 L1347.32 1138.92 L1347.32 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1347.32,1138.92 1347.32,1140.04 1363.28,1140.04 1363.28,1138.92 1347.32,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1363.28 1138.35 L1363.28 1140.04 L1379.23 1140.04 L1379.23 1138.35 L1363.28 1138.35 L1363.28 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1363.28,1138.35 1363.28,1140.04 1379.23,1140.04 1379.23,1138.35 1363.28,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1379.23 1140.04 L1379.23 1140.04 L1395.19 1140.04 L1395.19 1140.04 L1379.23 1140.04 L1379.23 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1379.23,1140.04 1379.23,1140.04 1395.19,1140.04 1379.23,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1395.19 1140.04 L1395.19 1140.04 L1411.14 1140.04 L1411.14 1140.04 L1395.19 1140.04 L1395.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.19,1140.04 1395.19,1140.04 1411.14,1140.04 1395.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1411.14 1140.04 L1411.14 1140.04 L1427.1 1140.04 L1427.1 1140.04 L1411.14 1140.04 L1411.14 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1411.14,1140.04 1411.14,1140.04 1427.1,1140.04 1411.14,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1427.1 1138.92 L1427.1 1140.04 L1443.05 1140.04 L1443.05 1138.92 L1427.1 1138.92 L1427.1 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1427.1,1138.92 1427.1,1140.04 1443.05,1140.04 1443.05,1138.92 1427.1,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1443.05 1139.48 L1443.05 1140.04 L1459.01 1140.04 L1459.01 1139.48 L1443.05 1139.48 L1443.05 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1443.05,1139.48 1443.05,1140.04 1459.01,1140.04 1459.01,1139.48 1443.05,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1459.01 1140.04 L1459.01 1140.04 L1474.96 1140.04 L1474.96 1140.04 L1459.01 1140.04 L1459.01 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1459.01,1140.04 1459.01,1140.04 1474.96,1140.04 1459.01,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1474.96 1140.04 L1474.96 1140.04 L1490.92 1140.04 L1490.92 1140.04 L1474.96 1140.04 L1474.96 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1474.96,1140.04 1474.96,1140.04 1490.92,1140.04 1474.96,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1490.92 1140.04 L1490.92 1140.04 L1506.87 1140.04 L1506.87 1140.04 L1490.92 1140.04 L1490.92 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1490.92,1140.04 1490.92,1140.04 1506.87,1140.04 1490.92,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1506.87 1140.04 L1506.87 1140.04 L1522.83 1140.04 L1522.83 1140.04 L1506.87 1140.04 L1506.87 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1506.87,1140.04 1506.87,1140.04 1522.83,1140.04 1506.87,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1522.83 1140.04 L1522.83 1140.04 L1538.78 1140.04 L1538.78 1140.04 L1522.83 1140.04 L1522.83 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1522.83,1140.04 1522.83,1140.04 1538.78,1140.04 1522.83,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1538.78 1140.04 L1538.78 1140.04 L1554.74 1140.04 L1554.74 1140.04 L1538.78 1140.04 L1538.78 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1538.78,1140.04 1538.78,1140.04 1554.74,1140.04 1538.78,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1554.74 1139.48 L1554.74 1140.04 L1570.69 1140.04 L1570.69 1139.48 L1554.74 1139.48 L1554.74 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1554.74,1139.48 1554.74,1140.04 1570.69,1140.04 1570.69,1139.48 1554.74,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1570.69 1139.48 L1570.69 1140.04 L1586.64 1140.04 L1586.64 1139.48 L1570.69 1139.48 L1570.69 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1570.69,1139.48 1570.69,1140.04 1586.64,1140.04 1586.64,1139.48 1570.69,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1586.64 1140.04 L1586.64 1140.04 L1602.6 1140.04 L1602.6 1140.04 L1586.64 1140.04 L1586.64 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.64,1140.04 1586.64,1140.04 1602.6,1140.04 1586.64,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1602.6 1140.04 L1602.6 1140.04 L1618.55 1140.04 L1618.55 1140.04 L1602.6 1140.04 L1602.6 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1602.6,1140.04 1602.6,1140.04 1618.55,1140.04 1602.6,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1618.55 1140.04 L1618.55 1140.04 L1634.51 1140.04 L1634.51 1140.04 L1618.55 1140.04 L1618.55 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.55,1140.04 1618.55,1140.04 1634.51,1140.04 1618.55,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1634.51 1140.04 L1634.51 1140.04 L1650.46 1140.04 L1650.46 1140.04 L1634.51 1140.04 L1634.51 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1634.51,1140.04 1634.51,1140.04 1650.46,1140.04 1634.51,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1650.46 1140.04 L1650.46 1140.04 L1666.42 1140.04 L1666.42 1140.04 L1650.46 1140.04 L1650.46 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1140.04 1650.46,1140.04 1666.42,1140.04 1650.46,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1666.42 1140.04 L1666.42 1140.04 L1682.37 1140.04 L1682.37 1140.04 L1666.42 1140.04 L1666.42 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1666.42,1140.04 1666.42,1140.04 1682.37,1140.04 1666.42,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1682.37 1140.04 L1682.37 1140.04 L1698.33 1140.04 L1698.33 1140.04 L1682.37 1140.04 L1682.37 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1682.37,1140.04 1682.37,1140.04 1698.33,1140.04 1682.37,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1698.33 1140.04 L1698.33 1140.04 L1714.28 1140.04 L1714.28 1140.04 L1698.33 1140.04 L1698.33 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1698.33,1140.04 1698.33,1140.04 1714.28,1140.04 1698.33,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1714.28 1140.04 L1714.28 1140.04 L1730.24 1140.04 L1730.24 1140.04 L1714.28 1140.04 L1714.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1714.28,1140.04 1714.28,1140.04 1730.24,1140.04 1714.28,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1730.24 1140.04 L1730.24 1140.04 L1746.19 1140.04 L1746.19 1140.04 L1730.24 1140.04 L1730.24 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1730.24,1140.04 1730.24,1140.04 1746.19,1140.04 1730.24,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1746.19 1140.04 L1746.19 1140.04 L1762.15 1140.04 L1762.15 1140.04 L1746.19 1140.04 L1746.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1746.19,1140.04 1746.19,1140.04 1762.15,1140.04 1746.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1762.15 1140.04 L1762.15 1140.04 L1778.1 1140.04 L1778.1 1140.04 L1762.15 1140.04 L1762.15 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1762.15,1140.04 1762.15,1140.04 1778.1,1140.04 1762.15,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"254.431\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"270.386\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"286.341\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"302.295\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"318.25\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"334.205\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"350.159\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"366.114\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"382.068\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"398.023\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"413.978\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"429.932\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"445.887\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"461.842\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"477.796\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"493.751\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"509.706\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"525.66\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"541.615\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"557.57\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"573.524\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"589.479\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"605.434\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"621.388\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"637.343\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"653.297\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"669.252\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"685.207\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"701.161\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"717.116\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.071\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"749.025\" cy=\"1136.1\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"764.98\" cy=\"1135.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"780.935\" cy=\"1134.98\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"796.889\" cy=\"1135.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.844\" cy=\"1134.42\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"828.799\" cy=\"1128.8\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"844.753\" cy=\"1129.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"860.708\" cy=\"1120.37\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"876.663\" cy=\"1115.87\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"892.617\" cy=\"1100.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"908.572\" cy=\"1082.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"924.527\" cy=\"1052.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"940.481\" cy=\"982.103\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"956.436\" cy=\"877\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"972.39\" cy=\"673.538\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"988.345\" cy=\"426.799\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1004.3\" cy=\"186.242\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1020.25\" cy=\"153.081\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1036.21\" cy=\"350.922\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1052.16\" cy=\"647.684\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1068.12\" cy=\"864.073\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1084.07\" cy=\"978.731\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1100.03\" cy=\"1049.55\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1115.98\" cy=\"1084.4\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1131.94\" cy=\"1104.07\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1147.89\" cy=\"1114.75\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1163.85\" cy=\"1128.8\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1179.8\" cy=\"1124.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1195.76\" cy=\"1134.42\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1211.71\" cy=\"1137.79\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1227.66\" cy=\"1133.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1243.62\" cy=\"1137.79\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1259.57\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1275.53\" cy=\"1137.23\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1291.48\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1307.44\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.39\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1339.35\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1355.3\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1371.26\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1387.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1403.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1419.12\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1435.08\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1451.03\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1466.98\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1482.94\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1498.89\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1514.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1530.8\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1546.76\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1562.71\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1578.67\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1594.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1610.58\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1626.53\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1642.49\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1658.44\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1674.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1690.35\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1706.3\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1722.26\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1738.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1754.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1770.12\" cy=\"1140.04\" r=\"2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt = histogram( R_1,bins = -12:0.25:12,normalize=true,legend=false,title=\"strategy 1\" )\n",
"display(plt)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip740\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip741\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M151.798 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.798 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip742\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M328.154 1211.38 L357.83 1211.38 L357.83 1215.31 L328.154 1215.31 L328.154 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M368.732 1224.27 L376.371 1224.27 L376.371 1197.91 L368.061 1199.57 L368.061 1195.31 L376.325 1193.65 L381.001 1193.65 L381.001 1224.27 L388.64 1224.27 L388.64 1228.21 L368.732 1228.21 L368.732 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M408.084 1196.73 Q404.473 1196.73 402.644 1200.29 Q400.839 1203.83 400.839 1210.96 Q400.839 1218.07 402.644 1221.63 Q404.473 1225.18 408.084 1225.18 Q411.718 1225.18 413.524 1221.63 Q415.353 1218.07 415.353 1210.96 Q415.353 1203.83 413.524 1200.29 Q411.718 1196.73 408.084 1196.73 M408.084 1193.02 Q413.894 1193.02 416.95 1197.63 Q420.028 1202.21 420.028 1210.96 Q420.028 1219.69 416.95 1224.3 Q413.894 1228.88 408.084 1228.88 Q402.274 1228.88 399.195 1224.3 Q396.14 1219.69 396.14 1210.96 Q396.14 1202.21 399.195 1197.63 Q402.274 1193.02 408.084 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M662.825 1211.38 L692.501 1211.38 L692.501 1215.31 L662.825 1215.31 L662.825 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M702.64 1193.65 L720.996 1193.65 L720.996 1197.58 L706.922 1197.58 L706.922 1206.06 Q707.941 1205.71 708.959 1205.55 Q709.978 1205.36 710.997 1205.36 Q716.784 1205.36 720.163 1208.53 Q723.543 1211.7 723.543 1217.12 Q723.543 1222.7 720.071 1225.8 Q716.598 1228.88 710.279 1228.88 Q708.103 1228.88 705.835 1228.51 Q703.589 1228.14 701.182 1227.4 L701.182 1222.7 Q703.265 1223.83 705.487 1224.39 Q707.709 1224.94 710.186 1224.94 Q714.191 1224.94 716.529 1222.84 Q718.867 1220.73 718.867 1217.12 Q718.867 1213.51 716.529 1211.4 Q714.191 1209.3 710.186 1209.3 Q708.311 1209.3 706.436 1209.71 Q704.585 1210.13 702.64 1211.01 L702.64 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1012.28 1196.73 Q1008.67 1196.73 1006.84 1200.29 Q1005.03 1203.83 1005.03 1210.96 Q1005.03 1218.07 1006.84 1221.63 Q1008.67 1225.18 1012.28 1225.18 Q1015.91 1225.18 1017.72 1221.63 Q1019.55 1218.07 1019.55 1210.96 Q1019.55 1203.83 1017.72 1200.29 Q1015.91 1196.73 1012.28 1196.73 M1012.28 1193.02 Q1018.09 1193.02 1021.14 1197.63 Q1024.22 1202.21 1024.22 1210.96 Q1024.22 1219.69 1021.14 1224.3 Q1018.09 1228.88 1012.28 1228.88 Q1006.47 1228.88 1003.39 1224.3 Q1000.33 1219.69 1000.33 1210.96 Q1000.33 1202.21 1003.39 1197.63 Q1006.47 1193.02 1012.28 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1321.65 1193.65 L1340 1193.65 L1340 1197.58 L1325.93 1197.58 L1325.93 1206.06 Q1326.95 1205.71 1327.97 1205.55 Q1328.99 1205.36 1330 1205.36 Q1335.79 1205.36 1339.17 1208.53 Q1342.55 1211.7 1342.55 1217.12 Q1342.55 1222.7 1339.08 1225.8 Q1335.61 1228.88 1329.29 1228.88 Q1327.11 1228.88 1324.84 1228.51 Q1322.6 1228.14 1320.19 1227.4 L1320.19 1222.7 Q1322.27 1223.83 1324.5 1224.39 Q1326.72 1224.94 1329.19 1224.94 Q1333.2 1224.94 1335.54 1222.84 Q1337.87 1220.73 1337.87 1217.12 Q1337.87 1213.51 1335.54 1211.4 Q1333.2 1209.3 1329.19 1209.3 Q1327.32 1209.3 1325.44 1209.71 Q1323.59 1210.13 1321.65 1211.01 L1321.65 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1625.15 1224.27 L1632.79 1224.27 L1632.79 1197.91 L1624.48 1199.57 L1624.48 1195.31 L1632.74 1193.65 L1637.42 1193.65 L1637.42 1224.27 L1645.06 1224.27 L1645.06 1228.21 L1625.15 1228.21 L1625.15 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1664.5 1196.73 Q1660.89 1196.73 1659.06 1200.29 Q1657.26 1203.83 1657.26 1210.96 Q1657.26 1218.07 1659.06 1221.63 Q1660.89 1225.18 1664.5 1225.18 Q1668.14 1225.18 1669.94 1221.63 Q1671.77 1218.07 1671.77 1210.96 Q1671.77 1203.83 1669.94 1200.29 Q1668.14 1196.73 1664.5 1196.73 M1664.
" 151.798,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,922.744 1872.76,922.744 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,705.45 1872.76,705.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,488.155 1872.76,488.155 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,270.86 1872.76,270.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 151.798,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1140.04 170.696,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,922.744 170.696,922.744 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,705.45 170.696,705.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,488.155 170.696,488.155 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,270.86 170.696,270.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M65.8226 1125.84 Q62.2115 1125.84 60.3828 1129.4 Q58.5773 1132.94 58.5773 1140.07 Q58.5773 1147.18 60.3828 1150.75 Q62.2115 1154.29 65.8226 1154.29 Q69.4569 1154.29 71.2624 1150.75 Q73.0911 1147.18 73.0911 1140.07 Q73.0911 1132.94 71.2624 1129.4 Q69.4569 1125.84 65.8226 1125.84 M65.8226 1122.13 Q71.6328 1122.13 74.6883 1126.74 Q77.767 1131.32 77.767 1140.07 Q77.767 1148.8 74.6883 1153.41 Q71.6328 1157.99 65.8226 1157.99 Q60.0125 1157.99 56.9338 1153.41 Q53.8782 1148.8 53.8782 1140.07 Q53.8782 1131.32 56.9338 1126.74 Q60.0125 1122.13 65.8226 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M85.9845 1151.44 L90.8688 1151.44 L90.8688 1157.32 L85.9845 1157.32 L85.9845 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M111.054 1125.84 Q107.443 1125.84 105.614 1129.4 Q103.809 1132.94 103.809 1140.07 Q103.809 1147.18 105.614 1150.75 Q107.443 1154.29 111.054 1154.29 Q114.688 1154.29 116.494 1150.75 Q118.322 1147.18 118.322 1140.07 Q118.322 1132.94 116.494 1129.4 Q114.688 1125.84 111.054 1125.84 M111.054 1122.13 Q116.864 1122.13 119.92 1126.74 Q122.998 1131.32 122.998 1140.07 Q122.998 1148.8 119.92 1153.41 Q116.864 1157.99 111.054 1157.99 Q105.244 1157.99 102.165 1153.41 Q99.1095 1148.8 99.1095 1140.07 Q99.1095 1131.32 102.165 1126.74 Q105.244 1122.13 111.054 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M67.0495 908.543 Q63.4384 908.543 61.6097 912.108 Q59.8041 915.65 59.8041 922.779 Q59.8041 929.886 61.6097 933.45 Q63.4384 936.992 67.0495 936.992 Q70.6837 936.992 72.4892 933.45 Q74.3179 929.886 74.3179 922.779 Q74.3179 915.65 72.4892 912.108 Q70.6837 908.543 67.0495 908.543 M67.0495 904.839 Q72.8596 904.839 75.9152 909.446 Q78.9938 914.029 78.9938 922.779 Q78.9938 931.506 75.9152 936.112 Q72.8596 940.696 67.0495 940.696 Q61.2393 940.696 58.1606 936.112 Q55.1051 931.506 55.1051 922.779 Q55.1051 914.029 58.1606 909.446 Q61.2393 904.839 67.0495 904.839 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M87.2114 934.145 L92.0956 934.145 L92.0956 940.024 L87.2114 940.024 L87.2114 934.145 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M103.091 936.089 L110.73 936.089 L110.73 909.724 L102.42 911.39 L102.42 907.131 L110.683 905.464 L115.359 905.464 L115.359 936.089 L122.998 936.089 L122.998 940.024 L103.091 940.024 L103.091 936.089 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M67.4198 691.248 Q63.8087 691.248 61.98 694.813 Q60.1745 698.355 60.1745 705.484 Q60.1745 712.591 61.98 716.156 Q63.8087 719.697 67.4198 719.697 Q71.0541 719.697 72.8596 716.156 Q74.6883 712.591 74.6883 705.484 Q74.6883 698.355 72.8596 694.813 Q71.0541 691.248 67.4198 691.248 M67.4198 687.545 Q73.23 687.545 76.2855 692.151 Q79.3642 696.734 79.3642 705.484 Q79.3642 714.211 76.2855 718.818 Q73.23 723.401 67.4198 723.401 Q61.6097 723.401 58.531 718.818 Q55.4754 714.211 55.4754 705.484 Q55.4754 696.734 58.531 692.151 Q61.6097 687.545 67.4198 687.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M87.5818 716.85 L92.466 716.85 L92.466 722.73 L87.5818 722.73 L87.5818 716.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M106.679 718.794 L122.998 718.794 L122.998 722.73 L101.054 722.73 L101.054 718.794 Q103.716 716.04 108.299 711.41 Q112.906 706.757 114.086 705.415 Q116.332 702.892 117.211 701.156 Q118.114 699.396 118.114 697.707 Q118.114 694.952 116.17 693.216 Q114.248 691.48 111.146 691.48 Q108.947 691.48 106.494 692.244 Q104.063 693.008 101.285 694.558 L101.285 689.836 Q104.109 688.702 106.563 688.123 Q109.017 687.545 111.054 687.545 Q116.424 687.545 119.619 690.23 Q122.813 692.915 122.813 697.406 Q122.813 699.535 122.003 701.457 Q121.216 703.355 119.109 705.947 Q118.531 7
"M246.454 1140.04 L246.454 1140.04 L262.409 1140.04 L262.409 1140.04 L246.454 1140.04 L246.454 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 246.454,1140.04 246.454,1140.04 262.409,1140.04 246.454,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M262.409 1140.04 L262.409 1140.04 L278.363 1140.04 L278.363 1140.04 L262.409 1140.04 L262.409 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.409,1140.04 262.409,1140.04 278.363,1140.04 262.409,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M278.363 1140.04 L278.363 1140.04 L294.318 1140.04 L294.318 1140.04 L278.363 1140.04 L278.363 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.363,1140.04 278.363,1140.04 294.318,1140.04 278.363,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M294.318 1140.04 L294.318 1140.04 L310.273 1140.04 L310.273 1140.04 L294.318 1140.04 L294.318 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 294.318,1140.04 294.318,1140.04 310.273,1140.04 294.318,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M310.273 1140.04 L310.273 1140.04 L326.227 1140.04 L326.227 1140.04 L310.273 1140.04 L310.273 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 310.273,1140.04 310.273,1140.04 326.227,1140.04 310.273,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M326.227 1139.2 L326.227 1140.04 L342.182 1140.04 L342.182 1139.2 L326.227 1139.2 L326.227 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 326.227,1139.2 326.227,1140.04 342.182,1140.04 342.182,1139.2 326.227,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M342.182 1140.04 L342.182 1140.04 L358.137 1140.04 L358.137 1140.04 L342.182 1140.04 L342.182 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 342.182,1140.04 342.182,1140.04 358.137,1140.04 342.182,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M358.137 1140.04 L358.137 1140.04 L374.091 1140.04 L374.091 1140.04 L358.137 1140.04 L358.137 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 358.137,1140.04 358.137,1140.04 374.091,1140.04 358.137,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M374.091 1140.04 L374.091 1140.04 L390.046 1140.04 L390.046 1140.04 L374.091 1140.04 L374.091 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1140.04 374.091,1140.04 390.046,1140.04 374.091,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M390.046 1140.04 L390.046 1140.04 L406 1140.04 L406 1140.04 L390.046 1140.04 L390.046 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 390.046,1140.04 390.046,1140.04 406,1140.04 390.046,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M406 1138.36 L406 1140.04 L421.955 1140.04 L421.955 1138.36 L406 1138.36 L406 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 406,1138.36 406,1140.04 421.955,1140.04 421.955,1138.36 406,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M421.955 1138.36 L421.955 1140.04 L437.91 1140.04 L437.91 1138.36 L421.955 1138.36 L421.955 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 421.955,1138.36 421.955,1140.04 437.91,1140.04 437.91,1138.36 421.955,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M437.91 1140.04 L437.91 1140.04 L453.864 1140.04 L453.864 1140.04 L437.91 1140.04 L437.91 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.91,1140.04 437.91,1140.04 453.864,1140.04 437.91,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M453.864 1140.04 L453.864 1140.04 L469.819 1140.04 L469.819 1140.04 L453.864 1140.04 L453.864 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 453.864,1140.04 453.864,1140.04 469.819,1140.04 453.864,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M469.819 1140.04 L469.819 1140.04 L485.774 1140.04 L485.774 1140.04 L469.819 1140.04 L469.819 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 469.819,1140.04 469.819,1140.04 485.774,1140.04 469.819,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M485.774 1140.04 L485.774 1140.04 L501.728 1140.04 L501.728 1140.04 L485.774 1140.04 L485.774 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 485.774,1140.04 485.774,1140.04 501.728,1140.04 485.774,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M501.728 1140.04 L501.728 1140.04 L517.683 1140.04 L517.683 1140.04 L501.728 1140.04 L501.728 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 501.728,1140.04 501.728,1140.04 517.683,1140.04 501.728,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M517.683 1139.2 L517.683 1140.04 L533.638 1140.04 L533.638 1139.2 L517.683 1139.2 L517.683 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.683,1139.2 517.683,1140.04 533.638,1140.04 533.638,1139.2 517.683,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M533.638 1139.2 L533.638 1140.04 L549.592 1140.04 L549.592 1139.2 L533.638 1139.2 L533.638 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 533.638,1139.2 533.638,1140.04 549.592,1140.04 549.592,1139.2 533.638,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M549.592 1136.68 L549.592 1140.04 L565.547 1140.04 L565.547 1136.68 L549.592 1136.68 L549.592 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 549.592,1136.68 549.592,1140.04 565.547,1140.04 565.547,1136.68 549.592,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M565.547 1138.36 L565.547 1140.04 L581.502 1140.04 L581.502 1138.36 L565.547 1138.36 L565.547 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 565.547,1138.36 565.547,1140.04 581.502,1140.04 581.502,1138.36 565.547,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M581.502 1138.36 L581.502 1140.04 L597.456 1140.04 L597.456 1138.36 L581.502 1138.36 L581.502 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 581.502,1138.36 581.502,1140.04 597.456,1140.04 597.456,1138.36 581.502,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M597.456 1138.36 L597.456 1140.04 L613.411 1140.04 L613.411 1138.36 L597.456 1138.36 L597.456 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 597.456,1138.36 597.456,1140.04 613.411,1140.04 613.411,1138.36 597.456,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M613.411 1136.68 L613.411 1140.04 L629.366 1140.04 L629.366 1136.68 L613.411 1136.68 L613.411 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.411,1136.68 613.411,1140.04 629.366,1140.04 629.366,1136.68 613.411,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M629.366 1140.04 L629.366 1140.04 L645.32 1140.04 L645.32 1140.04 L629.366 1140.04 L629.366 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.366,1140.04 629.366,1140.04 645.32,1140.04 629.366,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M645.32 1135.84 L645.32 1140.04 L661.275 1140.04 L661.275 1135.84 L645.32 1135.84 L645.32 1135.84 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 645.32,1135.84 645.32,1140.04 661.275,1140.04 661.275,1135.84 645.32,1135.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M661.275 1131.63 L661.275 1140.04 L677.229 1140.04 L677.229 1131.63 L661.275 1131.63 L661.275 1131.63 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 661.275,1131.63 661.275,1140.04 677.229,1140.04 677.229,1131.63 661.275,1131.63 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M677.229 1138.36 L677.229 1140.04 L693.184 1140.04 L693.184 1138.36 L677.229 1138.36 L677.229 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 677.229,1138.36 677.229,1140.04 693.184,1140.04 693.184,1138.36 677.229,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M693.184 1135.84 L693.184 1140.04 L709.139 1140.04 L709.139 1135.84 L693.184 1135.84 L693.184 1135.84 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1135.84 693.184,1140.04 709.139,1140.04 709.139,1135.84 693.184,1135.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M709.139 1134.15 L709.139 1140.04 L725.093 1140.04 L725.093 1134.15 L709.139 1134.15 L709.139 1134.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 709.139,1134.15 709.139,1140.04 725.093,1140.04 725.093,1134.15 709.139,1134.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M725.093 1133.31 L725.093 1140.04 L741.048 1140.04 L741.048 1133.31 L725.093 1133.31 L725.093 1133.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 725.093,1133.31 725.093,1140.04 741.048,1140.04 741.048,1133.31 725.093,1133.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M741.048 1132.47 L741.048 1140.04 L757.003 1140.04 L757.003 1132.47 L741.048 1132.47 L741.048 1132.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 741.048,1132.47 741.048,1140.04 757.003,1140.04 757.003,1132.47 741.048,1132.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M757.003 1131.63 L757.003 1140.04 L772.957 1140.04 L772.957 1131.63 L757.003 1131.63 L757.003 1131.63 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 757.003,1131.63 757.003,1140.04 772.957,1140.04 772.957,1131.63 757.003,1131.63 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M772.957 1127.43 L772.957 1140.04 L788.912 1140.04 L788.912 1127.43 L772.957 1127.43 L772.957 1127.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 772.957,1127.43 772.957,1140.04 788.912,1140.04 788.912,1127.43 772.957,1127.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M788.912 1123.23 L788.912 1140.04 L804.867 1140.04 L804.867 1123.23 L788.912 1123.23 L788.912 1123.23 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 788.912,1123.23 788.912,1140.04 804.867,1140.04 804.867,1123.23 788.912,1123.23 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M804.867 1108.93 L804.867 1140.04 L820.821 1140.04 L820.821 1108.93 L804.867 1108.93 L804.867 1108.93 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 804.867,1108.93 804.867,1140.04 820.821,1140.04 820.821,1108.93 804.867,1108.93 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M820.821 1108.09 L820.821 1140.04 L836.776 1140.04 L836.776 1108.09 L820.821 1108.09 L820.821 1108.09 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.821,1108.09 820.821,1140.04 836.776,1140.04 836.776,1108.09 820.821,1108.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M836.776 1087.92 L836.776 1140.04 L852.731 1140.04 L852.731 1087.92 L836.776 1087.92 L836.776 1087.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 836.776,1087.92 836.776,1140.04 852.731,1140.04 852.731,1087.92 836.776,1087.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M852.731 1078.67 L852.731 1140.04 L868.685 1140.04 L868.685 1078.67 L852.731 1078.67 L852.731 1078.67 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 852.731,1078.67 852.731,1140.04 868.685,1140.04 868.685,1078.67 852.731,1078.67 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M868.685 1050.93 L868.685 1140.04 L884.64 1140.04 L884.64 1050.93 L868.685 1050.93 L868.685 1050.93 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 868.685,1050.93 868.685,1140.04 884.64,1140.04 884.64,1050.93 868.685,1050.93 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M884.64 1010.57 L884.64 1140.04 L900.595 1140.04 L900.595 1010.57 L884.64 1010.57 L884.64 1010.57 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 884.64,1010.57 884.64,1140.04 900.595,1140.04 900.595,1010.57 884.64,1010.57 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M900.595 977.788 L900.595 1140.04 L916.549 1140.04 L916.549 977.788 L900.595 977.788 L900.595 977.788 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 900.595,977.788 900.595,1140.04 916.549,1140.04 916.549,977.788 900.595,977.788 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M916.549 883.632 L916.549 1140.04 L932.504 1140.04 L932.504 883.632 L916.549 883.632 L916.549 883.632 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 916.549,883.632 916.549,1140.04 932.504,1140.04 932.504,883.632 916.549,883.632 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M932.504 780.228 L932.504 1140.04 L948.458 1140.04 L948.458 780.228 L932.504 780.228 L932.504 780.228 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 932.504,780.228 932.504,1140.04 948.458,1140.04 948.458,780.228 932.504,780.228 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M948.458 615.455 L948.458 1140.04 L964.413 1140.04 L964.413 615.455 L948.458 615.455 L948.458 615.455 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 948.458,615.455 948.458,1140.04 964.413,1140.04 964.413,615.455 948.458,615.455 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M964.413 455.726 L964.413 1140.04 L980.368 1140.04 L980.368 455.726 L964.413 455.726 L964.413 455.726 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 964.413,455.726 964.413,1140.04 980.368,1140.04 980.368,455.726 964.413,455.726 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M980.368 250.6 L980.368 1140.04 L996.322 1140.04 L996.322 250.6 L980.368 250.6 L980.368 250.6 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 980.368,250.6 980.368,1140.04 996.322,1140.04 996.322,250.6 980.368,250.6 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M996.322 158.125 L996.322 1140.04 L1012.28 1140.04 L1012.28 158.125 L996.322 158.125 L996.322 158.125 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 996.322,158.125 996.322,1140.04 1012.28,1140.04 1012.28,158.125 996.322,158.125 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1012.28 153.081 L1012.28 1140.04 L1028.23 1140.04 L1028.23 153.081 L1012.28 153.081 L1012.28 153.081 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,153.081 1012.28,1140.04 1028.23,1140.04 1028.23,153.081 1012.28,153.081 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1028.23 236.308 L1028.23 1140.04 L1044.19 1140.04 L1044.19 236.308 L1028.23 236.308 L1028.23 236.308 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.23,236.308 1028.23,1140.04 1044.19,1140.04 1044.19,236.308 1028.23,236.308 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1044.19 384.268 L1044.19 1140.04 L1060.14 1140.04 L1060.14 384.268 L1044.19 384.268 L1044.19 384.268 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1044.19,384.268 1044.19,1140.04 1060.14,1140.04 1060.14,384.268 1044.19,384.268 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1060.14 617.136 L1060.14 1140.04 L1076.1 1140.04 L1076.1 617.136 L1060.14 617.136 L1060.14 617.136 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1060.14,617.136 1060.14,1140.04 1076.1,1140.04 1076.1,617.136 1060.14,617.136 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1076.1 778.547 L1076.1 1140.04 L1092.05 1140.04 L1092.05 778.547 L1076.1 778.547 L1076.1 778.547 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1076.1,778.547 1076.1,1140.04 1092.05,1140.04 1092.05,778.547 1076.1,778.547 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1092.05 879.428 L1092.05 1140.04 L1108 1140.04 L1108 879.428 L1092.05 879.428 L1092.05 879.428 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1092.05,879.428 1092.05,1140.04 1108,1140.04 1108,879.428 1092.05,879.428 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1108 963.496 L1108 1140.04 L1123.96 1140.04 L1123.96 963.496 L1108 963.496 L1108 963.496 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1108,963.496 1108,1140.04 1123.96,1140.04 1123.96,963.496 1108,963.496 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1123.96 1043.36 L1123.96 1140.04 L1139.91 1140.04 L1139.91 1043.36 L1123.96 1043.36 L1123.96 1043.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.96,1043.36 1123.96,1140.04 1139.91,1140.04 1139.91,1043.36 1123.96,1043.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1139.91 1061.02 L1139.91 1140.04 L1155.87 1140.04 L1155.87 1061.02 L1139.91 1061.02 L1139.91 1061.02 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1139.91,1061.02 1139.91,1140.04 1155.87,1140.04 1155.87,1061.02 1139.91,1061.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1155.87 1094.64 L1155.87 1140.04 L1171.82 1140.04 L1171.82 1094.64 L1155.87 1094.64 L1155.87 1094.64 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1155.87,1094.64 1155.87,1140.04 1171.82,1140.04 1171.82,1094.64 1155.87,1094.64 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1171.82 1111.46 L1171.82 1140.04 L1187.78 1140.04 L1187.78 1111.46 L1171.82 1111.46 L1171.82 1111.46 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1171.82,1111.46 1171.82,1140.04 1187.78,1140.04 1187.78,1111.46 1171.82,1111.46 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1187.78 1112.3 L1187.78 1140.04 L1203.73 1140.04 L1203.73 1112.3 L1187.78 1112.3 L1187.78 1112.3 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1187.78,1112.3 1187.78,1140.04 1203.73,1140.04 1203.73,1112.3 1187.78,1112.3 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1203.73 1122.38 L1203.73 1140.04 L1219.69 1140.04 L1219.69 1122.38 L1203.73 1122.38 L1203.73 1122.38 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.73,1122.38 1203.73,1140.04 1219.69,1140.04 1219.69,1122.38 1203.73,1122.38 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1219.69 1125.75 L1219.69 1140.04 L1235.64 1140.04 L1235.64 1125.75 L1219.69 1125.75 L1219.69 1125.75 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1219.69,1125.75 1219.69,1140.04 1235.64,1140.04 1235.64,1125.75 1219.69,1125.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1235.64 1126.59 L1235.64 1140.04 L1251.6 1140.04 L1251.6 1126.59 L1235.64 1126.59 L1235.64 1126.59 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1235.64,1126.59 1235.64,1140.04 1251.6,1140.04 1251.6,1126.59 1235.64,1126.59 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1251.6 1127.43 L1251.6 1140.04 L1267.55 1140.04 L1267.55 1127.43 L1251.6 1127.43 L1251.6 1127.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1251.6,1127.43 1251.6,1140.04 1267.55,1140.04 1267.55,1127.43 1251.6,1127.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1267.55 1134.15 L1267.55 1140.04 L1283.51 1140.04 L1283.51 1134.15 L1267.55 1134.15 L1267.55 1134.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1267.55,1134.15 1267.55,1140.04 1283.51,1140.04 1283.51,1134.15 1267.55,1134.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1283.51 1136.68 L1283.51 1140.04 L1299.46 1140.04 L1299.46 1136.68 L1283.51 1136.68 L1283.51 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1283.51,1136.68 1283.51,1140.04 1299.46,1140.04 1299.46,1136.68 1283.51,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1299.46 1132.47 L1299.46 1140.04 L1315.42 1140.04 L1315.42 1132.47 L1299.46 1132.47 L1299.46 1132.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1299.46,1132.47 1299.46,1140.04 1315.42,1140.04 1315.42,1132.47 1299.46,1132.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1315.42 1138.36 L1315.42 1140.04 L1331.37 1140.04 L1331.37 1138.36 L1315.42 1138.36 L1315.42 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1315.42,1138.36 1315.42,1140.04 1331.37,1140.04 1331.37,1138.36 1315.42,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1331.37 1137.52 L1331.37 1140.04 L1347.32 1140.04 L1347.32 1137.52 L1331.37 1137.52 L1331.37 1137.52 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1137.52 1331.37,1140.04 1347.32,1140.04 1347.32,1137.52 1331.37,1137.52 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1347.32 1133.31 L1347.32 1140.04 L1363.28 1140.04 L1363.28 1133.31 L1347.32 1133.31 L1347.32 1133.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1347.32,1133.31 1347.32,1140.04 1363.28,1140.04 1363.28,1133.31 1347.32,1133.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1363.28 1136.68 L1363.28 1140.04 L1379.23 1140.04 L1379.23 1136.68 L1363.28 1136.68 L1363.28 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1363.28,1136.68 1363.28,1140.04 1379.23,1140.04 1379.23,1136.68 1363.28,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1379.23 1138.36 L1379.23 1140.04 L1395.19 1140.04 L1395.19 1138.36 L1379.23 1138.36 L1379.23 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1379.23,1138.36 1379.23,1140.04 1395.19,1140.04 1395.19,1138.36 1379.23,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1395.19 1137.52 L1395.19 1140.04 L1411.14 1140.04 L1411.14 1137.52 L1395.19 1137.52 L1395.19 1137.52 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.19,1137.52 1395.19,1140.04 1411.14,1140.04 1411.14,1137.52 1395.19,1137.52 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1411.14 1139.2 L1411.14 1140.04 L1427.1 1140.04 L1427.1 1139.2 L1411.14 1139.2 L1411.14 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1411.14,1139.2 1411.14,1140.04 1427.1,1140.04 1427.1,1139.2 1411.14,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1427.1 1139.2 L1427.1 1140.04 L1443.05 1140.04 L1443.05 1139.2 L1427.1 1139.2 L1427.1 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1427.1,1139.2 1427.1,1140.04 1443.05,1140.04 1443.05,1139.2 1427.1,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1443.05 1140.04 L1443.05 1140.04 L1459.01 1140.04 L1459.01 1140.04 L1443.05 1140.04 L1443.05 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1443.05,1140.04 1443.05,1140.04 1459.01,1140.04 1443.05,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1459.01 1139.2 L1459.01 1140.04 L1474.96 1140.04 L1474.96 1139.2 L1459.01 1139.2 L1459.01 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1459.01,1139.2 1459.01,1140.04 1474.96,1140.04 1474.96,1139.2 1459.01,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1474.96 1140.04 L1474.96 1140.04 L1490.92 1140.04 L1490.92 1140.04 L1474.96 1140.04 L1474.96 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1474.96,1140.04 1474.96,1140.04 1490.92,1140.04 1474.96,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1490.92 1140.04 L1490.92 1140.04 L1506.87 1140.04 L1506.87 1140.04 L1490.92 1140.04 L1490.92 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1490.92,1140.04 1490.92,1140.04 1506.87,1140.04 1490.92,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1506.87 1140.04 L1506.87 1140.04 L1522.83 1140.04 L1522.83 1140.04 L1506.87 1140.04 L1506.87 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1506.87,1140.04 1506.87,1140.04 1522.83,1140.04 1506.87,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1522.83 1140.04 L1522.83 1140.04 L1538.78 1140.04 L1538.78 1140.04 L1522.83 1140.04 L1522.83 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1522.83,1140.04 1522.83,1140.04 1538.78,1140.04 1522.83,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1538.78 1140.04 L1538.78 1140.04 L1554.74 1140.04 L1554.74 1140.04 L1538.78 1140.04 L1538.78 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1538.78,1140.04 1538.78,1140.04 1554.74,1140.04 1538.78,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1554.74 1139.2 L1554.74 1140.04 L1570.69 1140.04 L1570.69 1139.2 L1554.74 1139.2 L1554.74 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1554.74,1139.2 1554.74,1140.04 1570.69,1140.04 1570.69,1139.2 1554.74,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1570.69 1140.04 L1570.69 1140.04 L1586.64 1140.04 L1586.64 1140.04 L1570.69 1140.04 L1570.69 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1570.69,1140.04 1570.69,1140.04 1586.64,1140.04 1570.69,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1586.64 1140.04 L1586.64 1140.04 L1602.6 1140.04 L1602.6 1140.04 L1586.64 1140.04 L1586.64 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.64,1140.04 1586.64,1140.04 1602.6,1140.04 1586.64,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1602.6 1140.04 L1602.6 1140.04 L1618.55 1140.04 L1618.55 1140.04 L1602.6 1140.04 L1602.6 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1602.6,1140.04 1602.6,1140.04 1618.55,1140.04 1602.6,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1618.55 1139.2 L1618.55 1140.04 L1634.51 1140.04 L1634.51 1139.2 L1618.55 1139.2 L1618.55 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.55,1139.2 1618.55,1140.04 1634.51,1140.04 1634.51,1139.2 1618.55,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1634.51 1140.04 L1634.51 1140.04 L1650.46 1140.04 L1650.46 1140.04 L1634.51 1140.04 L1634.51 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1634.51,1140.04 1634.51,1140.04 1650.46,1140.04 1634.51,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1650.46 1139.2 L1650.46 1140.04 L1666.42 1140.04 L1666.42 1139.2 L1650.46 1139.2 L1650.46 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1139.2 1650.46,1140.04 1666.42,1140.04 1666.42,1139.2 1650.46,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1666.42 1140.04 L1666.42 1140.04 L1682.37 1140.04 L1682.37 1140.04 L1666.42 1140.04 L1666.42 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1666.42,1140.04 1666.42,1140.04 1682.37,1140.04 1666.42,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1682.37 1140.04 L1682.37 1140.04 L1698.33 1140.04 L1698.33 1140.04 L1682.37 1140.04 L1682.37 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1682.37,1140.04 1682.37,1140.04 1698.33,1140.04 1682.37,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1698.33 1140.04 L1698.33 1140.04 L1714.28 1140.04 L1714.28 1140.04 L1698.33 1140.04 L1698.33 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1698.33,1140.04 1698.33,1140.04 1714.28,1140.04 1698.33,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1714.28 1140.04 L1714.28 1140.04 L1730.24 1140.04 L1730.24 1140.04 L1714.28 1140.04 L1714.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1714.28,1140.04 1714.28,1140.04 1730.24,1140.04 1714.28,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1730.24 1140.04 L1730.24 1140.04 L1746.19 1140.04 L1746.19 1140.04 L1730.24 1140.04 L1730.24 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1730.24,1140.04 1730.24,1140.04 1746.19,1140.04 1730.24,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1746.19 1140.04 L1746.19 1140.04 L1762.15 1140.04 L1762.15 1140.04 L1746.19 1140.04 L1746.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1746.19,1140.04 1746.19,1140.04 1762.15,1140.04 1746.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1762.15 1140.04 L1762.15 1140.04 L1778.1 1140.04 L1778.1 1140.04 L1762.15 1140.04 L1762.15 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1762.15,1140.04 1762.15,1140.04 1778.1,1140.04 1762.15,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"254.431\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"270.386\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"286.341\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"302.295\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"318.25\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"334.205\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"350.159\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"366.114\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"382.068\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"398.023\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"413.978\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"429.932\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"445.887\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"461.842\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"477.796\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"493.751\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"509.706\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"525.66\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"541.615\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"557.57\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"573.524\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"589.479\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"605.434\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"621.388\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"637.343\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"653.297\" cy=\"1135.84\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"669.252\" cy=\"1131.63\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"685.207\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"701.161\" cy=\"1135.84\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"717.116\" cy=\"1134.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.071\" cy=\"1133.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"749.025\" cy=\"1132.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"764.98\" cy=\"1131.63\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"780.935\" cy=\"1127.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"796.889\" cy=\"1123.23\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.844\" cy=\"1108.93\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"828.799\" cy=\"1108.09\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"844.753\" cy=\"1087.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"860.708\" cy=\"1078.67\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"876.663\" cy=\"1050.93\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"892.617\" cy=\"1010.57\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"908.572\" cy=\"977.788\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"924.527\" cy=\"883.632\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"940.481\" cy=\"780.228\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"956.436\" cy=\"615.455\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"972.39\" cy=\"455.726\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"988.345\" cy=\"250.6\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1004.3\" cy=\"158.125\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1020.25\" cy=\"153.081\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1036.21\" cy=\"236.308\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1052.16\" cy=\"384.268\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1068.12\" cy=\"617.136\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1084.07\" cy=\"778.547\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1100.03\" cy=\"879.428\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1115.98\" cy=\"963.496\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1131.94\" cy=\"1043.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1147.89\" cy=\"1061.02\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1163.85\" cy=\"1094.64\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1179.8\" cy=\"1111.46\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1195.76\" cy=\"1112.3\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1211.71\" cy=\"1122.38\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1227.66\" cy=\"1125.75\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1243.62\" cy=\"1126.59\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1259.57\" cy=\"1127.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1275.53\" cy=\"1134.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1291.48\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1307.44\" cy=\"1132.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.39\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1339.35\" cy=\"1137.52\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1355.3\" cy=\"1133.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1371.26\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1387.21\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1403.17\" cy=\"1137.52\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1419.12\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1435.08\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1451.03\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1466.98\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1482.94\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1498.89\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1514.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1530.8\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1546.76\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1562.71\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1578.67\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1594.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1610.58\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1626.53\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1642.49\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1658.44\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1674.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1690.35\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1706.3\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1722.26\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1738.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1754.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1770.12\" cy=\"1140.04\" r=\"2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt = histogram( R_2,bins = -12:0.25:12,normalize=true,legend=false,title=\"strategy 2\" )\n",
"display(plt)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 2: Another Trading Strategy\n",
"\n",
"We now do simple volatility based trading strategy.\n",
"\n",
"1. Find the 3 least volatile assets over `t-22:t-1` and give each a portfolio weight `w[t,i]=1/3`. \n",
"\n",
"2. Find the 3 most volatile assets over `t-22:t-1` and give each a portfolio weight `w[t,i]=-1/3`. \n",
"\n",
"3. The portfolio return in `t` is `w[t,:]'*R[t,:]`.\n",
"\n",
"4. Compare the average and std (annualized) with the previous portfolios, over periods `23:T`\n",
"\n",
"Hint: `v = sortperm(x)` gives indices such that `v[1:2]` are the indices of the lowest 2 elements in x. Try `sortperm([12,11,13])` to see."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 2 \n",
" 1 \n",
"\n"
]
}
],
"source": [
"v = sortperm([12,11,13])\n",
"\n",
"printmat(v[1:2])"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"σ_moving = fill(NaN,T,n)\n",
"for t = 22:T\n",
" σ_moving[t,:] = std(R[t-21:t,:],dims=1)\n",
"end "
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"m = 3 #number of long/short positions \n",
"\n",
"R_3 = fill(NaN,T)\n",
"for t = 23:T #loop over periods, save portfolio returns\n",
" #local s,w #local/global is needed in script\n",
" s = sortperm(σ_moving[t-1,:])\n",
" w = zeros(n)\n",
" w[s[1:m]] .= 1/m\n",
" w[s[end-m+1:end]] .= -1/m\n",
" R_3[t] = w'R[t,:]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" R_1 R_2 Vol sort\n",
"avg return -0.281 -8.739 3.628\n",
"std 13.867 19.002 14.867\n",
"SR -0.020 -0.460 0.244\n",
"\n"
]
}
],
"source": [
"R_all = [R_1[23:end] R_2[23:end] R_3[23:end]]\n",
"\n",
"μ = mean(R_all,dims=1)*252\n",
"σ = std(R_all,dims=1)*sqrt(252)\n",
"SR = μ./σ\n",
"\n",
"printmat([μ;σ;SR],colNames=[\"R_1\",\"R_2\",\"Vol sort\"],rowNames=[\"avg return\",\"std\",\"SR\"])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Julia 1.6.3",
"language": "julia",
"name": "julia-1.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.6.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}