Skip to content

Instantly share code, notes, and snippets.

@lovasoa
Last active May 13, 2019 10:08
Show Gist options
  • Save lovasoa/e6edd19325acbc29c8ba449817658058 to your computer and use it in GitHub Desktop.
Save lovasoa/e6edd19325acbc29c8ba449817658058 to your computer and use it in GitHub Desktop.
Résolution du diabolicube en julia
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Résolution du casse-tête diabolicube"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Le diabolicube est un serpentin de bois, qui peut se replier sous forme de grand cube.\n",
"Il est composé de 64 petit cubes traversés par un grand élastique.\n",
"L'élastique traverse certains petits cubes sur toute leur longueur, entrant par une face et sortant par la face opposée.\n",
"Pour d'autres petits cubes, l'élastique forme un coude à l'intérieur, laissant un degré de liberté qui permet de changer la forme du serpentin. \n",
"\n",
"![diabolicube](http://www.ledelirant.fr/shop/img/p/34-243-thickbox.jpg)\n",
"\n",
"La solution présentée ici est une fonction julia qui prend en entrée la forme du serpentin (sous forme de vecteur de booléens) et qui sort un vecteur qui contient tous les pliages possibles en cube."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"solve (generic function with 1 method)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function solve(turns)\n",
" axes = [CartesianIndex(1,0,0), CartesianIndex(0,1,0), CartesianIndex(0,0,1)]\n",
"\n",
" function recurse(cube, pos, axis, direction, n)\n",
" if !checkbounds(Bool, cube, pos) || cube[pos] != 0\n",
" return []\n",
" end\n",
"\n",
" cube[pos] = n\n",
"\n",
" if n == length(turns)\n",
" return [cube]\n",
" end\n",
"\n",
" new_pos = pos + axes[axis] * direction\n",
"\n",
" next = if turns[n+1]\n",
" [(a,d) for a = 1:3 if a != axis for d = [-1 1]]\n",
" else\n",
" [(axis, direction)]\n",
" end\n",
"\n",
" return [solution for (a,d) in next for solution in recurse(copy(cube), new_pos, a, d, n+1)]\n",
" end\n",
"\n",
" side = round(UInt8, cbrt(length(turns))) # Number of small cubes on a side\n",
" cube = zeros(Int8, side, side, side)\n",
" start_positions = [CartesianIndex(i,j,1) for i=1:side for j=1:side÷2]\n",
" return [solution for start_pos = start_positions for solution = recurse(copy(cube), start_pos, 1, 1, 1)]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"64-element Array{Bool,1}:\n",
" false\n",
" false\n",
" true\n",
" false\n",
" false\n",
" true\n",
" false\n",
" false\n",
" true\n",
" false\n",
" false\n",
" true\n",
" true\n",
" ⋮\n",
" true\n",
" true\n",
" true\n",
" true\n",
" true\n",
" false\n",
" false\n",
" true\n",
" true\n",
" false\n",
" false\n",
" false"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# false : cube traversé de part en part\n",
"# true : l'élastique forme un coude à l'intérieur du cube\n",
"turns = [\n",
" false, false, true,\n",
" false, false, true,\n",
" false, false, true,\n",
" false, false, true,\n",
" true,\n",
" false, false, true,\n",
" true,\n",
" false, false, true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" false, true,\n",
" true,\n",
" false, false, true,\n",
" false, true,\n",
" false, true,\n",
" true,\n",
" false, false, true, \n",
" true,\n",
" false, true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" false, true,\n",
" true,\n",
" true,\n",
" true,\n",
" true,\n",
" false, false, true,\n",
" true,\n",
" false, false, false]"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 8.995280 seconds (217.19 M allocations: 12.732 GiB, 16.49% gc time)\n"
]
},
{
"data": {
"text/plain": [
"8"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"@time solutions = solve(turns)\n",
"length(solutions)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4×4×4 Array{Int8,3}:\n",
"[:, :, 1] =\n",
" 12 11 10 9\n",
" 1 24 25 8\n",
" 2 27 26 7\n",
" 3 4 5 6\n",
"\n",
"[:, :, 2] =\n",
" 13 22 31 32\n",
" 14 23 30 33\n",
" 15 28 29 34\n",
" 16 37 36 35\n",
"\n",
"[:, :, 3] =\n",
" 20 21 50 61\n",
" 19 48 49 62\n",
" 18 47 54 63\n",
" 17 38 55 64\n",
"\n",
"[:, :, 4] =\n",
" 43 44 51 60\n",
" 42 45 52 59\n",
" 41 46 53 58\n",
" 40 39 56 57"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"solutions[2]"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip6400\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6400)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6401\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6400)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6402\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1908.16,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,582.991 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1740.54,441.719 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6402)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip6800\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6800)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6801\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6800)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6802\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1740.54,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,441.719 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1908.16,582.991 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip6802)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip7200\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7200)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7201\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7200)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7202\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1908.16,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,582.991 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1740.54,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,441.719 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1617.84,333.513 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7202)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip7600\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7600)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7601\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7600)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7602\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1740.54,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,441.719 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1908.16,582.991 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip7602)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip8000\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8000)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8001\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8000)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8002\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1908.16,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,582.991 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1740.54,441.719 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8002)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip8400\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8400)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8401\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8400)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8402\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1740.54,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,441.719 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1908.16,582.991 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8402)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip8800\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8801\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8802\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1740.54,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,441.719 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1908.16,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,582.991 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1617.84,333.513 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip8802)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip9200\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"0,1600 2400,1600 2400,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9201\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"493.14,1503.47 1949.37,1503.47 1949.37,47.2441 493.14,47.2441 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9202\">\n",
" <rect x=\"493\" y=\"47\" width=\"1457\" height=\"1457\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 519.269,1419.89 1052.29,1161.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1052.29,1161.81 1052.29,49.6787 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 664.428,1433.41 1197.45,1175.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1197.45,1175.34 1197.45,63.2045 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 809.587,1446.94 1342.6,1188.87 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1342.6,1188.87 1342.6,76.7303 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 954.746,1460.46 1487.76,1202.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1487.76,1202.39 1487.76,90.2561 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1099.91,1473.99 1632.92,1215.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.92,1215.92 1632.92,103.782 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1245.07,1487.51 1778.08,1229.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.08,1229.44 1778.08,117.308 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1390.22,1501.04 1923.24,1242.97 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1923.24,1242.97 1923.24,130.833 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 1431.44,1496.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 508.225,1410.15 508.225,298.012 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 1515.25,1455.59 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 592.033,1369.57 592.033,257.435 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 1599.05,1415.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 675.841,1328.99 675.841,216.857 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 1682.86,1374.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 759.649,1288.41 759.649,176.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 1766.67,1333.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 843.456,1247.84 843.456,135.703 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 1850.48,1293.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 927.264,1207.26 927.264,95.1253 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1934.29,1252.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.07,1166.68 1011.07,54.548 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,1195.02 1026.16,936.952 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,936.952 1949.37,1022.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,972.597 1026.16,714.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,714.525 1949.37,800.549 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,750.17 1026.16,492.098 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,492.098 1949.37,578.122 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,527.743 1026.16,269.671 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#cccccc; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,269.671 1949.37,355.695 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 493.14,305.316 1026.16,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#ededed; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1026.16,47.2441 1949.37,133.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 461.767,976.622 461.767,974.977 463.1,971.04 464.434,968.748 467.1,965.812 472.433,963.23 475.099,963.584 476.432,964.585 477.766,967.231 477.766,970.522 \n",
" 476.432,974.459 473.766,980.687 460.434,1003.6 479.099,994.562 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 460.434,547.225 480.432,537.543 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 473.766,517.73 473.766,552.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 493.14,1417.45 482.48,1422.61 493.14,1417.45 493.14,1195.02 487.81,1197.6 493.14,1195.02 493.14,972.597 482.48,977.758 493.14,972.597 \n",
" 493.14,750.17 487.81,752.751 493.14,750.17 493.14,527.743 482.48,532.904 493.14,527.743 493.14,305.316 487.81,307.897 493.14,305.316 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 492.776,1441.71 496.039,1440.37 500.934,1435.89 500.934,1470.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 779.831,1470.11 779.831,1468.46 781.463,1465.32 783.095,1463.83 786.358,1462.48 792.884,1463.09 796.147,1465.04 797.778,1466.84 799.41,1470.28 799.41,1473.58 \n",
" 797.778,1476.71 794.515,1481.35 778.2,1496.28 801.042,1498.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1071.78,1489.08 1089.73,1490.75 1079.94,1503.01 1084.83,1503.46 1088.1,1505.41 1089.73,1507.21 1091.36,1512.3 1091.36,1515.59 1089.73,1520.38 1086.47,1523.36 \n",
" 1081.57,1524.55 1076.68,1524.1 1071.78,1521.99 1070.15,1520.2 1068.52,1516.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1358.84,1538.87 1383.31,1541.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1375.15,1517.35 1375.15,1551.91 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 493.14,1417.45 519.269,1419.89 508.608,1425.05 519.269,1419.89 664.428,1433.41 659.098,1435.99 664.428,1433.41 809.587,1446.94 798.927,1452.1 809.587,1446.94 \n",
" 954.746,1460.46 949.416,1463.04 954.746,1460.46 1099.91,1473.99 1089.25,1479.15 1099.91,1473.99 1245.07,1487.51 1239.73,1490.1 1245.07,1487.51 1390.22,1501.04 \n",
" 1379.56,1506.2 1390.22,1501.04 1416.35,1503.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1472.48,1511.93 1475.14,1508.99 1479.14,1502.12 1479.14,1536.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1637.43,1433.71 1637.43,1432.06 1638.76,1428.13 1640.09,1425.84 1642.76,1422.9 1648.09,1420.32 1650.76,1420.67 1652.09,1421.67 1653.42,1424.32 1653.42,1427.61 \n",
" 1652.09,1431.55 1649.43,1437.77 1636.09,1460.69 1654.76,1451.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1806.38,1343.68 1821.04,1336.58 1813.04,1353.62 1817.04,1351.68 1819.71,1352.04 1821.04,1353.04 1822.37,1357.33 1822.37,1360.62 1821.04,1366.2 1818.37,1370.79 \n",
" 1814.37,1374.37 1810.37,1376.3 1806.38,1376.6 1805.04,1375.59 1803.71,1372.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1971.32,1286.86 1991.32,1277.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1984.66,1257.36 1984.66,1291.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1416.35,1503.47 1431.44,1496.17 1449.9,1497.89 1431.44,1496.17 1515.25,1455.59 1524.48,1456.45 1515.25,1455.59 1599.05,1415.02 1617.52,1416.74 1599.05,1415.02 \n",
" 1682.86,1374.44 1692.09,1375.3 1682.86,1374.44 1766.67,1333.86 1785.13,1335.58 1766.67,1333.86 1850.48,1293.28 1859.71,1294.14 1850.48,1293.28 1934.29,1252.71 \n",
" 1952.75,1254.43 1934.29,1252.71 1949.37,1245.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,1217.21 1114.99,1244.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1244.26 1405.31,1271.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1271.31 1405.31,1048.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,1048.88 1405.31,826.455 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,826.455 1405.31,604.028 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1405.31,604.028 1114.99,576.977 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,576.977 824.673,549.925 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,549.925 534.354,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,522.874 534.354,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,745.301 534.354,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,967.728 534.354,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 534.354,1190.15 701.969,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,1109 701.969,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,886.573 701.969,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,664.146 701.969,441.719 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 701.969,441.719 869.585,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,360.564 869.585,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,582.991 869.585,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,805.418 869.585,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 869.585,1027.85 1159.9,1054.9 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,1054.9 992.288,1136.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,1136.05 992.288,913.624 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,913.624 824.673,994.779 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,994.779 1114.99,1021.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,1021.83 1114.99,799.404 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1114.99,799.404 824.673,772.352 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 824.673,772.352 992.288,691.197 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,691.197 1282.61,718.249 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,718.249 1282.61,940.676 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,940.676 1282.61,1163.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,1163.1 1572.93,1190.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,1190.15 1572.93,967.728 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,967.728 1572.93,745.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,745.301 1572.93,522.874 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1572.93,522.874 1282.61,495.822 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1282.61,495.822 992.288,468.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 992.288,468.77 1159.9,387.616 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,387.616 1327.52,306.461 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,306.461 1037.2,279.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,279.41 1037.2,501.837 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,501.837 1037.2,724.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,724.264 1037.2,946.691 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1037.2,946.691 1327.52,973.742 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,973.742 1327.52,751.315 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,751.315 1327.52,528.888 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1327.52,528.888 1159.9,610.043 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,610.043 1159.9,832.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1159.9,832.47 1450.22,859.521 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,859.521 1450.22,1081.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,1081.95 1617.84,1000.79 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,1000.79 1617.84,778.367 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,778.367 1617.84,555.94 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,555.94 1450.22,637.094 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,637.094 1450.22,414.667 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1450.22,414.667 1617.84,333.513 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1617.84,333.513 1908.16,360.564 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,360.564 1908.16,582.991 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,582.991 1908.16,805.418 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,805.418 1908.16,1027.85 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.16,1027.85 1740.54,1109 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,1109 1740.54,886.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,886.573 1740.54,664.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1740.54,664.146 1740.54,441.719 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000003; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"1217.21\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#02010b; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1244.26\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#030313; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1271.31\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#07051c; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"1048.88\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#0b0725; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"826.455\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#10092e; stroke:none; fill-opacity:0.4\" cx=\"1405.31\" cy=\"604.028\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#150a37; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"576.977\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#1a0b40; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"549.925\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#210b4a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#280b53; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#2f0a5a; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#360961; stroke:none; fill-opacity:0.4\" cx=\"534.354\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#3d0964; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#440a68; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#4b0c6a; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#520e6c; stroke:none; fill-opacity:0.4\" cx=\"701.969\" cy=\"441.719\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#58106d; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#5e126e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#64146e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#6b176e; stroke:none; fill-opacity:0.4\" cx=\"869.585\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#71196d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"1054.9\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#781c6d; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"1136.05\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#7f1e6c; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"913.624\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#85206a; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"994.779\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#8c2369; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"1021.83\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#922567; stroke:none; fill-opacity:0.4\" cx=\"1114.99\" cy=\"799.404\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#992765; stroke:none; fill-opacity:0.4\" cx=\"824.673\" cy=\"772.352\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#9f2a62; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"691.197\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#a42c60; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"718.249\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#ab2f5d; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"940.676\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#b1325a; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"1163.1\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#b73556; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"1190.15\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#bd3852; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"967.728\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#c33c4e; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"745.301\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#c93f4a; stroke:none; fill-opacity:0.4\" cx=\"1572.93\" cy=\"522.874\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#ce4346; stroke:none; fill-opacity:0.4\" cx=\"1282.61\" cy=\"495.822\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#d34842; stroke:none; fill-opacity:0.4\" cx=\"992.288\" cy=\"468.77\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#d84c3d; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"387.616\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#dc5139; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"306.461\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#e15634; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"279.41\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#e55c2f; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"501.837\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#e9622a; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"724.264\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#ec6925; stroke:none; fill-opacity:0.4\" cx=\"1037.2\" cy=\"946.691\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f06f1f; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"973.742\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f2761a; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"751.315\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f57d14; stroke:none; fill-opacity:0.4\" cx=\"1327.52\" cy=\"528.888\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f7840f; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"610.043\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f88a0b; stroke:none; fill-opacity:0.4\" cx=\"1159.9\" cy=\"832.47\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f99107; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"859.521\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fa9907; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"1081.95\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fba108; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"1000.79\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fba80e; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"778.367\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fbb015; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"555.94\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fab81e; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"637.094\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fac127; stroke:none; fill-opacity:0.4\" cx=\"1450.22\" cy=\"414.667\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f8c932; stroke:none; fill-opacity:0.4\" cx=\"1617.84\" cy=\"333.513\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f7d13d; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"360.564\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f5d849; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"582.991\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f3df55; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"805.418\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f2e662; stroke:none; fill-opacity:0.4\" cx=\"1908.16\" cy=\"1027.85\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f2ed73; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"1109\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f2f484; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"886.573\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#f7f994; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"664.146\" r=\"7\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#000000; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"10\"/>\n",
"<circle clip-path=\"url(#clip9202)\" style=\"fill:#fcfea4; stroke:none; fill-opacity:0.4\" cx=\"1740.54\" cy=\"441.719\" r=\"7\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"using Plots\n",
"\n",
"for solution=solutions\n",
" coords = sort([CartesianIndex(x,y,z) for x=1:4 for y=1:4 for z=1:4], by=i->solution[i])\n",
" xs,ys,zs = [[x[i] for x=coords] for i=1:3]\n",
"\n",
" plt3d=Plots.plot(xs,ys,zs, zcolor=(1:64), marker=(2, 0.4, :inferno), legend=false)\n",
" display(plt3d)\n",
"end"
]
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip9600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 929.764,696.554 1169.62,580.422 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1169.62,580.422 754.176,541.711 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 754.176,541.711 514.319,657.843 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip1200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.319,657.843 514.319,491.023 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip1600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.319,491.023 929.764,529.734 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 929.764,529.734 929.764,362.913 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 929.764,362.913 514.319,324.203 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.319,324.203 594.271,285.492 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip3200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 594.271,285.492 594.271,452.312 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip3600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 594.271,452.312 732.753,465.216 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 732.753,465.216 732.753,632.036 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 732.753,632.036 812.706,593.325 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 812.706,593.325 951.188,606.229 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip5200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 951.188,606.229 871.235,644.939 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip5600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip5600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip5602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip5602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.235,644.939 871.235,478.119 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip6000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.235,478.119 951.188,439.408 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip6400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 951.188,439.408 674.224,413.601 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip6800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip6800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip6802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip6802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 674.224,413.601 754.176,374.891 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip7200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 754.176,374.891 1169.62,413.601 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip7600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip7600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip7602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip7602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1169.62,413.601 1009.72,491.023 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip8000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1009.72,491.023 1009.72,157.382 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip8400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1009.72,157.382 929.764,196.093 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip8800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip8800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip8802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip8802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 929.764,196.093 514.319,157.382 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip9200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.319,157.382 594.271,118.672 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip9600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip9600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip9602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip9602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 594.271,118.672 871.235,144.479 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.235,144.479 871.235,311.299 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.235,311.299 732.753,298.395 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip0800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip0800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip0802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip0802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 732.753,298.395 812.706,259.685 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip1200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 812.706,259.685 674.224,246.781 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip1600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip1600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip1602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip1602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 674.224,246.781 754.176,208.07 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 754.176,208.07 1031.14,233.877 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1031.14,233.877 951.188,272.588 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip2800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip2800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip2802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip2802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 951.188,272.588 1089.67,285.492 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip3200\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3200)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3201\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3200)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3202\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3200)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3202)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 1089.67,285.492 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3202)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1089.67,285.492 1169.62,246.781 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip3600\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3600)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3601\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip3600)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip3602\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3600)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3602)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 1089.67,285.492 1169.62,246.781 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip3602)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1169.62,246.781 1169.62,79.9608 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4000\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4000)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4001\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4000)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4002\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4000)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4002)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 1089.67,285.492 1169.62,246.781 1169.62,79.9608 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4002)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 1169.62,79.9608 754.176,41.25 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4400\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4400)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4401\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4400)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4402\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4400)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4402)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 1089.67,285.492 1169.62,246.781 1169.62,79.9608 754.176,41.25 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4402)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 754.176,41.25 674.224,79.9608 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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=\"360\" height=\"240\" viewBox=\"0 0 1440 960\">\n",
"<defs>\n",
" <clipPath id=\"clip4800\">\n",
" <rect x=\"0\" y=\"0\" width=\"1440\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4800)\" points=\"\n",
"0,960 1440,960 1440,0 0,0 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4801\">\n",
" <rect x=\"288\" y=\"0\" width=\"1009\" height=\"960\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polygon clip-path=\"url(#clip4800)\" points=\"\n",
"295.884,902.085 1169.62,902.085 1169.62,28.3465 295.884,28.3465 \n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4802\">\n",
" <rect x=\"295\" y=\"28\" width=\"875\" height=\"875\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.66,684.303 280.26,682.541 282.66,678.417 282.66,699.153 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.06,519.245 277.06,518.258 277.86,515.896 278.66,514.521 280.26,512.759 283.46,511.21 285.059,511.423 285.859,512.023 286.659,513.61 286.659,515.585 \n",
" 285.859,517.947 284.26,521.684 276.26,535.431 287.459,530.009 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 277.86,347.101 286.659,342.84 281.86,353.064 284.26,351.902 285.859,352.114 286.659,352.715 287.459,355.29 287.459,357.264 286.659,360.614 285.059,363.363 \n",
" 282.66,365.513 280.26,366.675 277.86,366.849 277.06,366.249 276.26,364.661 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 276.26,194.879 288.259,189.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.26,177.182 284.26,197.918 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 295.884,767.06 292.686,768.609 295.884,767.06 295.884,683.65 289.488,686.747 295.884,683.65 \n",
" 295.884,600.24 292.686,601.789 295.884,600.24 295.884,516.83 289.488,519.927 295.884,516.83 295.884,433.42 292.686,434.968 295.884,433.42 295.884,350.01 \n",
" 289.488,353.107 295.884,350.01 295.884,266.6 292.686,268.148 295.884,266.6 295.884,183.19 289.488,186.286 295.884,183.19 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 418.47,876.47 420.428,875.665 423.365,872.976 423.365,893.712 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 554.994,890.179 554.994,889.191 555.973,887.307 556.952,886.411 558.91,885.606 562.826,885.971 564.784,887.141 565.763,888.22 566.742,890.286 566.742,892.261 \n",
" 565.763,894.144 563.805,896.924 554.016,905.886 567.721,907.163 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.455,898.236 705.224,899.24 699.35,906.592 702.287,906.865 704.245,908.035 705.224,909.114 706.203,912.167 706.203,914.142 705.224,917.013 703.266,918.806 \n",
" 700.329,919.519 697.392,919.246 694.455,917.985 693.476,916.906 692.498,914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 830.979,924.781 845.663,926.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 840.769,911.87 840.769,932.606 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 295.884,850.47 295.884,850.47 289.488,853.567 295.884,850.47 365.125,856.922 361.927,858.471 365.125,856.922 434.366,863.374 427.97,866.471 434.366,863.374 \n",
" 503.607,869.826 500.409,871.374 503.607,869.826 572.848,876.278 566.452,879.375 572.848,876.278 642.089,882.729 638.891,884.278 642.089,882.729 711.33,889.181 \n",
" 704.934,892.278 711.33,889.181 780.571,895.633 777.373,897.181 780.571,895.633 849.812,902.085 843.416,905.182 849.812,902.085 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 954.388,872.828 955.988,871.066 958.387,866.942 958.387,887.678 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1032.74,835.879 1032.74,834.892 1033.54,832.53 1034.34,831.155 1035.94,829.393 1039.14,827.844 1040.74,828.057 1041.54,828.657 1042.34,830.244 1042.34,832.219 \n",
" 1041.54,834.581 1039.94,838.318 1031.94,852.066 1043.14,846.643 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1113.49,791.844 1122.29,787.584 1117.49,797.807 1119.89,796.645 1121.49,796.858 1122.29,797.458 1123.09,800.033 1123.09,802.008 1122.29,805.358 1120.69,808.107 \n",
" 1118.29,810.256 1115.89,811.418 1113.49,811.593 1112.69,810.993 1111.89,809.405 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1191.85,767.732 1203.84,761.923 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1199.84,750.035 1199.84,770.771 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4800)\" style=\"stroke:#000000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 849.812,902.085 849.812,902.085 860.89,903.117 849.812,902.085 889.788,882.729 895.327,883.246 889.788,882.729 929.764,863.374 940.843,864.406 929.764,863.374 \n",
" 969.741,844.019 975.28,844.535 969.741,844.019 1009.72,824.663 1020.8,825.696 1009.72,824.663 1049.69,805.308 1055.23,805.824 1049.69,805.308 1089.67,785.953 \n",
" 1100.75,786.985 1089.67,785.953 1129.65,766.597 1135.19,767.113 1129.65,766.597 1169.62,747.242 1180.7,748.274 1169.62,747.242 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4802)\" style=\"stroke:#0000ff; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 652.801,670.747 929.764,696.554 1169.62,580.422 754.176,541.711 514.319,657.843 514.319,491.023 929.764,529.734 929.764,362.913 514.319,324.203 594.271,285.492 \n",
" 594.271,452.312 732.753,465.216 732.753,632.036 812.706,593.325 951.188,606.229 871.235,644.939 871.235,478.119 951.188,439.408 674.224,413.601 754.176,374.891 \n",
" 1169.62,413.601 1009.72,491.023 1009.72,157.382 929.764,196.093 514.319,157.382 594.271,118.672 871.235,144.479 871.235,311.299 732.753,298.395 812.706,259.685 \n",
" 674.224,246.781 754.176,208.07 1031.14,233.877 951.188,272.588 1089.67,285.492 1169.62,246.781 1169.62,79.9608 754.176,41.25 674.224,79.9608 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4802)\" style=\"stroke:#ff0000; stroke-width:2.4; stroke-opacity:1; fill:none\" points=\"\n",
" 674.224,79.9608 1089.67,118.672 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"coords = sort([CartesianIndex(x,y,z) for x=1:4 for y=1:4 for z=1:4], by=i->solutions[1][i])\n",
"steps = copy(turns)\n",
"steps[[1,end]] = [true, true]\n",
"xyz = [x[i] for x=coords[steps], i=1:3]\n",
"\n",
"for i=2:size(xyz,1)\n",
" x,y,z = [xyz[1:i-1,j] for j=1:3]\n",
" plt = plot(x,y,z, color=:blue, legend=false, lims=(0,4), grid=false, dpi=60, axiscolor = invisible())\n",
" x,y,z = [xyz[i-1:i,j] for j=1:3]\n",
" plot!(plt, x,y,z, color=:red)\n",
" display(plt)\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.1.0",
"language": "julia",
"name": "julia-1.1"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.1.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment