Skip to content

Instantly share code, notes, and snippets.

@genkuroki
Last active February 20, 2021 03:55
Show Gist options
  • Save genkuroki/3672262e4cc38c625b570a83239a65f8 to your computer and use it in GitHub Desktop.
Save genkuroki/3672262e4cc38c625b570a83239a65f8 to your computer and use it in GitHub Desktop.
KL-minimax game
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {
"scrolled": false,
"trusted": true
},
"cell_type": "code",
"source": "using Distributions\nusing Random\nusing QuadGK\nusing Memoize\nusing Optim\nusing Base.Threads\nusing Distributed\n\nusing Plots\ndefault(lw=1.2)\n\n⪆(x, y) = x > y || x ≈ y\n\nxlogy(x, y) = iszero(x) ? x : x*log(y)\nge(q, p) = -(xlogy(q, p) + xlogy(1-q, 1-p))\nkl(q, p) = ge(q, p) - ge(q, q)\nloss_kl(n, q, p) = kl(q, p)\n\nest_conjprior(n, k, a, b=a) = (k+a)/(n+a+b)\nest_jeffreys(n, k) = est_conjprior(n, k, 0.5)\nest_corrected_jeffreys(n, k) = est_conjprior(n, k, 0.51)\n\nfunction est_corrected_mle(n, k)\n k == 0 ? 1/(2n) :\n k == n ? 1 - 1/(2n) :\n k/n\nend\n\nfunction Eloss(n, q, estfunc, lossfunc)\n sum(lossfunc(n, q, estfunc(n, k))*pdf(Binomial(n, q), k) for k in 0:n)\nend\n\n@memoize function maximize_Eloss(n, estfunc, lossfunc)\n o0 = optimize(q -> -Eloss(n, q, estfunc, lossfunc), eps(), 0.5)\n o1 = optimize(q -> -Eloss(n, q, estfunc, lossfunc), 0.5, 1-eps())\n mo0 = -o0.minimum\n mo1 = -o1.minimum\n m0 = Eloss(n, 0.0, estfunc, lossfunc)\n m1 = Eloss(n, 1.0, estfunc, lossfunc)\n maxEloss = max(mo0, mo1, m0, m1)\n q_maximizer = mo0 ⪆ maxEloss ? o0.minimizer : \n mo1 ⪆ maxEloss ? o1.minimizer :\n m0 ⪆ maxEloss ? 0.0 : 1.0 \n q_maximizer, maxEloss\nend\n\nfunction est_asymptbest(n, k, c)\n k == 0 ? est_conjprior(n, k, 3/4-c, 3/4) :\n k == 1 ? est_conjprior(n, k, 3/4+c, 3/4) :\n k == n-1 ? est_conjprior(n, k, 3/4, 3/4+c) :\n k == n ? est_conjprior(n, k, 3/4, 3/4-c) :\n est_conjprior(n, k, 3/4, 3/4)\nend\n\nest_asymptbest(n, k) = est_asymptbest(n, k, 1/4)\n\n@memoize function est_corrected_asymptbest(n, k)\n c = minmax_param(n)[1]\n est_asymptbest(n, k, c)\nend\n\nfunction est_corrected_asymptbest(n)\n c = minmax_param(n)[1]\n est(n, k) = est_asymptbest(n, k, c)\n est\nend\n\nest_optimal(n, k) = (\n 0.04251155945436709,\n 0.17905246094661803,\n 0.22817364126399065,\n 0.32113227619309637,\n 0.42276759076040954,\n 0.5,\n 0.5772324092395904,\n 0.6788677238069036,\n 0.7718263587360094,\n 0.820947539053382,\n 0.9574884405456329, \n)[1+k]\n\n@memoize function minmax_param(n)\n maxEloss(c) = maximize_Eloss(n, (n, k)->est_asymptbest(n, k, c), loss_kl)[2]\n o = optimize(maxEloss, 0.01, 0.74)\n o.minimizer, o.minimum\nend\n\n@show c, _ = minmax_param(10)\n@show maximize_Eloss(10, est_optimal, loss_kl)\n@show maximize_Eloss(10, est_corrected_asymptbest, loss_kl)\n@show maximize_Eloss(10, est_asymptbest, loss_kl)\n@show maximize_Eloss(10, est_corrected_jeffreys, loss_kl)\n@show maximize_Eloss(10, est_jeffreys, loss_kl)\n@show maximize_Eloss(10, est_corrected_mle, loss_kl)\n;",
"execution_count": 1,
"outputs": [
{
"output_type": "stream",
"text": "(c, _) = minmax_param(10) = (0.26448095780701575, 0.044174348921259446)\nmaximize_Eloss(10, est_optimal, loss_kl) = (0.15822440677808142, 0.04344217318800149)\nmaximize_Eloss(10, est_corrected_asymptbest, loss_kl) = (0.1631009148142917, 0.044174348921259446)\nmaximize_Eloss(10, est_asymptbest, loss_kl) = (0.0, 0.04546237407675729)\nmaximize_Eloss(10, est_corrected_jeffreys, loss_kl) = (0.41513956692681325, 0.04789857741650475)\nmaximize_Eloss(10, est_jeffreys, loss_kl) = (0.4013569799241886, 0.048128342454167854)\nmaximize_Eloss(10, est_corrected_mle, loss_kl) = (0.43013229806950265, 0.060054858078406825)\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "plot(; legend=:bottom, ytick=0:0.002:1)\nplot!(q -> Eloss(10, q, est_optimal, loss_kl), 0, 1; label=\"optimal\")\nplot!(q -> Eloss(10, q, est_corrected_asymptbest, loss_kl), 0, 1; label=\"corrected asymptbest\", ls=:auto)\nplot!(q -> Eloss(10, q, est_asymptbest, loss_kl), 0, 1; label=\"asymptbest\", ls=:auto)\nplot!(q -> Eloss(10, q, est_corrected_jeffreys, loss_kl), 0, 1; label=\"corrected_jeffreys\", ls=:auto)\nplot!(q -> Eloss(10, q, est_jeffreys, loss_kl), 0, 1; label=\"jeffreys\", ls=:auto)\nplot!(q -> Eloss(10, q, est_corrected_mle, loss_kl), 0, 1; label=\"corrected_mle\", ls=:auto)",
"execution_count": 2,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 2,
"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=\"clip920\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip920)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip921\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip920)\" d=\"\nM202.848 1486.45 L2352.76 1486.45 L2352.76 47.2441 L202.848 47.2441 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip922\">\n <rect x=\"202\" y=\"47\" width=\"2151\" height=\"1440\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 263.694,1486.45 263.694,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 770.748,1486.45 770.748,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1277.8,1486.45 1277.8,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1784.86,1486.45 1784.86,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2291.91,1486.45 2291.91,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1486.45 2352.76,1486.45 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 263.694,1486.45 263.694,1469.18 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 770.748,1486.45 770.748,1469.18 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1277.8,1486.45 1277.8,1469.18 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1784.86,1486.45 1784.86,1469.18 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2291.91,1486.45 2291.91,1469.18 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M231.704 1515.64 Q228.093 1515.64 226.264 1519.2 Q224.459 1522.75 224.459 1529.87 Q224.459 1536.98 226.264 1540.55 Q228.093 1544.09 231.704 1544.09 Q235.338 1544.09 237.144 1540.55 Q238.972 1536.98 238.972 1529.87 Q238.972 1522.75 237.144 1519.2 Q235.338 1515.64 231.704 1515.64 M231.704 1511.93 Q237.514 1511.93 240.57 1516.54 Q243.648 1521.12 243.648 1529.87 Q243.648 1538.6 240.57 1543.21 Q237.514 1547.79 231.704 1547.79 Q225.894 1547.79 222.815 1543.21 Q219.759 1538.6 219.759 1529.87 Q219.759 1521.12 222.815 1516.54 Q225.894 1511.93 231.704 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M248.718 1541.24 L253.602 1541.24 L253.602 1547.12 L248.718 1547.12 L248.718 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M268.671 1515.64 Q265.06 1515.64 263.231 1519.2 Q261.426 1522.75 261.426 1529.87 Q261.426 1536.98 263.231 1540.55 Q265.06 1544.09 268.671 1544.09 Q272.306 1544.09 274.111 1540.55 Q275.94 1536.98 275.94 1529.87 Q275.94 1522.75 274.111 1519.2 Q272.306 1515.64 268.671 1515.64 M268.671 1511.93 Q274.481 1511.93 277.537 1516.54 Q280.616 1521.12 280.616 1529.87 Q280.616 1538.6 277.537 1543.21 Q274.481 1547.79 268.671 1547.79 Q262.861 1547.79 259.782 1543.21 Q256.727 1538.6 256.727 1529.87 Q256.727 1521.12 259.782 1516.54 Q262.861 1511.93 268.671 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M295.685 1515.64 Q292.074 1515.64 290.245 1519.2 Q288.44 1522.75 288.44 1529.87 Q288.44 1536.98 290.245 1540.55 Q292.074 1544.09 295.685 1544.09 Q299.319 1544.09 301.125 1540.55 Q302.953 1536.98 302.953 1529.87 Q302.953 1522.75 301.125 1519.2 Q299.319 1515.64 295.685 1515.64 M295.685 1511.93 Q301.495 1511.93 304.551 1516.54 Q307.629 1521.12 307.629 1529.87 Q307.629 1538.6 304.551 1543.21 Q301.495 1547.79 295.685 1547.79 Q289.875 1547.79 286.796 1543.21 Q283.741 1538.6 283.741 1529.87 Q283.741 1521.12 286.796 1516.54 Q289.875 1511.93 295.685 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M740.054 1515.64 Q736.443 1515.64 734.614 1519.2 Q732.809 1522.75 732.809 1529.87 Q732.809 1536.98 734.614 1540.55 Q736.443 1544.09 740.054 1544.09 Q743.688 1544.09 745.494 1540.55 Q747.322 1536.98 747.322 1529.87 Q747.322 1522.75 745.494 1519.2 Q743.688 1515.64 740.054 1515.64 M740.054 1511.93 Q745.864 1511.93 748.92 1516.54 Q751.998 1521.12 751.998 1529.87 Q751.998 1538.6 748.92 1543.21 Q745.864 1547.79 740.054 1547.79 Q734.244 1547.79 731.165 1543.21 Q728.11 1538.6 728.11 1529.87 Q728.11 1521.12 731.165 1516.54 Q734.244 1511.93 740.054 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M757.068 1541.24 L761.952 1541.24 L761.952 1547.12 L757.068 1547.12 L757.068 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M771.049 1543.18 L787.368 1543.18 L787.368 1547.12 L765.424 1547.12 L765.424 1543.18 Q768.086 1540.43 772.669 1535.8 Q777.276 1531.15 778.456 1529.81 Q780.702 1527.28 781.581 1525.55 Q782.484 1523.79 782.484 1522.1 Q782.484 1519.34 780.54 1517.61 Q778.619 1515.87 775.517 1515.87 Q773.318 1515.87 770.864 1516.63 Q768.433 1517.4 765.656 1518.95 L765.656 1514.23 Q768.48 1513.09 770.933 1512.51 Q773.387 1511.93 775.424 1511.93 Q780.794 1511.93 783.989 1514.62 Q787.183 1517.31 787.183 1521.8 Q787.183 1523.93 786.373 1525.85 Q785.586 1527.74 783.48 1530.34 Q782.901 1531.01 779.799 1534.23 Q776.697 1537.42 771.049 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M792.484 1512.56 L810.841 1512.56 L810.841 1516.5 L796.767 1516.5 L796.767 1524.97 Q797.785 1524.62 798.804 1524.46 Q799.822 1524.27 800.841 1524.27 Q806.628 1524.27 810.007 1527.44 Q813.387 1530.62 813.387 1536.03 Q813.387 1541.61 809.915 1544.71 Q806.442 1547.79 800.123 1547.79 Q797.947 1547.79 795.679 1547.42 Q793.433 1547.05 791.026 1546.31 L791.026 1541.61 Q793.109 1542.74 795.331 1543.3 Q797.554 1543.86 800.03 1543.86 Q804.035 1543.86 806.373 1541.75 Q808.711 1539.64 808.711 1536.03 Q808.711 1532.42 806.373 1530.31 Q804.035 1528.21 800.03 1528.21 Q798.155 1528.21 796.28 1528.62 Q794.429 1529.04 792.484 1529.92 L792.484 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1246.31 1515.64 Q1242.7 1515.64 1240.87 1519.2 Q1239.06 1522.75 1239.06 1529.87 Q1239.06 1536.98 1240.87 1540.55 Q1242.7 1544.09 1246.31 1544.09 Q1249.94 1544.09 1251.75 1540.55 Q1253.58 1536.98 1253.58 1529.87 Q1253.58 1522.75 1251.75 1519.2 Q1249.94 1515.64 1246.31 1515.64 M1246.31 1511.93 Q1252.12 1511.93 1255.17 1516.54 Q1258.25 1521.12 1258.25 1529.87 Q1258.25 1538.6 1255.17 1543.21 Q1252.12 1547.79 1246.31 1547.79 Q1240.5 1547.79 1237.42 1543.21 Q1234.36 1538.6 1234.36 1529.87 Q1234.36 1521.12 1237.42 1516.54 Q1240.5 1511.93 1246.31 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1263.32 1541.24 L1268.21 1541.24 L1268.21 1547.12 L1263.32 1547.12 L1263.32 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1273.32 1512.56 L1291.68 1512.56 L1291.68 1516.5 L1277.61 1516.5 L1277.61 1524.97 Q1278.62 1524.62 1279.64 1524.46 Q1280.66 1524.27 1281.68 1524.27 Q1287.47 1524.27 1290.85 1527.44 Q1294.23 1530.62 1294.23 1536.03 Q1294.23 1541.61 1290.75 1544.71 Q1287.28 1547.79 1280.96 1547.79 Q1278.79 1547.79 1276.52 1547.42 Q1274.27 1547.05 1271.86 1546.31 L1271.86 1541.61 Q1273.95 1542.74 1276.17 1543.3 Q1278.39 1543.86 1280.87 1543.86 Q1284.87 1543.86 1287.21 1541.75 Q1289.55 1539.64 1289.55 1536.03 Q1289.55 1532.42 1287.21 1530.31 Q1284.87 1528.21 1280.87 1528.21 Q1278.99 1528.21 1277.12 1528.62 Q1275.27 1529.04 1273.32 1529.92 L1273.32 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1309.29 1515.64 Q1305.68 1515.64 1303.86 1519.2 Q1302.05 1522.75 1302.05 1529.87 Q1302.05 1536.98 1303.86 1540.55 Q1305.68 1544.09 1309.29 1544.09 Q1312.93 1544.09 1314.73 1540.55 Q1316.56 1536.98 1316.56 1529.87 Q1316.56 1522.75 1314.73 1519.2 Q1312.93 1515.64 1309.29 1515.64 M1309.29 1511.93 Q1315.1 1511.93 1318.16 1516.54 Q1321.24 1521.12 1321.24 1529.87 Q1321.24 1538.6 1318.16 1543.21 Q1315.1 1547.79 1309.29 1547.79 Q1303.48 1547.79 1300.41 1543.21 Q1297.35 1538.6 1297.35 1529.87 Q1297.35 1521.12 1300.41 1516.54 Q1303.48 1511.93 1309.29 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1753.81 1515.64 Q1750.2 1515.64 1748.37 1519.2 Q1746.57 1522.75 1746.57 1529.87 Q1746.57 1536.98 1748.37 1540.55 Q1750.2 1544.09 1753.81 1544.09 Q1757.45 1544.09 1759.25 1540.55 Q1761.08 1536.98 1761.08 1529.87 Q1761.08 1522.75 1759.25 1519.2 Q1757.45 1515.64 1753.81 1515.64 M1753.81 1511.93 Q1759.62 1511.93 1762.68 1516.54 Q1765.76 1521.12 1765.76 1529.87 Q1765.76 1538.6 1762.68 1543.21 Q1759.62 1547.79 1753.81 1547.79 Q1748 1547.79 1744.93 1543.21 Q1741.87 1538.6 1741.87 1529.87 Q1741.87 1521.12 1744.93 1516.54 Q1748 1511.93 1753.81 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1770.83 1541.24 L1775.71 1541.24 L1775.71 1547.12 L1770.83 1547.12 L1770.83 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1779.6 1512.56 L1801.82 1512.56 L1801.82 1514.55 L1789.28 1547.12 L1784.39 1547.12 L1796.2 1516.5 L1779.6 1516.5 L1779.6 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1806.94 1512.56 L1825.3 1512.56 L1825.3 1516.5 L1811.22 1516.5 L1811.22 1524.97 Q1812.24 1524.62 1813.26 1524.46 Q1814.28 1524.27 1815.3 1524.27 Q1821.08 1524.27 1824.46 1527.44 Q1827.84 1530.62 1827.84 1536.03 Q1827.84 1541.61 1824.37 1544.71 Q1820.9 1547.79 1814.58 1547.79 Q1812.4 1547.79 1810.13 1547.42 Q1807.89 1547.05 1805.48 1546.31 L1805.48 1541.61 Q1807.56 1542.74 1809.79 1543.3 Q1812.01 1543.86 1814.49 1543.86 Q1818.49 1543.86 1820.83 1541.75 Q1823.17 1539.64 1823.17 1536.03 Q1823.17 1532.42 1820.83 1530.31 Q1818.49 1528.21 1814.49 1528.21 Q1812.61 1528.21 1810.74 1528.62 Q1808.88 1529.04 1806.94 1529.92 L1806.94 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M2250.3 1543.18 L2257.94 1543.18 L2257.94 1516.82 L2249.63 1518.49 L2249.63 1514.23 L2257.89 1512.56 L2262.57 1512.56 L2262.57 1543.18 L2270.21 1543.18 L2270.21 1547.12 L2250.3 1547.12 L2250.3 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M2275.28 1541.24 L2280.16 1541.24 L2280.16 1547.12 L2275.28 1547.12 L2275.28 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M2295.23 1515.64 Q2291.62 1515.64 2289.79 1519.2 Q2287.99 1522.75 2287.99 1529.87 Q2287.99 1536.98 2289.79 1540.55 Q2291.62 1544.09 2295.23 1544.09 Q2298.87 1544.09 2300.67 1540.55 Q2302.5 1536.98 2302.5 1529.87 Q2302.5 1522.75 2300.67 1519.2 Q2298.87 1515.64 2295.23 1515.64 M2295.23 1511.93 Q2301.04 1511.93 2304.1 1516.54 Q2307.18 1521.12 2307.18 1529.87 Q2307.18 1538.6 2304.1 1543.21 Q2301.04 1547.79 2295.23 1547.79 Q2289.42 1547.79 2286.34 1543.21 Q2283.29 1538.6 2283.29 1529.87 Q2283.29 1521.12 2286.34 1516.54 Q2289.42 1511.93 2295.23 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M2322.24 1515.64 Q2318.63 1515.64 2316.81 1519.2 Q2315 1522.75 2315 1529.87 Q2315 1536.98 2316.81 1540.55 Q2318.63 1544.09 2322.24 1544.09 Q2325.88 1544.09 2327.68 1540.55 Q2329.51 1536.98 2329.51 1529.87 Q2329.51 1522.75 2327.68 1519.2 Q2325.88 1515.64 2322.24 1515.64 M2322.24 1511.93 Q2328.06 1511.93 2331.11 1516.54 Q2334.19 1521.12 2334.19 1529.87 Q2334.19 1538.6 2331.11 1543.21 Q2328.06 1547.79 2322.24 1547.79 Q2316.43 1547.79 2313.36 1543.21 Q2310.3 1538.6 2310.3 1529.87 Q2310.3 1521.12 2313.36 1516.54 Q2316.43 1511.93 2322.24 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1466.46 2352.76,1466.46 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1406.58 2352.76,1406.58 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1346.7 2352.76,1346.7 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1286.83 2352.76,1286.83 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1226.95 2352.76,1226.95 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1167.07 2352.76,1167.07 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1107.19 2352.76,1107.19 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,1047.31 2352.76,1047.31 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,987.433 2352.76,987.433 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,927.555 2352.76,927.555 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,867.677 2352.76,867.677 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,807.798 2352.76,807.798 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,747.92 2352.76,747.92 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,688.041 2352.76,688.041 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,628.163 2352.76,628.163 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,568.284 2352.76,568.284 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,508.406 2352.76,508.406 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,448.528 2352.76,448.528 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,388.649 2352.76,388.649 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,328.771 2352.76,328.771 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,268.892 2352.76,268.892 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,209.014 2352.76,209.014 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,149.136 2352.76,149.136 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 202.848,89.2572 2352.76,89.2572 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1486.45 202.848,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1466.46 228.647,1466.46 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1406.58 228.647,1406.58 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1346.7 228.647,1346.7 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1286.83 228.647,1286.83 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1226.95 228.647,1226.95 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1167.07 228.647,1167.07 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1107.19 228.647,1107.19 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,1047.31 228.647,1047.31 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,987.433 228.647,987.433 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,927.555 228.647,927.555 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,867.677 228.647,867.677 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,807.798 228.647,807.798 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,747.92 228.647,747.92 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,688.041 228.647,688.041 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,628.163 228.647,628.163 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,568.284 228.647,568.284 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,508.406 228.647,508.406 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,448.528 228.647,448.528 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,388.649 228.647,388.649 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,328.771 228.647,328.771 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,268.892 228.647,268.892 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,209.014 228.647,209.014 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,149.136 228.647,149.136 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 202.848,89.2572 228.647,89.2572 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.6495 1452.26 Q61.0384 1452.26 59.2097 1455.82 Q57.4041 1459.37 57.4041 1466.5 Q57.4041 1473.6 59.2097 1477.17 Q61.0384 1480.71 64.6495 1480.71 Q68.2837 1480.71 70.0892 1477.17 Q71.9179 1473.6 71.9179 1466.5 Q71.9179 1459.37 70.0892 1455.82 Q68.2837 1452.26 64.6495 1452.26 M64.6495 1448.56 Q70.4596 1448.56 73.5152 1453.16 Q76.5938 1457.75 76.5938 1466.5 Q76.5938 1475.22 73.5152 1479.83 Q70.4596 1484.41 64.6495 1484.41 Q58.8393 1484.41 55.7606 1479.83 Q52.7051 1475.22 52.7051 1466.5 Q52.7051 1457.75 55.7606 1453.16 Q58.8393 1448.56 64.6495 1448.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.6633 1477.86 L86.5475 1477.86 L86.5475 1483.74 L81.6633 1483.74 L81.6633 1477.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.617 1452.26 Q98.0058 1452.26 96.1771 1455.82 Q94.3715 1459.37 94.3715 1466.5 Q94.3715 1473.6 96.1771 1477.17 Q98.0058 1480.71 101.617 1480.71 Q105.251 1480.71 107.057 1477.17 Q108.885 1473.6 108.885 1466.5 Q108.885 1459.37 107.057 1455.82 Q105.251 1452.26 101.617 1452.26 M101.617 1448.56 Q107.427 1448.56 110.483 1453.16 Q113.561 1457.75 113.561 1466.5 Q113.561 1475.22 110.483 1479.83 Q107.427 1484.41 101.617 1484.41 Q95.8067 1484.41 92.728 1479.83 Q89.6725 1475.22 89.6725 1466.5 Q89.6725 1457.75 92.728 1453.16 Q95.8067 1448.56 101.617 1448.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M119.441 1479.81 L127.08 1479.81 L127.08 1453.44 L118.77 1455.11 L118.77 1450.85 L127.033 1449.18 L131.709 1449.18 L131.709 1479.81 L139.348 1479.81 L139.348 1483.74 L119.441 1483.74 L119.441 1479.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M157.265 1453.25 L145.459 1471.7 L157.265 1471.7 L157.265 1453.25 M156.038 1449.18 L161.917 1449.18 L161.917 1471.7 L166.848 1471.7 L166.848 1475.59 L161.917 1475.59 L161.917 1483.74 L157.265 1483.74 L157.265 1475.59 L141.663 1475.59 L141.663 1471.08 L156.038 1449.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.9735 1392.38 Q61.3624 1392.38 59.5337 1395.95 Q57.7282 1399.49 57.7282 1406.62 Q57.7282 1413.72 59.5337 1417.29 Q61.3624 1420.83 64.9735 1420.83 Q68.6078 1420.83 70.4133 1417.29 Q72.242 1413.72 72.242 1406.62 Q72.242 1399.49 70.4133 1395.95 Q68.6078 1392.38 64.9735 1392.38 M64.9735 1388.68 Q70.7837 1388.68 73.8392 1393.28 Q76.9179 1397.87 76.9179 1406.62 Q76.9179 1415.34 73.8392 1419.95 Q70.7837 1424.53 64.9735 1424.53 Q59.1634 1424.53 56.0847 1419.95 Q53.0292 1415.34 53.0292 1406.62 Q53.0292 1397.87 56.0847 1393.28 Q59.1634 1388.68 64.9735 1388.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.9873 1417.98 L86.8716 1417.98 L86.8716 1423.86 L81.9873 1423.86 L81.9873 1417.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.941 1392.38 Q98.3298 1392.38 96.5011 1395.95 Q94.6956 1399.49 94.6956 1406.62 Q94.6956 1413.72 96.5011 1417.29 Q98.3298 1420.83 101.941 1420.83 Q105.575 1420.83 107.381 1417.29 Q109.209 1413.72 109.209 1406.62 Q109.209 1399.49 107.381 1395.95 Q105.575 1392.38 101.941 1392.38 M101.941 1388.68 Q107.751 1388.68 110.807 1393.28 Q113.885 1397.87 113.885 1406.62 Q113.885 1415.34 110.807 1419.95 Q107.751 1424.53 101.941 1424.53 Q96.1308 1424.53 93.0521 1419.95 Q89.9965 1415.34 89.9965 1406.62 Q89.9965 1397.87 93.0521 1393.28 Q96.1308 1388.68 101.941 1388.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M119.765 1419.93 L127.404 1419.93 L127.404 1393.56 L119.094 1395.23 L119.094 1390.97 L127.357 1389.3 L132.033 1389.3 L132.033 1419.93 L139.672 1419.93 L139.672 1423.86 L119.765 1423.86 L119.765 1419.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M155.32 1404.72 Q152.172 1404.72 150.32 1406.87 Q148.492 1409.02 148.492 1412.77 Q148.492 1416.5 150.32 1418.68 Q152.172 1420.83 155.32 1420.83 Q158.468 1420.83 160.297 1418.68 Q162.149 1416.5 162.149 1412.77 Q162.149 1409.02 160.297 1406.87 Q158.468 1404.72 155.32 1404.72 M164.603 1390.07 L164.603 1394.33 Q162.843 1393.49 161.038 1393.05 Q159.255 1392.61 157.496 1392.61 Q152.867 1392.61 150.413 1395.74 Q147.982 1398.86 147.635 1405.18 Q149.001 1403.17 151.061 1402.1 Q153.121 1401.02 155.598 1401.02 Q160.806 1401.02 163.816 1404.19 Q166.848 1407.33 166.848 1412.77 Q166.848 1418.1 163.7 1421.32 Q160.552 1424.53 155.32 1424.53 Q149.325 1424.53 146.154 1419.95 Q142.982 1415.34 142.982 1406.62 Q142.982 1398.42 146.871 1393.56 Q150.76 1388.68 157.311 1388.68 Q159.07 1388.68 160.853 1389.02 Q162.658 1389.37 164.603 1390.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.2282 1332.5 Q61.6171 1332.5 59.7884 1336.07 Q57.9828 1339.61 57.9828 1346.74 Q57.9828 1353.84 59.7884 1357.41 Q61.6171 1360.95 65.2282 1360.95 Q68.8624 1360.95 70.6679 1357.41 Q72.4966 1353.84 72.4966 1346.74 Q72.4966 1339.61 70.6679 1336.07 Q68.8624 1332.5 65.2282 1332.5 M65.2282 1328.8 Q71.0383 1328.8 74.0939 1333.41 Q77.1725 1337.99 77.1725 1346.74 Q77.1725 1355.47 74.0939 1360.07 Q71.0383 1364.66 65.2282 1364.66 Q59.418 1364.66 56.3393 1360.07 Q53.2838 1355.47 53.2838 1346.74 Q53.2838 1337.99 56.3393 1333.41 Q59.418 1328.8 65.2282 1328.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.242 1358.1 L87.1262 1358.1 L87.1262 1363.98 L82.242 1363.98 L82.242 1358.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M102.196 1332.5 Q98.5845 1332.5 96.7558 1336.07 Q94.9502 1339.61 94.9502 1346.74 Q94.9502 1353.84 96.7558 1357.41 Q98.5845 1360.95 102.196 1360.95 Q105.83 1360.95 107.635 1357.41 Q109.464 1353.84 109.464 1346.74 Q109.464 1339.61 107.635 1336.07 Q105.83 1332.5 102.196 1332.5 M102.196 1328.8 Q108.006 1328.8 111.061 1333.41 Q114.14 1337.99 114.14 1346.74 Q114.14 1355.47 111.061 1360.07 Q108.006 1364.66 102.196 1364.66 Q96.3854 1364.66 93.3067 1360.07 Q90.2512 1355.47 90.2512 1346.74 Q90.2512 1337.99 93.3067 1333.41 Q96.3854 1328.8 102.196 1328.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M120.02 1360.05 L127.658 1360.05 L127.658 1333.68 L119.348 1335.35 L119.348 1331.09 L127.612 1329.42 L132.288 1329.42 L132.288 1360.05 L139.927 1360.05 L139.927 1363.98 L120.02 1363.98 L120.02 1360.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.996 1347.57 Q151.663 1347.57 149.742 1349.35 Q147.843 1351.14 147.843 1354.26 Q147.843 1357.39 149.742 1359.17 Q151.663 1360.95 154.996 1360.95 Q158.33 1360.95 160.251 1359.17 Q162.172 1357.36 162.172 1354.26 Q162.172 1351.14 160.251 1349.35 Q158.353 1347.57 154.996 1347.57 M150.32 1345.58 Q147.311 1344.84 145.621 1342.78 Q143.955 1340.72 143.955 1337.76 Q143.955 1333.61 146.894 1331.21 Q149.857 1328.8 154.996 1328.8 Q160.158 1328.8 163.098 1331.21 Q166.038 1333.61 166.038 1337.76 Q166.038 1340.72 164.348 1342.78 Q162.681 1344.84 159.695 1345.58 Q163.075 1346.37 164.95 1348.66 Q166.848 1350.95 166.848 1354.26 Q166.848 1359.28 163.769 1361.97 Q160.714 1364.66 154.996 1364.66 Q149.279 1364.66 146.2 1361.97 Q143.144 1359.28 143.144 1354.26 Q143.144 1350.95 145.043 1348.66 Q146.941 1346.37 150.32 1345.58 M148.607 1338.2 Q148.607 1340.88 150.274 1342.39 Q151.964 1343.89 154.996 1343.89 Q158.005 1343.89 159.695 1342.39 Q161.408 1340.88 161.408 1338.2 Q161.408 1335.51 159.695 1334.01 Q158.005 1332.5 154.996 1332.5 Q151.964 1332.5 150.274 1334.01 Q148.607 1335.51 148.607 1338.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.5059 1272.62 Q61.8948 1272.62 60.0662 1276.19 Q58.2606 1279.73 58.2606 1286.86 Q58.2606 1293.97 60.0662 1297.53 Q61.8948 1301.07 65.5059 1301.07 Q69.1402 1301.07 70.9457 1297.53 Q72.7744 1293.97 72.7744 1286.86 Q72.7744 1279.73 70.9457 1276.19 Q69.1402 1272.62 65.5059 1272.62 M65.5059 1268.92 Q71.3161 1268.92 74.3716 1273.53 Q77.4503 1278.11 77.4503 1286.86 Q77.4503 1295.59 74.3716 1300.19 Q71.3161 1304.78 65.5059 1304.78 Q59.6958 1304.78 56.6171 1300.19 Q53.5616 1295.59 53.5616 1286.86 Q53.5616 1278.11 56.6171 1273.53 Q59.6958 1268.92 65.5059 1268.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.5197 1298.23 L87.404 1298.23 L87.404 1304.11 L82.5197 1304.11 L82.5197 1298.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M102.473 1272.62 Q98.8622 1272.62 97.0335 1276.19 Q95.228 1279.73 95.228 1286.86 Q95.228 1293.97 97.0335 1297.53 Q98.8622 1301.07 102.473 1301.07 Q106.108 1301.07 107.913 1297.53 Q109.742 1293.97 109.742 1286.86 Q109.742 1279.73 107.913 1276.19 Q106.108 1272.62 102.473 1272.62 M102.473 1268.92 Q108.283 1268.92 111.339 1273.53 Q114.418 1278.11 114.418 1286.86 Q114.418 1295.59 111.339 1300.19 Q108.283 1304.78 102.473 1304.78 Q96.6632 1304.78 93.5845 1300.19 Q90.529 1295.59 90.529 1286.86 Q90.529 1278.11 93.5845 1273.53 Q96.6632 1268.92 102.473 1268.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M123.515 1300.17 L139.834 1300.17 L139.834 1304.11 L117.89 1304.11 L117.89 1300.17 Q120.552 1297.42 125.135 1292.79 Q129.742 1288.13 130.922 1286.79 Q133.168 1284.27 134.047 1282.53 Q134.95 1280.77 134.95 1279.08 Q134.95 1276.33 133.006 1274.59 Q131.084 1272.86 127.982 1272.86 Q125.783 1272.86 123.33 1273.62 Q120.899 1274.38 118.121 1275.93 L118.121 1271.21 Q120.945 1270.08 123.399 1269.5 Q125.853 1268.92 127.89 1268.92 Q133.26 1268.92 136.455 1271.61 Q139.649 1274.29 139.649 1278.78 Q139.649 1280.91 138.839 1282.83 Q138.052 1284.73 135.945 1287.32 Q135.367 1287.99 132.265 1291.21 Q129.163 1294.41 123.515 1300.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.904 1272.62 Q151.293 1272.62 149.464 1276.19 Q147.658 1279.73 147.658 1286.86 Q147.658 1293.97 149.464 1297.53 Q151.293 1301.07 154.904 1301.07 Q158.538 1301.07 160.343 1297.53 Q162.172 1293.97 162.172 1286.86 Q162.172 1279.73 160.343 1276.19 Q158.538 1272.62 154.904 1272.62 M154.904 1268.92 Q160.714 1268.92 163.769 1273.53 Q166.848 1278.11 166.848 1286.86 Q166.848 1295.59 163.769 1300.19 Q160.714 1304.78 154.904 1304.78 Q149.093 1304.78 146.015 1300.19 Q142.959 1295.59 142.959 1286.86 Q142.959 1278.11 146.015 1273.53 Q149.093 1268.92 154.904 1268.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M67.1032 1212.75 Q63.4921 1212.75 61.6634 1216.31 Q59.8578 1219.85 59.8578 1226.98 Q59.8578 1234.09 61.6634 1237.65 Q63.4921 1241.19 67.1032 1241.19 Q70.7374 1241.19 72.5429 1237.65 Q74.3716 1234.09 74.3716 1226.98 Q74.3716 1219.85 72.5429 1216.31 Q70.7374 1212.75 67.1032 1212.75 M67.1032 1209.04 Q72.9133 1209.04 75.9688 1213.65 Q79.0475 1218.23 79.0475 1226.98 Q79.0475 1235.71 75.9688 1240.31 Q72.9133 1244.9 67.1032 1244.9 Q61.293 1244.9 58.2143 1240.31 Q55.1588 1235.71 55.1588 1226.98 Q55.1588 1218.23 58.2143 1213.65 Q61.293 1209.04 67.1032 1209.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M84.1169 1238.35 L89.0012 1238.35 L89.0012 1244.23 L84.1169 1244.23 L84.1169 1238.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M104.071 1212.75 Q100.459 1212.75 98.6308 1216.31 Q96.8252 1219.85 96.8252 1226.98 Q96.8252 1234.09 98.6308 1237.65 Q100.459 1241.19 104.071 1241.19 Q107.705 1241.19 109.51 1237.65 Q111.339 1234.09 111.339 1226.98 Q111.339 1219.85 109.51 1216.31 Q107.705 1212.75 104.071 1212.75 M104.071 1209.04 Q109.881 1209.04 112.936 1213.65 Q116.015 1218.23 116.015 1226.98 Q116.015 1235.71 112.936 1240.31 Q109.881 1244.9 104.071 1244.9 Q98.2604 1244.9 95.1817 1240.31 Q92.1262 1235.71 92.1262 1226.98 Q92.1262 1218.23 95.1817 1213.65 Q98.2604 1209.04 104.071 1209.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M125.112 1240.29 L141.431 1240.29 L141.431 1244.23 L119.487 1244.23 L119.487 1240.29 Q122.149 1237.54 126.732 1232.91 Q131.339 1228.25 132.519 1226.91 Q134.765 1224.39 135.644 1222.65 Q136.547 1220.89 136.547 1219.2 Q136.547 1216.45 134.603 1214.71 Q132.682 1212.98 129.58 1212.98 Q127.381 1212.98 124.927 1213.74 Q122.496 1214.5 119.719 1216.06 L119.719 1211.33 Q122.543 1210.2 124.996 1209.62 Q127.45 1209.04 129.487 1209.04 Q134.857 1209.04 138.052 1211.73 Q141.246 1214.41 141.246 1218.9 Q141.246 1221.03 140.436 1222.95 Q139.649 1224.85 137.543 1227.44 Q136.964 1228.12 133.862 1231.33 Q130.76 1234.53 125.112 1240.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M150.529 1240.29 L166.848 1240.29 L166.848 1244.23 L144.904 1244.23 L144.904 1240.29 Q147.566 1237.54 152.149 1232.91 Q156.755 1228.25 157.936 1226.91 Q160.181 1224.39 161.061 1222.65 Q161.964 1220.89 161.964 1219.2 Q161.964 1216.45 160.019 1214.71 Q158.098 1212.98 154.996 1212.98 Q152.797 1212.98 150.343 1213.74 Q147.913 1214.5 145.135 1216.06 L145.135 1211.33 Q147.959 1210.2 150.413 1209.62 Q152.867 1209.04 154.904 1209.04 Q160.274 1209.04 163.468 1211.73 Q166.663 1214.41 166.663 1218.9 Q166.663 1221.03 165.853 1222.95 Q165.066 1224.85 162.959 1227.44 Q162.38 1228.12 159.279 1231.33 Q156.177 1234.53 150.529 1240.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.0198 1152.87 Q61.4087 1152.87 59.58 1156.43 Q57.7745 1159.97 57.7745 1167.1 Q57.7745 1174.21 59.58 1177.77 Q61.4087 1181.32 65.0198 1181.32 Q68.6541 1181.32 70.4596 1177.77 Q72.2883 1174.21 72.2883 1167.1 Q72.2883 1159.97 70.4596 1156.43 Q68.6541 1152.87 65.0198 1152.87 M65.0198 1149.16 Q70.83 1149.16 73.8855 1153.77 Q76.9642 1158.35 76.9642 1167.1 Q76.9642 1175.83 73.8855 1180.44 Q70.83 1185.02 65.0198 1185.02 Q59.2097 1185.02 56.131 1180.44 Q53.0754 1175.83 53.0754 1167.1 Q53.0754 1158.35 56.131 1153.77 Q59.2097 1149.16 65.0198 1149.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.0336 1178.47 L86.9179 1178.47 L86.9179 1184.35 L82.0336 1184.35 L82.0336 1178.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.987 1152.87 Q98.3761 1152.87 96.5474 1156.43 Q94.7419 1159.97 94.7419 1167.1 Q94.7419 1174.21 96.5474 1177.77 Q98.3761 1181.32 101.987 1181.32 Q105.621 1181.32 107.427 1177.77 Q109.256 1174.21 109.256 1167.1 Q109.256 1159.97 107.427 1156.43 Q105.621 1152.87 101.987 1152.87 M101.987 1149.16 Q107.797 1149.16 110.853 1153.77 Q113.932 1158.35 113.932 1167.1 Q113.932 1175.83 110.853 1180.44 Q107.797 1185.02 101.987 1185.02 Q96.1771 1185.02 93.0984 1180.44 Q90.0428 1175.83 90.0428 1167.1 Q90.0428 1158.35 93.0984 1153.77 Q96.1771 1149.16 101.987 1149.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M123.029 1180.41 L139.348 1180.41 L139.348 1184.35 L117.404 1184.35 L117.404 1180.41 Q120.066 1177.66 124.649 1173.03 Q129.256 1168.38 130.436 1167.03 Q132.682 1164.51 133.561 1162.77 Q134.464 1161.02 134.464 1159.33 Q134.464 1156.57 132.519 1154.83 Q130.598 1153.1 127.496 1153.1 Q125.297 1153.1 122.844 1153.86 Q120.413 1154.63 117.635 1156.18 L117.635 1151.46 Q120.459 1150.32 122.913 1149.74 Q125.367 1149.16 127.404 1149.16 Q132.774 1149.16 135.969 1151.85 Q139.163 1154.53 139.163 1159.02 Q139.163 1161.15 138.353 1163.08 Q137.566 1164.97 135.459 1167.57 Q134.881 1168.24 131.779 1171.46 Q128.677 1174.65 123.029 1180.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M157.265 1153.86 L145.459 1172.31 L157.265 1172.31 L157.265 1153.86 M156.038 1149.79 L161.917 1149.79 L161.917 1172.31 L166.848 1172.31 L166.848 1176.2 L161.917 1176.2 L161.917 1184.35 L157.265 1184.35 L157.265 1176.2 L141.663 1176.2 L141.663 1171.69 L156.038 1149.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.3439 1092.99 Q61.7328 1092.99 59.9041 1096.55 Q58.0986 1100.1 58.0986 1107.22 Q58.0986 1114.33 59.9041 1117.9 Q61.7328 1121.44 65.3439 1121.44 Q68.9781 1121.44 70.7837 1117.9 Q72.6124 1114.33 72.6124 1107.22 Q72.6124 1100.1 70.7837 1096.55 Q68.9781 1092.99 65.3439 1092.99 M65.3439 1089.29 Q71.1541 1089.29 74.2096 1093.89 Q77.2883 1098.47 77.2883 1107.22 Q77.2883 1115.95 74.2096 1120.56 Q71.1541 1125.14 65.3439 1125.14 Q59.5337 1125.14 56.4551 1120.56 Q53.3995 1115.95 53.3995 1107.22 Q53.3995 1098.47 56.4551 1093.89 Q59.5337 1089.29 65.3439 1089.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.3577 1118.59 L87.2419 1118.59 L87.2419 1124.47 L82.3577 1124.47 L82.3577 1118.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M102.311 1092.99 Q98.7002 1092.99 96.8715 1096.55 Q95.066 1100.1 95.066 1107.22 Q95.066 1114.33 96.8715 1117.9 Q98.7002 1121.44 102.311 1121.44 Q105.946 1121.44 107.751 1117.9 Q109.58 1114.33 109.58 1107.22 Q109.58 1100.1 107.751 1096.55 Q105.946 1092.99 102.311 1092.99 M102.311 1089.29 Q108.121 1089.29 111.177 1093.89 Q114.256 1098.47 114.256 1107.22 Q114.256 1115.95 111.177 1120.56 Q108.121 1125.14 102.311 1125.14 Q96.5011 1125.14 93.4225 1120.56 Q90.3669 1115.95 90.3669 1107.22 Q90.3669 1098.47 93.4225 1093.89 Q96.5011 1089.29 102.311 1089.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M123.353 1120.54 L139.672 1120.54 L139.672 1124.47 L117.728 1124.47 L117.728 1120.54 Q120.39 1117.78 124.973 1113.15 Q129.58 1108.5 130.76 1107.16 Q133.006 1104.63 133.885 1102.9 Q134.788 1101.14 134.788 1099.45 Q134.788 1096.69 132.844 1094.96 Q130.922 1093.22 127.82 1093.22 Q125.621 1093.22 123.168 1093.98 Q120.737 1094.75 117.959 1096.3 L117.959 1091.58 Q120.783 1090.44 123.237 1089.86 Q125.691 1089.29 127.728 1089.29 Q133.098 1089.29 136.293 1091.97 Q139.487 1094.66 139.487 1099.15 Q139.487 1101.28 138.677 1103.2 Q137.89 1105.1 135.783 1107.69 Q135.205 1108.36 132.103 1111.58 Q129.001 1114.77 123.353 1120.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M155.32 1105.33 Q152.172 1105.33 150.32 1107.48 Q148.492 1109.63 148.492 1113.38 Q148.492 1117.11 150.32 1119.29 Q152.172 1121.44 155.32 1121.44 Q158.468 1121.44 160.297 1119.29 Q162.149 1117.11 162.149 1113.38 Q162.149 1109.63 160.297 1107.48 Q158.468 1105.33 155.32 1105.33 M164.603 1090.67 L164.603 1094.93 Q162.843 1094.1 161.038 1093.66 Q159.255 1093.22 157.496 1093.22 Q152.867 1093.22 150.413 1096.35 Q147.982 1099.47 147.635 1105.79 Q149.001 1103.78 151.061 1102.71 Q153.121 1101.62 155.598 1101.62 Q160.806 1101.62 163.816 1104.79 Q166.848 1107.94 166.848 1113.38 Q166.848 1118.71 163.7 1121.92 Q160.552 1125.14 155.32 1125.14 Q149.325 1125.14 146.154 1120.56 Q142.982 1115.95 142.982 1107.22 Q142.982 1099.03 146.871 1094.17 Q150.76 1089.29 157.311 1089.29 Q159.07 1089.29 160.853 1089.63 Q162.658 1089.98 164.603 1090.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.5985 1033.11 Q61.9874 1033.11 60.1587 1036.68 Q58.3532 1040.22 58.3532 1047.35 Q58.3532 1054.45 60.1587 1058.02 Q61.9874 1061.56 65.5985 1061.56 Q69.2328 1061.56 71.0383 1058.02 Q72.867 1054.45 72.867 1047.35 Q72.867 1040.22 71.0383 1036.68 Q69.2328 1033.11 65.5985 1033.11 M65.5985 1029.41 Q71.4087 1029.41 74.4642 1034.01 Q77.5429 1038.6 77.5429 1047.35 Q77.5429 1056.07 74.4642 1060.68 Q71.4087 1065.26 65.5985 1065.26 Q59.7884 1065.26 56.7097 1060.68 Q53.6541 1056.07 53.6541 1047.35 Q53.6541 1038.6 56.7097 1034.01 Q59.7884 1029.41 65.5985 1029.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.6123 1058.71 L87.4966 1058.71 L87.4966 1064.59 L82.6123 1064.59 L82.6123 1058.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M102.566 1033.11 Q98.9548 1033.11 97.1261 1036.68 Q95.3206 1040.22 95.3206 1047.35 Q95.3206 1054.45 97.1261 1058.02 Q98.9548 1061.56 102.566 1061.56 Q106.2 1061.56 108.006 1058.02 Q109.834 1054.45 109.834 1047.35 Q109.834 1040.22 108.006 1036.68 Q106.2 1033.11 102.566 1033.11 M102.566 1029.41 Q108.376 1029.41 111.432 1034.01 Q114.51 1038.6 114.51 1047.35 Q114.51 1056.07 111.432 1060.68 Q108.376 1065.26 102.566 1065.26 Q96.7558 1065.26 93.6771 1060.68 Q90.6215 1056.07 90.6215 1047.35 Q90.6215 1038.6 93.6771 1034.01 Q96.7558 1029.41 102.566 1029.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M123.607 1060.66 L139.927 1060.66 L139.927 1064.59 L117.983 1064.59 L117.983 1060.66 Q120.645 1057.9 125.228 1053.27 Q129.834 1048.62 131.015 1047.28 Q133.26 1044.75 134.14 1043.02 Q135.043 1041.26 135.043 1039.57 Q135.043 1036.81 133.098 1035.08 Q131.177 1033.34 128.075 1033.34 Q125.876 1033.34 123.422 1034.11 Q120.992 1034.87 118.214 1036.42 L118.214 1031.7 Q121.038 1030.56 123.492 1029.99 Q125.945 1029.41 127.982 1029.41 Q133.353 1029.41 136.547 1032.09 Q139.742 1034.78 139.742 1039.27 Q139.742 1041.4 138.931 1043.32 Q138.144 1045.22 136.038 1047.81 Q135.459 1048.48 132.357 1051.7 Q129.256 1054.89 123.607 1060.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.996 1048.18 Q151.663 1048.18 149.742 1049.96 Q147.843 1051.74 147.843 1054.87 Q147.843 1057.99 149.742 1059.78 Q151.663 1061.56 154.996 1061.56 Q158.33 1061.56 160.251 1059.78 Q162.172 1057.97 162.172 1054.87 Q162.172 1051.74 160.251 1049.96 Q158.353 1048.18 154.996 1048.18 M150.32 1046.19 Q147.311 1045.45 145.621 1043.39 Q143.955 1041.33 143.955 1038.37 Q143.955 1034.22 146.894 1031.81 Q149.857 1029.41 154.996 1029.41 Q160.158 1029.41 163.098 1031.81 Q166.038 1034.22 166.038 1038.37 Q166.038 1041.33 164.348 1043.39 Q162.681 1045.45 159.695 1046.19 Q163.075 1046.98 164.95 1049.27 Q166.848 1051.56 166.848 1054.87 Q166.848 1059.89 163.769 1062.58 Q160.714 1065.26 154.996 1065.26 Q149.279 1065.26 146.2 1062.58 Q143.144 1059.89 143.144 1054.87 Q143.144 1051.56 145.043 1049.27 Q146.941 1046.98 150.32 1046.19 M148.607 1038.8 Q148.607 1041.49 150.274 1042.99 Q151.964 1044.5 154.996 1044.5 Q158.005 1044.5 159.695 1042.99 Q161.408 1041.49 161.408 1038.8 Q161.408 1036.12 159.695 1034.62 Q158.005 1033.11 154.996 1033.11 Q151.964 1033.11 150.274 1034.62 Q148.607 1036.12 148.607 1038.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.5569 973.232 Q60.9458 973.232 59.1171 976.797 Q57.3115 980.338 57.3115 987.468 Q57.3115 994.575 59.1171 998.139 Q60.9458 1001.68 64.5569 1001.68 Q68.1911 1001.68 69.9967 998.139 Q71.8253 994.575 71.8253 987.468 Q71.8253 980.338 69.9967 976.797 Q68.1911 973.232 64.5569 973.232 M64.5569 969.528 Q70.367 969.528 73.4226 974.135 Q76.5012 978.718 76.5012 987.468 Q76.5012 996.195 73.4226 1000.8 Q70.367 1005.38 64.5569 1005.38 Q58.7467 1005.38 55.668 1000.8 Q52.6125 996.195 52.6125 987.468 Q52.6125 978.718 55.668 974.135 Q58.7467 969.528 64.5569 969.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.5707 998.834 L86.4549 998.834 L86.4549 1004.71 L81.5707 1004.71 L81.5707 998.834 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.524 973.232 Q97.9132 973.232 96.0845 976.797 Q94.2789 980.338 94.2789 987.468 Q94.2789 994.575 96.0845 998.139 Q97.9132 1001.68 101.524 1001.68 Q105.159 1001.68 106.964 998.139 Q108.793 994.575 108.793 987.468 Q108.793 980.338 106.964 976.797 Q105.159 973.232 101.524 973.232 M101.524 969.528 Q107.334 969.528 110.39 974.135 Q113.469 978.718 113.469 987.468 Q113.469 996.195 110.39 1000.8 Q107.334 1005.38 101.524 1005.38 Q95.7141 1005.38 92.6354 1000.8 Q89.5799 996.195 89.5799 987.468 Q89.5799 978.718 92.6354 974.135 Q95.7141 969.528 101.524 969.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M132.705 986.079 Q136.061 986.797 137.936 989.065 Q139.834 991.334 139.834 994.667 Q139.834 999.783 136.316 1002.58 Q132.797 1005.38 126.316 1005.38 Q124.14 1005.38 121.825 1004.94 Q119.533 1004.53 117.08 1003.67 L117.08 999.158 Q119.024 1000.29 121.339 1000.87 Q123.654 1001.45 126.177 1001.45 Q130.575 1001.45 132.867 999.713 Q135.181 997.977 135.181 994.667 Q135.181 991.612 133.029 989.899 Q130.899 988.163 127.08 988.163 L123.052 988.163 L123.052 984.32 L127.265 984.32 Q130.714 984.32 132.543 982.954 Q134.371 981.565 134.371 978.973 Q134.371 976.311 132.473 974.899 Q130.598 973.464 127.08 973.464 Q125.158 973.464 122.959 973.88 Q120.76 974.297 118.121 975.176 L118.121 971.01 Q120.783 970.269 123.098 969.899 Q125.436 969.528 127.496 969.528 Q132.82 969.528 135.922 971.959 Q139.024 974.366 139.024 978.487 Q139.024 981.357 137.381 983.348 Q135.737 985.315 132.705 986.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.904 973.232 Q151.293 973.232 149.464 976.797 Q147.658 980.338 147.658 987.468 Q147.658 994.575 149.464 998.139 Q151.293 1001.68 154.904 1001.68 Q158.538 1001.68 160.343 998.139 Q162.172 994.575 162.172 987.468 Q162.172 980.338 160.343 976.797 Q158.538 973.232 154.904 973.232 M154.904 969.528 Q160.714 969.528 163.769 974.135 Q166.848 978.718 166.848 987.468 Q166.848 996.195 163.769 1000.8 Q160.714 1005.38 154.904 1005.38 Q149.093 1005.38 146.015 1000.8 Q142.959 996.195 142.959 987.468 Q142.959 978.718 146.015 974.135 Q149.093 969.528 154.904 969.528 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M66.1541 913.354 Q62.543 913.354 60.7143 916.918 Q58.9088 920.46 58.9088 927.59 Q58.9088 934.696 60.7143 938.261 Q62.543 941.803 66.1541 941.803 Q69.7883 941.803 71.5939 938.261 Q73.4226 934.696 73.4226 927.59 Q73.4226 920.46 71.5939 916.918 Q69.7883 913.354 66.1541 913.354 M66.1541 909.65 Q71.9642 909.65 75.0198 914.256 Q78.0985 918.84 78.0985 927.59 Q78.0985 936.316 75.0198 940.923 Q71.9642 945.506 66.1541 945.506 Q60.3439 945.506 57.2652 940.923 Q54.2097 936.316 54.2097 927.59 Q54.2097 918.84 57.2652 914.256 Q60.3439 909.65 66.1541 909.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M83.1679 938.955 L88.0521 938.955 L88.0521 944.835 L83.1679 944.835 L83.1679 938.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M103.121 913.354 Q99.5104 913.354 97.6817 916.918 Q95.8761 920.46 95.8761 927.59 Q95.8761 934.696 97.6817 938.261 Q99.5104 941.803 103.121 941.803 Q106.756 941.803 108.561 938.261 Q110.39 934.696 110.39 927.59 Q110.39 920.46 108.561 916.918 Q106.756 913.354 103.121 913.354 M103.121 909.65 Q108.932 909.65 111.987 914.256 Q115.066 918.84 115.066 927.59 Q115.066 936.316 111.987 940.923 Q108.932 945.506 103.121 945.506 Q97.3113 945.506 94.2326 940.923 Q91.1771 936.316 91.1771 927.59 Q91.1771 918.84 94.2326 914.256 Q97.3113 909.65 103.121 909.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M134.302 926.201 Q137.658 926.918 139.533 929.187 Q141.431 931.455 141.431 934.789 Q141.431 939.904 137.913 942.705 Q134.394 945.506 127.913 945.506 Q125.737 945.506 123.422 945.066 Q121.131 944.65 118.677 943.793 L118.677 939.279 Q120.621 940.414 122.936 940.992 Q125.251 941.571 127.774 941.571 Q132.172 941.571 134.464 939.835 Q136.779 938.099 136.779 934.789 Q136.779 931.733 134.626 930.02 Q132.496 928.284 128.677 928.284 L124.649 928.284 L124.649 924.442 L128.862 924.442 Q132.311 924.442 134.14 923.076 Q135.969 921.687 135.969 919.094 Q135.969 916.432 134.07 915.02 Q132.195 913.585 128.677 913.585 Q126.756 913.585 124.557 914.002 Q122.357 914.418 119.719 915.298 L119.719 911.131 Q122.381 910.391 124.695 910.02 Q127.033 909.65 129.094 909.65 Q134.418 909.65 137.519 912.08 Q140.621 914.488 140.621 918.608 Q140.621 921.479 138.978 923.469 Q137.334 925.437 134.302 926.201 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M150.529 940.9 L166.848 940.9 L166.848 944.835 L144.904 944.835 L144.904 940.9 Q147.566 938.145 152.149 933.516 Q156.755 928.863 157.936 927.52 Q160.181 924.997 161.061 923.261 Q161.964 921.502 161.964 919.812 Q161.964 917.057 160.019 915.321 Q158.098 913.585 154.996 913.585 Q152.797 913.585 150.343 914.349 Q147.913 915.113 145.135 916.664 L145.135 911.942 Q147.959 910.807 150.413 910.229 Q152.867 909.65 154.904 909.65 Q160.274 909.65 163.468 912.335 Q166.663 915.02 166.663 919.511 Q166.663 921.641 165.853 923.562 Q165.066 925.46 162.959 928.053 Q162.38 928.724 159.279 931.942 Q156.177 935.136 150.529 940.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.0708 853.475 Q60.4597 853.475 58.631 857.04 Q56.8254 860.582 56.8254 867.711 Q56.8254 874.818 58.631 878.382 Q60.4597 881.924 64.0708 881.924 Q67.705 881.924 69.5105 878.382 Q71.3392 874.818 71.3392 867.711 Q71.3392 860.582 69.5105 857.04 Q67.705 853.475 64.0708 853.475 M64.0708 849.772 Q69.8809 849.772 72.9365 854.378 Q76.0151 858.961 76.0151 867.711 Q76.0151 876.438 72.9365 881.045 Q69.8809 885.628 64.0708 885.628 Q58.2606 885.628 55.1819 881.045 Q52.1264 876.438 52.1264 867.711 Q52.1264 858.961 55.1819 854.378 Q58.2606 849.772 64.0708 849.772 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.0846 879.077 L85.9688 879.077 L85.9688 884.957 L81.0846 884.957 L81.0846 879.077 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.038 853.475 Q97.4271 853.475 95.5984 857.04 Q93.7928 860.582 93.7928 867.711 Q93.7928 874.818 95.5984 878.382 Q97.4271 881.924 101.038 881.924 Q104.672 881.924 106.478 878.382 Q108.307 874.818 108.307 867.711 Q108.307 860.582 106.478 857.04 Q104.672 853.475 101.038 853.475 M101.038 849.772 Q106.848 849.772 109.904 854.378 Q112.983 858.961 112.983 867.711 Q112.983 876.438 109.904 881.045 Q106.848 885.628 101.038 885.628 Q95.228 885.628 92.1493 881.045 Q89.0938 876.438 89.0938 867.711 Q89.0938 858.961 92.1493 854.378 Q95.228 849.772 101.038 849.772 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M132.219 866.322 Q135.575 867.04 137.45 869.308 Q139.348 871.577 139.348 874.91 Q139.348 880.026 135.83 882.827 Q132.311 885.628 125.83 885.628 Q123.654 885.628 121.339 885.188 Q119.047 884.771 116.594 883.915 L116.594 879.401 Q118.538 880.535 120.853 881.114 Q123.168 881.693 125.691 881.693 Q130.089 881.693 132.381 879.957 Q134.695 878.22 134.695 874.91 Q134.695 871.855 132.543 870.142 Q130.413 868.406 126.594 868.406 L122.566 868.406 L122.566 864.563 L126.779 864.563 Q130.228 864.563 132.057 863.197 Q133.885 861.809 133.885 859.216 Q133.885 856.554 131.987 855.142 Q130.112 853.707 126.594 853.707 Q124.672 853.707 122.473 854.123 Q120.274 854.54 117.635 855.42 L117.635 851.253 Q120.297 850.512 122.612 850.142 Q124.95 849.772 127.01 849.772 Q132.334 849.772 135.436 852.202 Q138.538 854.609 138.538 858.73 Q138.538 861.6 136.894 863.591 Q135.251 865.558 132.219 866.322 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M157.265 854.471 L145.459 872.92 L157.265 872.92 L157.265 854.471 M156.038 850.397 L161.917 850.397 L161.917 872.92 L166.848 872.92 L166.848 876.808 L161.917 876.808 L161.917 884.957 L157.265 884.957 L157.265 876.808 L141.663 876.808 L141.663 872.295 L156.038 850.397 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.3948 793.597 Q60.7837 793.597 58.955 797.162 Q57.1495 800.703 57.1495 807.833 Q57.1495 814.939 58.955 818.504 Q60.7837 822.046 64.3948 822.046 Q68.0291 822.046 69.8346 818.504 Q71.6633 814.939 71.6633 807.833 Q71.6633 800.703 69.8346 797.162 Q68.0291 793.597 64.3948 793.597 M64.3948 789.893 Q70.205 789.893 73.2605 794.5 Q76.3392 799.083 76.3392 807.833 Q76.3392 816.56 73.2605 821.166 Q70.205 825.749 64.3948 825.749 Q58.5847 825.749 55.506 821.166 Q52.4505 816.56 52.4505 807.833 Q52.4505 799.083 55.506 794.5 Q58.5847 789.893 64.3948 789.893 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.4086 819.199 L86.2929 819.199 L86.2929 825.078 L81.4086 825.078 L81.4086 819.199 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.362 793.597 Q97.7511 793.597 95.9224 797.162 Q94.1169 800.703 94.1169 807.833 Q94.1169 814.939 95.9224 818.504 Q97.7511 822.046 101.362 822.046 Q104.996 822.046 106.802 818.504 Q108.631 814.939 108.631 807.833 Q108.631 800.703 106.802 797.162 Q104.996 793.597 101.362 793.597 M101.362 789.893 Q107.172 789.893 110.228 794.5 Q113.307 799.083 113.307 807.833 Q113.307 816.56 110.228 821.166 Q107.172 825.749 101.362 825.749 Q95.5521 825.749 92.4734 821.166 Q89.4178 816.56 89.4178 807.833 Q89.4178 799.083 92.4734 794.5 Q95.5521 789.893 101.362 789.893 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M132.543 806.444 Q135.899 807.162 137.774 809.43 Q139.672 811.699 139.672 815.032 Q139.672 820.148 136.154 822.949 Q132.635 825.749 126.154 825.749 Q123.978 825.749 121.663 825.31 Q119.371 824.893 116.918 824.036 L116.918 819.523 Q118.862 820.657 121.177 821.236 Q123.492 821.814 126.015 821.814 Q130.413 821.814 132.705 820.078 Q135.019 818.342 135.019 815.032 Q135.019 811.976 132.867 810.263 Q130.737 808.527 126.918 808.527 L122.89 808.527 L122.89 804.685 L127.103 804.685 Q130.552 804.685 132.381 803.319 Q134.209 801.93 134.209 799.338 Q134.209 796.676 132.311 795.263 Q130.436 793.828 126.918 793.828 Q124.996 793.828 122.797 794.245 Q120.598 794.662 117.959 795.541 L117.959 791.375 Q120.621 790.634 122.936 790.263 Q125.274 789.893 127.334 789.893 Q132.658 789.893 135.76 792.324 Q138.862 794.731 138.862 798.851 Q138.862 801.722 137.219 803.713 Q135.575 805.68 132.543 806.444 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M155.32 805.935 Q152.172 805.935 150.32 808.087 Q148.492 810.24 148.492 813.99 Q148.492 817.717 150.32 819.893 Q152.172 822.046 155.32 822.046 Q158.468 822.046 160.297 819.893 Q162.149 817.717 162.149 813.99 Q162.149 810.24 160.297 808.087 Q158.468 805.935 155.32 805.935 M164.603 791.282 L164.603 795.541 Q162.843 794.708 161.038 794.268 Q159.255 793.828 157.496 793.828 Q152.867 793.828 150.413 796.953 Q147.982 800.078 147.635 806.398 Q149.001 804.384 151.061 803.319 Q153.121 802.231 155.598 802.231 Q160.806 802.231 163.816 805.402 Q166.848 808.55 166.848 813.99 Q166.848 819.314 163.7 822.532 Q160.552 825.749 155.32 825.749 Q149.325 825.749 146.154 821.166 Q142.982 816.56 142.982 807.833 Q142.982 799.638 146.871 794.777 Q150.76 789.893 157.311 789.893 Q159.07 789.893 160.853 790.24 Q162.658 790.588 164.603 791.282 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.6495 733.718 Q61.0384 733.718 59.2097 737.283 Q57.4041 740.825 57.4041 747.954 Q57.4041 755.061 59.2097 758.626 Q61.0384 762.167 64.6495 762.167 Q68.2837 762.167 70.0892 758.626 Q71.9179 755.061 71.9179 747.954 Q71.9179 740.825 70.0892 737.283 Q68.2837 733.718 64.6495 733.718 M64.6495 730.015 Q70.4596 730.015 73.5152 734.621 Q76.5938 739.204 76.5938 747.954 Q76.5938 756.681 73.5152 761.288 Q70.4596 765.871 64.6495 765.871 Q58.8393 765.871 55.7606 761.288 Q52.7051 756.681 52.7051 747.954 Q52.7051 739.204 55.7606 734.621 Q58.8393 730.015 64.6495 730.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.6633 759.32 L86.5475 759.32 L86.5475 765.2 L81.6633 765.2 L81.6633 759.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.617 733.718 Q98.0058 733.718 96.1771 737.283 Q94.3715 740.825 94.3715 747.954 Q94.3715 755.061 96.1771 758.626 Q98.0058 762.167 101.617 762.167 Q105.251 762.167 107.057 758.626 Q108.885 755.061 108.885 747.954 Q108.885 740.825 107.057 737.283 Q105.251 733.718 101.617 733.718 M101.617 730.015 Q107.427 730.015 110.483 734.621 Q113.561 739.204 113.561 747.954 Q113.561 756.681 110.483 761.288 Q107.427 765.871 101.617 765.871 Q95.8067 765.871 92.728 761.288 Q89.6725 756.681 89.6725 747.954 Q89.6725 739.204 92.728 734.621 Q95.8067 730.015 101.617 730.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M132.797 746.566 Q136.154 747.283 138.029 749.552 Q139.927 751.82 139.927 755.153 Q139.927 760.269 136.408 763.07 Q132.89 765.871 126.408 765.871 Q124.232 765.871 121.918 765.431 Q119.626 765.015 117.172 764.158 L117.172 759.644 Q119.117 760.778 121.432 761.357 Q123.746 761.936 126.27 761.936 Q130.668 761.936 132.959 760.2 Q135.274 758.464 135.274 755.153 Q135.274 752.098 133.121 750.385 Q130.992 748.649 127.172 748.649 L123.145 748.649 L123.145 744.806 L127.357 744.806 Q130.807 744.806 132.635 743.441 Q134.464 742.052 134.464 739.459 Q134.464 736.797 132.566 735.385 Q130.691 733.95 127.172 733.95 Q125.251 733.95 123.052 734.367 Q120.853 734.783 118.214 735.663 L118.214 731.496 Q120.876 730.755 123.191 730.385 Q125.529 730.015 127.589 730.015 Q132.913 730.015 136.015 732.445 Q139.117 734.853 139.117 738.973 Q139.117 741.843 137.473 743.834 Q135.83 745.802 132.797 746.566 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.996 748.788 Q151.663 748.788 149.742 750.57 Q147.843 752.353 147.843 755.478 Q147.843 758.603 149.742 760.385 Q151.663 762.167 154.996 762.167 Q158.33 762.167 160.251 760.385 Q162.172 758.579 162.172 755.478 Q162.172 752.353 160.251 750.57 Q158.353 748.788 154.996 748.788 M150.32 746.797 Q147.311 746.056 145.621 743.996 Q143.955 741.936 143.955 738.973 Q143.955 734.83 146.894 732.422 Q149.857 730.015 154.996 730.015 Q160.158 730.015 163.098 732.422 Q166.038 734.83 166.038 738.973 Q166.038 741.936 164.348 743.996 Q162.681 746.056 159.695 746.797 Q163.075 747.584 164.95 749.876 Q166.848 752.167 166.848 755.478 Q166.848 760.501 163.769 763.186 Q160.714 765.871 154.996 765.871 Q149.279 765.871 146.2 763.186 Q143.144 760.501 143.144 755.478 Q143.144 752.167 145.043 749.876 Q146.941 747.584 150.32 746.797 M148.607 739.413 Q148.607 742.098 150.274 743.603 Q151.964 745.107 154.996 745.107 Q158.005 745.107 159.695 743.603 Q161.408 742.098 161.408 739.413 Q161.408 736.728 159.695 735.223 Q158.005 733.718 154.996 733.718 Q151.964 733.718 150.274 735.223 Q148.607 736.728 148.607 739.413 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M63.4226 673.84 Q59.8115 673.84 57.9828 677.405 Q56.1773 680.946 56.1773 688.076 Q56.1773 695.182 57.9828 698.747 Q59.8115 702.289 63.4226 702.289 Q67.0569 702.289 68.8624 698.747 Q70.6911 695.182 70.6911 688.076 Q70.6911 680.946 68.8624 677.405 Q67.0569 673.84 63.4226 673.84 M63.4226 670.136 Q69.2328 670.136 72.2883 674.743 Q75.367 679.326 75.367 688.076 Q75.367 696.803 72.2883 701.409 Q69.2328 705.993 63.4226 705.993 Q57.6125 705.993 54.5338 701.409 Q51.4782 696.803 51.4782 688.076 Q51.4782 679.326 54.5338 674.743 Q57.6125 670.136 63.4226 670.136 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M80.4364 699.442 L85.3206 699.442 L85.3206 705.321 L80.4364 705.321 L80.4364 699.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M100.39 673.84 Q96.7789 673.84 94.9502 677.405 Q93.1447 680.946 93.1447 688.076 Q93.1447 695.182 94.9502 698.747 Q96.7789 702.289 100.39 702.289 Q104.024 702.289 105.83 698.747 Q107.658 695.182 107.658 688.076 Q107.658 680.946 105.83 677.405 Q104.024 673.84 100.39 673.84 M100.39 670.136 Q106.2 670.136 109.256 674.743 Q112.334 679.326 112.334 688.076 Q112.334 696.803 109.256 701.409 Q106.2 705.993 100.39 705.993 Q94.5799 705.993 91.5012 701.409 Q88.4456 696.803 88.4456 688.076 Q88.4456 679.326 91.5012 674.743 Q94.5799 670.136 100.39 670.136 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M130.251 674.835 L118.445 693.284 L130.251 693.284 L130.251 674.835 M129.024 670.761 L134.904 670.761 L134.904 693.284 L139.834 693.284 L139.834 697.173 L134.904 697.173 L134.904 705.321 L130.251 705.321 L130.251 697.173 L114.649 697.173 L114.649 692.659 L129.024 670.761 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.904 673.84 Q151.293 673.84 149.464 677.405 Q147.658 680.946 147.658 688.076 Q147.658 695.182 149.464 698.747 Q151.293 702.289 154.904 702.289 Q158.538 702.289 160.343 698.747 Q162.172 695.182 162.172 688.076 Q162.172 680.946 160.343 677.405 Q158.538 673.84 154.904 673.84 M154.904 670.136 Q160.714 670.136 163.769 674.743 Q166.848 679.326 166.848 688.076 Q166.848 696.803 163.769 701.409 Q160.714 705.993 154.904 705.993 Q149.093 705.993 146.015 701.409 Q142.959 696.803 142.959 688.076 Q142.959 679.326 146.015 674.743 Q149.093 670.136 154.904 670.136 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M65.0198 613.962 Q61.4087 613.962 59.58 617.526 Q57.7745 621.068 57.7745 628.198 Q57.7745 635.304 59.58 638.869 Q61.4087 642.411 65.0198 642.411 Q68.6541 642.411 70.4596 638.869 Q72.2883 635.304 72.2883 628.198 Q72.2883 621.068 70.4596 617.526 Q68.6541 613.962 65.0198 613.962 M65.0198 610.258 Q70.83 610.258 73.8855 614.864 Q76.9642 619.448 76.9642 628.198 Q76.9642 636.924 73.8855 641.531 Q70.83 646.114 65.0198 646.114 Q59.2097 646.114 56.131 641.531 Q53.0754 636.924 53.0754 628.198 Q53.0754 619.448 56.131 614.864 Q59.2097 610.258 65.0198 610.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.0336 639.563 L86.9179 639.563 L86.9179 645.443 L82.0336 645.443 L82.0336 639.563 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.987 613.962 Q98.3761 613.962 96.5474 617.526 Q94.7419 621.068 94.7419 628.198 Q94.7419 635.304 96.5474 638.869 Q98.3761 642.411 101.987 642.411 Q105.621 642.411 107.427 638.869 Q109.256 635.304 109.256 628.198 Q109.256 621.068 107.427 617.526 Q105.621 613.962 101.987 613.962 M101.987 610.258 Q107.797 610.258 110.853 614.864 Q113.932 619.448 113.932 628.198 Q113.932 636.924 110.853 641.531 Q107.797 646.114 101.987 646.114 Q96.1771 646.114 93.0984 641.531 Q90.0428 636.924 90.0428 628.198 Q90.0428 619.448 93.0984 614.864 Q96.1771 610.258 101.987 610.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M131.848 614.957 L120.043 633.406 L131.848 633.406 L131.848 614.957 M130.621 610.883 L136.501 610.883 L136.501 633.406 L141.431 633.406 L141.431 637.295 L136.501 637.295 L136.501 645.443 L131.848 645.443 L131.848 637.295 L116.246 637.295 L116.246 632.781 L130.621 610.883 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M150.529 641.508 L166.848 641.508 L166.848 645.443 L144.904 645.443 L144.904 641.508 Q147.566 638.753 152.149 634.124 Q156.755 629.471 157.936 628.128 Q160.181 625.605 161.061 623.869 Q161.964 622.11 161.964 620.42 Q161.964 617.665 160.019 615.929 Q158.098 614.193 154.996 614.193 Q152.797 614.193 150.343 614.957 Q147.913 615.721 145.135 617.272 L145.135 612.55 Q147.959 611.415 150.413 610.837 Q152.867 610.258 154.904 610.258 Q160.274 610.258 163.468 612.943 Q166.663 615.628 166.663 620.119 Q166.663 622.249 165.853 624.17 Q165.066 626.068 162.959 628.661 Q162.38 629.332 159.279 632.549 Q156.177 635.744 150.529 641.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M62.9365 554.083 Q59.3254 554.083 57.4967 557.648 Q55.6912 561.19 55.6912 568.319 Q55.6912 575.426 57.4967 578.99 Q59.3254 582.532 62.9365 582.532 Q66.5707 582.532 68.3763 578.99 Q70.205 575.426 70.205 568.319 Q70.205 561.19 68.3763 557.648 Q66.5707 554.083 62.9365 554.083 M62.9365 550.379 Q68.7467 550.379 71.8022 554.986 Q74.8809 559.569 74.8809 568.319 Q74.8809 577.046 71.8022 581.652 Q68.7467 586.236 62.9365 586.236 Q57.1264 586.236 54.0477 581.652 Q50.9921 577.046 50.9921 568.319 Q50.9921 559.569 54.0477 554.986 Q57.1264 550.379 62.9365 550.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M79.9503 579.685 L84.8345 579.685 L84.8345 585.564 L79.9503 585.564 L79.9503 579.685 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M99.9039 554.083 Q96.2928 554.083 94.4641 557.648 Q92.6586 561.19 92.6586 568.319 Q92.6586 575.426 94.4641 578.99 Q96.2928 582.532 99.9039 582.532 Q103.538 582.532 105.344 578.99 Q107.172 575.426 107.172 568.319 Q107.172 561.19 105.344 557.648 Q103.538 554.083 99.9039 554.083 M99.9039 550.379 Q105.714 550.379 108.77 554.986 Q111.848 559.569 111.848 568.319 Q111.848 577.046 108.77 581.652 Q105.714 586.236 99.9039 586.236 Q94.0937 586.236 91.0151 581.652 Q87.9595 577.046 87.9595 568.319 Q87.9595 559.569 91.0151 554.986 Q94.0937 550.379 99.9039 550.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M129.765 555.079 L117.959 573.528 L129.765 573.528 L129.765 555.079 M128.538 551.004 L134.418 551.004 L134.418 573.528 L139.348 573.528 L139.348 577.416 L134.418 577.416 L134.418 585.564 L129.765 585.564 L129.765 577.416 L114.163 577.416 L114.163 572.903 L128.538 551.004 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M157.265 555.079 L145.459 573.528 L157.265 573.528 L157.265 555.079 M156.038 551.004 L161.917 551.004 L161.917 573.528 L166.848 573.528 L166.848 577.416 L161.917 577.416 L161.917 585.564 L157.265 585.564 L157.265 577.416 L141.663 577.416 L141.663 572.903 L156.038 551.004 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M63.2606 494.205 Q59.6495 494.205 57.8208 497.77 Q56.0152 501.311 56.0152 508.441 Q56.0152 515.547 57.8208 519.112 Q59.6495 522.654 63.2606 522.654 Q66.8948 522.654 68.7004 519.112 Q70.5291 515.547 70.5291 508.441 Q70.5291 501.311 68.7004 497.77 Q66.8948 494.205 63.2606 494.205 M63.2606 490.501 Q69.0707 490.501 72.1263 495.108 Q75.205 499.691 75.205 508.441 Q75.205 517.168 72.1263 521.774 Q69.0707 526.357 63.2606 526.357 Q57.4504 526.357 54.3717 521.774 Q51.3162 517.168 51.3162 508.441 Q51.3162 499.691 54.3717 495.108 Q57.4504 490.501 63.2606 490.501 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M80.2744 519.806 L85.1586 519.806 L85.1586 525.686 L80.2744 525.686 L80.2744 519.806 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M100.228 494.205 Q96.6169 494.205 94.7882 497.77 Q92.9826 501.311 92.9826 508.441 Q92.9826 515.547 94.7882 519.112 Q96.6169 522.654 100.228 522.654 Q103.862 522.654 105.668 519.112 Q107.496 515.547 107.496 508.441 Q107.496 501.311 105.668 497.77 Q103.862 494.205 100.228 494.205 M100.228 490.501 Q106.038 490.501 109.094 495.108 Q112.172 499.691 112.172 508.441 Q112.172 517.168 109.094 521.774 Q106.038 526.357 100.228 526.357 Q94.4178 526.357 91.3391 521.774 Q88.2836 517.168 88.2836 508.441 Q88.2836 499.691 91.3391 495.108 Q94.4178 490.501 100.228 490.501 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M130.089 495.2 L118.283 513.649 L130.089 513.649 L130.089 495.2 M128.862 491.126 L134.742 491.126 L134.742 513.649 L139.672 513.649 L139.672 517.538 L134.742 517.538 L134.742 525.686 L130.089 525.686 L130.089 517.538 L114.487 517.538 L114.487 513.024 L128.862 491.126 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M155.32 506.543 Q152.172 506.543 150.32 508.695 Q148.492 510.848 148.492 514.598 Q148.492 518.325 150.32 520.501 Q152.172 522.654 155.32 522.654 Q158.468 522.654 160.297 520.501 Q162.149 518.325 162.149 514.598 Q162.149 510.848 160.297 508.695 Q158.468 506.543 155.32 506.543 M164.603 491.89 L164.603 496.149 Q162.843 495.316 161.038 494.876 Q159.255 494.436 157.496 494.436 Q152.867 494.436 150.413 497.561 Q147.982 500.686 147.635 507.006 Q149.001 504.992 151.061 503.927 Q153.121 502.839 155.598 502.839 Q160.806 502.839 163.816 506.01 Q166.848 509.158 166.848 514.598 Q166.848 519.922 163.7 523.14 Q160.552 526.357 155.32 526.357 Q149.325 526.357 146.154 521.774 Q142.982 517.168 142.982 508.441 Q142.982 500.246 146.871 495.385 Q150.76 490.501 157.311 490.501 Q159.07 490.501 160.853 490.848 Q162.658 491.196 164.603 491.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M63.5152 434.326 Q59.9041 434.326 58.0754 437.891 Q56.2699 441.433 56.2699 448.562 Q56.2699 455.669 58.0754 459.234 Q59.9041 462.775 63.5152 462.775 Q67.1494 462.775 68.955 459.234 Q70.7837 455.669 70.7837 448.562 Q70.7837 441.433 68.955 437.891 Q67.1494 434.326 63.5152 434.326 M63.5152 430.623 Q69.3254 430.623 72.3809 435.229 Q75.4596 439.812 75.4596 448.562 Q75.4596 457.289 72.3809 461.896 Q69.3254 466.479 63.5152 466.479 Q57.7051 466.479 54.6264 461.896 Q51.5708 457.289 51.5708 448.562 Q51.5708 439.812 54.6264 435.229 Q57.7051 430.623 63.5152 430.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M80.529 459.928 L85.4132 459.928 L85.4132 465.808 L80.529 465.808 L80.529 459.928 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M100.483 434.326 Q96.8715 434.326 95.0428 437.891 Q93.2373 441.433 93.2373 448.562 Q93.2373 455.669 95.0428 459.234 Q96.8715 462.775 100.483 462.775 Q104.117 462.775 105.922 459.234 Q107.751 455.669 107.751 448.562 Q107.751 441.433 105.922 437.891 Q104.117 434.326 100.483 434.326 M100.483 430.623 Q106.293 430.623 109.348 435.229 Q112.427 439.812 112.427 448.562 Q112.427 457.289 109.348 461.896 Q106.293 466.479 100.483 466.479 Q94.6724 466.479 91.5938 461.896 Q88.5382 457.289 88.5382 448.562 Q88.5382 439.812 91.5938 435.229 Q94.6724 430.623 100.483 430.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M130.344 435.322 L118.538 453.771 L130.344 453.771 L130.344 435.322 M129.117 431.248 L134.996 431.248 L134.996 453.771 L139.927 453.771 L139.927 457.66 L134.996 457.66 L134.996 465.808 L130.344 465.808 L130.344 457.66 L114.742 457.66 L114.742 453.146 L129.117 431.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.996 449.396 Q151.663 449.396 149.742 451.178 Q147.843 452.961 147.843 456.085 Q147.843 459.21 149.742 460.993 Q151.663 462.775 154.996 462.775 Q158.33 462.775 160.251 460.993 Q162.172 459.187 162.172 456.085 Q162.172 452.961 160.251 451.178 Q158.353 449.396 154.996 449.396 M150.32 447.405 Q147.311 446.664 145.621 444.604 Q143.955 442.544 143.955 439.581 Q143.955 435.437 146.894 433.03 Q149.857 430.623 154.996 430.623 Q160.158 430.623 163.098 433.03 Q166.038 435.437 166.038 439.581 Q166.038 442.544 164.348 444.604 Q162.681 446.664 159.695 447.405 Q163.075 448.192 164.95 450.484 Q166.848 452.775 166.848 456.085 Q166.848 461.109 163.769 463.794 Q160.714 466.479 154.996 466.479 Q149.279 466.479 146.2 463.794 Q143.144 461.109 143.144 456.085 Q143.144 452.775 145.043 450.484 Q146.941 448.192 150.32 447.405 M148.607 440.021 Q148.607 442.706 150.274 444.211 Q151.964 445.715 154.996 445.715 Q158.005 445.715 159.695 444.211 Q161.408 442.706 161.408 440.021 Q161.408 437.336 159.695 435.831 Q158.005 434.326 154.996 434.326 Q151.964 434.326 150.274 435.831 Q148.607 437.336 148.607 440.021 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.9041 374.448 Q61.293 374.448 59.4643 378.013 Q57.6588 381.554 57.6588 388.684 Q57.6588 395.79 59.4643 399.355 Q61.293 402.897 64.9041 402.897 Q68.5383 402.897 70.3439 399.355 Q72.1726 395.79 72.1726 388.684 Q72.1726 381.554 70.3439 378.013 Q68.5383 374.448 64.9041 374.448 M64.9041 370.744 Q70.7142 370.744 73.7698 375.351 Q76.8485 379.934 76.8485 388.684 Q76.8485 397.411 73.7698 402.017 Q70.7142 406.601 64.9041 406.601 Q59.0939 406.601 56.0152 402.017 Q52.9597 397.411 52.9597 388.684 Q52.9597 379.934 56.0152 375.351 Q59.0939 370.744 64.9041 370.744 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.9179 400.05 L86.8021 400.05 L86.8021 405.929 L81.9179 405.929 L81.9179 400.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.871 374.448 Q98.2604 374.448 96.4317 378.013 Q94.6262 381.554 94.6262 388.684 Q94.6262 395.79 96.4317 399.355 Q98.2604 402.897 101.871 402.897 Q105.506 402.897 107.311 399.355 Q109.14 395.79 109.14 388.684 Q109.14 381.554 107.311 378.013 Q105.506 374.448 101.871 374.448 M101.871 370.744 Q107.682 370.744 110.737 375.351 Q113.816 379.934 113.816 388.684 Q113.816 397.411 110.737 402.017 Q107.682 406.601 101.871 406.601 Q96.0613 406.601 92.9826 402.017 Q89.9271 397.411 89.9271 388.684 Q89.9271 379.934 92.9826 375.351 Q96.0613 370.744 101.871 370.744 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M118.932 371.369 L137.288 371.369 L137.288 375.304 L123.214 375.304 L123.214 383.777 Q124.232 383.429 125.251 383.267 Q126.27 383.082 127.288 383.082 Q133.075 383.082 136.455 386.253 Q139.834 389.425 139.834 394.841 Q139.834 400.42 136.362 403.522 Q132.89 406.601 126.57 406.601 Q124.395 406.601 122.126 406.23 Q119.881 405.86 117.473 405.119 L117.473 400.42 Q119.557 401.554 121.779 402.11 Q124.001 402.665 126.478 402.665 Q130.482 402.665 132.82 400.559 Q135.158 398.452 135.158 394.841 Q135.158 391.23 132.82 389.124 Q130.482 387.017 126.478 387.017 Q124.603 387.017 122.728 387.434 Q120.876 387.851 118.932 388.73 L118.932 371.369 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.904 374.448 Q151.293 374.448 149.464 378.013 Q147.658 381.554 147.658 388.684 Q147.658 395.79 149.464 399.355 Q151.293 402.897 154.904 402.897 Q158.538 402.897 160.343 399.355 Q162.172 395.79 162.172 388.684 Q162.172 381.554 160.343 378.013 Q158.538 374.448 154.904 374.448 M154.904 370.744 Q160.714 370.744 163.769 375.351 Q166.848 379.934 166.848 388.684 Q166.848 397.411 163.769 402.017 Q160.714 406.601 154.904 406.601 Q149.093 406.601 146.015 402.017 Q142.959 397.411 142.959 388.684 Q142.959 379.934 146.015 375.351 Q149.093 370.744 154.904 370.744 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M66.5013 314.57 Q62.8902 314.57 61.0615 318.134 Q59.256 321.676 59.256 328.806 Q59.256 335.912 61.0615 339.477 Q62.8902 343.018 66.5013 343.018 Q70.1355 343.018 71.9411 339.477 Q73.7698 335.912 73.7698 328.806 Q73.7698 321.676 71.9411 318.134 Q70.1355 314.57 66.5013 314.57 M66.5013 310.866 Q72.3115 310.866 75.367 315.472 Q78.4457 320.056 78.4457 328.806 Q78.4457 337.532 75.367 342.139 Q72.3115 346.722 66.5013 346.722 Q60.6911 346.722 57.6125 342.139 Q54.5569 337.532 54.5569 328.806 Q54.5569 320.056 57.6125 315.472 Q60.6911 310.866 66.5013 310.866 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M83.5151 340.171 L88.3993 340.171 L88.3993 346.051 L83.5151 346.051 L83.5151 340.171 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M103.469 314.57 Q99.8576 314.57 98.0289 318.134 Q96.2234 321.676 96.2234 328.806 Q96.2234 335.912 98.0289 339.477 Q99.8576 343.018 103.469 343.018 Q107.103 343.018 108.908 339.477 Q110.737 335.912 110.737 328.806 Q110.737 321.676 108.908 318.134 Q107.103 314.57 103.469 314.57 M103.469 310.866 Q109.279 310.866 112.334 315.472 Q115.413 320.056 115.413 328.806 Q115.413 337.532 112.334 342.139 Q109.279 346.722 103.469 346.722 Q97.6585 346.722 94.5799 342.139 Q91.5243 337.532 91.5243 328.806 Q91.5243 320.056 94.5799 315.472 Q97.6585 310.866 103.469 310.866 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M120.529 311.491 L138.885 311.491 L138.885 315.426 L124.811 315.426 L124.811 323.898 Q125.83 323.551 126.848 323.389 Q127.867 323.204 128.885 323.204 Q134.672 323.204 138.052 326.375 Q141.431 329.546 141.431 334.963 Q141.431 340.542 137.959 343.643 Q134.487 346.722 128.168 346.722 Q125.992 346.722 123.723 346.352 Q121.478 345.981 119.07 345.241 L119.07 340.542 Q121.154 341.676 123.376 342.231 Q125.598 342.787 128.075 342.787 Q132.08 342.787 134.418 340.68 Q136.756 338.574 136.756 334.963 Q136.756 331.352 134.418 329.245 Q132.08 327.139 128.075 327.139 Q126.2 327.139 124.325 327.556 Q122.473 327.972 120.529 328.852 L120.529 311.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M150.529 342.116 L166.848 342.116 L166.848 346.051 L144.904 346.051 L144.904 342.116 Q147.566 339.361 152.149 334.731 Q156.755 330.079 157.936 328.736 Q160.181 326.213 161.061 324.477 Q161.964 322.718 161.964 321.028 Q161.964 318.273 160.019 316.537 Q158.098 314.801 154.996 314.801 Q152.797 314.801 150.343 315.565 Q147.913 316.329 145.135 317.88 L145.135 313.157 Q147.959 312.023 150.413 311.445 Q152.867 310.866 154.904 310.866 Q160.274 310.866 163.468 313.551 Q166.663 316.236 166.663 320.727 Q166.663 322.857 165.853 324.778 Q165.066 326.676 162.959 329.269 Q162.38 329.94 159.279 333.157 Q156.177 336.352 150.529 342.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.418 254.691 Q60.8069 254.691 58.9782 258.256 Q57.1726 261.798 57.1726 268.927 Q57.1726 276.034 58.9782 279.598 Q60.8069 283.14 64.418 283.14 Q68.0522 283.14 69.8578 279.598 Q71.6865 276.034 71.6865 268.927 Q71.6865 261.798 69.8578 258.256 Q68.0522 254.691 64.418 254.691 M64.418 250.987 Q70.2281 250.987 73.2837 255.594 Q76.3624 260.177 76.3624 268.927 Q76.3624 277.654 73.2837 282.26 Q70.2281 286.844 64.418 286.844 Q58.6078 286.844 55.5291 282.26 Q52.4736 277.654 52.4736 268.927 Q52.4736 260.177 55.5291 255.594 Q58.6078 250.987 64.418 250.987 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.4318 280.293 L86.316 280.293 L86.316 286.172 L81.4318 286.172 L81.4318 280.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.385 254.691 Q97.7743 254.691 95.9456 258.256 Q94.14 261.798 94.14 268.927 Q94.14 276.034 95.9456 279.598 Q97.7743 283.14 101.385 283.14 Q105.02 283.14 106.825 279.598 Q108.654 276.034 108.654 268.927 Q108.654 261.798 106.825 258.256 Q105.02 254.691 101.385 254.691 M101.385 250.987 Q107.196 250.987 110.251 255.594 Q113.33 260.177 113.33 268.927 Q113.33 277.654 110.251 282.26 Q107.196 286.844 101.385 286.844 Q95.5752 286.844 92.4965 282.26 Q89.441 277.654 89.441 268.927 Q89.441 260.177 92.4965 255.594 Q95.5752 250.987 101.385 250.987 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M118.445 251.612 L136.802 251.612 L136.802 255.548 L122.728 255.548 L122.728 264.02 Q123.746 263.673 124.765 263.511 Q125.783 263.325 126.802 263.325 Q132.589 263.325 135.969 266.497 Q139.348 269.668 139.348 275.085 Q139.348 280.663 135.876 283.765 Q132.404 286.844 126.084 286.844 Q123.908 286.844 121.64 286.473 Q119.395 286.103 116.987 285.362 L116.987 280.663 Q119.07 281.797 121.293 282.353 Q123.515 282.909 125.992 282.909 Q129.996 282.909 132.334 280.802 Q134.672 278.696 134.672 275.085 Q134.672 271.473 132.334 269.367 Q129.996 267.26 125.992 267.26 Q124.117 267.26 122.242 267.677 Q120.39 268.094 118.445 268.973 L118.445 251.612 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M157.265 255.686 L145.459 274.135 L157.265 274.135 L157.265 255.686 M156.038 251.612 L161.917 251.612 L161.917 274.135 L166.848 274.135 L166.848 278.024 L161.917 278.024 L161.917 286.172 L157.265 286.172 L157.265 278.024 L141.663 278.024 L141.663 273.51 L156.038 251.612 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.7421 194.813 Q61.131 194.813 59.3023 198.377 Q57.4967 201.919 57.4967 209.049 Q57.4967 216.155 59.3023 219.72 Q61.131 223.262 64.7421 223.262 Q68.3763 223.262 70.1818 219.72 Q72.0105 216.155 72.0105 209.049 Q72.0105 201.919 70.1818 198.377 Q68.3763 194.813 64.7421 194.813 M64.7421 191.109 Q70.5522 191.109 73.6077 195.715 Q76.6864 200.299 76.6864 209.049 Q76.6864 217.776 73.6077 222.382 Q70.5522 226.965 64.7421 226.965 Q58.9319 226.965 55.8532 222.382 Q52.7977 217.776 52.7977 209.049 Q52.7977 200.299 55.8532 195.715 Q58.9319 191.109 64.7421 191.109 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M81.7559 220.414 L86.6401 220.414 L86.6401 226.294 L81.7559 226.294 L81.7559 220.414 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.709 194.813 Q98.0984 194.813 96.2697 198.377 Q94.4641 201.919 94.4641 209.049 Q94.4641 216.155 96.2697 219.72 Q98.0984 223.262 101.709 223.262 Q105.344 223.262 107.149 219.72 Q108.978 216.155 108.978 209.049 Q108.978 201.919 107.149 198.377 Q105.344 194.813 101.709 194.813 M101.709 191.109 Q107.52 191.109 110.575 195.715 Q113.654 200.299 113.654 209.049 Q113.654 217.776 110.575 222.382 Q107.52 226.965 101.709 226.965 Q95.8993 226.965 92.8206 222.382 Q89.7651 217.776 89.7651 209.049 Q89.7651 200.299 92.8206 195.715 Q95.8993 191.109 101.709 191.109 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M118.77 191.734 L137.126 191.734 L137.126 195.669 L123.052 195.669 L123.052 204.141 Q124.07 203.794 125.089 203.632 Q126.107 203.447 127.126 203.447 Q132.913 203.447 136.293 206.618 Q139.672 209.789 139.672 215.206 Q139.672 220.785 136.2 223.887 Q132.728 226.965 126.408 226.965 Q124.232 226.965 121.964 226.595 Q119.719 226.225 117.311 225.484 L117.311 220.785 Q119.395 221.919 121.617 222.475 Q123.839 223.03 126.316 223.03 Q130.32 223.03 132.658 220.924 Q134.996 218.817 134.996 215.206 Q134.996 211.595 132.658 209.489 Q130.32 207.382 126.316 207.382 Q124.441 207.382 122.566 207.799 Q120.714 208.215 118.77 209.095 L118.77 191.734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M155.32 207.151 Q152.172 207.151 150.32 209.303 Q148.492 211.456 148.492 215.206 Q148.492 218.933 150.32 221.109 Q152.172 223.262 155.32 223.262 Q158.468 223.262 160.297 221.109 Q162.149 218.933 162.149 215.206 Q162.149 211.456 160.297 209.303 Q158.468 207.151 155.32 207.151 M164.603 192.498 L164.603 196.757 Q162.843 195.924 161.038 195.484 Q159.255 195.044 157.496 195.044 Q152.867 195.044 150.413 198.169 Q147.982 201.294 147.635 207.614 Q149.001 205.6 151.061 204.535 Q153.121 203.447 155.598 203.447 Q160.806 203.447 163.816 206.618 Q166.848 209.766 166.848 215.206 Q166.848 220.53 163.7 223.748 Q160.552 226.965 155.32 226.965 Q149.325 226.965 146.154 222.382 Q142.982 217.776 142.982 209.049 Q142.982 200.854 146.871 195.993 Q150.76 191.109 157.311 191.109 Q159.07 191.109 160.853 191.456 Q162.658 191.803 164.603 192.498 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M64.9967 134.934 Q61.3856 134.934 59.5569 138.499 Q57.7513 142.041 57.7513 149.17 Q57.7513 156.277 59.5569 159.842 Q61.3856 163.383 64.9967 163.383 Q68.6309 163.383 70.4365 159.842 Q72.2652 156.277 72.2652 149.17 Q72.2652 142.041 70.4365 138.499 Q68.6309 134.934 64.9967 134.934 M64.9967 131.231 Q70.8068 131.231 73.8624 135.837 Q76.9411 140.42 76.9411 149.17 Q76.9411 157.897 73.8624 162.504 Q70.8068 167.087 64.9967 167.087 Q59.1865 167.087 56.1078 162.504 Q53.0523 157.897 53.0523 149.17 Q53.0523 140.42 56.1078 135.837 Q59.1865 131.231 64.9967 131.231 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M82.0105 160.536 L86.8947 160.536 L86.8947 166.416 L82.0105 166.416 L82.0105 160.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M101.964 134.934 Q98.353 134.934 96.5243 138.499 Q94.7187 142.041 94.7187 149.17 Q94.7187 156.277 96.5243 159.842 Q98.353 163.383 101.964 163.383 Q105.598 163.383 107.404 159.842 Q109.233 156.277 109.233 149.17 Q109.233 142.041 107.404 138.499 Q105.598 134.934 101.964 134.934 M101.964 131.231 Q107.774 131.231 110.83 135.837 Q113.908 140.42 113.908 149.17 Q113.908 157.897 110.83 162.504 Q107.774 167.087 101.964 167.087 Q96.1539 167.087 93.0752 162.504 Q90.0197 157.897 90.0197 149.17 Q90.0197 140.42 93.0752 135.837 Q96.1539 131.231 101.964 131.231 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M119.024 131.856 L137.381 131.856 L137.381 135.791 L123.307 135.791 L123.307 144.263 Q124.325 143.916 125.344 143.754 Q126.362 143.568 127.381 143.568 Q133.168 143.568 136.547 146.74 Q139.927 149.911 139.927 155.328 Q139.927 160.906 136.455 164.008 Q132.982 167.087 126.663 167.087 Q124.487 167.087 122.219 166.717 Q119.973 166.346 117.566 165.605 L117.566 160.906 Q119.649 162.041 121.871 162.596 Q124.094 163.152 126.57 163.152 Q130.575 163.152 132.913 161.045 Q135.251 158.939 135.251 155.328 Q135.251 151.717 132.913 149.61 Q130.575 147.504 126.57 147.504 Q124.695 147.504 122.82 147.92 Q120.969 148.337 119.024 149.217 L119.024 131.856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.996 150.004 Q151.663 150.004 149.742 151.786 Q147.843 153.568 147.843 156.693 Q147.843 159.818 149.742 161.601 Q151.663 163.383 154.996 163.383 Q158.33 163.383 160.251 161.601 Q162.172 159.795 162.172 156.693 Q162.172 153.568 160.251 151.786 Q158.353 150.004 154.996 150.004 M150.32 148.013 Q147.311 147.272 145.621 145.212 Q143.955 143.152 143.955 140.189 Q143.955 136.045 146.894 133.638 Q149.857 131.231 154.996 131.231 Q160.158 131.231 163.098 133.638 Q166.038 136.045 166.038 140.189 Q166.038 143.152 164.348 145.212 Q162.681 147.272 159.695 148.013 Q163.075 148.8 164.95 151.092 Q166.848 153.383 166.848 156.693 Q166.848 161.717 163.769 164.402 Q160.714 167.087 154.996 167.087 Q149.279 167.087 146.2 164.402 Q143.144 161.717 143.144 156.693 Q143.144 153.383 145.043 151.092 Q146.941 148.8 150.32 148.013 M148.607 140.629 Q148.607 143.314 150.274 144.818 Q151.964 146.323 154.996 146.323 Q158.005 146.323 159.695 144.818 Q161.408 143.314 161.408 140.629 Q161.408 137.944 159.695 136.439 Q158.005 134.934 154.996 134.934 Q151.964 134.934 150.274 136.439 Q148.607 137.944 148.607 140.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M63.7467 75.0559 Q60.1356 75.0559 58.3069 78.6207 Q56.5014 82.1623 56.5014 89.2919 Q56.5014 96.3984 58.3069 99.9631 Q60.1356 103.505 63.7467 103.505 Q67.3809 103.505 69.1865 99.9631 Q71.0152 96.3984 71.0152 89.2919 Q71.0152 82.1623 69.1865 78.6207 Q67.3809 75.0559 63.7467 75.0559 M63.7467 71.3522 Q69.5568 71.3522 72.6124 75.9586 Q75.6911 80.542 75.6911 89.2919 Q75.6911 98.0187 72.6124 102.625 Q69.5568 107.208 63.7467 107.208 Q57.9365 107.208 54.8578 102.625 Q51.8023 98.0187 51.8023 89.2919 Q51.8023 80.542 54.8578 75.9586 Q57.9365 71.3522 63.7467 71.3522 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M80.7605 100.658 L85.6447 100.658 L85.6447 106.537 L80.7605 106.537 L80.7605 100.658 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M100.714 75.0559 Q97.103 75.0559 95.2743 78.6207 Q93.4688 82.1623 93.4688 89.2919 Q93.4688 96.3984 95.2743 99.9631 Q97.103 103.505 100.714 103.505 Q104.348 103.505 106.154 99.9631 Q107.983 96.3984 107.983 89.2919 Q107.983 82.1623 106.154 78.6207 Q104.348 75.0559 100.714 75.0559 M100.714 71.3522 Q106.524 71.3522 109.58 75.9586 Q112.658 80.542 112.658 89.2919 Q112.658 98.0187 109.58 102.625 Q106.524 107.208 100.714 107.208 Q94.9039 107.208 91.8252 102.625 Q88.7697 98.0187 88.7697 89.2919 Q88.7697 80.542 91.8252 75.9586 Q94.9039 71.3522 100.714 71.3522 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M128.307 87.3938 Q125.158 87.3938 123.307 89.5465 Q121.478 91.6993 121.478 95.4493 Q121.478 99.1761 123.307 101.352 Q125.158 103.505 128.307 103.505 Q131.455 103.505 133.283 101.352 Q135.135 99.1761 135.135 95.4493 Q135.135 91.6993 133.283 89.5465 Q131.455 87.3938 128.307 87.3938 M137.589 72.7411 L137.589 77.0003 Q135.83 76.167 134.024 75.7272 Q132.242 75.2874 130.482 75.2874 Q125.853 75.2874 123.399 78.4123 Q120.969 81.5373 120.621 87.8567 Q121.987 85.8429 124.047 84.778 Q126.107 83.6901 128.584 83.6901 Q133.793 83.6901 136.802 86.8614 Q139.834 90.0095 139.834 95.4493 Q139.834 100.773 136.686 103.991 Q133.538 107.208 128.307 107.208 Q122.311 107.208 119.14 102.625 Q115.969 98.0187 115.969 89.2919 Q115.969 81.0975 119.857 76.2364 Q123.746 71.3522 130.297 71.3522 Q132.057 71.3522 133.839 71.6994 Q135.644 72.0466 137.589 72.7411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M154.904 75.0559 Q151.293 75.0559 149.464 78.6207 Q147.658 82.1623 147.658 89.2919 Q147.658 96.3984 149.464 99.9631 Q151.293 103.505 154.904 103.505 Q158.538 103.505 160.343 99.9631 Q162.172 96.3984 162.172 89.2919 Q162.172 82.1623 160.343 78.6207 Q158.538 75.0559 154.904 75.0559 M154.904 71.3522 Q160.714 71.3522 163.769 75.9586 Q166.848 80.542 166.848 89.2919 Q166.848 98.0187 163.769 102.625 Q160.714 107.208 154.904 107.208 Q149.093 107.208 146.015 102.625 Q142.959 98.0187 142.959 89.2919 Q142.959 80.542 146.015 75.9586 Q149.093 71.3522 154.904 71.3522 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip922)\" style=\"stroke:#009af9; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 263.694,585.002 264.313,625.638 264.932,653.716 265.551,677.122 266.17,697.532 266.789,715.74 267.408,732.215 268.027,747.267 268.646,761.116 269.884,785.824 \n 271.122,807.274 272.36,826.081 273.598,842.684 274.836,857.409 276.074,870.507 277.312,882.182 278.55,892.595 279.788,901.885 281.026,910.164 282.264,917.532 \n 283.502,924.072 286.363,936.409 289.225,945.442 292.087,951.739 294.948,955.745 297.81,957.82 300.672,958.257 303.533,957.299 306.395,955.15 312.118,947.945 \n 317.841,937.751 323.565,925.397 329.288,911.514 340.735,881.013 352.181,849.028 363.628,817.284 375.075,786.854 386.521,758.389 397.968,732.254 409.414,708.624 \n 420.861,687.543 432.308,668.966 443.754,652.788 455.201,638.867 466.648,627.035 480.405,615.325 494.163,606.054 507.921,598.905 521.679,593.575 549.195,587.25 \n 576.711,585.078 623.239,586.54 669.768,590.092 770.854,593.895 864.046,590.892 963.958,586.419 1079.72,585.111 1182.59,586.689 1272.8,587.6 1371.15,586.721 \n 1470.09,585.162 1579.47,586.047 1683.55,590.498 1791.77,593.911 1882.87,590.312 1910.67,588.159 1938.48,586.142 1966.28,585.015 1994.09,585.869 2020.22,589.79 \n 2046.36,598.32 2059.43,604.885 2072.5,613.324 2085.57,623.908 2098.64,636.91 2109.11,649.251 2119.57,663.448 2130.04,679.617 2140.51,697.849 2150.98,718.202 \n 2161.45,740.685 2171.92,765.229 2182.38,791.667 2203.32,848.745 2224.26,906.248 2229.49,919.377 2234.73,931.424 2239.96,941.964 2245.2,950.455 2250.43,956.201 \n 2255.66,958.287 2258.28,957.59 2260.9,955.485 2263.52,951.742 2266.13,946.085 2267.74,941.507 2269.35,935.985 2270.97,929.41 2272.58,921.658 2274.19,912.581 \n 2275.8,902.006 2277.41,889.722 2279.02,875.469 2280.63,858.921 2282.24,839.656 2283.85,817.108 2285.47,790.476 2286.27,775.274 2287.08,758.547 2287.88,740.008 \n 2288.69,719.256 2289.49,695.68 2290.3,668.247 2291.1,634.774 2291.91,585.002 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" stroke-dasharray=\"19, 12\" points=\"\n 263.694,563.065 264.313,604.784 264.932,633.933 265.551,658.397 266.17,679.852 266.789,699.094 267.408,716.591 268.027,732.653 268.646,747.5 269.884,774.168 \n 271.122,797.53 272.36,818.205 273.598,836.629 276.074,867.961 278.55,893.384 279.788,904.276 281.026,914.117 282.264,923.004 283.502,931.023 286.363,946.627 \n 289.225,958.719 292.087,967.874 294.948,974.545 297.81,979.097 300.672,981.829 303.533,982.992 306.395,982.795 312.118,979.014 317.841,971.64 323.565,961.545 \n 329.288,949.406 340.735,921.003 352.181,889.509 363.628,856.926 375.075,824.574 386.521,793.322 397.968,763.737 409.414,736.168 420.861,710.816 432.308,687.773 \n 443.754,667.054 455.201,648.619 466.648,632.39 480.405,615.65 494.163,601.727 507.921,590.386 521.679,581.38 535.437,574.466 549.195,569.404 562.953,565.966 \n 576.711,563.935 599.975,563.139 623.239,564.913 646.503,568.503 669.768,573.279 720.311,585.425 770.854,597.199 817.45,606.022 864.046,612.268 914.002,616.099 \n 963.958,617.393 1021.84,616.591 1079.72,614.388 1182.59,610.07 1272.8,608.396 1371.15,610.008 1470.09,614.131 1524.78,616.314 1579.47,617.396 1631.51,616.545 \n 1683.55,613.074 1737.66,606.101 1791.77,595.673 1837.32,584.927 1882.87,573.946 1910.67,568.216 1938.48,564.242 1966.28,563.134 1994.09,566.256 2007.16,569.636 \n 2020.22,574.491 2033.29,581.019 2046.36,589.424 2059.43,599.916 2072.5,612.704 2085.57,627.994 2098.64,645.974 2109.11,662.429 2119.57,680.782 2130.04,701.072 \n 2140.51,723.306 2161.45,773.378 2182.38,829.762 2192.85,859.429 2203.32,889.225 2213.79,918.128 2224.26,944.649 2229.49,956.363 2234.73,966.578 2239.96,974.837 \n 2245.2,980.566 2250.43,983.033 2255.66,981.289 2258.28,978.458 2260.9,974.066 2263.52,967.879 2266.13,959.616 2267.74,953.351 2269.35,946.077 2270.97,937.684 \n 2272.58,928.047 2274.19,917.017 2275.8,904.42 2277.41,890.042 2279.02,873.623 2280.63,854.835 2282.24,833.256 2283.85,808.316 2285.47,779.216 2286.27,762.751 \n 2287.08,744.74 2287.88,724.898 2288.69,702.821 2289.49,677.901 2290.3,649.102 2291.1,614.244 2291.91,563.065 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#3da44d; stroke-width:4.8; stroke-opacity:1; fill:none\" stroke-dasharray=\"2, 5\" points=\"\n 263.694,524.502 264.313,566.719 264.932,596.362 265.551,621.317 266.17,643.261 266.789,662.988 267.408,680.968 268.027,697.51 268.646,712.833 269.884,740.446 \n 271.122,764.742 272.36,786.338 273.598,805.674 274.836,823.075 276.074,838.795 277.312,853.035 278.55,865.962 279.788,877.711 281.026,888.397 282.264,898.119 \n 283.502,906.963 286.363,924.434 289.225,938.339 292.087,949.254 294.948,957.633 297.81,963.842 300.672,968.182 303.533,970.904 306.395,972.218 312.118,971.32 \n 317.841,966.651 323.565,959.091 329.288,949.322 340.735,925.199 352.181,897.414 363.628,868.02 375.075,838.383 397.968,781.731 420.861,731.589 432.308,709.495 \n 443.754,689.471 455.201,671.505 466.648,655.544 480.405,638.895 494.163,624.845 507.921,613.189 521.679,603.714 535.437,596.203 549.195,590.439 562.953,586.215 \n 576.711,583.333 599.975,580.998 623.239,581.164 646.503,583.129 669.768,586.307 720.311,595.208 770.854,604.192 817.45,610.909 864.046,615.49 963.958,618.32 \n 1079.72,614.166 1182.59,609.526 1272.8,607.791 1371.15,609.461 1470.09,613.879 1579.47,618.141 1683.55,616.052 1737.66,610.969 1791.77,603.023 1837.32,594.832 \n 1882.87,586.774 1910.67,582.952 1938.48,580.919 1966.28,581.711 1994.09,586.59 2020.22,596.231 2046.36,612.189 2059.43,622.998 2072.5,635.94 2085.57,651.193 \n 2098.64,668.914 2109.11,684.978 2119.57,702.756 2130.04,722.267 2140.51,743.496 2161.45,790.781 2182.38,843.161 2192.85,870.295 2203.32,897.16 2213.79,922.698 \n 2224.26,945.378 2229.49,954.983 2234.73,962.954 2239.96,968.83 2245.2,972.03 2250.43,971.817 2255.66,967.235 2258.28,962.924 2260.9,957.011 2263.52,949.26 \n 2266.13,939.389 2267.74,932.113 2269.35,923.81 2270.97,914.372 2272.58,903.672 2274.19,891.562 2275.8,877.866 2277.41,862.372 2279.02,844.818 2280.63,824.878 \n 2282.24,802.127 2283.85,775.997 2285.47,745.687 2286.27,728.61 2287.08,709.982 2287.88,689.518 2288.69,666.815 2289.49,641.263 2290.3,611.828 2291.1,576.328 \n 2291.91,524.502 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#c271d2; stroke-width:4.8; stroke-opacity:1; fill:none\" stroke-dasharray=\"19, 10, 2, 10\" points=\"\n 263.694,466.952 264.932,547.038 266.17,602.032 267.408,647.705 268.646,687.407 269.884,722.73 271.122,754.61 272.36,783.666 273.598,810.338 276.074,857.766 \n 278.55,898.762 279.788,917.249 281.026,934.557 282.264,950.787 283.502,966.025 286.363,997.847 289.225,1025.52 292.087,1049.63 294.948,1070.64 300.672,1104.84 \n 306.395,1130.44 312.118,1149.15 317.841,1162.21 323.565,1170.59 329.288,1175.09 335.011,1176.3 340.735,1174.76 346.458,1170.89 352.181,1165.04 363.628,1148.57 \n 375.075,1127.29 397.968,1075.69 420.861,1018.07 443.754,959.039 466.648,901.368 494.163,836.094 521.679,776.602 549.195,723.499 576.711,676.852 599.975,642.272 \n 623.239,611.878 646.503,585.367 669.768,562.407 695.039,541.098 720.311,523.158 745.582,508.182 770.854,495.79 817.45,478.568 864.046,467.064 963.958,454.899 \n 1079.72,451.624 1182.59,451.825 1272.8,452.097 1371.15,451.834 1470.09,451.599 1579.47,454.185 1683.55,465.545 1737.66,478.42 1791.77,498.995 1837.32,524.483 \n 1882.87,559.717 1910.67,587.044 1938.48,619.476 1966.28,657.571 1994.09,701.822 2020.22,749.35 2046.36,802.722 2072.5,861.692 2098.64,925.464 2119.57,978.913 \n 2140.51,1032.86 2161.45,1084.86 2182.38,1131 2192.85,1150.02 2203.32,1164.92 2213.79,1174.2 2224.26,1175.87 2229.49,1173.03 2234.73,1167.18 2239.96,1157.79 \n 2245.2,1144.2 2250.43,1125.61 2255.66,1100.98 2260.9,1068.97 2266.13,1027.73 2267.74,1012.8 2269.35,996.663 2270.97,979.205 2272.58,960.296 2275.8,917.497 \n 2279.02,866.671 2280.63,837.54 2282.24,805.394 2283.85,769.662 2285.47,729.54 2287.08,683.811 2288.69,630.403 2290.3,564.958 2291.91,466.952 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#ac8d18; stroke-width:4.8; stroke-opacity:1; fill:none\" stroke-dasharray=\"19, 10, 2, 10, 2, 10\" points=\"\n 263.694,492.837 264.932,572.562 266.17,627.198 267.408,672.515 268.646,711.865 269.884,746.838 271.122,778.371 272.36,807.083 273.598,833.413 276.074,880.167 \n 278.55,920.5 279.788,938.659 281.026,955.643 282.264,971.551 283.502,986.468 286.363,1017.56 289.225,1044.52 292.087,1067.92 294.948,1088.25 300.672,1121.11 \n 306.395,1145.44 312.118,1162.91 317.841,1174.78 323.565,1182.03 329.288,1185.42 335.011,1185.59 340.735,1183.04 346.458,1178.2 352.181,1171.42 363.628,1153.21 \n 375.075,1130.33 397.968,1075.94 420.861,1015.99 443.754,955.044 466.648,895.809 494.163,829.058 521.679,768.458 549.195,714.551 576.711,667.351 599.975,632.463 \n 623.239,601.883 646.503,575.284 669.768,552.318 695.039,531.076 720.311,513.262 745.582,498.457 770.854,486.268 817.45,469.471 864.046,458.418 963.958,447.165 \n 1079.72,444.686 1182.59,445.295 1272.8,445.689 1371.15,445.309 1470.09,444.691 1579.47,446.551 1683.55,456.977 1737.66,469.328 1791.77,489.413 1837.32,514.575 \n 1882.87,549.632 1910.67,576.964 1938.48,609.52 1966.28,647.887 1994.09,692.598 2020.22,740.771 2046.36,795.038 2072.5,855.202 2098.64,920.527 2119.57,975.522 \n 2140.51,1031.33 2161.45,1085.54 2182.38,1134.29 2192.85,1154.79 2203.32,1171.28 2213.79,1182.29 2224.26,1185.83 2229.49,1183.97 2234.73,1179.14 2239.96,1170.81 \n 2245.2,1158.32 2250.43,1140.87 2255.66,1117.43 2260.9,1086.64 2266.13,1046.67 2267.74,1032.14 2269.35,1016.41 2270.97,999.357 2272.58,980.862 2275.8,938.903 \n 2279.02,888.935 2280.63,860.24 2282.24,828.535 2283.85,793.248 2285.47,753.577 2287.08,708.302 2288.69,655.354 2290.3,590.373 2291.91,492.837 \n \"/>\n<polyline clip-path=\"url(#clip922)\" style=\"stroke:#00a9ad; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 263.694,349.929 266.17,504.46 268.646,608.695 271.122,694.178 273.598,767.616 276.074,832.196 278.55,889.797 279.788,916.383 281.026,941.659 282.264,965.723 \n 283.502,988.665 289.225,1082.12 294.948,1158.55 300.672,1221.54 306.395,1273.53 312.118,1316.32 317.841,1351.27 323.565,1379.45 329.288,1401.75 340.735,1431.44 \n 352.181,1444.86 363.628,1445.36 375.075,1435.49 386.521,1417.26 397.968,1392.32 409.414,1361.98 420.861,1327.35 443.754,1248.75 466.648,1162.32 521.679,945.229 \n 576.711,740.154 599.975,661.339 623.239,588.153 646.503,520.888 669.768,459.647 695.039,399.894 720.311,346.996 745.582,300.637 770.854,260.427 794.152,228.42 \n 817.45,200.889 840.748,177.45 864.046,157.717 914.002,126.142 963.958,106.312 1021.84,93.8521 1079.72,88.7169 1182.59,87.9763 1272.8,88.8101 1371.15,87.9997 \n 1470.09,88.4712 1524.78,92.668 1579.47,102.89 1631.51,121.3 1683.55,151.724 1710.61,173.587 1737.66,200.353 1764.72,232.627 1791.77,271.007 1814.55,308.473 \n 1837.32,350.993 1860.09,398.848 1882.87,452.267 1910.67,525.247 1938.48,606.82 1966.28,696.76 1994.09,794.422 2046.36,994.108 2098.64,1199.52 2119.57,1276.39 \n 2140.51,1345.27 2150.98,1375.25 2161.45,1401.28 2171.92,1422.46 2182.38,1437.7 2192.85,1445.72 2203.32,1444.92 2213.79,1433.34 2224.26,1408.46 2229.49,1390.05 \n 2234.73,1367 2239.96,1338.69 2245.2,1304.41 2250.43,1263.27 2255.66,1214.15 2260.9,1155.61 2266.13,1085.73 2267.74,1061.55 2269.35,1035.94 2270.97,1008.8 \n 2272.58,979.999 2275.8,916.743 2279.02,844.559 2282.24,760.999 2285.47,661.916 2288.69,538.577 2291.91,349.929 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"\nM613.09 1438.47 L1325.58 1438.47 L1325.58 1015.11 L613.09 1015.11 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 613.09,1438.47 1325.58,1438.47 1325.58,1015.11 613.09,1015.11 613.09,1438.47 \n \"/>\n<polyline clip-path=\"url(#clip920)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 636.978,1075.59 780.306,1075.59 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M816.091 1069.93 Q812.666 1069.93 810.675 1072.62 Q808.684 1075.28 808.684 1079.93 Q808.684 1084.59 810.652 1087.27 Q812.642 1089.93 816.091 1089.93 Q819.494 1089.93 821.485 1087.25 Q823.476 1084.56 823.476 1079.93 Q823.476 1075.33 821.485 1072.64 Q819.494 1069.93 816.091 1069.93 M816.091 1066.32 Q821.647 1066.32 824.818 1069.93 Q827.99 1073.55 827.99 1079.93 Q827.99 1086.3 824.818 1089.93 Q821.647 1093.55 816.091 1093.55 Q810.513 1093.55 807.342 1089.93 Q804.193 1086.3 804.193 1079.93 Q804.193 1073.55 807.342 1069.93 Q810.513 1066.32 816.091 1066.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M836.577 1088.99 L836.577 1102.74 L832.295 1102.74 L832.295 1066.95 L836.577 1066.95 L836.577 1070.88 Q837.92 1068.57 839.957 1067.46 Q842.017 1066.32 844.864 1066.32 Q849.587 1066.32 852.526 1070.07 Q855.489 1073.82 855.489 1079.93 Q855.489 1086.05 852.526 1089.8 Q849.587 1093.55 844.864 1093.55 Q842.017 1093.55 839.957 1092.43 Q837.92 1091.3 836.577 1088.99 M851.068 1079.93 Q851.068 1075.24 849.124 1072.57 Q847.202 1069.89 843.823 1069.89 Q840.443 1069.89 838.499 1072.57 Q836.577 1075.24 836.577 1079.93 Q836.577 1084.63 838.499 1087.32 Q840.443 1089.98 843.823 1089.98 Q847.202 1089.98 849.124 1087.32 Q851.068 1084.63 851.068 1079.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M864.17 1059.59 L864.17 1066.95 L872.943 1066.95 L872.943 1070.26 L864.17 1070.26 L864.17 1084.33 Q864.17 1087.5 865.026 1088.41 Q865.906 1089.31 868.568 1089.31 L872.943 1089.31 L872.943 1092.87 L868.568 1092.87 Q863.637 1092.87 861.763 1091.05 Q859.888 1089.19 859.888 1084.33 L859.888 1070.26 L856.763 1070.26 L856.763 1066.95 L859.888 1066.95 L859.888 1059.59 L864.17 1059.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M877.411 1066.95 L881.67 1066.95 L881.67 1092.87 L877.411 1092.87 L877.411 1066.95 M877.411 1056.86 L881.67 1056.86 L881.67 1062.25 L877.411 1062.25 L877.411 1056.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M906.322 1071.93 Q907.92 1069.06 910.142 1067.69 Q912.364 1066.32 915.373 1066.32 Q919.424 1066.32 921.623 1069.17 Q923.822 1071.99 923.822 1077.23 L923.822 1092.87 L919.54 1092.87 L919.54 1077.37 Q919.54 1073.64 918.221 1071.83 Q916.901 1070.03 914.193 1070.03 Q910.883 1070.03 908.961 1072.23 Q907.04 1074.43 907.04 1078.22 L907.04 1092.87 L902.758 1092.87 L902.758 1077.37 Q902.758 1073.62 901.438 1071.83 Q900.119 1070.03 897.364 1070.03 Q894.1 1070.03 892.179 1072.25 Q890.258 1074.45 890.258 1078.22 L890.258 1092.87 L885.975 1092.87 L885.975 1066.95 L890.258 1066.95 L890.258 1070.98 Q891.716 1068.59 893.753 1067.46 Q895.79 1066.32 898.591 1066.32 Q901.415 1066.32 903.383 1067.76 Q905.373 1069.19 906.322 1071.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M940.072 1079.84 Q934.91 1079.84 932.92 1081.02 Q930.929 1082.2 930.929 1085.05 Q930.929 1087.32 932.41 1088.66 Q933.915 1089.98 936.484 1089.98 Q940.026 1089.98 942.156 1087.48 Q944.308 1084.96 944.308 1080.79 L944.308 1079.84 L940.072 1079.84 M948.568 1078.08 L948.568 1092.87 L944.308 1092.87 L944.308 1088.94 Q942.85 1091.3 940.674 1092.43 Q938.498 1093.55 935.35 1093.55 Q931.369 1093.55 929.008 1091.32 Q926.67 1089.08 926.67 1085.33 Q926.67 1080.95 929.586 1078.73 Q932.526 1076.51 938.336 1076.51 L944.308 1076.51 L944.308 1076.09 Q944.308 1073.15 942.364 1071.56 Q940.443 1069.93 936.947 1069.93 Q934.725 1069.93 932.619 1070.47 Q930.512 1071 928.568 1072.06 L928.568 1068.13 Q930.906 1067.23 933.105 1066.79 Q935.304 1066.32 937.387 1066.32 Q943.012 1066.32 945.79 1069.24 Q948.568 1072.16 948.568 1078.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M953.035 1056.86 L957.294 1056.86 L957.294 1092.87 L953.035 1092.87 L953.035 1056.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 10\" points=\"\n 636.978,1136.07 780.306,1136.07 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M824.703 1128.42 L824.703 1132.41 Q822.897 1131.41 821.068 1130.92 Q819.263 1130.41 817.411 1130.41 Q813.267 1130.41 810.976 1133.05 Q808.684 1135.67 808.684 1140.41 Q808.684 1145.16 810.976 1147.8 Q813.267 1150.41 817.411 1150.41 Q819.263 1150.41 821.068 1149.93 Q822.897 1149.42 824.703 1148.42 L824.703 1152.36 Q822.92 1153.19 820.999 1153.61 Q819.101 1154.03 816.948 1154.03 Q811.091 1154.03 807.642 1150.35 Q804.193 1146.66 804.193 1140.41 Q804.193 1134.07 807.666 1130.44 Q811.161 1126.8 817.226 1126.8 Q819.193 1126.8 821.068 1127.22 Q822.943 1127.61 824.703 1128.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M839.216 1130.41 Q835.79 1130.41 833.8 1133.1 Q831.809 1135.76 831.809 1140.41 Q831.809 1145.07 833.777 1147.75 Q835.767 1150.41 839.216 1150.41 Q842.619 1150.41 844.61 1147.73 Q846.601 1145.04 846.601 1140.41 Q846.601 1135.81 844.61 1133.12 Q842.619 1130.41 839.216 1130.41 M839.216 1126.8 Q844.772 1126.8 847.943 1130.41 Q851.114 1134.03 851.114 1140.41 Q851.114 1146.78 847.943 1150.41 Q844.772 1154.03 839.216 1154.03 Q833.638 1154.03 830.466 1150.41 Q827.318 1146.78 827.318 1140.41 Q827.318 1134.03 830.466 1130.41 Q833.638 1126.8 839.216 1126.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M870.605 1131.41 Q869.887 1130.99 869.031 1130.81 Q868.198 1130.6 867.179 1130.6 Q863.568 1130.6 861.624 1132.96 Q859.702 1135.3 859.702 1139.7 L859.702 1153.35 L855.42 1153.35 L855.42 1127.43 L859.702 1127.43 L859.702 1131.46 Q861.045 1129.1 863.198 1127.96 Q865.35 1126.8 868.429 1126.8 Q868.869 1126.8 869.401 1126.87 Q869.934 1126.92 870.582 1127.04 L870.605 1131.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M889.262 1131.41 Q888.545 1130.99 887.688 1130.81 Q886.855 1130.6 885.836 1130.6 Q882.225 1130.6 880.281 1132.96 Q878.36 1135.3 878.36 1139.7 L878.36 1153.35 L874.077 1153.35 L874.077 1127.43 L878.36 1127.43 L878.36 1131.46 Q879.702 1129.1 881.855 1127.96 Q884.008 1126.8 887.086 1126.8 Q887.526 1126.8 888.059 1126.87 Q888.591 1126.92 889.239 1127.04 L889.262 1131.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M914.864 1139.33 L914.864 1141.41 L895.281 1141.41 Q895.559 1145.81 897.92 1148.12 Q900.304 1150.41 904.54 1150.41 Q906.994 1150.41 909.285 1149.81 Q911.6 1149.21 913.869 1148.01 L913.869 1152.03 Q911.577 1153.01 909.17 1153.52 Q906.762 1154.03 904.285 1154.03 Q898.082 1154.03 894.448 1150.41 Q890.836 1146.8 890.836 1140.65 Q890.836 1134.28 894.262 1130.55 Q897.711 1126.8 903.545 1126.8 Q908.776 1126.8 911.809 1130.18 Q914.864 1133.54 914.864 1139.33 M910.605 1138.08 Q910.559 1134.58 908.637 1132.5 Q906.739 1130.41 903.591 1130.41 Q900.026 1130.41 897.873 1132.43 Q895.744 1134.44 895.42 1138.1 L910.605 1138.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M937.989 1128.42 L937.989 1132.41 Q936.183 1131.41 934.355 1130.92 Q932.549 1130.41 930.697 1130.41 Q926.554 1130.41 924.262 1133.05 Q921.971 1135.67 921.971 1140.41 Q921.971 1145.16 924.262 1147.8 Q926.554 1150.41 930.697 1150.41 Q932.549 1150.41 934.355 1149.93 Q936.183 1149.42 937.989 1148.42 L937.989 1152.36 Q936.207 1153.19 934.285 1153.61 Q932.387 1154.03 930.234 1154.03 Q924.378 1154.03 920.929 1150.35 Q917.48 1146.66 917.48 1140.41 Q917.48 1134.07 920.952 1130.44 Q924.447 1126.8 930.512 1126.8 Q932.48 1126.8 934.355 1127.22 Q936.23 1127.61 937.989 1128.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M946.669 1120.07 L946.669 1127.43 L955.443 1127.43 L955.443 1130.74 L946.669 1130.74 L946.669 1144.81 Q946.669 1147.98 947.526 1148.89 Q948.406 1149.79 951.068 1149.79 L955.443 1149.79 L955.443 1153.35 L951.068 1153.35 Q946.137 1153.35 944.262 1151.53 Q942.387 1149.67 942.387 1144.81 L942.387 1130.74 L939.262 1130.74 L939.262 1127.43 L942.387 1127.43 L942.387 1120.07 L946.669 1120.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M982.086 1139.33 L982.086 1141.41 L962.503 1141.41 Q962.78 1145.81 965.142 1148.12 Q967.526 1150.41 971.762 1150.41 Q974.216 1150.41 976.507 1149.81 Q978.822 1149.21 981.091 1148.01 L981.091 1152.03 Q978.799 1153.01 976.392 1153.52 Q973.984 1154.03 971.507 1154.03 Q965.304 1154.03 961.669 1150.41 Q958.058 1146.8 958.058 1140.65 Q958.058 1134.28 961.484 1130.55 Q964.933 1126.8 970.767 1126.8 Q975.998 1126.8 979.03 1130.18 Q982.086 1133.54 982.086 1139.33 M977.827 1138.08 Q977.78 1134.58 975.859 1132.5 Q973.961 1130.41 970.813 1130.41 Q967.248 1130.41 965.095 1132.43 Q962.966 1134.44 962.642 1138.1 L977.827 1138.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1003.61 1131.36 L1003.61 1117.34 L1007.87 1117.34 L1007.87 1153.35 L1003.61 1153.35 L1003.61 1149.47 Q1002.27 1151.78 1000.21 1152.91 Q998.174 1154.03 995.303 1154.03 Q990.604 1154.03 987.641 1150.28 Q984.702 1146.53 984.702 1140.41 Q984.702 1134.3 987.641 1130.55 Q990.604 1126.8 995.303 1126.8 Q998.174 1126.8 1000.21 1127.94 Q1002.27 1129.05 1003.61 1131.36 M989.1 1140.41 Q989.1 1145.11 991.021 1147.8 Q992.966 1150.46 996.345 1150.46 Q999.725 1150.46 1001.67 1147.8 Q1003.61 1145.11 1003.61 1140.41 Q1003.61 1135.72 1001.67 1133.05 Q999.725 1130.37 996.345 1130.37 Q992.966 1130.37 991.021 1133.05 Q989.1 1135.72 989.1 1140.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1039.19 1140.32 Q1034.03 1140.32 1032.04 1141.5 Q1030.05 1142.68 1030.05 1145.53 Q1030.05 1147.8 1031.53 1149.14 Q1033.03 1150.46 1035.6 1150.46 Q1039.15 1150.46 1041.28 1147.96 Q1043.43 1145.44 1043.43 1141.27 L1043.43 1140.32 L1039.19 1140.32 M1047.69 1138.56 L1047.69 1153.35 L1043.43 1153.35 L1043.43 1149.42 Q1041.97 1151.78 1039.79 1152.91 Q1037.62 1154.03 1034.47 1154.03 Q1030.49 1154.03 1028.13 1151.8 Q1025.79 1149.56 1025.79 1145.81 Q1025.79 1141.43 1028.71 1139.21 Q1031.65 1136.99 1037.46 1136.99 L1043.43 1136.99 L1043.43 1136.57 Q1043.43 1133.63 1041.48 1132.04 Q1039.56 1130.41 1036.07 1130.41 Q1033.84 1130.41 1031.74 1130.95 Q1029.63 1131.48 1027.69 1132.54 L1027.69 1128.61 Q1030.03 1127.71 1032.22 1127.27 Q1034.42 1126.8 1036.51 1126.8 Q1042.13 1126.8 1044.91 1129.72 Q1047.69 1132.64 1047.69 1138.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1068.68 1128.19 L1068.68 1132.22 Q1066.88 1131.29 1064.93 1130.83 Q1062.99 1130.37 1060.9 1130.37 Q1057.73 1130.37 1056.14 1131.34 Q1054.56 1132.31 1054.56 1134.26 Q1054.56 1135.74 1055.7 1136.6 Q1056.83 1137.43 1060.26 1138.19 L1061.72 1138.52 Q1066.25 1139.49 1068.15 1141.27 Q1070.07 1143.03 1070.07 1146.2 Q1070.07 1149.81 1067.2 1151.92 Q1064.35 1154.03 1059.35 1154.03 Q1057.27 1154.03 1055 1153.61 Q1052.76 1153.22 1050.26 1152.41 L1050.26 1148.01 Q1052.62 1149.23 1054.91 1149.86 Q1057.2 1150.46 1059.45 1150.46 Q1062.46 1150.46 1064.08 1149.44 Q1065.7 1148.4 1065.7 1146.53 Q1065.7 1144.79 1064.52 1143.86 Q1063.36 1142.94 1059.4 1142.08 L1057.92 1141.73 Q1053.96 1140.9 1052.2 1139.19 Q1050.44 1137.45 1050.44 1134.44 Q1050.44 1130.79 1053.03 1128.79 Q1055.63 1126.8 1060.4 1126.8 Q1062.76 1126.8 1064.84 1127.15 Q1066.92 1127.5 1068.68 1128.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1085.33 1155.76 Q1083.52 1160.39 1081.81 1161.8 Q1080.09 1163.22 1077.22 1163.22 L1073.82 1163.22 L1073.82 1159.65 L1076.32 1159.65 Q1078.08 1159.65 1079.05 1158.82 Q1080.03 1157.98 1081.21 1154.88 L1081.97 1152.94 L1071.48 1127.43 L1076 1127.43 L1084.1 1147.71 L1092.2 1127.43 L1096.71 1127.43 L1085.33 1155.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1121.37 1132.41 Q1122.96 1129.54 1125.19 1128.17 Q1127.41 1126.8 1130.42 1126.8 Q1134.47 1126.8 1136.67 1129.65 Q1138.87 1132.47 1138.87 1137.71 L1138.87 1153.35 L1134.59 1153.35 L1134.59 1137.85 Q1134.59 1134.12 1133.27 1132.31 Q1131.95 1130.51 1129.24 1130.51 Q1125.93 1130.51 1124.01 1132.71 Q1122.09 1134.91 1122.09 1138.7 L1122.09 1153.35 L1117.8 1153.35 L1117.8 1137.85 Q1117.8 1134.1 1116.48 1132.31 Q1115.16 1130.51 1112.41 1130.51 Q1109.15 1130.51 1107.22 1132.73 Q1105.3 1134.93 1105.3 1138.7 L1105.3 1153.35 L1101.02 1153.35 L1101.02 1127.43 L1105.3 1127.43 L1105.3 1131.46 Q1106.76 1129.07 1108.8 1127.94 Q1110.84 1126.8 1113.64 1126.8 Q1116.46 1126.8 1118.43 1128.24 Q1120.42 1129.67 1121.37 1132.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1147.46 1149.47 L1147.46 1163.22 L1143.17 1163.22 L1143.17 1127.43 L1147.46 1127.43 L1147.46 1131.36 Q1148.8 1129.05 1150.84 1127.94 Q1152.9 1126.8 1155.74 1126.8 Q1160.46 1126.8 1163.4 1130.55 Q1166.37 1134.3 1166.37 1140.41 Q1166.37 1146.53 1163.4 1150.28 Q1160.46 1154.03 1155.74 1154.03 Q1152.9 1154.03 1150.84 1152.91 Q1148.8 1151.78 1147.46 1149.47 M1161.95 1140.41 Q1161.95 1135.72 1160 1133.05 Q1158.08 1130.37 1154.7 1130.37 Q1151.32 1130.37 1149.38 1133.05 Q1147.46 1135.72 1147.46 1140.41 Q1147.46 1145.11 1149.38 1147.8 Q1151.32 1150.46 1154.7 1150.46 Q1158.08 1150.46 1160 1147.8 Q1161.95 1145.11 1161.95 1140.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1175.05 1120.07 L1175.05 1127.43 L1183.82 1127.43 L1183.82 1130.74 L1175.05 1130.74 L1175.05 1144.81 Q1175.05 1147.98 1175.9 1148.89 Q1176.78 1149.79 1179.45 1149.79 L1183.82 1149.79 L1183.82 1153.35 L1179.45 1153.35 Q1174.52 1153.35 1172.64 1151.53 Q1170.77 1149.67 1170.77 1144.81 L1170.77 1130.74 L1167.64 1130.74 L1167.64 1127.43 L1170.77 1127.43 L1170.77 1120.07 L1175.05 1120.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1206.9 1140.41 Q1206.9 1135.72 1204.96 1133.05 Q1203.03 1130.37 1199.65 1130.37 Q1196.27 1130.37 1194.33 1133.05 Q1192.41 1135.72 1192.41 1140.41 Q1192.41 1145.11 1194.33 1147.8 Q1196.27 1150.46 1199.65 1150.46 Q1203.03 1150.46 1204.96 1147.8 Q1206.9 1145.11 1206.9 1140.41 M1192.41 1131.36 Q1193.75 1129.05 1195.79 1127.94 Q1197.85 1126.8 1200.7 1126.8 Q1205.42 1126.8 1208.36 1130.55 Q1211.32 1134.3 1211.32 1140.41 Q1211.32 1146.53 1208.36 1150.28 Q1205.42 1154.03 1200.7 1154.03 Q1197.85 1154.03 1195.79 1152.91 Q1193.75 1151.78 1192.41 1149.47 L1192.41 1153.35 L1188.13 1153.35 L1188.13 1117.34 L1192.41 1117.34 L1192.41 1131.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1237.96 1139.33 L1237.96 1141.41 L1218.38 1141.41 Q1218.66 1145.81 1221.02 1148.12 Q1223.4 1150.41 1227.64 1150.41 Q1230.09 1150.41 1232.39 1149.81 Q1234.7 1149.21 1236.97 1148.01 L1236.97 1152.03 Q1234.68 1153.01 1232.27 1153.52 Q1229.86 1154.03 1227.39 1154.03 Q1221.18 1154.03 1217.55 1150.41 Q1213.94 1146.8 1213.94 1140.65 Q1213.94 1134.28 1217.36 1130.55 Q1220.81 1126.8 1226.64 1126.8 Q1231.88 1126.8 1234.91 1130.18 Q1237.96 1133.54 1237.96 1139.33 M1233.7 1138.08 Q1233.66 1134.58 1231.74 1132.5 Q1229.84 1130.41 1226.69 1130.41 Q1223.13 1130.41 1220.97 1132.43 Q1218.84 1134.44 1218.52 1138.1 L1233.7 1138.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1258.96 1128.19 L1258.96 1132.22 Q1257.15 1131.29 1255.21 1130.83 Q1253.27 1130.37 1251.18 1130.37 Q1248.01 1130.37 1246.41 1131.34 Q1244.84 1132.31 1244.84 1134.26 Q1244.84 1135.74 1245.97 1136.6 Q1247.11 1137.43 1250.53 1138.19 L1251.99 1138.52 Q1256.53 1139.49 1258.43 1141.27 Q1260.35 1143.03 1260.35 1146.2 Q1260.35 1149.81 1257.48 1151.92 Q1254.63 1154.03 1249.63 1154.03 Q1247.55 1154.03 1245.28 1153.61 Q1243.03 1153.22 1240.53 1152.41 L1240.53 1148.01 Q1242.89 1149.23 1245.19 1149.86 Q1247.48 1150.46 1249.72 1150.46 Q1252.73 1150.46 1254.35 1149.44 Q1255.97 1148.4 1255.97 1146.53 Q1255.97 1144.79 1254.79 1143.86 Q1253.64 1142.94 1249.68 1142.08 L1248.2 1141.73 Q1244.24 1140.9 1242.48 1139.19 Q1240.72 1137.45 1240.72 1134.44 Q1240.72 1130.79 1243.31 1128.79 Q1245.9 1126.8 1250.67 1126.8 Q1253.03 1126.8 1255.12 1127.15 Q1257.2 1127.5 1258.96 1128.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1269.03 1120.07 L1269.03 1127.43 L1277.8 1127.43 L1277.8 1130.74 L1269.03 1130.74 L1269.03 1144.81 Q1269.03 1147.98 1269.89 1148.89 Q1270.76 1149.79 1273.43 1149.79 L1277.8 1149.79 L1277.8 1153.35 L1273.43 1153.35 Q1268.5 1153.35 1266.62 1151.53 Q1264.75 1149.67 1264.75 1144.81 L1264.75 1130.74 L1261.62 1130.74 L1261.62 1127.43 L1264.75 1127.43 L1264.75 1120.07 L1269.03 1120.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"2, 4\" points=\"\n 636.978,1196.55 780.306,1196.55 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M817.596 1200.8 Q812.434 1200.8 810.443 1201.98 Q808.453 1203.16 808.453 1206.01 Q808.453 1208.28 809.934 1209.62 Q811.439 1210.94 814.008 1210.94 Q817.55 1210.94 819.679 1208.44 Q821.832 1205.92 821.832 1201.75 L821.832 1200.8 L817.596 1200.8 M826.091 1199.04 L826.091 1213.83 L821.832 1213.83 L821.832 1209.9 Q820.374 1212.26 818.198 1213.39 Q816.022 1214.51 812.874 1214.51 Q808.892 1214.51 806.531 1212.28 Q804.193 1210.04 804.193 1206.29 Q804.193 1201.91 807.11 1199.69 Q810.05 1197.47 815.86 1197.47 L821.832 1197.47 L821.832 1197.05 Q821.832 1194.11 819.888 1192.52 Q817.966 1190.89 814.471 1190.89 Q812.249 1190.89 810.142 1191.43 Q808.036 1191.96 806.092 1193.02 L806.092 1189.09 Q808.429 1188.19 810.629 1187.75 Q812.828 1187.28 814.911 1187.28 Q820.536 1187.28 823.314 1190.2 Q826.091 1193.12 826.091 1199.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M847.087 1188.67 L847.087 1192.7 Q845.281 1191.77 843.337 1191.31 Q841.392 1190.85 839.309 1190.85 Q836.138 1190.85 834.54 1191.82 Q832.966 1192.79 832.966 1194.74 Q832.966 1196.22 834.101 1197.08 Q835.235 1197.91 838.661 1198.67 L840.119 1199 Q844.656 1199.97 846.554 1201.75 Q848.476 1203.51 848.476 1206.68 Q848.476 1210.29 845.605 1212.4 Q842.758 1214.51 837.758 1214.51 Q835.675 1214.51 833.406 1214.09 Q831.161 1213.7 828.661 1212.89 L828.661 1208.49 Q831.022 1209.71 833.314 1210.34 Q835.605 1210.94 837.851 1210.94 Q840.86 1210.94 842.48 1209.92 Q844.101 1208.88 844.101 1207.01 Q844.101 1205.27 842.92 1204.34 Q841.763 1203.42 837.804 1202.56 L836.323 1202.21 Q832.365 1201.38 830.605 1199.67 Q828.846 1197.93 828.846 1194.92 Q828.846 1191.27 831.439 1189.27 Q834.031 1187.28 838.8 1187.28 Q841.161 1187.28 843.244 1187.63 Q845.327 1187.98 847.087 1188.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M863.73 1216.24 Q861.925 1220.87 860.212 1222.28 Q858.499 1223.7 855.628 1223.7 L852.226 1223.7 L852.226 1220.13 L854.726 1220.13 Q856.485 1220.13 857.457 1219.3 Q858.429 1218.46 859.61 1215.36 L860.374 1213.42 L849.888 1187.91 L854.401 1187.91 L862.503 1208.19 L870.605 1187.91 L875.119 1187.91 L863.73 1216.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M899.772 1192.89 Q901.369 1190.02 903.591 1188.65 Q905.813 1187.28 908.822 1187.28 Q912.873 1187.28 915.072 1190.13 Q917.271 1192.95 917.271 1198.19 L917.271 1213.83 L912.989 1213.83 L912.989 1198.33 Q912.989 1194.6 911.67 1192.79 Q910.35 1190.99 907.642 1190.99 Q904.332 1190.99 902.41 1193.19 Q900.489 1195.39 900.489 1199.18 L900.489 1213.83 L896.207 1213.83 L896.207 1198.33 Q896.207 1194.58 894.887 1192.79 Q893.568 1190.99 890.813 1190.99 Q887.549 1190.99 885.628 1193.21 Q883.707 1195.41 883.707 1199.18 L883.707 1213.83 L879.424 1213.83 L879.424 1187.91 L883.707 1187.91 L883.707 1191.94 Q885.165 1189.55 887.202 1188.42 Q889.239 1187.28 892.04 1187.28 Q894.864 1187.28 896.832 1188.72 Q898.822 1190.15 899.772 1192.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M925.859 1209.95 L925.859 1223.7 L921.577 1223.7 L921.577 1187.91 L925.859 1187.91 L925.859 1191.84 Q927.202 1189.53 929.239 1188.42 Q931.299 1187.28 934.146 1187.28 Q938.869 1187.28 941.808 1191.03 Q944.771 1194.78 944.771 1200.89 Q944.771 1207.01 941.808 1210.76 Q938.869 1214.51 934.146 1214.51 Q931.299 1214.51 929.239 1213.39 Q927.202 1212.26 925.859 1209.95 M940.35 1200.89 Q940.35 1196.2 938.406 1193.53 Q936.484 1190.85 933.105 1190.85 Q929.725 1190.85 927.781 1193.53 Q925.859 1196.2 925.859 1200.89 Q925.859 1205.59 927.781 1208.28 Q929.725 1210.94 933.105 1210.94 Q936.484 1210.94 938.406 1208.28 Q940.35 1205.59 940.35 1200.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M953.452 1180.55 L953.452 1187.91 L962.225 1187.91 L962.225 1191.22 L953.452 1191.22 L953.452 1205.29 Q953.452 1208.46 954.308 1209.37 Q955.188 1210.27 957.85 1210.27 L962.225 1210.27 L962.225 1213.83 L957.85 1213.83 Q952.919 1213.83 951.044 1212.01 Q949.169 1210.15 949.169 1205.29 L949.169 1191.22 L946.044 1191.22 L946.044 1187.91 L949.169 1187.91 L949.169 1180.55 L953.452 1180.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M985.304 1200.89 Q985.304 1196.2 983.359 1193.53 Q981.438 1190.85 978.058 1190.85 Q974.679 1190.85 972.734 1193.53 Q970.813 1196.2 970.813 1200.89 Q970.813 1205.59 972.734 1208.28 Q974.679 1210.94 978.058 1210.94 Q981.438 1210.94 983.359 1208.28 Q985.304 1205.59 985.304 1200.89 M970.813 1191.84 Q972.155 1189.53 974.192 1188.42 Q976.253 1187.28 979.1 1187.28 Q983.822 1187.28 986.762 1191.03 Q989.725 1194.78 989.725 1200.89 Q989.725 1207.01 986.762 1210.76 Q983.822 1214.51 979.1 1214.51 Q976.253 1214.51 974.192 1213.39 Q972.155 1212.26 970.813 1209.95 L970.813 1213.83 L966.53 1213.83 L966.53 1177.82 L970.813 1177.82 L970.813 1191.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1016.37 1199.81 L1016.37 1201.89 L996.785 1201.89 Q997.063 1206.29 999.424 1208.6 Q1001.81 1210.89 1006.04 1210.89 Q1008.5 1210.89 1010.79 1210.29 Q1013.1 1209.69 1015.37 1208.49 L1015.37 1212.51 Q1013.08 1213.49 1010.67 1214 Q1008.27 1214.51 1005.79 1214.51 Q999.586 1214.51 995.952 1210.89 Q992.341 1207.28 992.341 1201.13 Q992.341 1194.76 995.766 1191.03 Q999.215 1187.28 1005.05 1187.28 Q1010.28 1187.28 1013.31 1190.66 Q1016.37 1194.02 1016.37 1199.81 M1012.11 1198.56 Q1012.06 1195.06 1010.14 1192.98 Q1008.24 1190.89 1005.1 1190.89 Q1001.53 1190.89 999.378 1192.91 Q997.248 1194.92 996.924 1198.58 L1012.11 1198.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1037.36 1188.67 L1037.36 1192.7 Q1035.56 1191.77 1033.61 1191.31 Q1031.67 1190.85 1029.59 1190.85 Q1026.41 1190.85 1024.82 1191.82 Q1023.24 1192.79 1023.24 1194.74 Q1023.24 1196.22 1024.38 1197.08 Q1025.51 1197.91 1028.94 1198.67 L1030.4 1199 Q1034.93 1199.97 1036.83 1201.75 Q1038.75 1203.51 1038.75 1206.68 Q1038.75 1210.29 1035.88 1212.4 Q1033.03 1214.51 1028.03 1214.51 Q1025.95 1214.51 1023.68 1214.09 Q1021.44 1213.7 1018.94 1212.89 L1018.94 1208.49 Q1021.3 1209.71 1023.59 1210.34 Q1025.88 1210.94 1028.13 1210.94 Q1031.14 1210.94 1032.76 1209.92 Q1034.38 1208.88 1034.38 1207.01 Q1034.38 1205.27 1033.2 1204.34 Q1032.04 1203.42 1028.08 1202.56 L1026.6 1202.21 Q1022.64 1201.38 1020.88 1199.67 Q1019.12 1197.93 1019.12 1194.92 Q1019.12 1191.27 1021.72 1189.27 Q1024.31 1187.28 1029.08 1187.28 Q1031.44 1187.28 1033.52 1187.63 Q1035.6 1187.98 1037.36 1188.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1047.43 1180.55 L1047.43 1187.91 L1056.21 1187.91 L1056.21 1191.22 L1047.43 1191.22 L1047.43 1205.29 Q1047.43 1208.46 1048.29 1209.37 Q1049.17 1210.27 1051.83 1210.27 L1056.21 1210.27 L1056.21 1213.83 L1051.83 1213.83 Q1046.9 1213.83 1045.03 1212.01 Q1043.15 1210.15 1043.15 1205.29 L1043.15 1191.22 L1040.03 1191.22 L1040.03 1187.91 L1043.15 1187.91 L1043.15 1180.55 L1047.43 1180.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 8, 2, 8\" points=\"\n 636.978,1257.03 780.306,1257.03 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M824.703 1249.38 L824.703 1253.37 Q822.897 1252.37 821.068 1251.88 Q819.263 1251.37 817.411 1251.37 Q813.267 1251.37 810.976 1254.01 Q808.684 1256.63 808.684 1261.37 Q808.684 1266.12 810.976 1268.76 Q813.267 1271.37 817.411 1271.37 Q819.263 1271.37 821.068 1270.89 Q822.897 1270.38 824.703 1269.38 L824.703 1273.32 Q822.92 1274.15 820.999 1274.57 Q819.101 1274.99 816.948 1274.99 Q811.091 1274.99 807.642 1271.31 Q804.193 1267.62 804.193 1261.37 Q804.193 1255.03 807.666 1251.4 Q811.161 1247.76 817.226 1247.76 Q819.193 1247.76 821.068 1248.18 Q822.943 1248.57 824.703 1249.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M839.216 1251.37 Q835.79 1251.37 833.8 1254.06 Q831.809 1256.72 831.809 1261.37 Q831.809 1266.03 833.777 1268.71 Q835.767 1271.37 839.216 1271.37 Q842.619 1271.37 844.61 1268.69 Q846.601 1266 846.601 1261.37 Q846.601 1256.77 844.61 1254.08 Q842.619 1251.37 839.216 1251.37 M839.216 1247.76 Q844.772 1247.76 847.943 1251.37 Q851.114 1254.99 851.114 1261.37 Q851.114 1267.74 847.943 1271.37 Q844.772 1274.99 839.216 1274.99 Q833.638 1274.99 830.466 1271.37 Q827.318 1267.74 827.318 1261.37 Q827.318 1254.99 830.466 1251.37 Q833.638 1247.76 839.216 1247.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M870.605 1252.37 Q869.887 1251.95 869.031 1251.77 Q868.198 1251.56 867.179 1251.56 Q863.568 1251.56 861.624 1253.92 Q859.702 1256.26 859.702 1260.66 L859.702 1274.31 L855.42 1274.31 L855.42 1248.39 L859.702 1248.39 L859.702 1252.42 Q861.045 1250.06 863.198 1248.92 Q865.35 1247.76 868.429 1247.76 Q868.869 1247.76 869.401 1247.83 Q869.934 1247.88 870.582 1248 L870.605 1252.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M889.262 1252.37 Q888.545 1251.95 887.688 1251.77 Q886.855 1251.56 885.836 1251.56 Q882.225 1251.56 880.281 1253.92 Q878.36 1256.26 878.36 1260.66 L878.36 1274.31 L874.077 1274.31 L874.077 1248.39 L878.36 1248.39 L878.36 1252.42 Q879.702 1250.06 881.855 1248.92 Q884.008 1247.76 887.086 1247.76 Q887.526 1247.76 888.059 1247.83 Q888.591 1247.88 889.239 1248 L889.262 1252.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M914.864 1260.29 L914.864 1262.37 L895.281 1262.37 Q895.559 1266.77 897.92 1269.08 Q900.304 1271.37 904.54 1271.37 Q906.994 1271.37 909.285 1270.77 Q911.6 1270.17 913.869 1268.97 L913.869 1272.99 Q911.577 1273.97 909.17 1274.48 Q906.762 1274.99 904.285 1274.99 Q898.082 1274.99 894.448 1271.37 Q890.836 1267.76 890.836 1261.61 Q890.836 1255.24 894.262 1251.51 Q897.711 1247.76 903.545 1247.76 Q908.776 1247.76 911.809 1251.14 Q914.864 1254.5 914.864 1260.29 M910.605 1259.04 Q910.559 1255.54 908.637 1253.46 Q906.739 1251.37 903.591 1251.37 Q900.026 1251.37 897.873 1253.39 Q895.744 1255.4 895.42 1259.06 L910.605 1259.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M937.989 1249.38 L937.989 1253.37 Q936.183 1252.37 934.355 1251.88 Q932.549 1251.37 930.697 1251.37 Q926.554 1251.37 924.262 1254.01 Q921.971 1256.63 921.971 1261.37 Q921.971 1266.12 924.262 1268.76 Q926.554 1271.37 930.697 1271.37 Q932.549 1271.37 934.355 1270.89 Q936.183 1270.38 937.989 1269.38 L937.989 1273.32 Q936.207 1274.15 934.285 1274.57 Q932.387 1274.99 930.234 1274.99 Q924.378 1274.99 920.929 1271.31 Q917.48 1267.62 917.48 1261.37 Q917.48 1255.03 920.952 1251.4 Q924.447 1247.76 930.512 1247.76 Q932.48 1247.76 934.355 1248.18 Q936.23 1248.57 937.989 1249.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M946.669 1241.03 L946.669 1248.39 L955.443 1248.39 L955.443 1251.7 L946.669 1251.7 L946.669 1265.77 Q946.669 1268.94 947.526 1269.85 Q948.406 1270.75 951.068 1270.75 L955.443 1270.75 L955.443 1274.31 L951.068 1274.31 Q946.137 1274.31 944.262 1272.49 Q942.387 1270.63 942.387 1265.77 L942.387 1251.7 L939.262 1251.7 L939.262 1248.39 L942.387 1248.39 L942.387 1241.03 L946.669 1241.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M982.086 1260.29 L982.086 1262.37 L962.503 1262.37 Q962.78 1266.77 965.142 1269.08 Q967.526 1271.37 971.762 1271.37 Q974.216 1271.37 976.507 1270.77 Q978.822 1270.17 981.091 1268.97 L981.091 1272.99 Q978.799 1273.97 976.392 1274.48 Q973.984 1274.99 971.507 1274.99 Q965.304 1274.99 961.669 1271.37 Q958.058 1267.76 958.058 1261.61 Q958.058 1255.24 961.484 1251.51 Q964.933 1247.76 970.767 1247.76 Q975.998 1247.76 979.03 1251.14 Q982.086 1254.5 982.086 1260.29 M977.827 1259.04 Q977.78 1255.54 975.859 1253.46 Q973.961 1251.37 970.813 1251.37 Q967.248 1251.37 965.095 1253.39 Q962.966 1255.4 962.642 1259.06 L977.827 1259.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1003.61 1252.32 L1003.61 1238.3 L1007.87 1238.3 L1007.87 1274.31 L1003.61 1274.31 L1003.61 1270.43 Q1002.27 1272.74 1000.21 1273.87 Q998.174 1274.99 995.303 1274.99 Q990.604 1274.99 987.641 1271.24 Q984.702 1267.49 984.702 1261.37 Q984.702 1255.26 987.641 1251.51 Q990.604 1247.76 995.303 1247.76 Q998.174 1247.76 1000.21 1248.9 Q1002.27 1250.01 1003.61 1252.32 M989.1 1261.37 Q989.1 1266.07 991.021 1268.76 Q992.966 1271.42 996.345 1271.42 Q999.725 1271.42 1001.67 1268.76 Q1003.61 1266.07 1003.61 1261.37 Q1003.61 1256.68 1001.67 1254.01 Q999.725 1251.33 996.345 1251.33 Q992.966 1251.33 991.021 1254.01 Q989.1 1256.68 989.1 1261.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1032.04 1282.18 L1032.04 1285.49 L1007.41 1285.49 L1007.41 1282.18 L1032.04 1282.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1036.51 1248.39 L1040.77 1248.39 L1040.77 1274.78 Q1040.77 1279.73 1038.87 1281.95 Q1036.99 1284.18 1032.8 1284.18 L1031.18 1284.18 L1031.18 1280.56 L1032.32 1280.56 Q1034.75 1280.56 1035.63 1279.43 Q1036.51 1278.32 1036.51 1274.78 L1036.51 1248.39 M1036.51 1238.3 L1040.77 1238.3 L1040.77 1243.69 L1036.51 1243.69 L1036.51 1238.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1067.41 1260.29 L1067.41 1262.37 L1047.83 1262.37 Q1048.1 1266.77 1050.47 1269.08 Q1052.85 1271.37 1057.09 1271.37 Q1059.54 1271.37 1061.83 1270.77 Q1064.15 1270.17 1066.41 1268.97 L1066.41 1272.99 Q1064.12 1273.97 1061.72 1274.48 Q1059.31 1274.99 1056.83 1274.99 Q1050.63 1274.99 1046.99 1271.37 Q1043.38 1267.76 1043.38 1261.61 Q1043.38 1255.24 1046.81 1251.51 Q1050.26 1247.76 1056.09 1247.76 Q1061.32 1247.76 1064.35 1251.14 Q1067.41 1254.5 1067.41 1260.29 M1063.15 1259.04 Q1063.1 1255.54 1061.18 1253.46 Q1059.28 1251.37 1056.14 1251.37 Q1052.57 1251.37 1050.42 1253.39 Q1048.29 1255.4 1047.97 1259.06 L1063.15 1259.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1085 1238.3 L1085 1241.84 L1080.93 1241.84 Q1078.64 1241.84 1077.73 1242.76 Q1076.85 1243.69 1076.85 1246.1 L1076.85 1248.39 L1083.87 1248.39 L1083.87 1251.7 L1076.85 1251.7 L1076.85 1274.31 L1072.57 1274.31 L1072.57 1251.7 L1068.5 1251.7 L1068.5 1248.39 L1072.57 1248.39 L1072.57 1246.58 Q1072.57 1242.25 1074.59 1240.29 Q1076.6 1238.3 1080.97 1238.3 L1085 1238.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1102.59 1238.3 L1102.59 1241.84 L1098.52 1241.84 Q1096.23 1241.84 1095.33 1242.76 Q1094.45 1243.69 1094.45 1246.1 L1094.45 1248.39 L1101.46 1248.39 L1101.46 1251.7 L1094.45 1251.7 L1094.45 1274.31 L1090.16 1274.31 L1090.16 1251.7 L1086.09 1251.7 L1086.09 1248.39 L1090.16 1248.39 L1090.16 1246.58 Q1090.16 1242.25 1092.18 1240.29 Q1094.19 1238.3 1098.57 1238.3 L1102.59 1238.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1122.09 1252.37 Q1121.37 1251.95 1120.51 1251.77 Q1119.68 1251.56 1118.66 1251.56 Q1115.05 1251.56 1113.1 1253.92 Q1111.18 1256.26 1111.18 1260.66 L1111.18 1274.31 L1106.9 1274.31 L1106.9 1248.39 L1111.18 1248.39 L1111.18 1252.42 Q1112.53 1250.06 1114.68 1248.92 Q1116.83 1247.76 1119.91 1247.76 Q1120.35 1247.76 1120.88 1247.83 Q1121.41 1247.88 1122.06 1248 L1122.09 1252.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1147.69 1260.29 L1147.69 1262.37 L1128.1 1262.37 Q1128.38 1266.77 1130.74 1269.08 Q1133.13 1271.37 1137.36 1271.37 Q1139.82 1271.37 1142.11 1270.77 Q1144.42 1270.17 1146.69 1268.97 L1146.69 1272.99 Q1144.4 1273.97 1141.99 1274.48 Q1139.59 1274.99 1137.11 1274.99 Q1130.9 1274.99 1127.27 1271.37 Q1123.66 1267.76 1123.66 1261.61 Q1123.66 1255.24 1127.09 1251.51 Q1130.53 1247.76 1136.37 1247.76 Q1141.6 1247.76 1144.63 1251.14 Q1147.69 1254.5 1147.69 1260.29 M1143.43 1259.04 Q1143.38 1255.54 1141.46 1253.46 Q1139.56 1251.37 1136.41 1251.37 Q1132.85 1251.37 1130.7 1253.39 Q1128.57 1255.4 1128.24 1259.06 L1143.43 1259.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1162.94 1276.72 Q1161.14 1281.35 1159.42 1282.76 Q1157.71 1284.18 1154.84 1284.18 L1151.44 1284.18 L1151.44 1280.61 L1153.94 1280.61 Q1155.7 1280.61 1156.67 1279.78 Q1157.64 1278.94 1158.82 1275.84 L1159.58 1273.9 L1149.1 1248.39 L1153.61 1248.39 L1161.71 1268.67 L1169.82 1248.39 L1174.33 1248.39 L1162.94 1276.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1195.33 1249.15 L1195.33 1253.18 Q1193.52 1252.25 1191.58 1251.79 Q1189.63 1251.33 1187.55 1251.33 Q1184.38 1251.33 1182.78 1252.3 Q1181.21 1253.27 1181.21 1255.22 Q1181.21 1256.7 1182.34 1257.56 Q1183.47 1258.39 1186.9 1259.15 L1188.36 1259.48 Q1192.89 1260.45 1194.79 1262.23 Q1196.71 1263.99 1196.71 1267.16 Q1196.71 1270.77 1193.84 1272.88 Q1191 1274.99 1186 1274.99 Q1183.91 1274.99 1181.65 1274.57 Q1179.4 1274.18 1176.9 1273.37 L1176.9 1268.97 Q1179.26 1270.19 1181.55 1270.82 Q1183.84 1271.42 1186.09 1271.42 Q1189.1 1271.42 1190.72 1270.4 Q1192.34 1269.36 1192.34 1267.49 Q1192.34 1265.75 1191.16 1264.82 Q1190 1263.9 1186.04 1263.04 L1184.56 1262.69 Q1180.6 1261.86 1178.84 1260.15 Q1177.08 1258.41 1177.08 1255.4 Q1177.08 1251.75 1179.68 1249.75 Q1182.27 1247.76 1187.04 1247.76 Q1189.4 1247.76 1191.48 1248.11 Q1193.57 1248.46 1195.33 1249.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" stroke-dasharray=\"16, 8, 2, 8, 2, 8\" points=\"\n 636.978,1317.51 780.306,1317.51 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M809.517 1308.87 L813.777 1308.87 L813.777 1335.26 Q813.777 1340.21 811.879 1342.43 Q810.004 1344.66 805.814 1344.66 L804.193 1344.66 L804.193 1341.04 L805.328 1341.04 Q807.758 1341.04 808.638 1339.91 Q809.517 1338.8 809.517 1335.26 L809.517 1308.87 M809.517 1298.78 L813.777 1298.78 L813.777 1304.17 L809.517 1304.17 L809.517 1298.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M840.42 1320.77 L840.42 1322.85 L820.837 1322.85 Q821.115 1327.25 823.476 1329.56 Q825.86 1331.85 830.096 1331.85 Q832.55 1331.85 834.841 1331.25 Q837.156 1330.65 839.425 1329.45 L839.425 1333.47 Q837.133 1334.45 834.726 1334.96 Q832.318 1335.47 829.841 1335.47 Q823.638 1335.47 820.003 1331.85 Q816.392 1328.24 816.392 1322.09 Q816.392 1315.72 819.818 1311.99 Q823.267 1308.24 829.101 1308.24 Q834.332 1308.24 837.364 1311.62 Q840.42 1314.98 840.42 1320.77 M836.161 1319.52 Q836.114 1316.02 834.193 1313.94 Q832.295 1311.85 829.147 1311.85 Q825.582 1311.85 823.429 1313.87 Q821.3 1315.88 820.976 1319.54 L836.161 1319.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M858.013 1298.78 L858.013 1302.32 L853.938 1302.32 Q851.647 1302.32 850.744 1303.24 Q849.864 1304.17 849.864 1306.58 L849.864 1308.87 L856.878 1308.87 L856.878 1312.18 L849.864 1312.18 L849.864 1334.79 L845.582 1334.79 L845.582 1312.18 L841.508 1312.18 L841.508 1308.87 L845.582 1308.87 L845.582 1307.06 Q845.582 1302.73 847.596 1300.77 Q849.61 1298.78 853.985 1298.78 L858.013 1298.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M875.605 1298.78 L875.605 1302.32 L871.531 1302.32 Q869.239 1302.32 868.337 1303.24 Q867.457 1304.17 867.457 1306.58 L867.457 1308.87 L874.471 1308.87 L874.471 1312.18 L867.457 1312.18 L867.457 1334.79 L863.175 1334.79 L863.175 1312.18 L859.1 1312.18 L859.1 1308.87 L863.175 1308.87 L863.175 1307.06 Q863.175 1302.73 865.188 1300.77 Q867.202 1298.78 871.577 1298.78 L875.605 1298.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M895.096 1312.85 Q894.378 1312.43 893.522 1312.25 Q892.688 1312.04 891.67 1312.04 Q888.059 1312.04 886.114 1314.4 Q884.193 1316.74 884.193 1321.14 L884.193 1334.79 L879.911 1334.79 L879.911 1308.87 L884.193 1308.87 L884.193 1312.9 Q885.536 1310.54 887.688 1309.4 Q889.841 1308.24 892.92 1308.24 Q893.36 1308.24 893.892 1308.31 Q894.424 1308.36 895.073 1308.48 L895.096 1312.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M920.697 1320.77 L920.697 1322.85 L901.114 1322.85 Q901.392 1327.25 903.753 1329.56 Q906.137 1331.85 910.373 1331.85 Q912.827 1331.85 915.119 1331.25 Q917.434 1330.65 919.702 1329.45 L919.702 1333.47 Q917.41 1334.45 915.003 1334.96 Q912.596 1335.47 910.119 1335.47 Q903.915 1335.47 900.281 1331.85 Q896.67 1328.24 896.67 1322.09 Q896.67 1315.72 900.096 1311.99 Q903.545 1308.24 909.378 1308.24 Q914.609 1308.24 917.642 1311.62 Q920.697 1314.98 920.697 1320.77 M916.438 1319.52 Q916.392 1316.02 914.471 1313.94 Q912.572 1311.85 909.424 1311.85 Q905.859 1311.85 903.707 1313.87 Q901.577 1315.88 901.253 1319.54 L916.438 1319.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M935.952 1337.2 Q934.146 1341.83 932.433 1343.24 Q930.72 1344.66 927.85 1344.66 L924.447 1344.66 L924.447 1341.09 L926.947 1341.09 Q928.707 1341.09 929.679 1340.26 Q930.651 1339.42 931.832 1336.32 L932.595 1334.38 L922.109 1308.87 L926.623 1308.87 L934.725 1329.15 L942.827 1308.87 L947.341 1308.87 L935.952 1337.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M968.336 1309.63 L968.336 1313.66 Q966.53 1312.73 964.586 1312.27 Q962.642 1311.81 960.558 1311.81 Q957.387 1311.81 955.79 1312.78 Q954.216 1313.75 954.216 1315.7 Q954.216 1317.18 955.35 1318.04 Q956.484 1318.87 959.91 1319.63 L961.368 1319.96 Q965.905 1320.93 967.804 1322.71 Q969.725 1324.47 969.725 1327.64 Q969.725 1331.25 966.855 1333.36 Q964.007 1335.47 959.007 1335.47 Q956.924 1335.47 954.656 1335.05 Q952.41 1334.66 949.91 1333.85 L949.91 1329.45 Q952.271 1330.67 954.563 1331.3 Q956.855 1331.9 959.1 1331.9 Q962.109 1331.9 963.73 1330.88 Q965.35 1329.84 965.35 1327.97 Q965.35 1326.23 964.169 1325.3 Q963.012 1324.38 959.054 1323.52 L957.572 1323.17 Q953.614 1322.34 951.855 1320.63 Q950.095 1318.89 950.095 1315.88 Q950.095 1312.23 952.688 1310.23 Q955.281 1308.24 960.049 1308.24 Q962.41 1308.24 964.493 1308.59 Q966.577 1308.94 968.336 1309.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 636.978,1377.99 780.306,1377.99 \n \"/>\n<path clip-path=\"url(#clip920)\" d=\"M 0 0 M824.703 1370.34 L824.703 1374.33 Q822.897 1373.33 821.068 1372.84 Q819.263 1372.33 817.411 1372.33 Q813.267 1372.33 810.976 1374.97 Q808.684 1377.59 808.684 1382.33 Q808.684 1387.08 810.976 1389.72 Q813.267 1392.33 817.411 1392.33 Q819.263 1392.33 821.068 1391.85 Q822.897 1391.34 824.703 1390.34 L824.703 1394.28 Q822.92 1395.11 820.999 1395.53 Q819.101 1395.95 816.948 1395.95 Q811.091 1395.95 807.642 1392.27 Q804.193 1388.58 804.193 1382.33 Q804.193 1375.99 807.666 1372.36 Q811.161 1368.72 817.226 1368.72 Q819.193 1368.72 821.068 1369.14 Q822.943 1369.53 824.703 1370.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M839.216 1372.33 Q835.79 1372.33 833.8 1375.02 Q831.809 1377.68 831.809 1382.33 Q831.809 1386.99 833.777 1389.67 Q835.767 1392.33 839.216 1392.33 Q842.619 1392.33 844.61 1389.65 Q846.601 1386.96 846.601 1382.33 Q846.601 1377.73 844.61 1375.04 Q842.619 1372.33 839.216 1372.33 M839.216 1368.72 Q844.772 1368.72 847.943 1372.33 Q851.114 1375.95 851.114 1382.33 Q851.114 1388.7 847.943 1392.33 Q844.772 1395.95 839.216 1395.95 Q833.638 1395.95 830.466 1392.33 Q827.318 1388.7 827.318 1382.33 Q827.318 1375.95 830.466 1372.33 Q833.638 1368.72 839.216 1368.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M870.605 1373.33 Q869.887 1372.91 869.031 1372.73 Q868.198 1372.52 867.179 1372.52 Q863.568 1372.52 861.624 1374.88 Q859.702 1377.22 859.702 1381.62 L859.702 1395.27 L855.42 1395.27 L855.42 1369.35 L859.702 1369.35 L859.702 1373.38 Q861.045 1371.02 863.198 1369.88 Q865.35 1368.72 868.429 1368.72 Q868.869 1368.72 869.401 1368.79 Q869.934 1368.84 870.582 1368.96 L870.605 1373.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M889.262 1373.33 Q888.545 1372.91 887.688 1372.73 Q886.855 1372.52 885.836 1372.52 Q882.225 1372.52 880.281 1374.88 Q878.36 1377.22 878.36 1381.62 L878.36 1395.27 L874.077 1395.27 L874.077 1369.35 L878.36 1369.35 L878.36 1373.38 Q879.702 1371.02 881.855 1369.88 Q884.008 1368.72 887.086 1368.72 Q887.526 1368.72 888.059 1368.79 Q888.591 1368.84 889.239 1368.96 L889.262 1373.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M914.864 1381.25 L914.864 1383.33 L895.281 1383.33 Q895.559 1387.73 897.92 1390.04 Q900.304 1392.33 904.54 1392.33 Q906.994 1392.33 909.285 1391.73 Q911.6 1391.13 913.869 1389.93 L913.869 1393.95 Q911.577 1394.93 909.17 1395.44 Q906.762 1395.95 904.285 1395.95 Q898.082 1395.95 894.448 1392.33 Q890.836 1388.72 890.836 1382.57 Q890.836 1376.2 894.262 1372.47 Q897.711 1368.72 903.545 1368.72 Q908.776 1368.72 911.809 1372.1 Q914.864 1375.46 914.864 1381.25 M910.605 1380 Q910.559 1376.5 908.637 1374.42 Q906.739 1372.33 903.591 1372.33 Q900.026 1372.33 897.873 1374.35 Q895.744 1376.36 895.42 1380.02 L910.605 1380 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M937.989 1370.34 L937.989 1374.33 Q936.183 1373.33 934.355 1372.84 Q932.549 1372.33 930.697 1372.33 Q926.554 1372.33 924.262 1374.97 Q921.971 1377.59 921.971 1382.33 Q921.971 1387.08 924.262 1389.72 Q926.554 1392.33 930.697 1392.33 Q932.549 1392.33 934.355 1391.85 Q936.183 1391.34 937.989 1390.34 L937.989 1394.28 Q936.207 1395.11 934.285 1395.53 Q932.387 1395.95 930.234 1395.95 Q924.378 1395.95 920.929 1392.27 Q917.48 1388.58 917.48 1382.33 Q917.48 1375.99 920.952 1372.36 Q924.447 1368.72 930.512 1368.72 Q932.48 1368.72 934.355 1369.14 Q936.23 1369.53 937.989 1370.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M946.669 1361.99 L946.669 1369.35 L955.443 1369.35 L955.443 1372.66 L946.669 1372.66 L946.669 1386.73 Q946.669 1389.9 947.526 1390.81 Q948.406 1391.71 951.068 1391.71 L955.443 1391.71 L955.443 1395.27 L951.068 1395.27 Q946.137 1395.27 944.262 1393.45 Q942.387 1391.59 942.387 1386.73 L942.387 1372.66 L939.262 1372.66 L939.262 1369.35 L942.387 1369.35 L942.387 1361.99 L946.669 1361.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M982.086 1381.25 L982.086 1383.33 L962.503 1383.33 Q962.78 1387.73 965.142 1390.04 Q967.526 1392.33 971.762 1392.33 Q974.216 1392.33 976.507 1391.73 Q978.822 1391.13 981.091 1389.93 L981.091 1393.95 Q978.799 1394.93 976.392 1395.44 Q973.984 1395.95 971.507 1395.95 Q965.304 1395.95 961.669 1392.33 Q958.058 1388.72 958.058 1382.57 Q958.058 1376.2 961.484 1372.47 Q964.933 1368.72 970.767 1368.72 Q975.998 1368.72 979.03 1372.1 Q982.086 1375.46 982.086 1381.25 M977.827 1380 Q977.78 1376.5 975.859 1374.42 Q973.961 1372.33 970.813 1372.33 Q967.248 1372.33 965.095 1374.35 Q962.966 1376.36 962.642 1380.02 L977.827 1380 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1003.61 1373.28 L1003.61 1359.26 L1007.87 1359.26 L1007.87 1395.27 L1003.61 1395.27 L1003.61 1391.39 Q1002.27 1393.7 1000.21 1394.83 Q998.174 1395.95 995.303 1395.95 Q990.604 1395.95 987.641 1392.2 Q984.702 1388.45 984.702 1382.33 Q984.702 1376.22 987.641 1372.47 Q990.604 1368.72 995.303 1368.72 Q998.174 1368.72 1000.21 1369.86 Q1002.27 1370.97 1003.61 1373.28 M989.1 1382.33 Q989.1 1387.03 991.021 1389.72 Q992.966 1392.38 996.345 1392.38 Q999.725 1392.38 1001.67 1389.72 Q1003.61 1387.03 1003.61 1382.33 Q1003.61 1377.64 1001.67 1374.97 Q999.725 1372.29 996.345 1372.29 Q992.966 1372.29 991.021 1374.97 Q989.1 1377.64 989.1 1382.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1032.04 1403.14 L1032.04 1406.45 L1007.41 1406.45 L1007.41 1403.14 L1032.04 1403.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1056.69 1374.33 Q1058.29 1371.46 1060.51 1370.09 Q1062.73 1368.72 1065.74 1368.72 Q1069.79 1368.72 1071.99 1371.57 Q1074.19 1374.39 1074.19 1379.63 L1074.19 1395.27 L1069.91 1395.27 L1069.91 1379.77 Q1069.91 1376.04 1068.59 1374.23 Q1067.27 1372.43 1064.56 1372.43 Q1061.25 1372.43 1059.33 1374.63 Q1057.41 1376.83 1057.41 1380.62 L1057.41 1395.27 L1053.13 1395.27 L1053.13 1379.77 Q1053.13 1376.02 1051.81 1374.23 Q1050.49 1372.43 1047.73 1372.43 Q1044.47 1372.43 1042.55 1374.65 Q1040.63 1376.85 1040.63 1380.62 L1040.63 1395.27 L1036.34 1395.27 L1036.34 1369.35 L1040.63 1369.35 L1040.63 1373.38 Q1042.09 1370.99 1044.12 1369.86 Q1046.16 1368.72 1048.96 1368.72 Q1051.78 1368.72 1053.75 1370.16 Q1055.74 1371.59 1056.69 1374.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1078.66 1359.26 L1082.92 1359.26 L1082.92 1395.27 L1078.66 1395.27 L1078.66 1359.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M 0 0 M1109.56 1381.25 L1109.56 1383.33 L1089.98 1383.33 Q1090.26 1387.73 1092.62 1390.04 Q1095 1392.33 1099.24 1392.33 Q1101.69 1392.33 1103.98 1391.73 Q1106.3 1391.13 1108.57 1389.93 L1108.57 1393.95 Q1106.28 1394.93 1103.87 1395.44 Q1101.46 1395.95 1098.98 1395.95 Q1092.78 1395.95 1089.15 1392.33 Q1085.53 1388.72 1085.53 1382.57 Q1085.53 1376.2 1088.96 1372.47 Q1092.41 1368.72 1098.24 1368.72 Q1103.47 1368.72 1106.51 1372.1 Q1109.56 1375.46 1109.56 1381.25 M1105.3 1380 Q1105.26 1376.5 1103.34 1374.42 Q1101.44 1372.33 1098.29 1372.33 Q1094.72 1372.33 1092.57 1374.35 Q1090.44 1376.36 1090.12 1380.02 L1105.3 1380 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_optimal.(nothing, 0:10)",
"execution_count": 3,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 3,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.04251155945436709\n 0.17905246094661803\n 0.22817364126399065\n 0.32113227619309637\n 0.42276759076040954\n 0.5\n 0.5772324092395904\n 0.6788677238069036\n 0.7718263587360094\n 0.820947539053382\n 0.9574884405456329"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_corrected_asymptbest.(10, 0:10)",
"execution_count": 4,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 4,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.04321287164123921\n 0.17123415516858717\n 0.2391304347826087\n 0.32608695652173914\n 0.41304347826086957\n 0.5\n 0.5869565217391305\n 0.6739130434782609\n 0.7608695652173914\n 0.8287658448314128\n 0.9567871283587609"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_asymptbest.(10, 0:10)",
"execution_count": 5,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 5,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.044444444444444446\n 0.1702127659574468\n 0.2391304347826087\n 0.32608695652173914\n 0.41304347826086957\n 0.5\n 0.5869565217391305\n 0.6739130434782609\n 0.7608695652173914\n 0.8297872340425532\n 0.9555555555555556"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_corrected_jeffreys.(10, 0:10)",
"execution_count": 6,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 6,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.04627949183303086\n 0.13702359346642468\n 0.2277676950998185\n 0.31851179673321234\n 0.40925589836660614\n 0.5\n 0.5907441016333939\n 0.6814882032667877\n 0.7722323049001815\n 0.8629764065335753\n 0.9537205081669692"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_jeffreys.(10, 0:10)",
"execution_count": 7,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 7,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.045454545454545456\n 0.13636363636363635\n 0.22727272727272727\n 0.3181818181818182\n 0.4090909090909091\n 0.5\n 0.5909090909090909\n 0.6818181818181818\n 0.7727272727272727\n 0.8636363636363636\n 0.9545454545454546"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "est_corrected_mle.(10, 0:10)",
"execution_count": 8,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 8,
"data": {
"text/plain": "11-element Vector{Float64}:\n 0.05\n 0.1\n 0.2\n 0.3\n 0.4\n 0.5\n 0.6\n 0.7\n 0.8\n 0.9\n 0.95"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "function random_loss!(loss = zeros(1000);\n estfunc = est_jeffreys, \n maxlossfunc = maximize_Eloss, \n lossfunc = loss_kl, \n n = 10, \n rng = Random.default_rng()\n )\n q = maxlossfunc(n, estfunc, lossfunc)[1]\n bin = Binomial(n, q)\n for l in eachindex(loss)\n k = rand(rng, bin)\n p = estfunc(n, k)\n loss[l] = lossfunc(n, q, p)\n end\n loss\nend\n\nfunction simulate_loss(;\n estfunc = est_jeffreys, \n maxlossfunc = maximize_Eloss, \n lossfunc = loss_kl, \n n = 10, \n L = 1000, \n niters = 10^5,\n kwargs...\n )\n loss = zeros(niters)\n ranges = Distributed.splitrange(1, niters, nthreads())\n @threads for ran in ranges\n rng = Random.default_rng()\n losstmp = zeros(L)\n for i in ran\n random_loss!(losstmp; estfunc, maxlossfunc, lossfunc, n, rng)\n loss[i] = sum(losstmp)\n end\n end\n m, s = mean(loss), std(loss)\n (μ = m, σ = s) |> println\n histogram(loss; norm=true, alpha=0.3, label=\"loss\")\n plot!(; xtick=-200:200, ytick=0:0.01:1, tickfontsize=6)\n title!(\"Player($estfunc)\"; titlefontsize=11)\n vline!([m-2s, m, m+2s]; label=\"μ ± 2σ\")\n plot!(; kwargs...)\nend\n\nfunction simulate_games(;\n estfunc0 = est_jeffreys, \n estfunc1 = est_asymptbest, \n maxlossfunc = maximize_Eloss, \n lossfunc = loss_kl, \n n = 10, \n L = 1000, \n niters = 10^5,\n kwargs...\n )\n score = zeros(niters)\n ranges = Distributed.splitrange(1, niters, nthreads())\n @threads for ran in ranges\n rng = Random.default_rng()\n losstmp0 = zeros(L)\n losstmp1 = zeros(L)\n for i in ran\n random_loss!(losstmp0; estfunc=estfunc0, maxlossfunc, lossfunc, n, rng)\n random_loss!(losstmp1; estfunc=estfunc1, maxlossfunc, lossfunc, n, rng)\n score[i] = sum(losstmp0) - sum(losstmp1)\n end\n end\n m, s, pow = mean(score), std(score), mean(>(0), score)\n (μ = m, σ = s, prob_of_win = pow) |> println\n histogram(score; norm=true, alpha=0.3, label=\"score\")\n plot!(; xtick=-200:200, ytick=0:0.01:1, tickfontsize=6)\n title!(\"Player($estfunc0) vs. Player($estfunc1)\"; titlefontsize=11)\n vline!([m-2s, m, m+2s]; label=\"μ ± 2σ\")\n vline!([0]; label=\"\", color=:black, ls=:dash, lw=1.5)\n plot!(; kwargs...)\nend",
"execution_count": 9,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 9,
"data": {
"text/plain": "simulate_games (generic function with 1 method)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time loss = simulate_loss(; estfunc=est_corrected_mle)",
"execution_count": 10,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 60.046249243119455, σ = 2.9842570142229152)\n 5.670381 seconds (4.44 M allocations: 265.184 MiB, 1.50% gc time, 10.82% compilation time)\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 10,
"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=\"clip960\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip960)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip961\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip960)\" d=\"\nM153.259 1495.09 L2352.76 1495.09 L2352.76 110.512 L153.259 110.512 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip962\">\n <rect x=\"153\" y=\"110\" width=\"2200\" height=\"1386\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 191.986,1495.09 191.986,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 274.235,1495.09 274.235,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 356.485,1495.09 356.485,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 438.735,1495.09 438.735,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 520.985,1495.09 520.985,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 603.234,1495.09 603.234,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 685.484,1495.09 685.484,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 767.734,1495.09 767.734,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 849.984,1495.09 849.984,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 932.233,1495.09 932.233,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1014.48,1495.09 1014.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1096.73,1495.09 1096.73,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1178.98,1495.09 1178.98,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1261.23,1495.09 1261.23,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1343.48,1495.09 1343.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1425.73,1495.09 1425.73,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1507.98,1495.09 1507.98,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1590.23,1495.09 1590.23,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1672.48,1495.09 1672.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1754.73,1495.09 1754.73,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1836.98,1495.09 1836.98,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1919.23,1495.09 1919.23,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2001.48,1495.09 2001.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2083.73,1495.09 2083.73,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2165.98,1495.09 2165.98,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2248.23,1495.09 2248.23,110.512 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2330.48,1495.09 2330.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 2352.76,1495.09 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 191.986,1495.09 191.986,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 274.235,1495.09 274.235,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 356.485,1495.09 356.485,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 438.735,1495.09 438.735,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 520.985,1495.09 520.985,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 603.234,1495.09 603.234,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 685.484,1495.09 685.484,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 767.734,1495.09 767.734,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 849.984,1495.09 849.984,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 932.233,1495.09 932.233,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1014.48,1495.09 1014.48,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1096.73,1495.09 1096.73,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1178.98,1495.09 1178.98,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1261.23,1495.09 1261.23,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1343.48,1495.09 1343.48,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1425.73,1495.09 1425.73,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1507.98,1495.09 1507.98,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1590.23,1495.09 1590.23,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1672.48,1495.09 1672.48,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1754.73,1495.09 1754.73,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1836.98,1495.09 1836.98,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1919.23,1495.09 1919.23,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2001.48,1495.09 2001.48,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2083.73,1495.09 2083.73,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2165.98,1495.09 2165.98,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2248.23,1495.09 2248.23,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2330.48,1495.09 2330.48,1478.47 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"M 0 0 M184.147 1522.53 L175.293 1536.36 L184.147 1536.36 L184.147 1522.53 M183.227 1519.47 L187.637 1519.47 L187.637 1536.36 L191.335 1536.36 L191.335 1539.28 L187.637 1539.28 L187.637 1545.39 L184.147 1545.39 L184.147 1539.28 L172.446 1539.28 L172.446 1535.9 L183.227 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M202.637 1533.08 Q200.137 1533.08 198.696 1534.42 Q197.272 1535.76 197.272 1538.1 Q197.272 1540.44 198.696 1541.78 Q200.137 1543.12 202.637 1543.12 Q205.137 1543.12 206.578 1541.78 Q208.019 1540.43 208.019 1538.1 Q208.019 1535.76 206.578 1534.42 Q205.154 1533.08 202.637 1533.08 M199.13 1531.59 Q196.873 1531.03 195.605 1529.49 Q194.355 1527.94 194.355 1525.72 Q194.355 1522.61 196.56 1520.81 Q198.782 1519 202.637 1519 Q206.508 1519 208.713 1520.81 Q210.918 1522.61 210.918 1525.72 Q210.918 1527.94 209.65 1529.49 Q208.4 1531.03 206.161 1531.59 Q208.696 1532.18 210.102 1533.9 Q211.525 1535.62 211.525 1538.1 Q211.525 1541.87 209.216 1543.88 Q206.925 1545.9 202.637 1545.9 Q198.348 1545.9 196.039 1543.88 Q193.748 1541.87 193.748 1538.1 Q193.748 1535.62 195.171 1533.9 Q196.595 1532.18 199.13 1531.59 M197.845 1526.05 Q197.845 1528.07 199.095 1529.19 Q200.362 1530.32 202.637 1530.32 Q204.894 1530.32 206.161 1529.19 Q207.446 1528.07 207.446 1526.05 Q207.446 1524.04 206.161 1522.91 Q204.894 1521.78 202.637 1521.78 Q200.362 1521.78 199.095 1522.91 Q197.845 1524.04 197.845 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M266.432 1522.53 L257.577 1536.36 L266.432 1536.36 L266.432 1522.53 M265.511 1519.47 L269.921 1519.47 L269.921 1536.36 L273.619 1536.36 L273.619 1539.28 L269.921 1539.28 L269.921 1545.39 L266.432 1545.39 L266.432 1539.28 L254.73 1539.28 L254.73 1535.9 L265.511 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M277.525 1544.85 L277.525 1541.66 Q278.845 1542.28 280.199 1542.61 Q281.553 1542.94 282.855 1542.94 Q286.327 1542.94 288.15 1540.62 Q289.99 1538.27 290.251 1533.52 Q289.244 1535.01 287.699 1535.81 Q286.154 1536.61 284.279 1536.61 Q280.39 1536.61 278.116 1534.26 Q275.859 1531.9 275.859 1527.82 Q275.859 1523.83 278.22 1521.42 Q280.581 1519 284.504 1519 Q289.001 1519 291.362 1522.46 Q293.74 1525.9 293.74 1532.46 Q293.74 1538.59 290.824 1542.25 Q287.925 1545.9 283.011 1545.9 Q281.692 1545.9 280.338 1545.63 Q278.984 1545.37 277.525 1544.85 M284.504 1533.86 Q286.866 1533.86 288.237 1532.25 Q289.626 1530.64 289.626 1527.82 Q289.626 1525.03 288.237 1523.41 Q286.866 1521.78 284.504 1521.78 Q282.143 1521.78 280.754 1523.41 Q279.383 1525.03 279.383 1527.82 Q279.383 1530.64 280.754 1532.25 Q282.143 1533.86 284.504 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M339.063 1519.47 L352.831 1519.47 L352.831 1522.42 L342.275 1522.42 L342.275 1528.78 Q343.039 1528.52 343.803 1528.4 Q344.567 1528.26 345.331 1528.26 Q349.671 1528.26 352.206 1530.64 Q354.74 1533.01 354.74 1537.08 Q354.74 1541.26 352.136 1543.59 Q349.532 1545.9 344.792 1545.9 Q343.161 1545.9 341.459 1545.62 Q339.775 1545.34 337.97 1544.78 L337.97 1541.26 Q339.532 1542.11 341.199 1542.53 Q342.865 1542.94 344.723 1542.94 Q347.726 1542.94 349.48 1541.36 Q351.233 1539.78 351.233 1537.08 Q351.233 1534.37 349.48 1532.79 Q347.726 1531.21 344.723 1531.21 Q343.317 1531.21 341.911 1531.52 Q340.522 1531.83 339.063 1532.49 L339.063 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M366.042 1521.78 Q363.334 1521.78 361.963 1524.45 Q360.608 1527.11 360.608 1532.46 Q360.608 1537.79 361.963 1540.46 Q363.334 1543.12 366.042 1543.12 Q368.768 1543.12 370.122 1540.46 Q371.494 1537.79 371.494 1532.46 Q371.494 1527.11 370.122 1524.45 Q368.768 1521.78 366.042 1521.78 M366.042 1519 Q370.4 1519 372.692 1522.46 Q375.001 1525.9 375.001 1532.46 Q375.001 1539 372.692 1542.46 Q370.4 1545.9 366.042 1545.9 Q361.685 1545.9 359.376 1542.46 Q357.084 1539 357.084 1532.46 Q357.084 1525.9 359.376 1522.46 Q361.685 1519 366.042 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M421.773 1519.47 L435.54 1519.47 L435.54 1522.42 L424.985 1522.42 L424.985 1528.78 Q425.749 1528.52 426.513 1528.4 Q427.277 1528.26 428.041 1528.26 Q432.381 1528.26 434.915 1530.64 Q437.45 1533.01 437.45 1537.08 Q437.45 1541.26 434.846 1543.59 Q432.242 1545.9 427.502 1545.9 Q425.87 1545.9 424.169 1545.62 Q422.485 1545.34 420.679 1544.78 L420.679 1541.26 Q422.242 1542.11 423.909 1542.53 Q425.575 1542.94 427.433 1542.94 Q430.436 1542.94 432.19 1541.36 Q433.943 1539.78 433.943 1537.08 Q433.943 1534.37 432.19 1532.79 Q430.436 1531.21 427.433 1531.21 Q426.027 1531.21 424.62 1531.52 Q423.232 1531.83 421.773 1532.49 L421.773 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M441.86 1542.44 L447.589 1542.44 L447.589 1522.67 L441.356 1523.92 L441.356 1520.72 L447.554 1519.47 L451.061 1519.47 L451.061 1542.44 L456.79 1542.44 L456.79 1545.39 L441.86 1545.39 L441.86 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M504.162 1519.47 L517.929 1519.47 L517.929 1522.42 L507.374 1522.42 L507.374 1528.78 Q508.137 1528.52 508.901 1528.4 Q509.665 1528.26 510.429 1528.26 Q514.769 1528.26 517.304 1530.64 Q519.839 1533.01 519.839 1537.08 Q519.839 1541.26 517.235 1543.59 Q514.631 1545.9 509.891 1545.9 Q508.259 1545.9 506.558 1545.62 Q504.874 1545.34 503.068 1544.78 L503.068 1541.26 Q504.631 1542.11 506.297 1542.53 Q507.964 1542.94 509.822 1542.94 Q512.825 1542.94 514.578 1541.36 Q516.332 1539.78 516.332 1537.08 Q516.332 1534.37 514.578 1532.79 Q512.825 1531.21 509.822 1531.21 Q508.415 1531.21 507.009 1531.52 Q505.62 1531.83 504.162 1532.49 L504.162 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M526.662 1542.44 L538.901 1542.44 L538.901 1545.39 L522.443 1545.39 L522.443 1542.44 Q524.439 1540.37 527.877 1536.9 Q531.332 1533.41 532.217 1532.41 Q533.901 1530.51 534.561 1529.21 Q535.238 1527.89 535.238 1526.62 Q535.238 1524.56 533.78 1523.26 Q532.339 1521.95 530.012 1521.95 Q528.363 1521.95 526.523 1522.53 Q524.7 1523.1 522.617 1524.26 L522.617 1520.72 Q524.735 1519.87 526.575 1519.44 Q528.415 1519 529.943 1519 Q533.971 1519 536.367 1521.02 Q538.762 1523.03 538.762 1526.4 Q538.762 1528 538.155 1529.44 Q537.564 1530.86 535.985 1532.81 Q535.551 1533.31 533.224 1535.72 Q530.898 1538.12 526.662 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M586.056 1519.47 L599.823 1519.47 L599.823 1522.42 L589.267 1522.42 L589.267 1528.78 Q590.031 1528.52 590.795 1528.4 Q591.559 1528.26 592.323 1528.26 Q596.663 1528.26 599.198 1530.64 Q601.733 1533.01 601.733 1537.08 Q601.733 1541.26 599.129 1543.59 Q596.524 1545.9 591.785 1545.9 Q590.153 1545.9 588.452 1545.62 Q586.767 1545.34 584.962 1544.78 L584.962 1541.26 Q586.524 1542.11 588.191 1542.53 Q589.858 1542.94 591.715 1542.94 Q594.719 1542.94 596.472 1541.36 Q598.226 1539.78 598.226 1537.08 Q598.226 1534.37 596.472 1532.79 Q594.719 1531.21 591.715 1531.21 Q590.309 1531.21 588.903 1531.52 Q587.514 1531.83 586.056 1532.49 L586.056 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M616.16 1531.42 Q618.677 1531.95 620.083 1533.66 Q621.507 1535.36 621.507 1537.86 Q621.507 1541.69 618.868 1543.79 Q616.229 1545.9 611.368 1545.9 Q609.736 1545.9 608 1545.57 Q606.281 1545.25 604.441 1544.61 L604.441 1541.23 Q605.899 1542.08 607.635 1542.51 Q609.372 1542.94 611.264 1542.94 Q614.562 1542.94 616.281 1541.64 Q618.017 1540.34 618.017 1537.86 Q618.017 1535.57 616.403 1534.28 Q614.806 1532.98 611.941 1532.98 L608.92 1532.98 L608.92 1530.1 L612.08 1530.1 Q614.667 1530.1 616.038 1529.07 Q617.41 1528.03 617.41 1526.09 Q617.41 1524.09 615.986 1523.03 Q614.58 1521.95 611.941 1521.95 Q610.5 1521.95 608.851 1522.27 Q607.201 1522.58 605.222 1523.24 L605.222 1520.11 Q607.219 1519.56 608.955 1519.28 Q610.708 1519 612.253 1519 Q616.246 1519 618.573 1520.83 Q620.899 1522.63 620.899 1525.72 Q620.899 1527.87 619.667 1529.37 Q618.434 1530.84 616.16 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M667.88 1519.47 L681.647 1519.47 L681.647 1522.42 L671.092 1522.42 L671.092 1528.78 Q671.856 1528.52 672.62 1528.4 Q673.384 1528.26 674.147 1528.26 Q678.488 1528.26 681.022 1530.64 Q683.557 1533.01 683.557 1537.08 Q683.557 1541.26 680.953 1543.59 Q678.349 1545.9 673.609 1545.9 Q671.977 1545.9 670.276 1545.62 Q668.592 1545.34 666.786 1544.78 L666.786 1541.26 Q668.349 1542.11 670.016 1542.53 Q671.682 1542.94 673.54 1542.94 Q676.543 1542.94 678.297 1541.36 Q680.05 1539.78 680.05 1537.08 Q680.05 1534.37 678.297 1532.79 Q676.543 1531.21 673.54 1531.21 Q672.134 1531.21 670.727 1531.52 Q669.338 1531.83 667.88 1532.49 L667.88 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M696.995 1522.53 L688.14 1536.36 L696.995 1536.36 L696.995 1522.53 M696.074 1519.47 L700.484 1519.47 L700.484 1536.36 L704.182 1536.36 L704.182 1539.28 L700.484 1539.28 L700.484 1545.39 L696.995 1545.39 L696.995 1539.28 L685.293 1539.28 L685.293 1535.9 L696.074 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M750.685 1519.47 L764.453 1519.47 L764.453 1522.42 L753.897 1522.42 L753.897 1528.78 Q754.661 1528.52 755.425 1528.4 Q756.189 1528.26 756.953 1528.26 Q761.293 1528.26 763.828 1530.64 Q766.362 1533.01 766.362 1537.08 Q766.362 1541.26 763.758 1543.59 Q761.154 1545.9 756.415 1545.9 Q754.783 1545.9 753.081 1545.62 Q751.397 1545.34 749.592 1544.78 L749.592 1541.26 Q751.154 1542.11 752.821 1542.53 Q754.487 1542.94 756.345 1542.94 Q759.349 1542.94 761.102 1541.36 Q762.855 1539.78 762.855 1537.08 Q762.855 1534.37 761.102 1532.79 Q759.349 1531.21 756.345 1531.21 Q754.939 1531.21 753.533 1531.52 Q752.144 1531.83 750.685 1532.49 L750.685 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M770.199 1519.47 L783.966 1519.47 L783.966 1522.42 L773.411 1522.42 L773.411 1528.78 Q774.175 1528.52 774.939 1528.4 Q775.703 1528.26 776.467 1528.26 Q780.807 1528.26 783.341 1530.64 Q785.876 1533.01 785.876 1537.08 Q785.876 1541.26 783.272 1543.59 Q780.668 1545.9 775.928 1545.9 Q774.296 1545.9 772.595 1545.62 Q770.911 1545.34 769.105 1544.78 L769.105 1541.26 Q770.668 1542.11 772.335 1542.53 Q774.001 1542.94 775.859 1542.94 Q778.862 1542.94 780.616 1541.36 Q782.369 1539.78 782.369 1537.08 Q782.369 1534.37 780.616 1532.79 Q778.862 1531.21 775.859 1531.21 Q774.453 1531.21 773.046 1531.52 Q771.658 1531.83 770.199 1532.49 L770.199 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M832.501 1519.47 L846.268 1519.47 L846.268 1522.42 L835.713 1522.42 L835.713 1528.78 Q836.477 1528.52 837.241 1528.4 Q838.005 1528.26 838.768 1528.26 Q843.109 1528.26 845.643 1530.64 Q848.178 1533.01 848.178 1537.08 Q848.178 1541.26 845.574 1543.59 Q842.97 1545.9 838.23 1545.9 Q836.598 1545.9 834.897 1545.62 Q833.213 1545.34 831.407 1544.78 L831.407 1541.26 Q832.97 1542.11 834.637 1542.53 Q836.303 1542.94 838.161 1542.94 Q841.164 1542.94 842.918 1541.36 Q844.671 1539.78 844.671 1537.08 Q844.671 1534.37 842.918 1532.79 Q841.164 1531.21 838.161 1531.21 Q836.755 1531.21 835.348 1531.52 Q833.959 1531.83 832.501 1532.49 L832.501 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M859.914 1531.03 Q857.553 1531.03 856.164 1532.65 Q854.793 1534.26 854.793 1537.08 Q854.793 1539.87 856.164 1541.5 Q857.553 1543.12 859.914 1543.12 Q862.275 1543.12 863.647 1541.5 Q865.036 1539.87 865.036 1537.08 Q865.036 1534.26 863.647 1532.65 Q862.275 1531.03 859.914 1531.03 M866.876 1520.04 L866.876 1523.24 Q865.557 1522.61 864.202 1522.28 Q862.866 1521.95 861.546 1521.95 Q858.074 1521.95 856.234 1524.3 Q854.411 1526.64 854.15 1531.38 Q855.175 1529.87 856.72 1529.07 Q858.265 1528.26 860.123 1528.26 Q864.029 1528.26 866.286 1530.64 Q868.56 1533 868.56 1537.08 Q868.56 1541.07 866.199 1543.48 Q863.838 1545.9 859.914 1545.9 Q855.418 1545.9 853.039 1542.46 Q850.661 1539 850.661 1532.46 Q850.661 1526.31 853.577 1522.67 Q856.494 1519 861.407 1519 Q862.727 1519 864.063 1519.26 Q865.418 1519.52 866.876 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M915.15 1519.47 L928.917 1519.47 L928.917 1522.42 L918.362 1522.42 L918.362 1528.78 Q919.126 1528.52 919.89 1528.4 Q920.654 1528.26 921.418 1528.26 Q925.758 1528.26 928.293 1530.64 Q930.827 1533.01 930.827 1537.08 Q930.827 1541.26 928.223 1543.59 Q925.619 1545.9 920.879 1545.9 Q919.247 1545.9 917.546 1545.62 Q915.862 1545.34 914.056 1544.78 L914.056 1541.26 Q915.619 1542.11 917.286 1542.53 Q918.952 1542.94 920.81 1542.94 Q923.813 1542.94 925.567 1541.36 Q927.32 1539.78 927.32 1537.08 Q927.32 1534.37 925.567 1532.79 Q923.813 1531.21 920.81 1531.21 Q919.404 1531.21 917.997 1531.52 Q916.609 1531.83 915.15 1532.49 L915.15 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M933.744 1519.47 L950.41 1519.47 L950.41 1520.96 L941.001 1545.39 L937.338 1545.39 L946.192 1522.42 L933.744 1522.42 L933.744 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M997.096 1519.47 L1010.86 1519.47 L1010.86 1522.42 L1000.31 1522.42 L1000.31 1528.78 Q1001.07 1528.52 1001.84 1528.4 Q1002.6 1528.26 1003.36 1528.26 Q1007.7 1528.26 1010.24 1530.64 Q1012.77 1533.01 1012.77 1537.08 Q1012.77 1541.26 1010.17 1543.59 Q1007.56 1545.9 1002.83 1545.9 Q1001.19 1545.9 999.492 1545.62 Q997.808 1545.34 996.002 1544.78 L996.002 1541.26 Q997.565 1542.11 999.232 1542.53 Q1000.9 1542.94 1002.76 1542.94 Q1005.76 1542.94 1007.51 1541.36 Q1009.27 1539.78 1009.27 1537.08 Q1009.27 1534.37 1007.51 1532.79 Q1005.76 1531.21 1002.76 1531.21 Q1001.35 1531.21 999.943 1531.52 Q998.554 1531.83 997.096 1532.49 L997.096 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1024.08 1533.08 Q1021.58 1533.08 1020.13 1534.42 Q1018.71 1535.76 1018.71 1538.1 Q1018.71 1540.44 1020.13 1541.78 Q1021.58 1543.12 1024.08 1543.12 Q1026.58 1543.12 1028.02 1541.78 Q1029.46 1540.43 1029.46 1538.1 Q1029.46 1535.76 1028.02 1534.42 Q1026.59 1533.08 1024.08 1533.08 M1020.57 1531.59 Q1018.31 1531.03 1017.04 1529.49 Q1015.79 1527.94 1015.79 1525.72 Q1015.79 1522.61 1018 1520.81 Q1020.22 1519 1024.08 1519 Q1027.95 1519 1030.15 1520.81 Q1032.36 1522.61 1032.36 1525.72 Q1032.36 1527.94 1031.09 1529.49 Q1029.84 1531.03 1027.6 1531.59 Q1030.13 1532.18 1031.54 1533.9 Q1032.96 1535.62 1032.96 1538.1 Q1032.96 1541.87 1030.66 1543.88 Q1028.36 1545.9 1024.08 1545.9 Q1019.79 1545.9 1017.48 1543.88 Q1015.19 1541.87 1015.19 1538.1 Q1015.19 1535.62 1016.61 1533.9 Q1018.03 1532.18 1020.57 1531.59 M1019.28 1526.05 Q1019.28 1528.07 1020.53 1529.19 Q1021.8 1530.32 1024.08 1530.32 Q1026.33 1530.32 1027.6 1529.19 Q1028.88 1528.07 1028.88 1526.05 Q1028.88 1524.04 1027.6 1522.91 Q1026.33 1521.78 1024.08 1521.78 Q1021.8 1521.78 1020.53 1522.91 Q1019.28 1524.04 1019.28 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1079.38 1519.47 L1093.15 1519.47 L1093.15 1522.42 L1082.59 1522.42 L1082.59 1528.78 Q1083.36 1528.52 1084.12 1528.4 Q1084.88 1528.26 1085.65 1528.26 Q1089.99 1528.26 1092.52 1530.64 Q1095.06 1533.01 1095.06 1537.08 Q1095.06 1541.26 1092.45 1543.59 Q1089.85 1545.9 1085.11 1545.9 Q1083.48 1545.9 1081.78 1545.62 Q1080.09 1545.34 1078.29 1544.78 L1078.29 1541.26 Q1079.85 1542.11 1081.52 1542.53 Q1083.18 1542.94 1085.04 1542.94 Q1088.04 1542.94 1089.8 1541.36 Q1091.55 1539.78 1091.55 1537.08 Q1091.55 1534.37 1089.8 1532.79 Q1088.04 1531.21 1085.04 1531.21 Q1083.63 1531.21 1082.23 1531.52 Q1080.84 1531.83 1079.38 1532.49 L1079.38 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1098.96 1544.85 L1098.96 1541.66 Q1100.28 1542.28 1101.64 1542.61 Q1102.99 1542.94 1104.29 1542.94 Q1107.77 1542.94 1109.59 1540.62 Q1111.43 1538.27 1111.69 1533.52 Q1110.68 1535.01 1109.14 1535.81 Q1107.59 1536.61 1105.72 1536.61 Q1101.83 1536.61 1099.55 1534.26 Q1097.3 1531.9 1097.3 1527.82 Q1097.3 1523.83 1099.66 1521.42 Q1102.02 1519 1105.94 1519 Q1110.44 1519 1112.8 1522.46 Q1115.18 1525.9 1115.18 1532.46 Q1115.18 1538.59 1112.26 1542.25 Q1109.36 1545.9 1104.45 1545.9 Q1103.13 1545.9 1101.78 1545.63 Q1100.42 1545.37 1098.96 1544.85 M1105.94 1533.86 Q1108.3 1533.86 1109.68 1532.25 Q1111.06 1530.64 1111.06 1527.82 Q1111.06 1525.03 1109.68 1523.41 Q1108.3 1521.78 1105.94 1521.78 Q1103.58 1521.78 1102.19 1523.41 Q1100.82 1525.03 1100.82 1527.82 Q1100.82 1530.64 1102.19 1532.25 Q1103.58 1533.86 1105.94 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1169.16 1531.03 Q1166.8 1531.03 1165.41 1532.65 Q1164.03 1534.26 1164.03 1537.08 Q1164.03 1539.87 1165.41 1541.5 Q1166.8 1543.12 1169.16 1543.12 Q1171.52 1543.12 1172.89 1541.5 Q1174.28 1539.87 1174.28 1537.08 Q1174.28 1534.26 1172.89 1532.65 Q1171.52 1531.03 1169.16 1531.03 M1176.12 1520.04 L1176.12 1523.24 Q1174.8 1522.61 1173.44 1522.28 Q1172.11 1521.95 1170.79 1521.95 Q1167.32 1521.95 1165.48 1524.3 Q1163.65 1526.64 1163.39 1531.38 Q1164.42 1529.87 1165.96 1529.07 Q1167.51 1528.26 1169.36 1528.26 Q1173.27 1528.26 1175.53 1530.64 Q1177.8 1533 1177.8 1537.08 Q1177.8 1541.07 1175.44 1543.48 Q1173.08 1545.9 1169.16 1545.9 Q1164.66 1545.9 1162.28 1542.46 Q1159.9 1539 1159.9 1532.46 Q1159.9 1526.31 1162.82 1522.67 Q1165.74 1519 1170.65 1519 Q1171.97 1519 1173.31 1519.26 Q1174.66 1519.52 1176.12 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1189.1 1521.78 Q1186.4 1521.78 1185.02 1524.45 Q1183.67 1527.11 1183.67 1532.46 Q1183.67 1537.79 1185.02 1540.46 Q1186.4 1543.12 1189.1 1543.12 Q1191.83 1543.12 1193.18 1540.46 Q1194.56 1537.79 1194.56 1532.46 Q1194.56 1527.11 1193.18 1524.45 Q1191.83 1521.78 1189.1 1521.78 M1189.1 1519 Q1193.46 1519 1195.75 1522.46 Q1198.06 1525.9 1198.06 1532.46 Q1198.06 1539 1195.75 1542.46 Q1193.46 1545.9 1189.1 1545.9 Q1184.75 1545.9 1182.44 1542.46 Q1180.15 1539 1180.15 1532.46 Q1180.15 1525.9 1182.44 1522.46 Q1184.75 1519 1189.1 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1251.87 1531.03 Q1249.51 1531.03 1248.12 1532.65 Q1246.74 1534.26 1246.74 1537.08 Q1246.74 1539.87 1248.12 1541.5 Q1249.51 1543.12 1251.87 1543.12 Q1254.23 1543.12 1255.6 1541.5 Q1256.99 1539.87 1256.99 1537.08 Q1256.99 1534.26 1255.6 1532.65 Q1254.23 1531.03 1251.87 1531.03 M1258.83 1520.04 L1258.83 1523.24 Q1257.51 1522.61 1256.15 1522.28 Q1254.82 1521.95 1253.5 1521.95 Q1250.03 1521.95 1248.19 1524.3 Q1246.36 1526.64 1246.1 1531.38 Q1247.13 1529.87 1248.67 1529.07 Q1250.22 1528.26 1252.07 1528.26 Q1255.98 1528.26 1258.24 1530.64 Q1260.51 1533 1260.51 1537.08 Q1260.51 1541.07 1258.15 1543.48 Q1255.79 1545.9 1251.87 1545.9 Q1247.37 1545.9 1244.99 1542.46 Q1242.61 1539 1242.61 1532.46 Q1242.61 1526.31 1245.53 1522.67 Q1248.45 1519 1253.36 1519 Q1254.68 1519 1256.02 1519.26 Q1257.37 1519.52 1258.83 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1264.92 1542.44 L1270.65 1542.44 L1270.65 1522.67 L1264.42 1523.92 L1264.42 1520.72 L1270.62 1519.47 L1274.12 1519.47 L1274.12 1542.44 L1279.85 1542.44 L1279.85 1545.39 L1264.92 1545.39 L1264.92 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1334.25 1531.03 Q1331.89 1531.03 1330.5 1532.65 Q1329.13 1534.26 1329.13 1537.08 Q1329.13 1539.87 1330.5 1541.5 Q1331.89 1543.12 1334.25 1543.12 Q1336.62 1543.12 1337.99 1541.5 Q1339.38 1539.87 1339.38 1537.08 Q1339.38 1534.26 1337.99 1532.65 Q1336.62 1531.03 1334.25 1531.03 M1341.22 1520.04 L1341.22 1523.24 Q1339.9 1522.61 1338.54 1522.28 Q1337.21 1521.95 1335.89 1521.95 Q1332.41 1521.95 1330.57 1524.3 Q1328.75 1526.64 1328.49 1531.38 Q1329.52 1529.87 1331.06 1529.07 Q1332.61 1528.26 1334.46 1528.26 Q1338.37 1528.26 1340.63 1530.64 Q1342.9 1533 1342.9 1537.08 Q1342.9 1541.07 1340.54 1543.48 Q1338.18 1545.9 1334.25 1545.9 Q1329.76 1545.9 1327.38 1542.46 Q1325 1539 1325 1532.46 Q1325 1526.31 1327.92 1522.67 Q1330.83 1519 1335.75 1519 Q1337.07 1519 1338.4 1519.26 Q1339.76 1519.52 1341.22 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1349.72 1542.44 L1361.96 1542.44 L1361.96 1545.39 L1345.5 1545.39 L1345.5 1542.44 Q1347.5 1540.37 1350.94 1536.9 Q1354.39 1533.41 1355.28 1532.41 Q1356.96 1530.51 1357.62 1529.21 Q1358.3 1527.89 1358.3 1526.62 Q1358.3 1524.56 1356.84 1523.26 Q1355.4 1521.95 1353.07 1521.95 Q1351.42 1521.95 1349.58 1522.53 Q1347.76 1523.1 1345.68 1524.26 L1345.68 1520.72 Q1347.8 1519.87 1349.64 1519.44 Q1351.48 1519 1353 1519 Q1357.03 1519 1359.43 1521.02 Q1361.82 1523.03 1361.82 1526.4 Q1361.82 1528 1361.22 1529.44 Q1360.63 1530.86 1359.05 1532.81 Q1358.61 1533.31 1356.29 1535.72 Q1353.96 1538.12 1349.72 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1416.15 1531.03 Q1413.79 1531.03 1412.4 1532.65 Q1411.03 1534.26 1411.03 1537.08 Q1411.03 1539.87 1412.4 1541.5 Q1413.79 1543.12 1416.15 1543.12 Q1418.51 1543.12 1419.88 1541.5 Q1421.27 1539.87 1421.27 1537.08 Q1421.27 1534.26 1419.88 1532.65 Q1418.51 1531.03 1416.15 1531.03 M1423.11 1520.04 L1423.11 1523.24 Q1421.79 1522.61 1420.44 1522.28 Q1419.1 1521.95 1417.78 1521.95 Q1414.31 1521.95 1412.47 1524.3 Q1410.65 1526.64 1410.38 1531.38 Q1411.41 1529.87 1412.95 1529.07 Q1414.5 1528.26 1416.36 1528.26 Q1420.26 1528.26 1422.52 1530.64 Q1424.79 1533 1424.79 1537.08 Q1424.79 1541.07 1422.43 1543.48 Q1420.07 1545.9 1416.15 1545.9 Q1411.65 1545.9 1409.27 1542.46 Q1406.9 1539 1406.9 1532.46 Q1406.9 1526.31 1409.81 1522.67 Q1412.73 1519 1417.64 1519 Q1418.96 1519 1420.3 1519.26 Q1421.65 1519.52 1423.11 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1439.22 1531.42 Q1441.74 1531.95 1443.15 1533.66 Q1444.57 1535.36 1444.57 1537.86 Q1444.57 1541.69 1441.93 1543.79 Q1439.29 1545.9 1434.43 1545.9 Q1432.8 1545.9 1431.06 1545.57 Q1429.34 1545.25 1427.5 1544.61 L1427.5 1541.23 Q1428.96 1542.08 1430.7 1542.51 Q1432.43 1542.94 1434.33 1542.94 Q1437.62 1542.94 1439.34 1541.64 Q1441.08 1540.34 1441.08 1537.86 Q1441.08 1535.57 1439.46 1534.28 Q1437.87 1532.98 1435 1532.98 L1431.98 1532.98 L1431.98 1530.1 L1435.14 1530.1 Q1437.73 1530.1 1439.1 1529.07 Q1440.47 1528.03 1440.47 1526.09 Q1440.47 1524.09 1439.05 1523.03 Q1437.64 1521.95 1435 1521.95 Q1433.56 1521.95 1431.91 1522.27 Q1430.26 1522.58 1428.28 1523.24 L1428.28 1520.11 Q1430.28 1519.56 1432.02 1519.28 Q1433.77 1519 1435.32 1519 Q1439.31 1519 1441.63 1520.83 Q1443.96 1522.63 1443.96 1525.72 Q1443.96 1527.87 1442.73 1529.37 Q1441.5 1530.84 1439.22 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1497.97 1531.03 Q1495.61 1531.03 1494.22 1532.65 Q1492.85 1534.26 1492.85 1537.08 Q1492.85 1539.87 1494.22 1541.5 Q1495.61 1543.12 1497.97 1543.12 Q1500.33 1543.12 1501.71 1541.5 Q1503.09 1539.87 1503.09 1537.08 Q1503.09 1534.26 1501.71 1532.65 Q1500.33 1531.03 1497.97 1531.03 M1504.93 1520.04 L1504.93 1523.24 Q1503.62 1522.61 1502.26 1522.28 Q1500.92 1521.95 1499.61 1521.95 Q1496.13 1521.95 1494.29 1524.3 Q1492.47 1526.64 1492.21 1531.38 Q1493.23 1529.87 1494.78 1529.07 Q1496.32 1528.26 1498.18 1528.26 Q1502.09 1528.26 1504.34 1530.64 Q1506.62 1533 1506.62 1537.08 Q1506.62 1541.07 1504.26 1543.48 Q1501.9 1545.9 1497.97 1545.9 Q1493.48 1545.9 1491.1 1542.46 Q1488.72 1539 1488.72 1532.46 Q1488.72 1526.31 1491.64 1522.67 Q1494.55 1519 1499.47 1519 Q1500.79 1519 1502.12 1519.26 Q1503.48 1519.52 1504.93 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1520.06 1522.53 L1511.2 1536.36 L1520.06 1536.36 L1520.06 1522.53 M1519.14 1519.47 L1523.55 1519.47 L1523.55 1536.36 L1527.24 1536.36 L1527.24 1539.28 L1523.55 1539.28 L1523.55 1545.39 L1520.06 1545.39 L1520.06 1539.28 L1508.36 1539.28 L1508.36 1535.9 L1519.14 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1580.78 1531.03 Q1578.42 1531.03 1577.03 1532.65 Q1575.66 1534.26 1575.66 1537.08 Q1575.66 1539.87 1577.03 1541.5 Q1578.42 1543.12 1580.78 1543.12 Q1583.14 1543.12 1584.51 1541.5 Q1585.9 1539.87 1585.9 1537.08 Q1585.9 1534.26 1584.51 1532.65 Q1583.14 1531.03 1580.78 1531.03 M1587.74 1520.04 L1587.74 1523.24 Q1586.42 1522.61 1585.07 1522.28 Q1583.73 1521.95 1582.41 1521.95 Q1578.94 1521.95 1577.1 1524.3 Q1575.28 1526.64 1575.01 1531.38 Q1576.04 1529.87 1577.58 1529.07 Q1579.13 1528.26 1580.99 1528.26 Q1584.89 1528.26 1587.15 1530.64 Q1589.42 1533 1589.42 1537.08 Q1589.42 1541.07 1587.06 1543.48 Q1584.7 1545.9 1580.78 1545.9 Q1576.28 1545.9 1573.9 1542.46 Q1571.53 1539 1571.53 1532.46 Q1571.53 1526.31 1574.44 1522.67 Q1577.36 1519 1582.27 1519 Q1583.59 1519 1584.93 1519.26 Q1586.28 1519.52 1587.74 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1593.26 1519.47 L1607.03 1519.47 L1607.03 1522.42 L1596.47 1522.42 L1596.47 1528.78 Q1597.24 1528.52 1598 1528.4 Q1598.76 1528.26 1599.53 1528.26 Q1603.87 1528.26 1606.4 1530.64 Q1608.94 1533.01 1608.94 1537.08 Q1608.94 1541.26 1606.33 1543.59 Q1603.73 1545.9 1598.99 1545.9 Q1597.36 1545.9 1595.66 1545.62 Q1593.97 1545.34 1592.17 1544.78 L1592.17 1541.26 Q1593.73 1542.11 1595.4 1542.53 Q1597.06 1542.94 1598.92 1542.94 Q1601.92 1542.94 1603.68 1541.36 Q1605.43 1539.78 1605.43 1537.08 Q1605.43 1534.37 1603.68 1532.79 Q1601.92 1531.21 1598.92 1531.21 Q1597.51 1531.21 1596.11 1531.52 Q1594.72 1531.83 1593.26 1532.49 L1593.26 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1662.59 1531.03 Q1660.23 1531.03 1658.84 1532.65 Q1657.47 1534.26 1657.47 1537.08 Q1657.47 1539.87 1658.84 1541.5 Q1660.23 1543.12 1662.59 1543.12 Q1664.96 1543.12 1666.33 1541.5 Q1667.72 1539.87 1667.72 1537.08 Q1667.72 1534.26 1666.33 1532.65 Q1664.96 1531.03 1662.59 1531.03 M1669.56 1520.04 L1669.56 1523.24 Q1668.24 1522.61 1666.88 1522.28 Q1665.55 1521.95 1664.23 1521.95 Q1660.75 1521.95 1658.91 1524.3 Q1657.09 1526.64 1656.83 1531.38 Q1657.85 1529.87 1659.4 1529.07 Q1660.94 1528.26 1662.8 1528.26 Q1666.71 1528.26 1668.97 1530.64 Q1671.24 1533 1671.24 1537.08 Q1671.24 1541.07 1668.88 1543.48 Q1666.52 1545.9 1662.59 1545.9 Q1658.1 1545.9 1655.72 1542.46 Q1653.34 1539 1653.34 1532.46 Q1653.34 1526.31 1656.26 1522.67 Q1659.17 1519 1664.09 1519 Q1665.41 1519 1666.74 1519.26 Q1668.1 1519.52 1669.56 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1682.98 1531.03 Q1680.61 1531.03 1679.23 1532.65 Q1677.85 1534.26 1677.85 1537.08 Q1677.85 1539.87 1679.23 1541.5 Q1680.61 1543.12 1682.98 1543.12 Q1685.34 1543.12 1686.71 1541.5 Q1688.1 1539.87 1688.1 1537.08 Q1688.1 1534.26 1686.71 1532.65 Q1685.34 1531.03 1682.98 1531.03 M1689.94 1520.04 L1689.94 1523.24 Q1688.62 1522.61 1687.26 1522.28 Q1685.93 1521.95 1684.61 1521.95 Q1681.14 1521.95 1679.3 1524.3 Q1677.47 1526.64 1677.21 1531.38 Q1678.24 1529.87 1679.78 1529.07 Q1681.33 1528.26 1683.18 1528.26 Q1687.09 1528.26 1689.35 1530.64 Q1691.62 1533 1691.62 1537.08 Q1691.62 1541.07 1689.26 1543.48 Q1686.9 1545.9 1682.98 1545.9 Q1678.48 1545.9 1676.1 1542.46 Q1673.72 1539 1673.72 1532.46 Q1673.72 1526.31 1676.64 1522.67 Q1679.56 1519 1684.47 1519 Q1685.79 1519 1687.13 1519.26 Q1688.48 1519.52 1689.94 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1745.24 1531.03 Q1742.88 1531.03 1741.49 1532.65 Q1740.12 1534.26 1740.12 1537.08 Q1740.12 1539.87 1741.49 1541.5 Q1742.88 1543.12 1745.24 1543.12 Q1747.6 1543.12 1748.98 1541.5 Q1750.36 1539.87 1750.36 1537.08 Q1750.36 1534.26 1748.98 1532.65 Q1747.6 1531.03 1745.24 1531.03 M1752.21 1520.04 L1752.21 1523.24 Q1750.89 1522.61 1749.53 1522.28 Q1748.19 1521.95 1746.88 1521.95 Q1743.4 1521.95 1741.56 1524.3 Q1739.74 1526.64 1739.48 1531.38 Q1740.5 1529.87 1742.05 1529.07 Q1743.59 1528.26 1745.45 1528.26 Q1749.36 1528.26 1751.61 1530.64 Q1753.89 1533 1753.89 1537.08 Q1753.89 1541.07 1751.53 1543.48 Q1749.17 1545.9 1745.24 1545.9 Q1740.75 1545.9 1738.37 1542.46 Q1735.99 1539 1735.99 1532.46 Q1735.99 1526.31 1738.91 1522.67 Q1741.82 1519 1746.74 1519 Q1748.06 1519 1749.39 1519.26 Q1750.75 1519.52 1752.21 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1756.81 1519.47 L1773.47 1519.47 L1773.47 1520.96 L1764.06 1545.39 L1760.4 1545.39 L1769.25 1522.42 L1756.81 1522.42 L1756.81 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1827.19 1531.03 Q1824.83 1531.03 1823.44 1532.65 Q1822.07 1534.26 1822.07 1537.08 Q1822.07 1539.87 1823.44 1541.5 Q1824.83 1543.12 1827.19 1543.12 Q1829.55 1543.12 1830.92 1541.5 Q1832.31 1539.87 1832.31 1537.08 Q1832.31 1534.26 1830.92 1532.65 Q1829.55 1531.03 1827.19 1531.03 M1834.15 1520.04 L1834.15 1523.24 Q1832.83 1522.61 1831.48 1522.28 Q1830.14 1521.95 1828.82 1521.95 Q1825.35 1521.95 1823.51 1524.3 Q1821.69 1526.64 1821.43 1531.38 Q1822.45 1529.87 1823.99 1529.07 Q1825.54 1528.26 1827.4 1528.26 Q1831.3 1528.26 1833.56 1530.64 Q1835.83 1533 1835.83 1537.08 Q1835.83 1541.07 1833.47 1543.48 Q1831.11 1545.9 1827.19 1545.9 Q1822.69 1545.9 1820.31 1542.46 Q1817.94 1539 1817.94 1532.46 Q1817.94 1526.31 1820.85 1522.67 Q1823.77 1519 1828.68 1519 Q1830 1519 1831.34 1519.26 Q1832.69 1519.52 1834.15 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1847.14 1533.08 Q1844.64 1533.08 1843.2 1534.42 Q1841.77 1535.76 1841.77 1538.1 Q1841.77 1540.44 1843.2 1541.78 Q1844.64 1543.12 1847.14 1543.12 Q1849.64 1543.12 1851.08 1541.78 Q1852.52 1540.43 1852.52 1538.1 Q1852.52 1535.76 1851.08 1534.42 Q1849.65 1533.08 1847.14 1533.08 M1843.63 1531.59 Q1841.37 1531.03 1840.11 1529.49 Q1838.86 1527.94 1838.86 1525.72 Q1838.86 1522.61 1841.06 1520.81 Q1843.28 1519 1847.14 1519 Q1851.01 1519 1853.21 1520.81 Q1855.42 1522.61 1855.42 1525.72 Q1855.42 1527.94 1854.15 1529.49 Q1852.9 1531.03 1850.66 1531.59 Q1853.2 1532.18 1854.6 1533.9 Q1856.03 1535.62 1856.03 1538.1 Q1856.03 1541.87 1853.72 1543.88 Q1851.43 1545.9 1847.14 1545.9 Q1842.85 1545.9 1840.54 1543.88 Q1838.25 1541.87 1838.25 1538.1 Q1838.25 1535.62 1839.67 1533.9 Q1841.1 1532.18 1843.63 1531.59 M1842.35 1526.05 Q1842.35 1528.07 1843.6 1529.19 Q1844.86 1530.32 1847.14 1530.32 Q1849.39 1530.32 1850.66 1529.19 Q1851.95 1528.07 1851.95 1526.05 Q1851.95 1524.04 1850.66 1522.91 Q1849.39 1521.78 1847.14 1521.78 Q1844.86 1521.78 1843.6 1522.91 Q1842.35 1524.04 1842.35 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1909.47 1531.03 Q1907.11 1531.03 1905.72 1532.65 Q1904.35 1534.26 1904.35 1537.08 Q1904.35 1539.87 1905.72 1541.5 Q1907.11 1543.12 1909.47 1543.12 Q1911.83 1543.12 1913.21 1541.5 Q1914.6 1539.87 1914.6 1537.08 Q1914.6 1534.26 1913.21 1532.65 Q1911.83 1531.03 1909.47 1531.03 M1916.44 1520.04 L1916.44 1523.24 Q1915.12 1522.61 1913.76 1522.28 Q1912.43 1521.95 1911.11 1521.95 Q1907.63 1521.95 1905.79 1524.3 Q1903.97 1526.64 1903.71 1531.38 Q1904.73 1529.87 1906.28 1529.07 Q1907.82 1528.26 1909.68 1528.26 Q1913.59 1528.26 1915.85 1530.64 Q1918.12 1533 1918.12 1537.08 Q1918.12 1541.07 1915.76 1543.48 Q1913.4 1545.9 1909.47 1545.9 Q1904.98 1545.9 1902.6 1542.46 Q1900.22 1539 1900.22 1532.46 Q1900.22 1526.31 1903.14 1522.67 Q1906.05 1519 1910.97 1519 Q1912.29 1519 1913.62 1519.26 Q1914.98 1519.52 1916.44 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1922.03 1544.85 L1922.03 1541.66 Q1923.35 1542.28 1924.7 1542.61 Q1926.05 1542.94 1927.36 1542.94 Q1930.83 1542.94 1932.65 1540.62 Q1934.49 1538.27 1934.75 1533.52 Q1933.74 1535.01 1932.2 1535.81 Q1930.65 1536.61 1928.78 1536.61 Q1924.89 1536.61 1922.62 1534.26 Q1920.36 1531.9 1920.36 1527.82 Q1920.36 1523.83 1922.72 1521.42 Q1925.08 1519 1929 1519 Q1933.5 1519 1935.86 1522.46 Q1938.24 1525.9 1938.24 1532.46 Q1938.24 1538.59 1935.32 1542.25 Q1932.42 1545.9 1927.51 1545.9 Q1926.19 1545.9 1924.84 1545.63 Q1923.48 1545.37 1922.03 1544.85 M1929 1533.86 Q1931.37 1533.86 1932.74 1532.25 Q1934.13 1530.64 1934.13 1527.82 Q1934.13 1525.03 1932.74 1523.41 Q1931.37 1521.78 1929 1521.78 Q1926.64 1521.78 1925.25 1523.41 Q1923.88 1525.03 1923.88 1527.82 Q1923.88 1530.64 1925.25 1532.25 Q1926.64 1533.86 1929 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1983.02 1519.47 L1999.68 1519.47 L1999.68 1520.96 L1990.27 1545.39 L1986.61 1545.39 L1995.46 1522.42 L1983.02 1522.42 L1983.02 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2010.99 1521.78 Q2008.28 1521.78 2006.91 1524.45 Q2005.55 1527.11 2005.55 1532.46 Q2005.55 1537.79 2006.91 1540.46 Q2008.28 1543.12 2010.99 1543.12 Q2013.71 1543.12 2015.07 1540.46 Q2016.44 1537.79 2016.44 1532.46 Q2016.44 1527.11 2015.07 1524.45 Q2013.71 1521.78 2010.99 1521.78 M2010.99 1519 Q2015.34 1519 2017.63 1522.46 Q2019.94 1525.9 2019.94 1532.46 Q2019.94 1539 2017.63 1542.46 Q2015.34 1545.9 2010.99 1545.9 Q2006.63 1545.9 2004.32 1542.46 Q2002.03 1539 2002.03 1532.46 Q2002.03 1525.9 2004.32 1522.46 Q2006.63 1519 2010.99 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2065.73 1519.47 L2082.39 1519.47 L2082.39 1520.96 L2072.98 1545.39 L2069.32 1545.39 L2078.17 1522.42 L2065.73 1522.42 L2065.73 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2086.8 1542.44 L2092.53 1542.44 L2092.53 1522.67 L2086.3 1523.92 L2086.3 1520.72 L2092.5 1519.47 L2096 1519.47 L2096 1542.44 L2101.73 1542.44 L2101.73 1545.39 L2086.8 1545.39 L2086.8 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2148.12 1519.47 L2164.78 1519.47 L2164.78 1520.96 L2155.37 1545.39 L2151.71 1545.39 L2160.56 1522.42 L2148.12 1522.42 L2148.12 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2171.6 1542.44 L2183.84 1542.44 L2183.84 1545.39 L2167.39 1545.39 L2167.39 1542.44 Q2169.38 1540.37 2172.82 1536.9 Q2176.27 1533.41 2177.16 1532.41 Q2178.84 1530.51 2179.5 1529.21 Q2180.18 1527.89 2180.18 1526.62 Q2180.18 1524.56 2178.72 1523.26 Q2177.28 1521.95 2174.96 1521.95 Q2173.31 1521.95 2171.47 1522.53 Q2169.64 1523.1 2167.56 1524.26 L2167.56 1520.72 Q2169.68 1519.87 2171.52 1519.44 Q2173.36 1519 2174.89 1519 Q2178.91 1519 2181.31 1521.02 Q2183.71 1523.03 2183.71 1526.4 Q2183.71 1528 2183.1 1529.44 Q2182.51 1530.86 2180.93 1532.81 Q2180.49 1533.31 2178.17 1535.72 Q2175.84 1538.12 2171.6 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2230.01 1519.47 L2246.68 1519.47 L2246.68 1520.96 L2237.27 1545.39 L2233.6 1545.39 L2242.46 1522.42 L2230.01 1522.42 L2230.01 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2261.1 1531.42 Q2263.62 1531.95 2265.03 1533.66 Q2266.45 1535.36 2266.45 1537.86 Q2266.45 1541.69 2263.81 1543.79 Q2261.17 1545.9 2256.31 1545.9 Q2254.68 1545.9 2252.94 1545.57 Q2251.22 1545.25 2249.38 1544.61 L2249.38 1541.23 Q2250.84 1542.08 2252.58 1542.51 Q2254.31 1542.94 2256.21 1542.94 Q2259.51 1542.94 2261.22 1541.64 Q2262.96 1540.34 2262.96 1537.86 Q2262.96 1535.57 2261.35 1534.28 Q2259.75 1532.98 2256.88 1532.98 L2253.86 1532.98 L2253.86 1530.1 L2257.02 1530.1 Q2259.61 1530.1 2260.98 1529.07 Q2262.35 1528.03 2262.35 1526.09 Q2262.35 1524.09 2260.93 1523.03 Q2259.52 1521.95 2256.88 1521.95 Q2255.44 1521.95 2253.79 1522.27 Q2252.14 1522.58 2250.17 1523.24 L2250.17 1520.11 Q2252.16 1519.56 2253.9 1519.28 Q2255.65 1519 2257.2 1519 Q2261.19 1519 2263.52 1520.83 Q2265.84 1522.63 2265.84 1525.72 Q2265.84 1527.87 2264.61 1529.37 Q2263.38 1530.84 2261.1 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2311.83 1519.47 L2328.5 1519.47 L2328.5 1520.96 L2319.09 1545.39 L2315.43 1545.39 L2324.28 1522.42 L2311.83 1522.42 L2311.83 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2341.94 1522.53 L2333.08 1536.36 L2341.94 1536.36 L2341.94 1522.53 M2341.02 1519.47 L2345.43 1519.47 L2345.43 1536.36 L2349.13 1536.36 L2349.13 1539.28 L2345.43 1539.28 L2345.43 1545.39 L2341.94 1545.39 L2341.94 1539.28 L2330.24 1539.28 L2330.24 1535.9 L2341.02 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1455.9 2352.76,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1361.52 2352.76,1361.52 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1267.14 2352.76,1267.14 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1172.77 2352.76,1172.77 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1078.39 2352.76,1078.39 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,984.007 2352.76,984.007 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,889.629 2352.76,889.629 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,795.25 2352.76,795.25 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,700.871 2352.76,700.871 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,606.492 2352.76,606.492 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,512.113 2352.76,512.113 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,417.734 2352.76,417.734 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,323.355 2352.76,323.355 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,228.976 2352.76,228.976 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,134.598 2352.76,134.598 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 153.259,110.512 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1455.9 179.653,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1361.52 179.653,1361.52 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1267.14 179.653,1267.14 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1172.77 179.653,1172.77 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1078.39 179.653,1078.39 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,984.007 179.653,984.007 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,889.629 179.653,889.629 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,795.25 179.653,795.25 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,700.871 179.653,700.871 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,606.492 179.653,606.492 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,512.113 179.653,512.113 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,417.734 179.653,417.734 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,323.355 179.653,323.355 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,228.976 179.653,228.976 \n \"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,134.598 179.653,134.598 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.315 1445.25 Q57.6067 1445.25 56.2352 1447.92 Q54.881 1450.58 54.881 1455.93 Q54.881 1461.26 56.2352 1463.93 Q57.6067 1466.59 60.315 1466.59 Q63.0407 1466.59 64.3948 1463.93 Q65.7664 1461.26 65.7664 1455.93 Q65.7664 1450.58 64.3948 1447.92 Q63.0407 1445.25 60.315 1445.25 M60.315 1442.47 Q64.6726 1442.47 66.9643 1445.93 Q69.2733 1449.37 69.2733 1455.93 Q69.2733 1462.47 66.9643 1465.93 Q64.6726 1469.37 60.315 1469.37 Q55.9574 1469.37 53.6484 1465.93 Q51.3567 1462.47 51.3567 1455.93 Q51.3567 1449.37 53.6484 1445.93 Q55.9574 1442.47 60.315 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.0753 1464.45 L76.7385 1464.45 L76.7385 1468.86 L73.0753 1468.86 L73.0753 1464.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.0405 1445.25 Q85.3322 1445.25 83.9607 1447.92 Q82.6065 1450.58 82.6065 1455.93 Q82.6065 1461.26 83.9607 1463.93 Q85.3322 1466.59 88.0405 1466.59 Q90.7662 1466.59 92.1204 1463.93 Q93.4919 1461.26 93.4919 1455.93 Q93.4919 1450.58 92.1204 1447.92 Q90.7662 1445.25 88.0405 1445.25 M88.0405 1442.47 Q92.3982 1442.47 94.6898 1445.93 Q96.9988 1449.37 96.9988 1455.93 Q96.9988 1462.47 94.6898 1465.93 Q92.3982 1469.37 88.0405 1469.37 Q83.6829 1469.37 81.3739 1465.93 Q79.0823 1462.47 79.0823 1455.93 Q79.0823 1449.37 81.3739 1445.93 Q83.6829 1442.47 88.0405 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M108.301 1445.25 Q105.593 1445.25 104.221 1447.92 Q102.867 1450.58 102.867 1455.93 Q102.867 1461.26 104.221 1463.93 Q105.593 1466.59 108.301 1466.59 Q111.027 1466.59 112.381 1463.93 Q113.752 1461.26 113.752 1455.93 Q113.752 1450.58 112.381 1447.92 Q111.027 1445.25 108.301 1445.25 M108.301 1442.47 Q112.658 1442.47 114.95 1445.93 Q117.259 1449.37 117.259 1455.93 Q117.259 1462.47 114.95 1465.93 Q112.658 1469.37 108.301 1469.37 Q103.943 1469.37 101.634 1465.93 Q99.3426 1462.47 99.3426 1455.93 Q99.3426 1449.37 101.634 1445.93 Q103.943 1442.47 108.301 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M61.2351 1350.87 Q58.5268 1350.87 57.1553 1353.55 Q55.8011 1356.2 55.8011 1361.55 Q55.8011 1366.88 57.1553 1369.55 Q58.5268 1372.21 61.2351 1372.21 Q63.9608 1372.21 65.315 1369.55 Q66.6865 1366.88 66.6865 1361.55 Q66.6865 1356.2 65.315 1353.55 Q63.9608 1350.87 61.2351 1350.87 M61.2351 1348.09 Q65.5927 1348.09 67.8844 1351.55 Q70.1934 1354.99 70.1934 1361.55 Q70.1934 1368.09 67.8844 1371.55 Q65.5927 1374.99 61.2351 1374.99 Q56.8775 1374.99 54.5685 1371.55 Q52.2768 1368.09 52.2768 1361.55 Q52.2768 1354.99 54.5685 1351.55 Q56.8775 1348.09 61.2351 1348.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.9955 1370.07 L77.6586 1370.07 L77.6586 1374.48 L73.9955 1374.48 L73.9955 1370.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.9607 1350.87 Q86.2524 1350.87 84.8808 1353.55 Q83.5267 1356.2 83.5267 1361.55 Q83.5267 1366.88 84.8808 1369.55 Q86.2524 1372.21 88.9607 1372.21 Q91.6864 1372.21 93.0405 1369.55 Q94.412 1366.88 94.412 1361.55 Q94.412 1356.2 93.0405 1353.55 Q91.6864 1350.87 88.9607 1350.87 M88.9607 1348.09 Q93.3183 1348.09 95.6099 1351.55 Q97.919 1354.99 97.919 1361.55 Q97.919 1368.09 95.6099 1371.55 Q93.3183 1374.99 88.9607 1374.99 Q84.6031 1374.99 82.294 1371.55 Q80.0024 1368.09 80.0024 1361.55 Q80.0024 1354.99 82.294 1351.55 Q84.6031 1348.09 88.9607 1348.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M102.329 1371.53 L108.058 1371.53 L108.058 1351.76 L101.825 1353.01 L101.825 1349.81 L108.023 1348.56 L111.53 1348.56 L111.53 1371.53 L117.259 1371.53 L117.259 1374.48 L102.329 1374.48 L102.329 1371.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M61.5129 1256.49 Q58.8046 1256.49 57.4331 1259.17 Q56.0789 1261.82 56.0789 1267.17 Q56.0789 1272.5 57.4331 1275.17 Q58.8046 1277.83 61.5129 1277.83 Q64.2386 1277.83 65.5927 1275.17 Q66.9643 1272.5 66.9643 1267.17 Q66.9643 1261.82 65.5927 1259.17 Q64.2386 1256.49 61.5129 1256.49 M61.5129 1253.72 Q65.8705 1253.72 68.1622 1257.17 Q70.4712 1260.61 70.4712 1267.17 Q70.4712 1273.72 68.1622 1277.17 Q65.8705 1280.61 61.5129 1280.61 Q57.1553 1280.61 54.8463 1277.17 Q52.5546 1273.72 52.5546 1267.17 Q52.5546 1260.61 54.8463 1257.17 Q57.1553 1253.72 61.5129 1253.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M74.2733 1275.69 L77.9364 1275.69 L77.9364 1280.1 L74.2733 1280.1 L74.2733 1275.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M89.2384 1256.49 Q86.5301 1256.49 85.1586 1259.17 Q83.8045 1261.82 83.8045 1267.17 Q83.8045 1272.5 85.1586 1275.17 Q86.5301 1277.83 89.2384 1277.83 Q91.9641 1277.83 93.3183 1275.17 Q94.6898 1272.5 94.6898 1267.17 Q94.6898 1261.82 93.3183 1259.17 Q91.9641 1256.49 89.2384 1256.49 M89.2384 1253.72 Q93.5961 1253.72 95.8877 1257.17 Q98.1967 1260.61 98.1967 1267.17 Q98.1967 1273.72 95.8877 1277.17 Q93.5961 1280.61 89.2384 1280.61 Q84.8808 1280.61 82.5718 1277.17 Q80.2802 1273.72 80.2802 1267.17 Q80.2802 1260.61 82.5718 1257.17 Q84.8808 1253.72 89.2384 1253.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M105.02 1277.15 L117.259 1277.15 L117.259 1280.1 L100.801 1280.1 L100.801 1277.15 Q102.797 1275.09 106.235 1271.61 Q109.69 1268.12 110.575 1267.12 Q112.259 1265.23 112.919 1263.92 Q113.596 1262.6 113.596 1261.34 Q113.596 1259.27 112.138 1257.97 Q110.697 1256.67 108.37 1256.67 Q106.721 1256.67 104.881 1257.24 Q103.058 1257.81 100.974 1258.98 L100.974 1255.43 Q103.093 1254.58 104.933 1254.15 Q106.773 1253.72 108.301 1253.72 Q112.329 1253.72 114.724 1255.73 Q117.12 1257.74 117.12 1261.11 Q117.12 1262.71 116.513 1264.15 Q115.922 1265.57 114.342 1267.52 Q113.908 1268.02 111.582 1270.43 Q109.256 1272.83 105.02 1277.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.8011 1162.11 Q58.0928 1162.11 56.7213 1164.79 Q55.3671 1167.44 55.3671 1172.79 Q55.3671 1178.12 56.7213 1180.79 Q58.0928 1183.45 60.8011 1183.45 Q63.5268 1183.45 64.8809 1180.79 Q66.2525 1178.12 66.2525 1172.79 Q66.2525 1167.44 64.8809 1164.79 Q63.5268 1162.11 60.8011 1162.11 M60.8011 1159.34 Q65.1587 1159.34 67.4504 1162.79 Q69.7594 1166.23 69.7594 1172.79 Q69.7594 1179.34 67.4504 1182.79 Q65.1587 1186.23 60.8011 1186.23 Q56.4435 1186.23 54.1345 1182.79 Q51.8428 1179.34 51.8428 1172.79 Q51.8428 1166.23 54.1345 1162.79 Q56.4435 1159.34 60.8011 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.5614 1181.32 L77.2246 1181.32 L77.2246 1185.73 L73.5614 1185.73 L73.5614 1181.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.5266 1162.11 Q85.8183 1162.11 84.4468 1164.79 Q83.0926 1167.44 83.0926 1172.79 Q83.0926 1178.12 84.4468 1180.79 Q85.8183 1183.45 88.5266 1183.45 Q91.2523 1183.45 92.6065 1180.79 Q93.978 1178.12 93.978 1172.79 Q93.978 1167.44 92.6065 1164.79 Q91.2523 1162.11 88.5266 1162.11 M88.5266 1159.34 Q92.8843 1159.34 95.1759 1162.79 Q97.4849 1166.23 97.4849 1172.79 Q97.4849 1179.34 95.1759 1182.79 Q92.8843 1186.23 88.5266 1186.23 Q84.169 1186.23 81.86 1182.79 Q79.5684 1179.34 79.5684 1172.79 Q79.5684 1166.23 81.86 1162.79 Q84.169 1159.34 88.5266 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M111.912 1171.75 Q114.429 1172.29 115.836 1173.99 Q117.259 1175.69 117.259 1178.19 Q117.259 1182.03 114.62 1184.13 Q111.981 1186.23 107.12 1186.23 Q105.488 1186.23 103.752 1185.9 Q102.034 1185.59 100.193 1184.94 L100.193 1181.56 Q101.652 1182.41 103.388 1182.84 Q105.124 1183.28 107.016 1183.28 Q110.315 1183.28 112.033 1181.98 Q113.77 1180.67 113.77 1178.19 Q113.77 1175.9 112.155 1174.61 Q110.558 1173.31 107.693 1173.31 L104.672 1173.31 L104.672 1170.43 L107.832 1170.43 Q110.419 1170.43 111.79 1169.41 Q113.162 1168.36 113.162 1166.42 Q113.162 1164.42 111.738 1163.36 Q110.332 1162.29 107.693 1162.29 Q106.252 1162.29 104.603 1162.6 Q102.954 1162.91 100.974 1163.57 L100.974 1160.45 Q102.971 1159.89 104.707 1159.61 Q106.461 1159.34 108.006 1159.34 Q111.999 1159.34 114.325 1161.16 Q116.651 1162.96 116.651 1166.06 Q116.651 1168.21 115.419 1169.7 Q114.186 1171.18 111.912 1171.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M59.9504 1067.74 Q57.2421 1067.74 55.8706 1070.41 Q54.5164 1073.07 54.5164 1078.41 Q54.5164 1083.74 55.8706 1086.42 Q57.2421 1089.07 59.9504 1089.07 Q62.6761 1089.07 64.0303 1086.42 Q65.4018 1083.74 65.4018 1078.41 Q65.4018 1073.07 64.0303 1070.41 Q62.6761 1067.74 59.9504 1067.74 M59.9504 1064.96 Q64.308 1064.96 66.5997 1068.41 Q68.9087 1071.85 68.9087 1078.41 Q68.9087 1084.96 66.5997 1088.41 Q64.308 1091.85 59.9504 1091.85 Q55.5928 1091.85 53.2838 1088.41 Q50.9921 1084.96 50.9921 1078.41 Q50.9921 1071.85 53.2838 1068.41 Q55.5928 1064.96 59.9504 1064.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M72.7108 1086.94 L76.3739 1086.94 L76.3739 1091.35 L72.7108 1091.35 L72.7108 1086.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M87.676 1067.74 Q84.9676 1067.74 83.5961 1070.41 Q82.242 1073.07 82.242 1078.41 Q82.242 1083.74 83.5961 1086.42 Q84.9676 1089.07 87.676 1089.07 Q90.4016 1089.07 91.7558 1086.42 Q93.1273 1083.74 93.1273 1078.41 Q93.1273 1073.07 91.7558 1070.41 Q90.4016 1067.74 87.676 1067.74 M87.676 1064.96 Q92.0336 1064.96 94.3252 1068.41 Q96.6342 1071.85 96.6342 1078.41 Q96.6342 1084.96 94.3252 1088.41 Q92.0336 1091.85 87.676 1091.85 Q83.3183 1091.85 81.0093 1088.41 Q78.7177 1084.96 78.7177 1078.41 Q78.7177 1071.85 81.0093 1068.41 Q83.3183 1064.96 87.676 1064.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M110.072 1068.48 L101.218 1082.32 L110.072 1082.32 L110.072 1068.48 M109.152 1065.43 L113.561 1065.43 L113.561 1082.32 L117.259 1082.32 L117.259 1085.24 L113.561 1085.24 L113.561 1091.35 L110.072 1091.35 L110.072 1085.24 L98.3703 1085.24 L98.3703 1081.85 L109.152 1065.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M61.0615 973.356 Q58.3532 973.356 56.9817 976.03 Q55.6275 978.686 55.6275 984.033 Q55.6275 989.363 56.9817 992.037 Q58.3532 994.693 61.0615 994.693 Q63.7872 994.693 65.1414 992.037 Q66.5129 989.363 66.5129 984.033 Q66.5129 978.686 65.1414 976.03 Q63.7872 973.356 61.0615 973.356 M61.0615 970.579 Q65.4191 970.579 67.7108 974.034 Q70.0198 977.471 70.0198 984.033 Q70.0198 990.579 67.7108 994.033 Q65.4191 997.471 61.0615 997.471 Q56.7039 997.471 54.3949 994.033 Q52.1032 990.579 52.1032 984.033 Q52.1032 977.471 54.3949 974.034 Q56.7039 970.579 61.0615 970.579 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.8219 992.558 L77.485 992.558 L77.485 996.967 L73.8219 996.967 L73.8219 992.558 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.7871 973.356 Q86.0787 973.356 84.7072 976.03 Q83.3531 978.686 83.3531 984.033 Q83.3531 989.363 84.7072 992.037 Q86.0787 994.693 88.7871 994.693 Q91.5127 994.693 92.8669 992.037 Q94.2384 989.363 94.2384 984.033 Q94.2384 978.686 92.8669 976.03 Q91.5127 973.356 88.7871 973.356 M88.7871 970.579 Q93.1447 970.579 95.4363 974.034 Q97.7453 977.471 97.7453 984.033 Q97.7453 990.579 95.4363 994.033 Q93.1447 997.471 88.7871 997.471 Q84.4294 997.471 82.1204 994.033 Q79.8288 990.579 79.8288 984.033 Q79.8288 977.471 82.1204 974.034 Q84.4294 970.579 88.7871 970.579 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M101.582 971.047 L115.349 971.047 L115.349 973.999 L104.794 973.999 L104.794 980.353 Q105.558 980.093 106.322 979.971 Q107.086 979.832 107.849 979.832 Q112.19 979.832 114.724 982.211 Q117.259 984.589 117.259 988.651 Q117.259 992.836 114.655 995.162 Q112.051 997.471 107.311 997.471 Q105.679 997.471 103.978 997.193 Q102.294 996.915 100.488 996.36 L100.488 992.836 Q102.051 993.686 103.718 994.103 Q105.384 994.52 107.242 994.52 Q110.245 994.52 111.999 992.94 Q113.752 991.36 113.752 988.651 Q113.752 985.943 111.999 984.363 Q110.245 982.783 107.242 982.783 Q105.836 982.783 104.429 983.096 Q103.04 983.408 101.582 984.068 L101.582 971.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.1935 878.978 Q57.4851 878.978 56.1136 881.651 Q54.7595 884.307 54.7595 889.655 Q54.7595 894.984 56.1136 897.658 Q57.4851 900.314 60.1935 900.314 Q62.9191 900.314 64.2733 897.658 Q65.6448 894.984 65.6448 889.655 Q65.6448 884.307 64.2733 881.651 Q62.9191 878.978 60.1935 878.978 M60.1935 876.2 Q64.5511 876.2 66.8427 879.655 Q69.1518 883.092 69.1518 889.655 Q69.1518 896.2 66.8427 899.655 Q64.5511 903.092 60.1935 903.092 Q55.8359 903.092 53.5268 899.655 Q51.2352 896.2 51.2352 889.655 Q51.2352 883.092 53.5268 879.655 Q55.8359 876.2 60.1935 876.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M72.9538 898.179 L76.617 898.179 L76.617 902.589 L72.9538 902.589 L72.9538 898.179 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M87.919 878.978 Q85.2107 878.978 83.8392 881.651 Q82.485 884.307 82.485 889.655 Q82.485 894.984 83.8392 897.658 Q85.2107 900.314 87.919 900.314 Q90.6447 900.314 91.9989 897.658 Q93.3704 894.984 93.3704 889.655 Q93.3704 884.307 91.9989 881.651 Q90.6447 878.978 87.919 878.978 M87.919 876.2 Q92.2766 876.2 94.5683 879.655 Q96.8773 883.092 96.8773 889.655 Q96.8773 896.2 94.5683 899.655 Q92.2766 903.092 87.919 903.092 Q83.5614 903.092 81.2524 899.655 Q78.9607 896.2 78.9607 889.655 Q78.9607 883.092 81.2524 879.655 Q83.5614 876.2 87.919 876.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M108.613 888.231 Q106.252 888.231 104.863 889.846 Q103.492 891.46 103.492 894.273 Q103.492 897.068 104.863 898.7 Q106.252 900.314 108.613 900.314 Q110.974 900.314 112.346 898.7 Q113.735 897.068 113.735 894.273 Q113.735 891.46 112.346 889.846 Q110.974 888.231 108.613 888.231 M115.575 877.241 L115.575 880.436 Q114.256 879.811 112.902 879.481 Q111.565 879.151 110.245 879.151 Q106.773 879.151 104.933 881.495 Q103.11 883.839 102.849 888.578 Q103.874 887.068 105.419 886.269 Q106.964 885.453 108.822 885.453 Q112.728 885.453 114.985 887.832 Q117.259 890.193 117.259 894.273 Q117.259 898.266 114.898 900.679 Q112.537 903.092 108.613 903.092 Q104.117 903.092 101.738 899.655 Q99.3599 896.2 99.3599 889.655 Q99.3599 883.509 102.277 879.863 Q105.193 876.2 110.106 876.2 Q111.426 876.2 112.763 876.46 Q114.117 876.721 115.575 877.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.9921 784.599 Q58.2838 784.599 56.9122 787.272 Q55.5581 789.929 55.5581 795.276 Q55.5581 800.606 56.9122 803.279 Q58.2838 805.935 60.9921 805.935 Q63.7178 805.935 65.0719 803.279 Q66.4434 800.606 66.4434 795.276 Q66.4434 789.929 65.0719 787.272 Q63.7178 784.599 60.9921 784.599 M60.9921 781.821 Q65.3497 781.821 67.6413 785.276 Q69.9504 788.713 69.9504 795.276 Q69.9504 801.821 67.6413 805.276 Q65.3497 808.713 60.9921 808.713 Q56.6345 808.713 54.3254 805.276 Q52.0338 801.821 52.0338 795.276 Q52.0338 788.713 54.3254 785.276 Q56.6345 781.821 60.9921 781.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.7524 803.8 L77.4156 803.8 L77.4156 808.21 L73.7524 808.21 L73.7524 803.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.7176 784.599 Q86.0093 784.599 84.6378 787.272 Q83.2836 789.929 83.2836 795.276 Q83.2836 800.606 84.6378 803.279 Q86.0093 805.935 88.7176 805.935 Q91.4433 805.935 92.7975 803.279 Q94.169 800.606 94.169 795.276 Q94.169 789.929 92.7975 787.272 Q91.4433 784.599 88.7176 784.599 M88.7176 781.821 Q93.0752 781.821 95.3669 785.276 Q97.6759 788.713 97.6759 795.276 Q97.6759 801.821 95.3669 805.276 Q93.0752 808.713 88.7176 808.713 Q84.36 808.713 82.051 805.276 Q79.7593 801.821 79.7593 795.276 Q79.7593 788.713 82.051 785.276 Q84.36 781.821 88.7176 781.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M100.593 782.29 L117.259 782.29 L117.259 783.783 L107.849 808.21 L104.186 808.21 L113.04 785.241 L100.593 785.241 L100.593 782.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.3844 690.22 Q57.6761 690.22 56.3046 692.893 Q54.9504 695.55 54.9504 700.897 Q54.9504 706.227 56.3046 708.9 Q57.6761 711.557 60.3844 711.557 Q63.1101 711.557 64.4643 708.9 Q65.8358 706.227 65.8358 700.897 Q65.8358 695.55 64.4643 692.893 Q63.1101 690.22 60.3844 690.22 M60.3844 687.442 Q64.7421 687.442 67.0337 690.897 Q69.3427 694.334 69.3427 700.897 Q69.3427 707.442 67.0337 710.897 Q64.7421 714.334 60.3844 714.334 Q56.0268 714.334 53.7178 710.897 Q51.4262 707.442 51.4262 700.897 Q51.4262 694.334 53.7178 690.897 Q56.0268 687.442 60.3844 687.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.1448 709.421 L76.808 709.421 L76.808 713.831 L73.1448 713.831 L73.1448 709.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.11 690.22 Q85.4017 690.22 84.0301 692.893 Q82.676 695.55 82.676 700.897 Q82.676 706.227 84.0301 708.9 Q85.4017 711.557 88.11 711.557 Q90.8357 711.557 92.1898 708.9 Q93.5613 706.227 93.5613 700.897 Q93.5613 695.55 92.1898 692.893 Q90.8357 690.22 88.11 690.22 M88.11 687.442 Q92.4676 687.442 94.7593 690.897 Q97.0683 694.334 97.0683 700.897 Q97.0683 707.442 94.7593 710.897 Q92.4676 714.334 88.11 714.334 Q83.7524 714.334 81.4434 710.897 Q79.1517 707.442 79.1517 700.897 Q79.1517 694.334 81.4434 690.897 Q83.7524 687.442 88.11 687.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M108.37 701.522 Q105.87 701.522 104.429 702.859 Q103.006 704.195 103.006 706.539 Q103.006 708.883 104.429 710.22 Q105.87 711.557 108.37 711.557 Q110.87 711.557 112.311 710.22 Q113.752 708.866 113.752 706.539 Q113.752 704.195 112.311 702.859 Q110.888 701.522 108.37 701.522 M104.863 700.029 Q102.606 699.473 101.339 697.928 Q100.089 696.383 100.089 694.161 Q100.089 691.053 102.294 689.248 Q104.516 687.442 108.37 687.442 Q112.242 687.442 114.447 689.248 Q116.651 691.053 116.651 694.161 Q116.651 696.383 115.384 697.928 Q114.134 699.473 111.895 700.029 Q114.429 700.619 115.836 702.338 Q117.259 704.057 117.259 706.539 Q117.259 710.307 114.95 712.32 Q112.658 714.334 108.37 714.334 Q104.082 714.334 101.773 712.32 Q99.4814 710.307 99.4814 706.539 Q99.4814 704.057 100.905 702.338 Q102.329 700.619 104.863 700.029 M103.579 694.491 Q103.579 696.505 104.829 697.633 Q106.096 698.761 108.37 698.761 Q110.627 698.761 111.895 697.633 Q113.179 696.505 113.179 694.491 Q113.179 692.477 111.895 691.348 Q110.627 690.22 108.37 690.22 Q106.096 690.22 104.829 691.348 Q103.579 692.477 103.579 694.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.4539 595.841 Q57.7456 595.841 56.374 598.515 Q55.0199 601.171 55.0199 606.518 Q55.0199 611.848 56.374 614.521 Q57.7456 617.178 60.4539 617.178 Q63.1796 617.178 64.5337 614.521 Q65.9052 611.848 65.9052 606.518 Q65.9052 601.171 64.5337 598.515 Q63.1796 595.841 60.4539 595.841 M60.4539 593.063 Q64.8115 593.063 67.1032 596.518 Q69.4122 599.956 69.4122 606.518 Q69.4122 613.063 67.1032 616.518 Q64.8115 619.955 60.4539 619.955 Q56.0963 619.955 53.7872 616.518 Q51.4956 613.063 51.4956 606.518 Q51.4956 599.956 53.7872 596.518 Q56.0963 593.063 60.4539 593.063 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.2142 615.042 L76.8774 615.042 L76.8774 619.452 L73.2142 619.452 L73.2142 615.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M88.1794 595.841 Q85.4711 595.841 84.0996 598.515 Q82.7454 601.171 82.7454 606.518 Q82.7454 611.848 84.0996 614.521 Q85.4711 617.178 88.1794 617.178 Q90.9051 617.178 92.2593 614.521 Q93.6308 611.848 93.6308 606.518 Q93.6308 601.171 92.2593 598.515 Q90.9051 595.841 88.1794 595.841 M88.1794 593.063 Q92.537 593.063 94.8287 596.518 Q97.1377 599.956 97.1377 606.518 Q97.1377 613.063 94.8287 616.518 Q92.537 619.955 88.1794 619.955 Q83.8218 619.955 81.5128 616.518 Q79.2211 613.063 79.2211 606.518 Q79.2211 599.956 81.5128 596.518 Q83.8218 593.063 88.1794 593.063 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M101.044 618.914 L101.044 615.719 Q102.363 616.344 103.718 616.674 Q105.072 617.004 106.374 617.004 Q109.846 617.004 111.669 614.678 Q113.509 612.334 113.77 607.577 Q112.763 609.07 111.217 609.869 Q109.672 610.667 107.797 610.667 Q103.909 610.667 101.634 608.324 Q99.3773 605.962 99.3773 601.883 Q99.3773 597.89 101.738 595.476 Q104.099 593.063 108.023 593.063 Q112.52 593.063 114.881 596.518 Q117.259 599.956 117.259 606.518 Q117.259 612.646 114.342 616.31 Q111.443 619.955 106.53 619.955 Q105.211 619.955 103.856 619.695 Q102.502 619.435 101.044 618.914 M108.023 607.924 Q110.384 607.924 111.756 606.31 Q113.145 604.695 113.145 601.883 Q113.145 599.087 111.756 597.473 Q110.384 595.841 108.023 595.841 Q105.662 595.841 104.273 597.473 Q102.902 599.087 102.902 601.883 Q102.902 604.695 104.273 606.31 Q105.662 607.924 108.023 607.924 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M61.2351 501.462 Q58.5268 501.462 57.1553 504.136 Q55.8011 506.792 55.8011 512.139 Q55.8011 517.469 57.1553 520.143 Q58.5268 522.799 61.2351 522.799 Q63.9608 522.799 65.315 520.143 Q66.6865 517.469 66.6865 512.139 Q66.6865 506.792 65.315 504.136 Q63.9608 501.462 61.2351 501.462 M61.2351 498.684 Q65.5927 498.684 67.8844 502.139 Q70.1934 505.577 70.1934 512.139 Q70.1934 518.684 67.8844 522.139 Q65.5927 525.577 61.2351 525.577 Q56.8775 525.577 54.5685 522.139 Q52.2768 518.684 52.2768 512.139 Q52.2768 505.577 54.5685 502.139 Q56.8775 498.684 61.2351 498.684 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.9955 520.663 L77.6586 520.663 L77.6586 525.073 L73.9955 525.073 L73.9955 520.663 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M82.0683 522.122 L87.7975 522.122 L87.7975 502.348 L81.5649 503.598 L81.5649 500.403 L87.7628 499.153 L91.2697 499.153 L91.2697 522.122 L96.9988 522.122 L96.9988 525.073 L82.0683 525.073 L82.0683 522.122 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M108.301 501.462 Q105.593 501.462 104.221 504.136 Q102.867 506.792 102.867 512.139 Q102.867 517.469 104.221 520.143 Q105.593 522.799 108.301 522.799 Q111.027 522.799 112.381 520.143 Q113.752 517.469 113.752 512.139 Q113.752 506.792 112.381 504.136 Q111.027 501.462 108.301 501.462 M108.301 498.684 Q112.658 498.684 114.95 502.139 Q117.259 505.577 117.259 512.139 Q117.259 518.684 114.95 522.139 Q112.658 525.577 108.301 525.577 Q103.943 525.577 101.634 522.139 Q99.3426 518.684 99.3426 512.139 Q99.3426 505.577 101.634 502.139 Q103.943 498.684 108.301 498.684 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M62.1553 407.083 Q59.4469 407.083 58.0754 409.757 Q56.7213 412.413 56.7213 417.76 Q56.7213 423.09 58.0754 425.764 Q59.4469 428.42 62.1553 428.42 Q64.8809 428.42 66.2351 425.764 Q67.6066 423.09 67.6066 417.76 Q67.6066 412.413 66.2351 409.757 Q64.8809 407.083 62.1553 407.083 M62.1553 404.305 Q66.5129 404.305 68.8045 407.76 Q71.1135 411.198 71.1135 417.76 Q71.1135 424.305 68.8045 427.76 Q66.5129 431.198 62.1553 431.198 Q57.7976 431.198 55.4886 427.76 Q53.197 424.305 53.197 417.76 Q53.197 411.198 55.4886 407.76 Q57.7976 404.305 62.1553 404.305 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M74.9156 426.285 L78.5788 426.285 L78.5788 430.694 L74.9156 430.694 L74.9156 426.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M82.9885 427.743 L88.7176 427.743 L88.7176 407.969 L82.485 409.219 L82.485 406.024 L88.6829 404.774 L92.1898 404.774 L92.1898 427.743 L97.919 427.743 L97.919 430.694 L82.9885 430.694 L82.9885 427.743 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M102.329 427.743 L108.058 427.743 L108.058 407.969 L101.825 409.219 L101.825 406.024 L108.023 404.774 L111.53 404.774 L111.53 427.743 L117.259 427.743 L117.259 430.694 L102.329 430.694 L102.329 427.743 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M62.433 312.704 Q59.7247 312.704 58.3532 315.378 Q56.999 318.034 56.999 323.381 Q56.999 328.711 58.3532 331.385 Q59.7247 334.041 62.433 334.041 Q65.1587 334.041 66.5129 331.385 Q67.8844 328.711 67.8844 323.381 Q67.8844 318.034 66.5129 315.378 Q65.1587 312.704 62.433 312.704 M62.433 309.927 Q66.7907 309.927 69.0823 313.381 Q71.3913 316.819 71.3913 323.381 Q71.3913 329.926 69.0823 333.381 Q66.7907 336.819 62.433 336.819 Q58.0754 336.819 55.7664 333.381 Q53.4748 329.926 53.4748 323.381 Q53.4748 316.819 55.7664 313.381 Q58.0754 309.927 62.433 309.927 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M75.1934 331.906 L78.8566 331.906 L78.8566 336.315 L75.1934 336.315 L75.1934 331.906 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M83.2663 333.364 L88.9954 333.364 L88.9954 313.59 L82.7628 314.84 L82.7628 311.645 L88.9607 310.395 L92.4676 310.395 L92.4676 333.364 L98.1967 333.364 L98.1967 336.315 L83.2663 336.315 L83.2663 333.364 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M105.02 333.364 L117.259 333.364 L117.259 336.315 L100.801 336.315 L100.801 333.364 Q102.797 331.298 106.235 327.826 Q109.69 324.336 110.575 323.329 Q112.259 321.437 112.919 320.135 Q113.596 318.815 113.596 317.548 Q113.596 315.482 112.138 314.18 Q110.697 312.878 108.37 312.878 Q106.721 312.878 104.881 313.451 Q103.058 314.024 100.974 315.187 L100.974 311.645 Q103.093 310.795 104.933 310.361 Q106.773 309.927 108.301 309.927 Q112.329 309.927 114.724 311.94 Q117.12 313.954 117.12 317.322 Q117.12 318.92 116.513 320.361 Q115.922 321.784 114.342 323.729 Q113.908 324.232 111.582 326.645 Q109.256 329.041 105.02 333.364 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M61.7212 218.325 Q59.0129 218.325 57.6414 220.999 Q56.2872 223.655 56.2872 229.003 Q56.2872 234.332 57.6414 237.006 Q59.0129 239.662 61.7212 239.662 Q64.4469 239.662 65.8011 237.006 Q67.1726 234.332 67.1726 229.003 Q67.1726 223.655 65.8011 220.999 Q64.4469 218.325 61.7212 218.325 M61.7212 215.548 Q66.0789 215.548 68.3705 219.003 Q70.6795 222.44 70.6795 229.003 Q70.6795 235.548 68.3705 239.002 Q66.0789 242.44 61.7212 242.44 Q57.3636 242.44 55.0546 239.002 Q52.7629 235.548 52.7629 229.003 Q52.7629 222.44 55.0546 219.003 Q57.3636 215.548 61.7212 215.548 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M74.4816 237.527 L78.1448 237.527 L78.1448 241.936 L74.4816 241.936 L74.4816 237.527 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M82.5545 238.985 L88.2836 238.985 L88.2836 219.211 L82.051 220.461 L82.051 217.266 L88.2489 216.016 L91.7558 216.016 L91.7558 238.985 L97.4849 238.985 L97.4849 241.936 L82.5545 241.936 L82.5545 238.985 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M111.912 227.961 Q114.429 228.499 115.836 230.2 Q117.259 231.902 117.259 234.402 Q117.259 238.239 114.62 240.339 Q111.981 242.44 107.12 242.44 Q105.488 242.44 103.752 242.11 Q102.034 241.798 100.193 241.155 L100.193 237.77 Q101.652 238.621 103.388 239.055 Q105.124 239.489 107.016 239.489 Q110.315 239.489 112.033 238.187 Q113.77 236.884 113.77 234.402 Q113.77 232.11 112.155 230.825 Q110.558 229.523 107.693 229.523 L104.672 229.523 L104.672 226.641 L107.832 226.641 Q110.419 226.641 111.79 225.617 Q113.162 224.575 113.162 222.631 Q113.162 220.635 111.738 219.575 Q110.332 218.499 107.693 218.499 Q106.252 218.499 104.603 218.812 Q102.954 219.124 100.974 219.784 L100.974 216.659 Q102.971 216.103 104.707 215.826 Q106.461 215.548 108.006 215.548 Q111.999 215.548 114.325 217.371 Q116.651 219.176 116.651 222.266 Q116.651 224.419 115.419 225.912 Q114.186 227.388 111.912 227.961 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M60.8705 123.947 Q58.1622 123.947 56.7907 126.62 Q55.4365 129.276 55.4365 134.624 Q55.4365 139.953 56.7907 142.627 Q58.1622 145.283 60.8705 145.283 Q63.5962 145.283 64.9504 142.627 Q66.3219 139.953 66.3219 134.624 Q66.3219 129.276 64.9504 126.62 Q63.5962 123.947 60.8705 123.947 M60.8705 121.169 Q65.2282 121.169 67.5198 124.624 Q69.8288 128.061 69.8288 134.624 Q69.8288 141.169 67.5198 144.624 Q65.2282 148.061 60.8705 148.061 Q56.5129 148.061 54.2039 144.624 Q51.9123 141.169 51.9123 134.624 Q51.9123 128.061 54.2039 124.624 Q56.5129 121.169 60.8705 121.169 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M73.6309 143.148 L77.2941 143.148 L77.2941 147.558 L73.6309 147.558 L73.6309 143.148 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M81.7038 144.606 L87.4329 144.606 L87.4329 124.832 L81.2003 126.082 L81.2003 122.888 L87.3982 121.638 L90.9051 121.638 L90.9051 144.606 L96.6342 144.606 L96.6342 147.558 L81.7038 147.558 L81.7038 144.606 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M110.072 124.693 L101.218 138.53 L110.072 138.53 L110.072 124.693 M109.152 121.638 L113.561 121.638 L113.561 138.53 L117.259 138.53 L117.259 141.447 L113.561 141.447 L113.561 147.558 L110.072 147.558 L110.072 141.447 L98.3703 141.447 L98.3703 138.061 L109.152 121.638 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M876.969 14.7875 L876.969 32.6433 L885.054 32.6433 Q889.542 32.6433 891.992 30.3199 Q894.443 27.9964 894.443 23.6995 Q894.443 19.4345 891.992 17.111 Q889.542 14.7875 885.054 14.7875 L876.969 14.7875 M870.54 9.504 L885.054 9.504 Q893.043 9.504 897.117 13.1325 Q901.223 16.7291 901.223 23.6995 Q901.223 30.7336 897.117 34.3303 Q893.043 37.9269 885.054 37.9269 L876.969 37.9269 L876.969 57.024 L870.54 57.024 L870.54 9.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M907.366 7.4988 L913.222 7.4988 L913.222 57.024 L907.366 57.024 L907.366 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M935.566 39.1045 Q928.468 39.1045 925.731 40.7278 Q922.993 42.351 922.993 46.266 Q922.993 49.3852 925.03 51.2312 Q927.099 53.0454 930.632 53.0454 Q935.502 53.0454 938.43 49.608 Q941.39 46.1386 941.39 40.4095 L941.39 39.1045 L935.566 39.1045 M947.247 36.6856 L947.247 57.024 L941.39 57.024 L941.39 51.6131 Q939.385 54.8597 936.393 56.4193 Q933.401 57.947 929.073 57.947 Q923.598 57.947 920.352 54.8915 Q917.137 51.8041 917.137 46.6479 Q917.137 40.6323 921.147 37.5768 Q925.19 34.5212 933.179 34.5212 L941.39 34.5212 L941.39 33.9483 Q941.39 29.9061 938.717 27.7099 Q936.075 25.4819 931.269 25.4819 Q928.213 25.4819 925.317 26.214 Q922.42 26.946 919.747 28.4101 L919.747 22.9993 Q922.962 21.758 925.985 21.1532 Q929.009 20.5167 931.874 20.5167 Q939.608 20.5167 943.427 24.5271 Q947.247 28.5375 947.247 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M968.222 60.3342 Q965.739 66.6999 963.384 68.6414 Q961.028 70.583 957.082 70.583 L952.403 70.583 L952.403 65.6814 L955.84 65.6814 Q958.259 65.6814 959.596 64.5355 Q960.933 63.3897 962.556 59.1247 L963.607 56.4511 L949.188 21.376 L955.395 21.376 L966.535 49.2578 L977.675 21.376 L983.881 21.376 L968.222 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1020.52 37.7359 L1020.52 40.6005 L993.589 40.6005 Q993.971 46.6479 997.218 49.8308 Q1000.5 52.9818 1006.32 52.9818 Q1009.69 52.9818 1012.85 52.1542 Q1016.03 51.3267 1019.15 49.6716 L1019.15 55.2098 Q1016 56.5466 1012.69 57.2468 Q1009.38 57.947 1005.97 57.947 Q997.44 57.947 992.443 52.9818 Q987.478 48.0165 987.478 39.5501 Q987.478 30.7973 992.189 25.6729 Q996.931 20.5167 1004.95 20.5167 Q1012.15 20.5167 1016.31 25.1636 Q1020.52 29.7788 1020.52 37.7359 M1014.66 36.0172 Q1014.6 31.2111 1011.95 28.3465 Q1009.34 25.4819 1005.02 25.4819 Q1000.11 25.4819 997.154 28.251 Q994.226 31.0201 993.78 36.049 L1014.66 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1047.32 26.8506 Q1046.33 26.2776 1045.15 26.023 Q1044.01 25.7366 1042.61 25.7366 Q1037.64 25.7366 1034.97 28.9831 Q1032.32 32.1977 1032.32 38.2452 L1032.32 57.024 L1026.44 57.024 L1026.44 21.376 L1032.32 21.376 L1032.32 26.9142 Q1034.17 23.6677 1037.13 22.1081 Q1040.09 20.5167 1044.32 20.5167 Q1044.93 20.5167 1045.66 20.6122 Q1046.39 20.6758 1047.28 20.835 L1047.32 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1067.53 7.56246 Q1063.26 14.883 1061.19 22.0444 Q1059.12 29.2059 1059.12 36.5583 Q1059.12 43.9106 1061.19 51.1357 Q1063.29 58.329 1067.53 65.6177 L1062.43 65.6177 Q1057.66 58.138 1055.27 50.9129 Q1052.92 43.6878 1052.92 36.5583 Q1052.92 29.4605 1055.27 22.2672 Q1057.63 15.074 1062.43 7.56246 L1067.53 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1104.16 37.7359 L1104.16 40.6005 L1077.23 40.6005 Q1077.62 46.6479 1080.86 49.8308 Q1084.14 52.9818 1089.97 52.9818 Q1093.34 52.9818 1096.49 52.1542 Q1099.67 51.3267 1102.79 49.6716 L1102.79 55.2098 Q1099.64 56.5466 1096.33 57.2468 Q1093.02 57.947 1089.62 57.947 Q1081.09 57.947 1076.09 52.9818 Q1071.12 48.0165 1071.12 39.5501 Q1071.12 30.7973 1075.83 25.6729 Q1080.58 20.5167 1088.6 20.5167 Q1095.79 20.5167 1099.96 25.1636 Q1104.16 29.7788 1104.16 37.7359 M1098.3 36.0172 Q1098.24 31.2111 1095.6 28.3465 Q1092.99 25.4819 1088.66 25.4819 Q1083.76 25.4819 1080.8 28.251 Q1077.87 31.0201 1077.43 36.049 L1098.3 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1133.03 22.4264 L1133.03 27.9645 Q1130.55 26.6914 1127.87 26.0548 Q1125.2 25.4183 1122.34 25.4183 Q1117.97 25.4183 1115.78 26.7551 Q1113.61 28.0919 1113.61 30.7655 Q1113.61 32.8025 1115.17 33.9801 Q1116.73 35.126 1121.44 36.1763 L1123.45 36.6219 Q1129.69 37.9587 1132.3 40.4095 Q1134.94 42.8285 1134.94 47.189 Q1134.94 52.1542 1130.99 55.0506 Q1127.08 57.947 1120.2 57.947 Q1117.34 57.947 1114.22 57.3741 Q1111.13 56.833 1107.69 55.719 L1107.69 49.6716 Q1110.94 51.3585 1114.09 52.2179 Q1117.24 53.0454 1120.33 53.0454 Q1124.47 53.0454 1126.7 51.645 Q1128.92 50.2127 1128.92 47.6346 Q1128.92 45.2474 1127.3 43.9743 Q1125.71 42.7012 1120.27 41.5235 L1118.23 41.0461 Q1112.79 39.9002 1110.37 37.5449 Q1107.95 35.1578 1107.95 31.0201 Q1107.95 25.9912 1111.51 23.2539 Q1115.08 20.5167 1121.64 20.5167 Q1124.88 20.5167 1127.75 20.9941 Q1130.61 21.4715 1133.03 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1146.88 11.2546 L1146.88 21.376 L1158.94 21.376 L1158.94 25.9275 L1146.88 25.9275 L1146.88 45.2793 Q1146.88 49.6398 1148.05 50.8811 Q1149.26 52.1224 1152.92 52.1224 L1158.94 52.1224 L1158.94 57.024 L1152.92 57.024 Q1146.14 57.024 1143.57 54.5095 Q1140.99 51.9633 1140.99 45.2793 L1140.99 25.9275 L1136.69 25.9275 L1136.69 21.376 L1140.99 21.376 L1140.99 11.2546 L1146.88 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1192.17 67.8457 L1192.17 72.3972 L1158.3 72.3972 L1158.3 67.8457 L1192.17 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1223.96 22.7447 L1223.96 28.2192 Q1221.48 26.8506 1218.97 26.1822 Q1216.48 25.4819 1213.94 25.4819 Q1208.24 25.4819 1205.09 29.1104 Q1201.94 32.707 1201.94 39.2318 Q1201.94 45.7567 1205.09 49.3852 Q1208.24 52.9818 1213.94 52.9818 Q1216.48 52.9818 1218.97 52.3134 Q1221.48 51.6131 1223.96 50.2445 L1223.96 55.6554 Q1221.51 56.8012 1218.87 57.3741 Q1216.26 57.947 1213.3 57.947 Q1205.25 57.947 1200.51 52.8863 Q1195.76 47.8256 1195.76 39.2318 Q1195.76 30.5108 1200.54 25.5138 Q1205.34 20.5167 1213.68 20.5167 Q1216.39 20.5167 1218.97 21.0896 Q1221.55 21.6307 1223.96 22.7447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1243.92 25.4819 Q1239.21 25.4819 1236.47 29.174 Q1233.74 32.8343 1233.74 39.2318 Q1233.74 45.6294 1236.44 49.3215 Q1239.18 52.9818 1243.92 52.9818 Q1248.6 52.9818 1251.34 49.2897 Q1254.07 45.5976 1254.07 39.2318 Q1254.07 32.898 1251.34 29.2059 Q1248.6 25.4819 1243.92 25.4819 M1243.92 20.5167 Q1251.56 20.5167 1255.92 25.4819 Q1260.28 30.4472 1260.28 39.2318 Q1260.28 47.9847 1255.92 52.9818 Q1251.56 57.947 1243.92 57.947 Q1236.25 57.947 1231.89 52.9818 Q1227.56 47.9847 1227.56 39.2318 Q1227.56 30.4472 1231.89 25.4819 Q1236.25 20.5167 1243.92 20.5167 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1287.08 26.8506 Q1286.09 26.2776 1284.92 26.023 Q1283.77 25.7366 1282.37 25.7366 Q1277.4 25.7366 1274.73 28.9831 Q1272.09 32.1977 1272.09 38.2452 L1272.09 57.024 L1266.2 57.024 L1266.2 21.376 L1272.09 21.376 L1272.09 26.9142 Q1273.93 23.6677 1276.89 22.1081 Q1279.85 20.5167 1284.09 20.5167 Q1284.69 20.5167 1285.42 20.6122 Q1286.16 20.6758 1287.05 20.835 L1287.08 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1312.73 26.8506 Q1311.75 26.2776 1310.57 26.023 Q1309.42 25.7366 1308.02 25.7366 Q1303.06 25.7366 1300.38 28.9831 Q1297.74 32.1977 1297.74 38.2452 L1297.74 57.024 L1291.85 57.024 L1291.85 21.376 L1297.74 21.376 L1297.74 26.9142 Q1299.59 23.6677 1302.55 22.1081 Q1305.51 20.5167 1309.74 20.5167 Q1310.35 20.5167 1311.08 20.6122 Q1311.81 20.6758 1312.7 20.835 L1312.73 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1347.94 37.7359 L1347.94 40.6005 L1321.01 40.6005 Q1321.39 46.6479 1324.64 49.8308 Q1327.92 52.9818 1333.74 52.9818 Q1337.11 52.9818 1340.27 52.1542 Q1343.45 51.3267 1346.57 49.6716 L1346.57 55.2098 Q1343.42 56.5466 1340.11 57.2468 Q1336.8 57.947 1333.39 57.947 Q1324.86 57.947 1319.86 52.9818 Q1314.9 48.0165 1314.9 39.5501 Q1314.9 30.7973 1319.61 25.6729 Q1324.35 20.5167 1332.37 20.5167 Q1339.57 20.5167 1343.73 25.1636 Q1347.94 29.7788 1347.94 37.7359 M1342.08 36.0172 Q1342.02 31.2111 1339.37 28.3465 Q1336.76 25.4819 1332.44 25.4819 Q1327.53 25.4819 1324.57 28.251 Q1321.65 31.0201 1321.2 36.049 L1342.08 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1379.73 22.7447 L1379.73 28.2192 Q1377.25 26.8506 1374.74 26.1822 Q1372.25 25.4819 1369.71 25.4819 Q1364.01 25.4819 1360.86 29.1104 Q1357.71 32.707 1357.71 39.2318 Q1357.71 45.7567 1360.86 49.3852 Q1364.01 52.9818 1369.71 52.9818 Q1372.25 52.9818 1374.74 52.3134 Q1377.25 51.6131 1379.73 50.2445 L1379.73 55.6554 Q1377.28 56.8012 1374.64 57.3741 Q1372.03 57.947 1369.07 57.947 Q1361.02 57.947 1356.28 52.8863 Q1351.53 47.8256 1351.53 39.2318 Q1351.53 30.5108 1356.31 25.5138 Q1361.11 20.5167 1369.45 20.5167 Q1372.16 20.5167 1374.74 21.0896 Q1377.31 21.6307 1379.73 22.7447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1391.67 11.2546 L1391.67 21.376 L1403.73 21.376 L1403.73 25.9275 L1391.67 25.9275 L1391.67 45.2793 Q1391.67 49.6398 1392.85 50.8811 Q1394.06 52.1224 1397.72 52.1224 L1403.73 52.1224 L1403.73 57.024 L1397.72 57.024 Q1390.94 57.024 1388.36 54.5095 Q1385.78 51.9633 1385.78 45.2793 L1385.78 25.9275 L1381.48 25.9275 L1381.48 21.376 L1385.78 21.376 L1385.78 11.2546 L1391.67 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1440.37 37.7359 L1440.37 40.6005 L1413.44 40.6005 Q1413.82 46.6479 1417.07 49.8308 Q1420.35 52.9818 1426.17 52.9818 Q1429.54 52.9818 1432.7 52.1542 Q1435.88 51.3267 1439 49.6716 L1439 55.2098 Q1435.85 56.5466 1432.54 57.2468 Q1429.23 57.947 1425.82 57.947 Q1417.29 57.947 1412.29 52.9818 Q1407.33 48.0165 1407.33 39.5501 Q1407.33 30.7973 1412.04 25.6729 Q1416.78 20.5167 1424.8 20.5167 Q1432 20.5167 1436.16 25.1636 Q1440.37 29.7788 1440.37 37.7359 M1434.51 36.0172 Q1434.45 31.2111 1431.8 28.3465 Q1429.19 25.4819 1424.87 25.4819 Q1419.96 25.4819 1417 28.251 Q1414.08 31.0201 1413.63 36.049 L1434.51 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1469.97 26.7869 L1469.97 7.4988 L1475.82 7.4988 L1475.82 57.024 L1469.97 57.024 L1469.97 51.6768 Q1468.12 54.8597 1465.29 56.4193 Q1462.49 57.947 1458.54 57.947 Q1452.08 57.947 1448.01 52.7908 Q1443.96 47.6346 1443.96 39.2318 Q1443.96 30.8291 1448.01 25.6729 Q1452.08 20.5167 1458.54 20.5167 Q1462.49 20.5167 1465.29 22.0763 Q1468.12 23.604 1469.97 26.7869 M1450.01 39.2318 Q1450.01 45.693 1452.65 49.3852 Q1455.33 53.0454 1459.97 53.0454 Q1464.62 53.0454 1467.29 49.3852 Q1469.97 45.693 1469.97 39.2318 Q1469.97 32.7707 1467.29 29.1104 Q1464.62 25.4183 1459.97 25.4183 Q1455.33 25.4183 1452.65 29.1104 Q1450.01 32.7707 1450.01 39.2318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1509.05 67.8457 L1509.05 72.3972 L1475.19 72.3972 L1475.19 67.8457 L1509.05 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1542.95 28.2192 Q1545.15 24.2724 1548.2 22.3946 Q1551.26 20.5167 1555.39 20.5167 Q1560.96 20.5167 1563.99 24.4316 Q1567.01 28.3147 1567.01 35.5079 L1567.01 57.024 L1561.12 57.024 L1561.12 35.6989 Q1561.12 30.5745 1559.31 28.0919 Q1557.5 25.6092 1553.77 25.6092 Q1549.22 25.6092 1546.58 28.6329 Q1543.94 31.6567 1543.94 36.8765 L1543.94 57.024 L1538.05 57.024 L1538.05 35.6989 Q1538.05 30.5427 1536.23 28.0919 Q1534.42 25.6092 1530.63 25.6092 Q1526.14 25.6092 1523.5 28.6648 Q1520.86 31.6885 1520.86 36.8765 L1520.86 57.024 L1514.97 57.024 L1514.97 21.376 L1520.86 21.376 L1520.86 26.9142 Q1522.87 23.6359 1525.67 22.0763 Q1528.47 20.5167 1532.32 20.5167 Q1536.2 20.5167 1538.91 22.49 Q1541.64 24.4634 1542.95 28.2192 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1573.15 7.4988 L1579.01 7.4988 L1579.01 57.024 L1573.15 57.024 L1573.15 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1615.65 37.7359 L1615.65 40.6005 L1588.72 40.6005 Q1589.1 46.6479 1592.35 49.8308 Q1595.63 52.9818 1601.45 52.9818 Q1604.82 52.9818 1607.98 52.1542 Q1611.16 51.3267 1614.28 49.6716 L1614.28 55.2098 Q1611.13 56.5466 1607.82 57.2468 Q1604.51 57.947 1601.1 57.947 Q1592.57 57.947 1587.57 52.9818 Q1582.61 48.0165 1582.61 39.5501 Q1582.61 30.7973 1587.32 25.6729 Q1592.06 20.5167 1600.08 20.5167 Q1607.28 20.5167 1611.44 25.1636 Q1615.65 29.7788 1615.65 37.7359 M1609.79 36.0172 Q1609.73 31.2111 1607.08 28.3465 Q1604.47 25.4819 1600.15 25.4819 Q1595.24 25.4819 1592.28 28.251 Q1589.36 31.0201 1588.91 36.049 L1609.79 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M1620.87 7.56246 L1625.96 7.56246 Q1630.73 15.074 1633.09 22.2672 Q1635.48 29.4605 1635.48 36.5583 Q1635.48 43.6878 1633.09 50.9129 Q1630.73 58.138 1625.96 65.6177 L1620.87 65.6177 Q1625.1 58.329 1627.17 51.1357 Q1629.27 43.9106 1629.27 36.5583 Q1629.27 29.2059 1627.17 22.0444 Q1625.1 14.883 1620.87 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip962)\" d=\"\nM274.235 1454.01 L274.235 1455.9 L290.685 1455.9 L290.685 1454.01 L274.235 1454.01 L274.235 1454.01 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 274.235,1454.01 274.235,1455.9 290.685,1455.9 290.685,1454.01 274.235,1454.01 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM290.685 1452.6 L290.685 1455.9 L307.135 1455.9 L307.135 1452.6 L290.685 1452.6 L290.685 1452.6 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 290.685,1452.6 290.685,1455.9 307.135,1455.9 307.135,1452.6 290.685,1452.6 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM307.135 1454.01 L307.135 1455.9 L323.585 1455.9 L323.585 1454.01 L307.135 1454.01 L307.135 1454.01 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 307.135,1454.01 307.135,1455.9 323.585,1455.9 323.585,1454.01 307.135,1454.01 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM323.585 1454.96 L323.585 1455.9 L340.035 1455.9 L340.035 1454.96 L323.585 1454.96 L323.585 1454.96 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 323.585,1454.96 323.585,1455.9 340.035,1455.9 340.035,1454.96 323.585,1454.96 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM340.035 1455.43 L340.035 1455.9 L356.485 1455.9 L356.485 1455.43 L340.035 1455.43 L340.035 1455.43 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 340.035,1455.43 340.035,1455.9 356.485,1455.9 356.485,1455.43 340.035,1455.43 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM356.485 1452.13 L356.485 1455.9 L372.935 1455.9 L372.935 1452.13 L356.485 1452.13 L356.485 1452.13 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 356.485,1452.13 356.485,1455.9 372.935,1455.9 372.935,1452.13 356.485,1452.13 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM372.935 1453.54 L372.935 1455.9 L389.385 1455.9 L389.385 1453.54 L372.935 1453.54 L372.935 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 372.935,1453.54 372.935,1455.9 389.385,1455.9 389.385,1453.54 372.935,1453.54 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM389.385 1449.77 L389.385 1455.9 L405.835 1455.9 L405.835 1449.77 L389.385 1449.77 L389.385 1449.77 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 389.385,1449.77 389.385,1455.9 405.835,1455.9 405.835,1449.77 389.385,1449.77 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM405.835 1449.77 L405.835 1455.9 L422.285 1455.9 L422.285 1449.77 L405.835 1449.77 L405.835 1449.77 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 405.835,1449.77 405.835,1455.9 422.285,1455.9 422.285,1449.77 405.835,1449.77 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM422.285 1448.82 L422.285 1455.9 L438.735 1455.9 L438.735 1448.82 L422.285 1448.82 L422.285 1448.82 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 422.285,1448.82 422.285,1455.9 438.735,1455.9 438.735,1448.82 422.285,1448.82 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM438.735 1447.88 L438.735 1455.9 L455.185 1455.9 L455.185 1447.88 L438.735 1447.88 L438.735 1447.88 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 438.735,1447.88 438.735,1455.9 455.185,1455.9 455.185,1447.88 438.735,1447.88 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM455.185 1443.16 L455.185 1455.9 L471.635 1455.9 L471.635 1443.16 L455.185 1443.16 L455.185 1443.16 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 455.185,1443.16 455.185,1455.9 471.635,1455.9 471.635,1443.16 455.185,1443.16 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM471.635 1443.63 L471.635 1455.9 L488.085 1455.9 L488.085 1443.63 L471.635 1443.63 L471.635 1443.63 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 471.635,1443.63 471.635,1455.9 488.085,1455.9 488.085,1443.63 471.635,1443.63 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM488.085 1437.5 L488.085 1455.9 L504.535 1455.9 L504.535 1437.5 L488.085 1437.5 L488.085 1437.5 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 488.085,1437.5 488.085,1455.9 504.535,1455.9 504.535,1437.5 488.085,1437.5 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM504.535 1432.78 L504.535 1455.9 L520.985 1455.9 L520.985 1432.78 L504.535 1432.78 L504.535 1432.78 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 504.535,1432.78 504.535,1455.9 520.985,1455.9 520.985,1432.78 504.535,1432.78 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM520.985 1424.76 L520.985 1455.9 L537.435 1455.9 L537.435 1424.76 L520.985 1424.76 L520.985 1424.76 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 520.985,1424.76 520.985,1455.9 537.435,1455.9 537.435,1424.76 520.985,1424.76 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM537.435 1421.45 L537.435 1455.9 L553.885 1455.9 L553.885 1421.45 L537.435 1421.45 L537.435 1421.45 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 537.435,1421.45 537.435,1455.9 553.885,1455.9 553.885,1421.45 537.435,1421.45 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM553.885 1410.6 L553.885 1455.9 L570.335 1455.9 L570.335 1410.6 L553.885 1410.6 L553.885 1410.6 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 553.885,1410.6 553.885,1455.9 570.335,1455.9 570.335,1410.6 553.885,1410.6 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM570.335 1397.39 L570.335 1455.9 L586.784 1455.9 L586.784 1397.39 L570.335 1397.39 L570.335 1397.39 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 570.335,1397.39 570.335,1455.9 586.784,1455.9 586.784,1397.39 570.335,1397.39 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM586.784 1394.08 L586.784 1455.9 L603.234 1455.9 L603.234 1394.08 L586.784 1394.08 L586.784 1394.08 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 586.784,1394.08 586.784,1455.9 603.234,1455.9 603.234,1394.08 586.784,1394.08 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM603.234 1388.42 L603.234 1455.9 L619.684 1455.9 L619.684 1388.42 L603.234 1388.42 L603.234 1388.42 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 603.234,1388.42 603.234,1455.9 619.684,1455.9 619.684,1388.42 603.234,1388.42 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM619.684 1372.85 L619.684 1455.9 L636.134 1455.9 L636.134 1372.85 L619.684 1372.85 L619.684 1372.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 619.684,1372.85 619.684,1455.9 636.134,1455.9 636.134,1372.85 619.684,1372.85 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM636.134 1338.4 L636.134 1455.9 L652.584 1455.9 L652.584 1338.4 L636.134 1338.4 L636.134 1338.4 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 636.134,1338.4 636.134,1455.9 652.584,1455.9 652.584,1338.4 636.134,1338.4 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM652.584 1343.12 L652.584 1455.9 L669.034 1455.9 L669.034 1343.12 L652.584 1343.12 L652.584 1343.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 652.584,1343.12 652.584,1455.9 669.034,1455.9 669.034,1343.12 652.584,1343.12 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM669.034 1302.06 L669.034 1455.9 L685.484 1455.9 L685.484 1302.06 L669.034 1302.06 L669.034 1302.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 669.034,1302.06 669.034,1455.9 685.484,1455.9 685.484,1302.06 669.034,1302.06 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM685.484 1286.02 L685.484 1455.9 L701.934 1455.9 L701.934 1286.02 L685.484 1286.02 L685.484 1286.02 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 685.484,1286.02 685.484,1455.9 701.934,1455.9 701.934,1286.02 685.484,1286.02 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM701.934 1245.44 L701.934 1455.9 L718.384 1455.9 L718.384 1245.44 L701.934 1245.44 L701.934 1245.44 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 701.934,1245.44 701.934,1455.9 718.384,1455.9 718.384,1245.44 701.934,1245.44 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM718.384 1233.64 L718.384 1455.9 L734.834 1455.9 L734.834 1233.64 L718.384 1233.64 L718.384 1233.64 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 718.384,1233.64 718.384,1455.9 734.834,1455.9 734.834,1233.64 718.384,1233.64 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM734.834 1199.19 L734.834 1455.9 L751.284 1455.9 L751.284 1199.19 L734.834 1199.19 L734.834 1199.19 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 734.834,1199.19 734.834,1455.9 751.284,1455.9 751.284,1199.19 734.834,1199.19 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM751.284 1168.99 L751.284 1455.9 L767.734 1455.9 L767.734 1168.99 L751.284 1168.99 L751.284 1168.99 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 751.284,1168.99 751.284,1455.9 767.734,1455.9 767.734,1168.99 751.284,1168.99 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM767.734 1122.74 L767.734 1455.9 L784.184 1455.9 L784.184 1122.74 L767.734 1122.74 L767.734 1122.74 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 767.734,1122.74 767.734,1455.9 784.184,1455.9 784.184,1122.74 767.734,1122.74 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM784.184 1085.94 L784.184 1455.9 L800.634 1455.9 L800.634 1085.94 L784.184 1085.94 L784.184 1085.94 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 784.184,1085.94 784.184,1455.9 800.634,1455.9 800.634,1085.94 784.184,1085.94 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM800.634 1038.75 L800.634 1455.9 L817.084 1455.9 L817.084 1038.75 L800.634 1038.75 L800.634 1038.75 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 800.634,1038.75 800.634,1455.9 817.084,1455.9 817.084,1038.75 800.634,1038.75 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM817.084 1030.72 L817.084 1455.9 L833.534 1455.9 L833.534 1030.72 L817.084 1030.72 L817.084 1030.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 817.084,1030.72 817.084,1455.9 833.534,1455.9 833.534,1030.72 817.084,1030.72 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM833.534 958.997 L833.534 1455.9 L849.984 1455.9 L849.984 958.997 L833.534 958.997 L833.534 958.997 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 833.534,958.997 833.534,1455.9 849.984,1455.9 849.984,958.997 833.534,958.997 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM849.984 914.639 L849.984 1455.9 L866.434 1455.9 L866.434 914.639 L849.984 914.639 L849.984 914.639 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 849.984,914.639 849.984,1455.9 866.434,1455.9 866.434,914.639 849.984,914.639 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM866.434 842.439 L866.434 1455.9 L882.884 1455.9 L882.884 842.439 L866.434 842.439 L866.434 842.439 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 866.434,842.439 866.434,1455.9 882.884,1455.9 882.884,842.439 866.434,842.439 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM882.884 821.676 L882.884 1455.9 L899.334 1455.9 L899.334 821.676 L882.884 821.676 L882.884 821.676 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 882.884,821.676 882.884,1455.9 899.334,1455.9 899.334,821.676 882.884,821.676 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM899.334 743.341 L899.334 1455.9 L915.784 1455.9 L915.784 743.341 L899.334 743.341 L899.334 743.341 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 899.334,743.341 899.334,1455.9 915.784,1455.9 915.784,743.341 899.334,743.341 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM915.784 709.837 L915.784 1455.9 L932.233 1455.9 L932.233 709.837 L915.784 709.837 L915.784 709.837 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 915.784,709.837 915.784,1455.9 932.233,1455.9 932.233,709.837 915.784,709.837 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM932.233 682.467 L932.233 1455.9 L948.683 1455.9 L948.683 682.467 L932.233 682.467 L932.233 682.467 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 932.233,682.467 932.233,1455.9 948.683,1455.9 948.683,682.467 932.233,682.467 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM948.683 600.829 L948.683 1455.9 L965.133 1455.9 L965.133 600.829 L948.683 600.829 L948.683 600.829 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 948.683,600.829 948.683,1455.9 965.133,1455.9 965.133,600.829 948.683,600.829 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM965.133 602.717 L965.133 1455.9 L981.583 1455.9 L981.583 602.717 L965.133 602.717 L965.133 602.717 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 965.133,602.717 965.133,1455.9 981.583,1455.9 981.583,602.717 965.133,602.717 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM981.583 506.45 L981.583 1455.9 L998.033 1455.9 L998.033 506.45 L981.583 506.45 L981.583 506.45 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 981.583,506.45 981.583,1455.9 998.033,1455.9 998.033,506.45 981.583,506.45 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM998.033 466.339 L998.033 1455.9 L1014.48 1455.9 L1014.48 466.339 L998.033 466.339 L998.033 466.339 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 998.033,466.339 998.033,1455.9 1014.48,1455.9 1014.48,466.339 998.033,466.339 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1014.48 432.363 L1014.48 1455.9 L1030.93 1455.9 L1030.93 432.363 L1014.48 432.363 L1014.48 432.363 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1014.48,432.363 1014.48,1455.9 1030.93,1455.9 1030.93,432.363 1014.48,432.363 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1030.93 381.398 L1030.93 1455.9 L1047.38 1455.9 L1047.38 381.398 L1030.93 381.398 L1030.93 381.398 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1030.93,381.398 1030.93,1455.9 1047.38,1455.9 1047.38,381.398 1030.93,381.398 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1047.38 327.131 L1047.38 1455.9 L1063.83 1455.9 L1063.83 327.131 L1047.38 327.131 L1047.38 327.131 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1047.38,327.131 1047.38,1455.9 1063.83,1455.9 1063.83,327.131 1047.38,327.131 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1063.83 284.66 L1063.83 1455.9 L1080.28 1455.9 L1080.28 284.66 L1063.83 284.66 L1063.83 284.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1063.83,284.66 1063.83,1455.9 1080.28,1455.9 1080.28,284.66 1063.83,284.66 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1080.28 229.448 L1080.28 1455.9 L1096.73 1455.9 L1096.73 229.448 L1080.28 229.448 L1080.28 229.448 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1080.28,229.448 1080.28,1455.9 1096.73,1455.9 1096.73,229.448 1080.28,229.448 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1096.73 227.089 L1096.73 1455.9 L1113.18 1455.9 L1113.18 227.089 L1096.73 227.089 L1096.73 227.089 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1096.73,227.089 1096.73,1455.9 1113.18,1455.9 1113.18,227.089 1096.73,227.089 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1113.18 243.605 L1113.18 1455.9 L1129.63 1455.9 L1129.63 243.605 L1113.18 243.605 L1113.18 243.605 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1113.18,243.605 1113.18,1455.9 1129.63,1455.9 1129.63,243.605 1113.18,243.605 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1129.63 223.786 L1129.63 1455.9 L1146.08 1455.9 L1146.08 223.786 L1129.63 223.786 L1129.63 223.786 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1129.63,223.786 1129.63,1455.9 1146.08,1455.9 1146.08,223.786 1129.63,223.786 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1146.08 149.698 L1146.08 1455.9 L1162.53 1455.9 L1162.53 149.698 L1146.08 149.698 L1146.08 149.698 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1146.08,149.698 1146.08,1455.9 1162.53,1455.9 1162.53,149.698 1146.08,149.698 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1162.53 173.293 L1162.53 1455.9 L1178.98 1455.9 L1178.98 173.293 L1162.53 173.293 L1162.53 173.293 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1162.53,173.293 1162.53,1455.9 1178.98,1455.9 1178.98,173.293 1162.53,173.293 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1178.98 209.157 L1178.98 1455.9 L1195.43 1455.9 L1195.43 209.157 L1178.98 209.157 L1178.98 209.157 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1178.98,209.157 1178.98,1455.9 1195.43,1455.9 1195.43,209.157 1178.98,209.157 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1195.43 216.235 L1195.43 1455.9 L1211.88 1455.9 L1211.88 216.235 L1195.43 216.235 L1195.43 216.235 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1195.43,216.235 1195.43,1455.9 1211.88,1455.9 1211.88,216.235 1195.43,216.235 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1211.88 239.83 L1211.88 1455.9 L1228.33 1455.9 L1228.33 239.83 L1211.88 239.83 L1211.88 239.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1211.88,239.83 1211.88,1455.9 1228.33,1455.9 1228.33,239.83 1211.88,239.83 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1228.33 254.459 L1228.33 1455.9 L1244.78 1455.9 L1244.78 254.459 L1228.33 254.459 L1228.33 254.459 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1228.33,254.459 1228.33,1455.9 1244.78,1455.9 1244.78,254.459 1228.33,254.459 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1244.78 249.74 L1244.78 1455.9 L1261.23 1455.9 L1261.23 249.74 L1244.78 249.74 L1244.78 249.74 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1244.78,249.74 1244.78,1455.9 1261.23,1455.9 1261.23,249.74 1244.78,249.74 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1261.23 334.209 L1261.23 1455.9 L1277.68 1455.9 L1277.68 334.209 L1261.23 334.209 L1261.23 334.209 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1261.23,334.209 1261.23,1455.9 1277.68,1455.9 1277.68,334.209 1261.23,334.209 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1277.68 289.851 L1277.68 1455.9 L1294.13 1455.9 L1294.13 289.851 L1277.68 289.851 L1277.68 289.851 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1277.68,289.851 1277.68,1455.9 1294.13,1455.9 1294.13,289.851 1277.68,289.851 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1294.13 364.882 L1294.13 1455.9 L1310.58 1455.9 L1310.58 364.882 L1294.13 364.882 L1294.13 364.882 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1294.13,364.882 1294.13,1455.9 1310.58,1455.9 1310.58,364.882 1294.13,364.882 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1310.58 400.746 L1310.58 1455.9 L1327.03 1455.9 L1327.03 400.746 L1310.58 400.746 L1310.58 400.746 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1310.58,400.746 1310.58,1455.9 1327.03,1455.9 1327.03,400.746 1310.58,400.746 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1327.03 438.026 L1327.03 1455.9 L1343.48 1455.9 L1343.48 438.026 L1327.03 438.026 L1327.03 438.026 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1327.03,438.026 1327.03,1455.9 1343.48,1455.9 1343.48,438.026 1327.03,438.026 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1343.48 465.867 L1343.48 1455.9 L1359.93 1455.9 L1359.93 465.867 L1343.48 465.867 L1343.48 465.867 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1343.48,465.867 1343.48,1455.9 1359.93,1455.9 1359.93,465.867 1343.48,465.867 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1359.93 531.933 L1359.93 1455.9 L1376.38 1455.9 L1376.38 531.933 L1359.93 531.933 L1359.93 531.933 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1359.93,531.933 1359.93,1455.9 1376.38,1455.9 1376.38,531.933 1359.93,531.933 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1376.38 577.235 L1376.38 1455.9 L1392.83 1455.9 L1392.83 577.235 L1376.38 577.235 L1376.38 577.235 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1376.38,577.235 1376.38,1455.9 1392.83,1455.9 1392.83,577.235 1376.38,577.235 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1392.83 603.661 L1392.83 1455.9 L1409.28 1455.9 L1409.28 603.661 L1392.83 603.661 L1392.83 603.661 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1392.83,603.661 1392.83,1455.9 1409.28,1455.9 1409.28,603.661 1392.83,603.661 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1409.28 704.646 L1409.28 1455.9 L1425.73 1455.9 L1425.73 704.646 L1409.28 704.646 L1409.28 704.646 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1409.28,704.646 1409.28,1455.9 1425.73,1455.9 1425.73,704.646 1409.28,704.646 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1425.73 729.656 L1425.73 1455.9 L1442.18 1455.9 L1442.18 729.656 L1425.73 729.656 L1425.73 729.656 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1425.73,729.656 1425.73,1455.9 1442.18,1455.9 1442.18,729.656 1425.73,729.656 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1442.18 746.645 L1442.18 1455.9 L1458.63 1455.9 L1458.63 746.645 L1442.18 746.645 L1442.18 746.645 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1442.18,746.645 1442.18,1455.9 1458.63,1455.9 1458.63,746.645 1442.18,746.645 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1458.63 824.979 L1458.63 1455.9 L1475.08 1455.9 L1475.08 824.979 L1458.63 824.979 L1458.63 824.979 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1458.63,824.979 1458.63,1455.9 1475.08,1455.9 1475.08,824.979 1458.63,824.979 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1475.08 847.63 L1475.08 1455.9 L1491.53 1455.9 L1491.53 847.63 L1475.08 847.63 L1475.08 847.63 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1475.08,847.63 1475.08,1455.9 1491.53,1455.9 1491.53,847.63 1475.08,847.63 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1491.53 933.987 L1491.53 1455.9 L1507.98 1455.9 L1507.98 933.987 L1491.53 933.987 L1491.53 933.987 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1491.53,933.987 1491.53,1455.9 1507.98,1455.9 1507.98,933.987 1491.53,933.987 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1507.98 967.963 L1507.98 1455.9 L1524.43 1455.9 L1524.43 967.963 L1507.98 967.963 L1507.98 967.963 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1507.98,967.963 1507.98,1455.9 1524.43,1455.9 1524.43,967.963 1507.98,967.963 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1524.43 999.58 L1524.43 1455.9 L1540.88 1455.9 L1540.88 999.58 L1524.43 999.58 L1524.43 999.58 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1524.43,999.58 1524.43,1455.9 1540.88,1455.9 1540.88,999.58 1524.43,999.58 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1540.88 1076.5 L1540.88 1455.9 L1557.33 1455.9 L1557.33 1076.5 L1540.88 1076.5 L1540.88 1076.5 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1540.88,1076.5 1540.88,1455.9 1557.33,1455.9 1557.33,1076.5 1540.88,1076.5 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1557.33 1091.6 L1557.33 1455.9 L1573.78 1455.9 L1573.78 1091.6 L1557.33 1091.6 L1557.33 1091.6 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1557.33,1091.6 1557.33,1455.9 1573.78,1455.9 1573.78,1091.6 1557.33,1091.6 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1573.78 1126.52 L1573.78 1455.9 L1590.23 1455.9 L1590.23 1126.52 L1573.78 1126.52 L1573.78 1126.52 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1573.78,1126.52 1573.78,1455.9 1590.23,1455.9 1590.23,1126.52 1573.78,1126.52 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1590.23 1161.91 L1590.23 1455.9 L1606.68 1455.9 L1606.68 1161.91 L1590.23 1161.91 L1590.23 1161.91 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1590.23,1161.91 1590.23,1455.9 1606.68,1455.9 1606.68,1161.91 1590.23,1161.91 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1606.68 1197.3 L1606.68 1455.9 L1623.13 1455.9 L1623.13 1197.3 L1606.68 1197.3 L1606.68 1197.3 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1606.68,1197.3 1606.68,1455.9 1623.13,1455.9 1623.13,1197.3 1606.68,1197.3 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1623.13 1207.21 L1623.13 1455.9 L1639.58 1455.9 L1639.58 1207.21 L1623.13 1207.21 L1623.13 1207.21 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1623.13,1207.21 1623.13,1455.9 1639.58,1455.9 1639.58,1207.21 1623.13,1207.21 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1639.58 1232.22 L1639.58 1455.9 L1656.03 1455.9 L1656.03 1232.22 L1639.58 1232.22 L1639.58 1232.22 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1639.58,1232.22 1639.58,1455.9 1656.03,1455.9 1656.03,1232.22 1639.58,1232.22 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1656.03 1278 L1656.03 1455.9 L1672.48 1455.9 L1672.48 1278 L1656.03 1278 L1656.03 1278 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1656.03,1278 1656.03,1455.9 1672.48,1455.9 1672.48,1278 1656.03,1278 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1672.48 1292.63 L1672.48 1455.9 L1688.93 1455.9 L1688.93 1292.63 L1672.48 1292.63 L1672.48 1292.63 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1672.48,1292.63 1672.48,1455.9 1688.93,1455.9 1688.93,1292.63 1672.48,1292.63 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1688.93 1309.61 L1688.93 1455.9 L1705.38 1455.9 L1705.38 1309.61 L1688.93 1309.61 L1688.93 1309.61 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1688.93,1309.61 1688.93,1455.9 1705.38,1455.9 1705.38,1309.61 1688.93,1309.61 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1705.38 1325.66 L1705.38 1455.9 L1721.83 1455.9 L1721.83 1325.66 L1705.38 1325.66 L1705.38 1325.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1705.38,1325.66 1705.38,1455.9 1721.83,1455.9 1721.83,1325.66 1705.38,1325.66 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1721.83 1354.44 L1721.83 1455.9 L1738.28 1455.9 L1738.28 1354.44 L1721.83 1354.44 L1721.83 1354.44 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1721.83,1354.44 1721.83,1455.9 1738.28,1455.9 1738.28,1354.44 1721.83,1354.44 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1738.28 1334.62 L1738.28 1455.9 L1754.73 1455.9 L1754.73 1334.62 L1738.28 1334.62 L1738.28 1334.62 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1738.28,1334.62 1738.28,1455.9 1754.73,1455.9 1754.73,1334.62 1738.28,1334.62 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1754.73 1378.51 L1754.73 1455.9 L1771.18 1455.9 L1771.18 1378.51 L1754.73 1378.51 L1754.73 1378.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1754.73,1378.51 1754.73,1455.9 1771.18,1455.9 1771.18,1378.51 1754.73,1378.51 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1771.18 1394.56 L1771.18 1455.9 L1787.63 1455.9 L1787.63 1394.56 L1771.18 1394.56 L1771.18 1394.56 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1771.18,1394.56 1771.18,1455.9 1787.63,1455.9 1787.63,1394.56 1771.18,1394.56 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1787.63 1395.97 L1787.63 1455.9 L1804.08 1455.9 L1804.08 1395.97 L1787.63 1395.97 L1787.63 1395.97 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1787.63,1395.97 1787.63,1455.9 1804.08,1455.9 1804.08,1395.97 1787.63,1395.97 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1804.08 1402.58 L1804.08 1455.9 L1820.53 1455.9 L1820.53 1402.58 L1804.08 1402.58 L1804.08 1402.58 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1804.08,1402.58 1804.08,1455.9 1820.53,1455.9 1820.53,1402.58 1804.08,1402.58 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1820.53 1407.3 L1820.53 1455.9 L1836.98 1455.9 L1836.98 1407.3 L1820.53 1407.3 L1820.53 1407.3 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1820.53,1407.3 1820.53,1455.9 1836.98,1455.9 1836.98,1407.3 1820.53,1407.3 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1836.98 1420.51 L1836.98 1455.9 L1853.43 1455.9 L1853.43 1420.51 L1836.98 1420.51 L1836.98 1420.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1836.98,1420.51 1836.98,1455.9 1853.43,1455.9 1853.43,1420.51 1836.98,1420.51 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1853.43 1421.93 L1853.43 1455.9 L1869.88 1455.9 L1869.88 1421.93 L1853.43 1421.93 L1853.43 1421.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1853.43,1421.93 1853.43,1455.9 1869.88,1455.9 1869.88,1421.93 1853.43,1421.93 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1869.88 1428.06 L1869.88 1455.9 L1886.33 1455.9 L1886.33 1428.06 L1869.88 1428.06 L1869.88 1428.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1869.88,1428.06 1869.88,1455.9 1886.33,1455.9 1886.33,1428.06 1869.88,1428.06 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1886.33 1436.55 L1886.33 1455.9 L1902.78 1455.9 L1902.78 1436.55 L1886.33 1436.55 L1886.33 1436.55 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1886.33,1436.55 1886.33,1455.9 1902.78,1455.9 1902.78,1436.55 1886.33,1436.55 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1902.78 1437.5 L1902.78 1455.9 L1919.23 1455.9 L1919.23 1437.5 L1902.78 1437.5 L1902.78 1437.5 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1902.78,1437.5 1902.78,1455.9 1919.23,1455.9 1919.23,1437.5 1902.78,1437.5 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1919.23 1440.33 L1919.23 1455.9 L1935.68 1455.9 L1935.68 1440.33 L1919.23 1440.33 L1919.23 1440.33 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1919.23,1440.33 1919.23,1455.9 1935.68,1455.9 1935.68,1440.33 1919.23,1440.33 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1935.68 1443.16 L1935.68 1455.9 L1952.13 1455.9 L1952.13 1443.16 L1935.68 1443.16 L1935.68 1443.16 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1935.68,1443.16 1935.68,1455.9 1952.13,1455.9 1952.13,1443.16 1935.68,1443.16 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1952.13 1442.22 L1952.13 1455.9 L1968.58 1455.9 L1968.58 1442.22 L1952.13 1442.22 L1952.13 1442.22 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1952.13,1442.22 1952.13,1455.9 1968.58,1455.9 1968.58,1442.22 1952.13,1442.22 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1968.58 1444.1 L1968.58 1455.9 L1985.03 1455.9 L1985.03 1444.1 L1968.58 1444.1 L1968.58 1444.1 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1968.58,1444.1 1968.58,1455.9 1985.03,1455.9 1985.03,1444.1 1968.58,1444.1 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM1985.03 1448.35 L1985.03 1455.9 L2001.48 1455.9 L2001.48 1448.35 L1985.03 1448.35 L1985.03 1448.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1985.03,1448.35 1985.03,1455.9 2001.48,1455.9 2001.48,1448.35 1985.03,1448.35 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2001.48 1448.82 L2001.48 1455.9 L2017.93 1455.9 L2017.93 1448.82 L2001.48 1448.82 L2001.48 1448.82 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2001.48,1448.82 2001.48,1455.9 2017.93,1455.9 2017.93,1448.82 2001.48,1448.82 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2017.93 1448.82 L2017.93 1455.9 L2034.38 1455.9 L2034.38 1448.82 L2017.93 1448.82 L2017.93 1448.82 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2017.93,1448.82 2017.93,1455.9 2034.38,1455.9 2034.38,1448.82 2017.93,1448.82 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2034.38 1451.18 L2034.38 1455.9 L2050.83 1455.9 L2050.83 1451.18 L2034.38 1451.18 L2034.38 1451.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2034.38,1451.18 2034.38,1455.9 2050.83,1455.9 2050.83,1451.18 2034.38,1451.18 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2050.83 1452.13 L2050.83 1455.9 L2067.28 1455.9 L2067.28 1452.13 L2050.83 1452.13 L2050.83 1452.13 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2050.83,1452.13 2050.83,1455.9 2067.28,1455.9 2067.28,1452.13 2050.83,1452.13 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2067.28 1453.54 L2067.28 1455.9 L2083.73 1455.9 L2083.73 1453.54 L2067.28 1453.54 L2067.28 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2067.28,1453.54 2067.28,1455.9 2083.73,1455.9 2083.73,1453.54 2067.28,1453.54 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2083.73 1451.18 L2083.73 1455.9 L2100.18 1455.9 L2100.18 1451.18 L2083.73 1451.18 L2083.73 1451.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2083.73,1451.18 2083.73,1455.9 2100.18,1455.9 2100.18,1451.18 2083.73,1451.18 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2100.18 1454.49 L2100.18 1455.9 L2116.63 1455.9 L2116.63 1454.49 L2100.18 1454.49 L2100.18 1454.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2100.18,1454.49 2100.18,1455.9 2116.63,1455.9 2116.63,1454.49 2100.18,1454.49 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2116.63 1453.54 L2116.63 1455.9 L2133.08 1455.9 L2133.08 1453.54 L2116.63 1453.54 L2116.63 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2116.63,1453.54 2116.63,1455.9 2133.08,1455.9 2133.08,1453.54 2116.63,1453.54 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2133.08 1455.9 L2133.08 1455.9 L2149.53 1455.9 L2149.53 1455.9 L2133.08 1455.9 L2133.08 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2133.08,1455.9 2133.08,1455.9 2149.53,1455.9 2133.08,1455.9 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2149.53 1454.49 L2149.53 1455.9 L2165.98 1455.9 L2165.98 1454.49 L2149.53 1454.49 L2149.53 1454.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2149.53,1454.49 2149.53,1455.9 2165.98,1455.9 2165.98,1454.49 2149.53,1454.49 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2165.98 1455.9 L2165.98 1455.9 L2182.43 1455.9 L2182.43 1455.9 L2165.98 1455.9 L2165.98 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2165.98,1455.9 2165.98,1455.9 2182.43,1455.9 2165.98,1455.9 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2182.43 1455.9 L2182.43 1455.9 L2198.88 1455.9 L2198.88 1455.9 L2182.43 1455.9 L2182.43 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2182.43,1455.9 2182.43,1455.9 2198.88,1455.9 2182.43,1455.9 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2198.88 1455.9 L2198.88 1455.9 L2215.33 1455.9 L2215.33 1455.9 L2198.88 1455.9 L2198.88 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2198.88,1455.9 2198.88,1455.9 2215.33,1455.9 2198.88,1455.9 \n \"/>\n<path clip-path=\"url(#clip962)\" d=\"\nM2215.33 1453.54 L2215.33 1455.9 L2231.78 1455.9 L2231.78 1453.54 L2215.33 1453.54 L2215.33 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2215.33,1453.54 2215.33,1455.9 2231.78,1455.9 2231.78,1453.54 2215.33,1453.54 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 691.878,2879.66 691.878,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1182.79,2879.66 1182.79,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip962)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1673.7,2879.66 1673.7,-1274.06 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"\nM1891.16 338.105 L2279.44 338.105 L2279.44 156.665 L1891.16 156.665 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.16,338.105 2279.44,338.105 2279.44,156.665 1891.16,156.665 1891.16,338.105 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"\nM1915.6 241.337 L2062.23 241.337 L2062.23 192.953 L1915.6 192.953 L1915.6 241.337 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1915.6,241.337 2062.23,241.337 2062.23,192.953 1915.6,192.953 1915.6,241.337 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"M 0 0 M2086.67 198.406 L2090.93 198.406 L2090.93 234.425 L2086.67 234.425 L2086.67 198.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2105.45 211.485 Q2102.02 211.485 2100.03 214.17 Q2098.04 216.832 2098.04 221.485 Q2098.04 226.138 2100.01 228.823 Q2102 231.485 2105.45 231.485 Q2108.85 231.485 2110.84 228.8 Q2112.83 226.115 2112.83 221.485 Q2112.83 216.878 2110.84 214.193 Q2108.85 211.485 2105.45 211.485 M2105.45 207.874 Q2111 207.874 2114.17 211.485 Q2117.34 215.096 2117.34 221.485 Q2117.34 227.851 2114.17 231.485 Q2111 235.096 2105.45 235.096 Q2099.87 235.096 2096.7 231.485 Q2093.55 227.851 2093.55 221.485 Q2093.55 215.096 2096.7 211.485 Q2099.87 207.874 2105.45 207.874 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2138.34 209.263 L2138.34 213.291 Q2136.53 212.365 2134.59 211.902 Q2132.65 211.439 2130.56 211.439 Q2127.39 211.439 2125.79 212.411 Q2124.22 213.383 2124.22 215.328 Q2124.22 216.809 2125.35 217.665 Q2126.49 218.499 2129.91 219.263 L2131.37 219.587 Q2135.91 220.559 2137.81 222.341 Q2139.73 224.101 2139.73 227.272 Q2139.73 230.883 2136.86 232.989 Q2134.01 235.096 2129.01 235.096 Q2126.93 235.096 2124.66 234.679 Q2122.41 234.286 2119.91 233.476 L2119.91 229.077 Q2122.28 230.304 2124.57 230.929 Q2126.86 231.531 2129.1 231.531 Q2132.11 231.531 2133.73 230.513 Q2135.35 229.471 2135.35 227.596 Q2135.35 225.86 2134.17 224.934 Q2133.02 224.008 2129.06 223.152 L2127.58 222.804 Q2123.62 221.971 2121.86 220.258 Q2120.1 218.522 2120.1 215.513 Q2120.1 211.855 2122.69 209.865 Q2125.28 207.874 2130.05 207.874 Q2132.41 207.874 2134.5 208.221 Q2136.58 208.568 2138.34 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2160.72 209.263 L2160.72 213.291 Q2158.92 212.365 2156.97 211.902 Q2155.03 211.439 2152.95 211.439 Q2149.78 211.439 2148.18 212.411 Q2146.6 213.383 2146.6 215.328 Q2146.6 216.809 2147.74 217.665 Q2148.87 218.499 2152.3 219.263 L2153.76 219.587 Q2158.29 220.559 2160.19 222.341 Q2162.11 224.101 2162.11 227.272 Q2162.11 230.883 2159.24 232.989 Q2156.4 235.096 2151.4 235.096 Q2149.31 235.096 2147.04 234.679 Q2144.8 234.286 2142.3 233.476 L2142.3 229.077 Q2144.66 230.304 2146.95 230.929 Q2149.24 231.531 2151.49 231.531 Q2154.5 231.531 2156.12 230.513 Q2157.74 229.471 2157.74 227.596 Q2157.74 225.86 2156.56 224.934 Q2155.4 224.008 2151.44 223.152 L2149.96 222.804 Q2146 221.971 2144.24 220.258 Q2142.48 218.522 2142.48 215.513 Q2142.48 211.855 2145.08 209.865 Q2147.67 207.874 2152.44 207.874 Q2154.8 207.874 2156.88 208.221 Q2158.96 208.568 2160.72 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip960)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1915.6,277.625 2062.23,277.625 \n \"/>\n<path clip-path=\"url(#clip960)\" d=\"M 0 0 M2086.67 304.766 L2086.67 268.979 L2090.93 268.979 L2090.93 285.09 Q2090.93 288.446 2092.53 290.159 Q2094.13 291.872 2097.25 291.872 Q2100.68 291.872 2102.39 289.928 Q2104.13 287.983 2104.13 284.095 L2104.13 268.979 L2108.39 268.979 L2108.39 288.932 Q2108.39 290.321 2108.78 290.993 Q2109.2 291.641 2110.05 291.641 Q2110.26 291.641 2110.63 291.525 Q2111 291.386 2111.65 291.108 L2111.65 294.534 Q2110.7 295.067 2109.84 295.321 Q2109.01 295.576 2108.2 295.576 Q2106.6 295.576 2105.65 294.673 Q2104.71 293.77 2104.36 291.919 Q2103.2 293.747 2101.51 294.673 Q2099.84 295.576 2097.58 295.576 Q2095.22 295.576 2093.55 294.673 Q2091.9 293.77 2090.93 291.965 L2090.93 304.766 L2086.67 304.766 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2148.53 265.183 L2148.53 274.141 L2161.42 274.141 L2161.42 278.076 L2148.53 278.076 L2148.53 287.034 L2144.64 287.034 L2144.64 278.076 L2131.74 278.076 L2131.74 274.141 L2144.64 274.141 L2144.64 265.183 L2148.53 265.183 M2131.74 290.969 L2161.42 290.969 L2161.42 294.905 L2131.74 294.905 L2131.74 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2185.59 290.969 L2201.9 290.969 L2201.9 294.905 L2179.96 294.905 L2179.96 290.969 Q2182.62 288.215 2187.21 283.585 Q2191.81 278.933 2192.99 277.59 Q2195.24 275.067 2196.12 273.331 Q2197.02 271.571 2197.02 269.882 Q2197.02 267.127 2195.08 265.391 Q2193.15 263.655 2190.05 263.655 Q2187.85 263.655 2185.4 264.419 Q2182.97 265.183 2180.19 266.734 L2180.19 262.011 Q2183.02 260.877 2185.47 260.298 Q2187.92 259.72 2189.96 259.72 Q2195.33 259.72 2198.52 262.405 Q2201.72 265.09 2201.72 269.581 Q2201.72 271.71 2200.91 273.632 Q2200.12 275.53 2198.02 278.122 Q2197.44 278.794 2194.33 282.011 Q2191.23 285.206 2185.59 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M 0 0 M2216.42 272.358 Q2212.9 272.358 2211 274.905 Q2209.01 277.567 2209.01 281.965 Q2209.01 286.618 2210.98 289.303 Q2212.97 291.965 2216.42 291.965 Q2219.82 291.965 2221.81 289.28 Q2223.8 286.595 2223.8 281.965 Q2223.8 277.729 2221.81 274.905 Q2219.98 272.358 2216.42 272.358 M2216.42 268.979 L2230.56 268.979 L2230.56 273.238 L2225.79 273.238 Q2228.32 276.849 2228.32 281.965 Q2228.32 288.331 2225.15 291.942 Q2221.97 295.576 2216.42 295.576 Q2210.84 295.576 2207.69 291.942 Q2204.52 288.331 2204.52 281.965 Q2204.52 275.553 2207.69 271.965 Q2210.31 268.979 2216.42 268.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time loss = simulate_loss(; estfunc=est_jeffreys)",
"execution_count": 11,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 48.13141589455698, σ = 2.4346588097571544)\n 3.395510 seconds (195.02 k allocations: 10.301 MiB, 2.18% compilation time)\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 11,
"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=\"clip000\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip000)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip001\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip000)\" d=\"\nM153.259 1495.09 L2352.76 1495.09 L2352.76 110.512 L153.259 110.512 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip002\">\n <rect x=\"153\" y=\"110\" width=\"2200\" height=\"1386\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 177.327,1495.09 177.327,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 274.235,1495.09 274.235,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 371.144,1495.09 371.144,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 468.052,1495.09 468.052,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 564.96,1495.09 564.96,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 661.868,1495.09 661.868,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 758.776,1495.09 758.776,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 855.684,1495.09 855.684,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 952.592,1495.09 952.592,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1049.5,1495.09 1049.5,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1146.41,1495.09 1146.41,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1243.32,1495.09 1243.32,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1340.22,1495.09 1340.22,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1437.13,1495.09 1437.13,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1534.04,1495.09 1534.04,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1630.95,1495.09 1630.95,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1727.86,1495.09 1727.86,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1824.77,1495.09 1824.77,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1921.67,1495.09 1921.67,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2018.58,1495.09 2018.58,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2115.49,1495.09 2115.49,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2212.4,1495.09 2212.4,110.512 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2309.31,1495.09 2309.31,110.512 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 2352.76,1495.09 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 177.327,1495.09 177.327,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 274.235,1495.09 274.235,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 371.144,1495.09 371.144,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 468.052,1495.09 468.052,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 564.96,1495.09 564.96,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 661.868,1495.09 661.868,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 758.776,1495.09 758.776,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 855.684,1495.09 855.684,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 952.592,1495.09 952.592,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1049.5,1495.09 1049.5,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1146.41,1495.09 1146.41,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1243.32,1495.09 1243.32,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1340.22,1495.09 1340.22,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1437.13,1495.09 1437.13,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1534.04,1495.09 1534.04,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1630.95,1495.09 1630.95,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1727.86,1495.09 1727.86,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1824.77,1495.09 1824.77,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1921.67,1495.09 1921.67,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2018.58,1495.09 2018.58,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2115.49,1495.09 2115.49,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2212.4,1495.09 2212.4,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2309.31,1495.09 2309.31,1478.47 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"M 0 0 M170.418 1531.42 Q172.935 1531.95 174.341 1533.66 Q175.765 1535.36 175.765 1537.86 Q175.765 1541.69 173.126 1543.79 Q170.487 1545.9 165.626 1545.9 Q163.994 1545.9 162.258 1545.57 Q160.539 1545.25 158.699 1544.61 L158.699 1541.23 Q160.157 1542.08 161.893 1542.51 Q163.629 1542.94 165.522 1542.94 Q168.82 1542.94 170.539 1541.64 Q172.275 1540.34 172.275 1537.86 Q172.275 1535.57 170.661 1534.28 Q169.063 1532.98 166.199 1532.98 L163.178 1532.98 L163.178 1530.1 L166.338 1530.1 Q168.925 1530.1 170.296 1529.07 Q171.668 1528.03 171.668 1526.09 Q171.668 1524.09 170.244 1523.03 Q168.838 1521.95 166.199 1521.95 Q164.758 1521.95 163.109 1522.27 Q161.459 1522.58 159.48 1523.24 L159.48 1520.11 Q161.477 1519.56 163.213 1519.28 Q164.966 1519 166.511 1519 Q170.504 1519 172.831 1520.83 Q175.157 1522.63 175.157 1525.72 Q175.157 1527.87 173.924 1529.37 Q172.692 1530.84 170.418 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M187.067 1533.08 Q184.567 1533.08 183.126 1534.42 Q181.702 1535.76 181.702 1538.1 Q181.702 1540.44 183.126 1541.78 Q184.567 1543.12 187.067 1543.12 Q189.567 1543.12 191.008 1541.78 Q192.449 1540.43 192.449 1538.1 Q192.449 1535.76 191.008 1534.42 Q189.584 1533.08 187.067 1533.08 M183.56 1531.59 Q181.303 1531.03 180.036 1529.49 Q178.786 1527.94 178.786 1525.72 Q178.786 1522.61 180.99 1520.81 Q183.213 1519 187.067 1519 Q190.938 1519 193.143 1520.81 Q195.348 1522.61 195.348 1525.72 Q195.348 1527.94 194.081 1529.49 Q192.831 1531.03 190.591 1531.59 Q193.126 1532.18 194.532 1533.9 Q195.956 1535.62 195.956 1538.1 Q195.956 1541.87 193.647 1543.88 Q191.355 1545.9 187.067 1545.9 Q182.779 1545.9 180.47 1543.88 Q178.178 1541.87 178.178 1538.1 Q178.178 1535.62 179.602 1533.9 Q181.025 1532.18 183.56 1531.59 M182.275 1526.05 Q182.275 1528.07 183.525 1529.19 Q184.792 1530.32 187.067 1530.32 Q189.324 1530.32 190.591 1529.19 Q191.876 1528.07 191.876 1526.05 Q191.876 1524.04 190.591 1522.91 Q189.324 1521.78 187.067 1521.78 Q184.792 1521.78 183.525 1522.91 Q182.275 1524.04 182.275 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M267.36 1531.42 Q269.878 1531.95 271.284 1533.66 Q272.708 1535.36 272.708 1537.86 Q272.708 1541.69 270.069 1543.79 Q267.43 1545.9 262.569 1545.9 Q260.937 1545.9 259.201 1545.57 Q257.482 1545.25 255.642 1544.61 L255.642 1541.23 Q257.1 1542.08 258.836 1542.51 Q260.572 1542.94 262.465 1542.94 Q265.763 1542.94 267.482 1541.64 Q269.218 1540.34 269.218 1537.86 Q269.218 1535.57 267.603 1534.28 Q266.006 1532.98 263.142 1532.98 L260.121 1532.98 L260.121 1530.1 L263.281 1530.1 Q265.867 1530.1 267.239 1529.07 Q268.61 1528.03 268.61 1526.09 Q268.61 1524.09 267.187 1523.03 Q265.781 1521.95 263.142 1521.95 Q261.701 1521.95 260.051 1522.27 Q258.402 1522.58 256.423 1523.24 L256.423 1520.11 Q258.419 1519.56 260.156 1519.28 Q261.909 1519 263.454 1519 Q267.447 1519 269.774 1520.83 Q272.1 1522.63 272.1 1525.72 Q272.1 1527.87 270.867 1529.37 Q269.635 1530.84 267.36 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M276.614 1544.85 L276.614 1541.66 Q277.933 1542.28 279.287 1542.61 Q280.642 1542.94 281.944 1542.94 Q285.416 1542.94 287.239 1540.62 Q289.079 1538.27 289.339 1533.52 Q288.333 1535.01 286.787 1535.81 Q285.242 1536.61 283.367 1536.61 Q279.478 1536.61 277.204 1534.26 Q274.947 1531.9 274.947 1527.82 Q274.947 1523.83 277.308 1521.42 Q279.669 1519 283.593 1519 Q288.089 1519 290.451 1522.46 Q292.829 1525.9 292.829 1532.46 Q292.829 1538.59 289.912 1542.25 Q287.013 1545.9 282.1 1545.9 Q280.78 1545.9 279.426 1545.63 Q278.072 1545.37 276.614 1544.85 M283.593 1533.86 Q285.954 1533.86 287.326 1532.25 Q288.714 1530.64 288.714 1527.82 Q288.714 1525.03 287.326 1523.41 Q285.954 1521.78 283.593 1521.78 Q281.232 1521.78 279.843 1523.41 Q278.471 1525.03 278.471 1527.82 Q278.471 1530.64 279.843 1532.25 Q281.232 1533.86 283.593 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M363.27 1522.53 L354.416 1536.36 L363.27 1536.36 L363.27 1522.53 M362.35 1519.47 L366.76 1519.47 L366.76 1536.36 L370.458 1536.36 L370.458 1539.28 L366.76 1539.28 L366.76 1545.39 L363.27 1545.39 L363.27 1539.28 L351.569 1539.28 L351.569 1535.9 L362.35 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M381.76 1521.78 Q379.051 1521.78 377.68 1524.45 Q376.326 1527.11 376.326 1532.46 Q376.326 1537.79 377.68 1540.46 Q379.051 1543.12 381.76 1543.12 Q384.485 1543.12 385.84 1540.46 Q387.211 1537.79 387.211 1532.46 Q387.211 1527.11 385.84 1524.45 Q384.485 1521.78 381.76 1521.78 M381.76 1519 Q386.117 1519 388.409 1522.46 Q390.718 1525.9 390.718 1532.46 Q390.718 1539 388.409 1542.46 Q386.117 1545.9 381.76 1545.9 Q377.402 1545.9 375.093 1542.46 Q372.801 1539 372.801 1532.46 Q372.801 1525.9 375.093 1522.46 Q377.402 1519 381.76 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M460.638 1522.53 L451.784 1536.36 L460.638 1536.36 L460.638 1522.53 M459.718 1519.47 L464.128 1519.47 L464.128 1536.36 L467.826 1536.36 L467.826 1539.28 L464.128 1539.28 L464.128 1545.39 L460.638 1545.39 L460.638 1539.28 L448.937 1539.28 L448.937 1535.9 L459.718 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M472.236 1542.44 L477.965 1542.44 L477.965 1522.67 L471.732 1523.92 L471.732 1520.72 L477.93 1519.47 L481.437 1519.47 L481.437 1542.44 L487.166 1542.44 L487.166 1545.39 L472.236 1545.39 L472.236 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M557.686 1522.53 L548.831 1536.36 L557.686 1536.36 L557.686 1522.53 M556.765 1519.47 L561.175 1519.47 L561.175 1536.36 L564.873 1536.36 L564.873 1539.28 L561.175 1539.28 L561.175 1545.39 L557.686 1545.39 L557.686 1539.28 L545.984 1539.28 L545.984 1535.9 L556.765 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M571.696 1542.44 L583.935 1542.44 L583.935 1545.39 L567.477 1545.39 L567.477 1542.44 Q569.474 1540.37 572.911 1536.9 Q576.366 1533.41 577.251 1532.41 Q578.935 1530.51 579.595 1529.21 Q580.272 1527.89 580.272 1526.62 Q580.272 1524.56 578.814 1523.26 Q577.373 1521.95 575.047 1521.95 Q573.397 1521.95 571.557 1522.53 Q569.734 1523.1 567.651 1524.26 L567.651 1520.72 Q569.769 1519.87 571.609 1519.44 Q573.449 1519 574.977 1519 Q579.005 1519 581.401 1521.02 Q583.796 1523.03 583.796 1526.4 Q583.796 1528 583.189 1529.44 Q582.599 1530.86 581.019 1532.81 Q580.585 1533.31 578.258 1535.72 Q575.932 1538.12 571.696 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M654.238 1522.53 L645.384 1536.36 L654.238 1536.36 L654.238 1522.53 M653.318 1519.47 L657.727 1519.47 L657.727 1536.36 L661.425 1536.36 L661.425 1539.28 L657.727 1539.28 L657.727 1545.39 L654.238 1545.39 L654.238 1539.28 L642.536 1539.28 L642.536 1535.9 L653.318 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M675.852 1531.42 Q678.37 1531.95 679.776 1533.66 Q681.199 1535.36 681.199 1537.86 Q681.199 1541.69 678.561 1543.79 Q675.922 1545.9 671.061 1545.9 Q669.429 1545.9 667.693 1545.57 Q665.974 1545.25 664.134 1544.61 L664.134 1541.23 Q665.592 1542.08 667.328 1542.51 Q669.064 1542.94 670.956 1542.94 Q674.255 1542.94 675.974 1541.64 Q677.71 1540.34 677.71 1537.86 Q677.71 1535.57 676.095 1534.28 Q674.498 1532.98 671.633 1532.98 L668.613 1532.98 L668.613 1530.1 L671.772 1530.1 Q674.359 1530.1 675.731 1529.07 Q677.102 1528.03 677.102 1526.09 Q677.102 1524.09 675.679 1523.03 Q674.272 1521.95 671.633 1521.95 Q670.193 1521.95 668.543 1522.27 Q666.894 1522.58 664.915 1523.24 L664.915 1520.11 Q666.911 1519.56 668.647 1519.28 Q670.401 1519 671.946 1519 Q675.939 1519 678.265 1520.83 Q680.592 1522.63 680.592 1525.72 Q680.592 1527.87 679.359 1529.37 Q678.126 1530.84 675.852 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M750.721 1522.53 L741.866 1536.36 L750.721 1536.36 L750.721 1522.53 M749.8 1519.47 L754.21 1519.47 L754.21 1536.36 L757.908 1536.36 L757.908 1539.28 L754.21 1539.28 L754.21 1545.39 L750.721 1545.39 L750.721 1539.28 L739.019 1539.28 L739.019 1535.9 L749.8 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M771.345 1522.53 L762.491 1536.36 L771.345 1536.36 L771.345 1522.53 M770.425 1519.47 L774.835 1519.47 L774.835 1536.36 L778.533 1536.36 L778.533 1539.28 L774.835 1539.28 L774.835 1545.39 L771.345 1545.39 L771.345 1539.28 L759.644 1539.28 L759.644 1535.9 L770.425 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M848.184 1522.53 L839.33 1536.36 L848.184 1536.36 L848.184 1522.53 M847.264 1519.47 L851.674 1519.47 L851.674 1536.36 L855.372 1536.36 L855.372 1539.28 L851.674 1539.28 L851.674 1545.39 L848.184 1545.39 L848.184 1539.28 L836.483 1539.28 L836.483 1535.9 L847.264 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M859.208 1519.47 L872.976 1519.47 L872.976 1522.42 L862.42 1522.42 L862.42 1528.78 Q863.184 1528.52 863.948 1528.4 Q864.712 1528.26 865.476 1528.26 Q869.816 1528.26 872.351 1530.64 Q874.885 1533.01 874.885 1537.08 Q874.885 1541.26 872.281 1543.59 Q869.677 1545.9 864.938 1545.9 Q863.306 1545.9 861.604 1545.62 Q859.92 1545.34 858.115 1544.78 L858.115 1541.26 Q859.677 1542.11 861.344 1542.53 Q863.011 1542.94 864.868 1542.94 Q867.872 1542.94 869.625 1541.36 Q871.379 1539.78 871.379 1537.08 Q871.379 1534.37 869.625 1532.79 Q867.872 1531.21 864.868 1531.21 Q863.462 1531.21 862.056 1531.52 Q860.667 1531.83 859.208 1532.49 L859.208 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M944.658 1522.53 L935.804 1536.36 L944.658 1536.36 L944.658 1522.53 M943.738 1519.47 L948.148 1519.47 L948.148 1536.36 L951.846 1536.36 L951.846 1539.28 L948.148 1539.28 L948.148 1545.39 L944.658 1545.39 L944.658 1539.28 L932.957 1539.28 L932.957 1535.9 L943.738 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M963.582 1531.03 Q961.221 1531.03 959.832 1532.65 Q958.46 1534.26 958.46 1537.08 Q958.46 1539.87 959.832 1541.5 Q961.221 1543.12 963.582 1543.12 Q965.943 1543.12 967.314 1541.5 Q968.703 1539.87 968.703 1537.08 Q968.703 1534.26 967.314 1532.65 Q965.943 1531.03 963.582 1531.03 M970.544 1520.04 L970.544 1523.24 Q969.224 1522.61 967.87 1522.28 Q966.533 1521.95 965.214 1521.95 Q961.742 1521.95 959.901 1524.3 Q958.078 1526.64 957.818 1531.38 Q958.842 1529.87 960.387 1529.07 Q961.933 1528.26 963.79 1528.26 Q967.696 1528.26 969.953 1530.64 Q972.228 1533 972.228 1537.08 Q972.228 1541.07 969.867 1543.48 Q967.505 1545.9 963.582 1545.9 Q959.085 1545.9 956.707 1542.46 Q954.328 1539 954.328 1532.46 Q954.328 1526.31 957.245 1522.67 Q960.162 1519 965.075 1519 Q966.394 1519 967.731 1519.26 Q969.085 1519.52 970.544 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1041.97 1522.53 L1033.11 1536.36 L1041.97 1536.36 L1041.97 1522.53 M1041.05 1519.47 L1045.46 1519.47 L1045.46 1536.36 L1049.15 1536.36 L1049.15 1539.28 L1045.46 1539.28 L1045.46 1545.39 L1041.97 1545.39 L1041.97 1539.28 L1030.26 1539.28 L1030.26 1535.9 L1041.05 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1052.07 1519.47 L1068.74 1519.47 L1068.74 1520.96 L1059.33 1545.39 L1055.66 1545.39 L1064.52 1522.42 L1052.07 1522.42 L1052.07 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1138.57 1522.53 L1129.72 1536.36 L1138.57 1536.36 L1138.57 1522.53 M1137.65 1519.47 L1142.06 1519.47 L1142.06 1536.36 L1145.76 1536.36 L1145.76 1539.28 L1142.06 1539.28 L1142.06 1545.39 L1138.57 1545.39 L1138.57 1539.28 L1126.87 1539.28 L1126.87 1535.9 L1137.65 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1157.06 1533.08 Q1154.56 1533.08 1153.12 1534.42 Q1151.7 1535.76 1151.7 1538.1 Q1151.7 1540.44 1153.12 1541.78 Q1154.56 1543.12 1157.06 1543.12 Q1159.56 1543.12 1161 1541.78 Q1162.44 1540.43 1162.44 1538.1 Q1162.44 1535.76 1161 1534.42 Q1159.58 1533.08 1157.06 1533.08 M1153.55 1531.59 Q1151.3 1531.03 1150.03 1529.49 Q1148.78 1527.94 1148.78 1525.72 Q1148.78 1522.61 1150.98 1520.81 Q1153.21 1519 1157.06 1519 Q1160.93 1519 1163.14 1520.81 Q1165.34 1522.61 1165.34 1525.72 Q1165.34 1527.94 1164.07 1529.49 Q1162.82 1531.03 1160.58 1531.59 Q1163.12 1532.18 1164.52 1533.9 Q1165.95 1535.62 1165.95 1538.1 Q1165.95 1541.87 1163.64 1543.88 Q1161.35 1545.9 1157.06 1545.9 Q1152.77 1545.9 1150.46 1543.88 Q1148.17 1541.87 1148.17 1538.1 Q1148.17 1535.62 1149.59 1533.9 Q1151.02 1532.18 1153.55 1531.59 M1152.27 1526.05 Q1152.27 1528.07 1153.52 1529.19 Q1154.79 1530.32 1157.06 1530.32 Q1159.32 1530.32 1160.58 1529.19 Q1161.87 1528.07 1161.87 1526.05 Q1161.87 1524.04 1160.58 1522.91 Q1159.32 1521.78 1157.06 1521.78 Q1154.79 1521.78 1153.52 1522.91 Q1152.27 1524.04 1152.27 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1235.51 1522.53 L1226.66 1536.36 L1235.51 1536.36 L1235.51 1522.53 M1234.59 1519.47 L1239 1519.47 L1239 1536.36 L1242.7 1536.36 L1242.7 1539.28 L1239 1539.28 L1239 1545.39 L1235.51 1545.39 L1235.51 1539.28 L1223.81 1539.28 L1223.81 1535.9 L1234.59 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1246.61 1544.85 L1246.61 1541.66 Q1247.93 1542.28 1249.28 1542.61 Q1250.63 1542.94 1251.94 1542.94 Q1255.41 1542.94 1257.23 1540.62 Q1259.07 1538.27 1259.33 1533.52 Q1258.33 1535.01 1256.78 1535.81 Q1255.24 1536.61 1253.36 1536.61 Q1249.47 1536.61 1247.2 1534.26 Q1244.94 1531.9 1244.94 1527.82 Q1244.94 1523.83 1247.3 1521.42 Q1249.66 1519 1253.59 1519 Q1258.08 1519 1260.44 1522.46 Q1262.82 1525.9 1262.82 1532.46 Q1262.82 1538.59 1259.91 1542.25 Q1257.01 1545.9 1252.09 1545.9 Q1250.77 1545.9 1249.42 1545.63 Q1248.06 1545.37 1246.61 1544.85 M1253.59 1533.86 Q1255.95 1533.86 1257.32 1532.25 Q1258.71 1530.64 1258.71 1527.82 Q1258.71 1525.03 1257.32 1523.41 Q1255.95 1521.78 1253.59 1521.78 Q1251.22 1521.78 1249.84 1523.41 Q1248.46 1525.03 1248.46 1527.82 Q1248.46 1530.64 1249.84 1532.25 Q1251.22 1533.86 1253.59 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1322.8 1519.47 L1336.57 1519.47 L1336.57 1522.42 L1326.01 1522.42 L1326.01 1528.78 Q1326.78 1528.52 1327.54 1528.4 Q1328.31 1528.26 1329.07 1528.26 Q1333.41 1528.26 1335.95 1530.64 Q1338.48 1533.01 1338.48 1537.08 Q1338.48 1541.26 1335.88 1543.59 Q1333.27 1545.9 1328.53 1545.9 Q1326.9 1545.9 1325.2 1545.62 Q1323.51 1545.34 1321.71 1544.78 L1321.71 1541.26 Q1323.27 1542.11 1324.94 1542.53 Q1326.61 1542.94 1328.46 1542.94 Q1331.47 1542.94 1333.22 1541.36 Q1334.97 1539.78 1334.97 1537.08 Q1334.97 1534.37 1333.22 1532.79 Q1331.47 1531.21 1328.46 1531.21 Q1327.06 1531.21 1325.65 1531.52 Q1324.26 1531.83 1322.8 1532.49 L1322.8 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1349.78 1521.78 Q1347.07 1521.78 1345.7 1524.45 Q1344.35 1527.11 1344.35 1532.46 Q1344.35 1537.79 1345.7 1540.46 Q1347.07 1543.12 1349.78 1543.12 Q1352.51 1543.12 1353.86 1540.46 Q1355.23 1537.79 1355.23 1532.46 Q1355.23 1527.11 1353.86 1524.45 Q1352.51 1521.78 1349.78 1521.78 M1349.78 1519 Q1354.14 1519 1356.43 1522.46 Q1358.74 1525.9 1358.74 1532.46 Q1358.74 1539 1356.43 1542.46 Q1354.14 1545.9 1349.78 1545.9 Q1345.42 1545.9 1343.12 1542.46 Q1340.82 1539 1340.82 1532.46 Q1340.82 1525.9 1343.12 1522.46 Q1345.42 1519 1349.78 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1420.17 1519.47 L1433.94 1519.47 L1433.94 1522.42 L1423.38 1522.42 L1423.38 1528.78 Q1424.15 1528.52 1424.91 1528.4 Q1425.67 1528.26 1426.44 1528.26 Q1430.78 1528.26 1433.31 1530.64 Q1435.85 1533.01 1435.85 1537.08 Q1435.85 1541.26 1433.24 1543.59 Q1430.64 1545.9 1425.9 1545.9 Q1424.27 1545.9 1422.57 1545.62 Q1420.88 1545.34 1419.08 1544.78 L1419.08 1541.26 Q1420.64 1542.11 1422.31 1542.53 Q1423.97 1542.94 1425.83 1542.94 Q1428.83 1542.94 1430.59 1541.36 Q1432.34 1539.78 1432.34 1537.08 Q1432.34 1534.37 1430.59 1532.79 Q1428.83 1531.21 1425.83 1531.21 Q1424.42 1531.21 1423.02 1531.52 Q1421.63 1531.83 1420.17 1532.49 L1420.17 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1440.26 1542.44 L1445.99 1542.44 L1445.99 1522.67 L1439.75 1523.92 L1439.75 1520.72 L1445.95 1519.47 L1449.46 1519.47 L1449.46 1542.44 L1455.19 1542.44 L1455.19 1545.39 L1440.26 1545.39 L1440.26 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1517.22 1519.47 L1530.99 1519.47 L1530.99 1522.42 L1520.43 1522.42 L1520.43 1528.78 Q1521.19 1528.52 1521.96 1528.4 Q1522.72 1528.26 1523.49 1528.26 Q1527.83 1528.26 1530.36 1530.64 Q1532.9 1533.01 1532.9 1537.08 Q1532.9 1541.26 1530.29 1543.59 Q1527.69 1545.9 1522.95 1545.9 Q1521.32 1545.9 1519.61 1545.62 Q1517.93 1545.34 1516.12 1544.78 L1516.12 1541.26 Q1517.69 1542.11 1519.35 1542.53 Q1521.02 1542.94 1522.88 1542.94 Q1525.88 1542.94 1527.63 1541.36 Q1529.39 1539.78 1529.39 1537.08 Q1529.39 1534.37 1527.63 1532.79 Q1525.88 1531.21 1522.88 1531.21 Q1521.47 1531.21 1520.07 1531.52 Q1518.68 1531.83 1517.22 1532.49 L1517.22 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1539.72 1542.44 L1551.96 1542.44 L1551.96 1545.39 L1535.5 1545.39 L1535.5 1542.44 Q1537.5 1540.37 1540.93 1536.9 Q1544.39 1533.41 1545.27 1532.41 Q1546.96 1530.51 1547.62 1529.21 Q1548.29 1527.89 1548.29 1526.62 Q1548.29 1524.56 1546.84 1523.26 Q1545.4 1521.95 1543.07 1521.95 Q1541.42 1521.95 1539.58 1522.53 Q1537.76 1523.1 1535.67 1524.26 L1535.67 1520.72 Q1537.79 1519.87 1539.63 1519.44 Q1541.47 1519 1543 1519 Q1547.03 1519 1549.42 1521.02 Q1551.82 1523.03 1551.82 1526.4 Q1551.82 1528 1551.21 1529.44 Q1550.62 1530.86 1549.04 1532.81 Q1548.61 1533.31 1546.28 1535.72 Q1543.95 1538.12 1539.72 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1613.77 1519.47 L1627.54 1519.47 L1627.54 1522.42 L1616.98 1522.42 L1616.98 1528.78 Q1617.75 1528.52 1618.51 1528.4 Q1619.27 1528.26 1620.04 1528.26 Q1624.38 1528.26 1626.91 1530.64 Q1629.45 1533.01 1629.45 1537.08 Q1629.45 1541.26 1626.84 1543.59 Q1624.24 1545.9 1619.5 1545.9 Q1617.87 1545.9 1616.17 1545.62 Q1614.48 1545.34 1612.68 1544.78 L1612.68 1541.26 Q1614.24 1542.11 1615.91 1542.53 Q1617.57 1542.94 1619.43 1542.94 Q1622.43 1542.94 1624.19 1541.36 Q1625.94 1539.78 1625.94 1537.08 Q1625.94 1534.37 1624.19 1532.79 Q1622.43 1531.21 1619.43 1531.21 Q1618.02 1531.21 1616.62 1531.52 Q1615.23 1531.83 1613.77 1532.49 L1613.77 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1643.87 1531.42 Q1646.39 1531.95 1647.8 1533.66 Q1649.22 1535.36 1649.22 1537.86 Q1649.22 1541.69 1646.58 1543.79 Q1643.94 1545.9 1639.08 1545.9 Q1637.45 1545.9 1635.71 1545.57 Q1634 1545.25 1632.16 1544.61 L1632.16 1541.23 Q1633.61 1542.08 1635.35 1542.51 Q1637.09 1542.94 1638.98 1542.94 Q1642.28 1542.94 1644 1541.64 Q1645.73 1540.34 1645.73 1537.86 Q1645.73 1535.57 1644.12 1534.28 Q1642.52 1532.98 1639.66 1532.98 L1636.63 1532.98 L1636.63 1530.1 L1639.79 1530.1 Q1642.38 1530.1 1643.75 1529.07 Q1645.12 1528.03 1645.12 1526.09 Q1645.12 1524.09 1643.7 1523.03 Q1642.29 1521.95 1639.66 1521.95 Q1638.21 1521.95 1636.57 1522.27 Q1634.92 1522.58 1632.94 1523.24 L1632.94 1520.11 Q1634.93 1519.56 1636.67 1519.28 Q1638.42 1519 1639.97 1519 Q1643.96 1519 1646.29 1520.83 Q1648.61 1522.63 1648.61 1525.72 Q1648.61 1527.87 1647.38 1529.37 Q1646.15 1530.84 1643.87 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1710.25 1519.47 L1724.02 1519.47 L1724.02 1522.42 L1713.47 1522.42 L1713.47 1528.78 Q1714.23 1528.52 1714.99 1528.4 Q1715.76 1528.26 1716.52 1528.26 Q1720.86 1528.26 1723.4 1530.64 Q1725.93 1533.01 1725.93 1537.08 Q1725.93 1541.26 1723.33 1543.59 Q1720.72 1545.9 1715.98 1545.9 Q1714.35 1545.9 1712.65 1545.62 Q1710.97 1545.34 1709.16 1544.78 L1709.16 1541.26 Q1710.72 1542.11 1712.39 1542.53 Q1714.06 1542.94 1715.91 1542.94 Q1718.92 1542.94 1720.67 1541.36 Q1722.42 1539.78 1722.42 1537.08 Q1722.42 1534.37 1720.67 1532.79 Q1718.92 1531.21 1715.91 1531.21 Q1714.51 1531.21 1713.1 1531.52 Q1711.71 1531.83 1710.25 1532.49 L1710.25 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1739.37 1522.53 L1730.51 1536.36 L1739.37 1536.36 L1739.37 1522.53 M1738.45 1519.47 L1742.86 1519.47 L1742.86 1536.36 L1746.56 1536.36 L1746.56 1539.28 L1742.86 1539.28 L1742.86 1545.39 L1739.37 1545.39 L1739.37 1539.28 L1727.67 1539.28 L1727.67 1535.9 L1738.45 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1807.72 1519.47 L1821.48 1519.47 L1821.48 1522.42 L1810.93 1522.42 L1810.93 1528.78 Q1811.69 1528.52 1812.46 1528.4 Q1813.22 1528.26 1813.98 1528.26 Q1818.32 1528.26 1820.86 1530.64 Q1823.39 1533.01 1823.39 1537.08 Q1823.39 1541.26 1820.79 1543.59 Q1818.19 1545.9 1813.45 1545.9 Q1811.81 1545.9 1810.11 1545.62 Q1808.43 1545.34 1806.62 1544.78 L1806.62 1541.26 Q1808.19 1542.11 1809.85 1542.53 Q1811.52 1542.94 1813.38 1542.94 Q1816.38 1542.94 1818.13 1541.36 Q1819.89 1539.78 1819.89 1537.08 Q1819.89 1534.37 1818.13 1532.79 Q1816.38 1531.21 1813.38 1531.21 Q1811.97 1531.21 1810.56 1531.52 Q1809.18 1531.83 1807.72 1532.49 L1807.72 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1827.23 1519.47 L1841 1519.47 L1841 1522.42 L1830.44 1522.42 L1830.44 1528.78 Q1831.21 1528.52 1831.97 1528.4 Q1832.73 1528.26 1833.5 1528.26 Q1837.84 1528.26 1840.37 1530.64 Q1842.91 1533.01 1842.91 1537.08 Q1842.91 1541.26 1840.3 1543.59 Q1837.7 1545.9 1832.96 1545.9 Q1831.33 1545.9 1829.63 1545.62 Q1827.94 1545.34 1826.14 1544.78 L1826.14 1541.26 Q1827.7 1542.11 1829.37 1542.53 Q1831.03 1542.94 1832.89 1542.94 Q1835.89 1542.94 1837.65 1541.36 Q1839.4 1539.78 1839.4 1537.08 Q1839.4 1534.37 1837.65 1532.79 Q1835.89 1531.21 1832.89 1531.21 Q1831.48 1531.21 1830.08 1531.52 Q1828.69 1531.83 1827.23 1532.49 L1827.23 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1904.19 1519.47 L1917.96 1519.47 L1917.96 1522.42 L1907.4 1522.42 L1907.4 1528.78 Q1908.17 1528.52 1908.93 1528.4 Q1909.69 1528.26 1910.46 1528.26 Q1914.8 1528.26 1917.33 1530.64 Q1919.87 1533.01 1919.87 1537.08 Q1919.87 1541.26 1917.26 1543.59 Q1914.66 1545.9 1909.92 1545.9 Q1908.29 1545.9 1906.59 1545.62 Q1904.9 1545.34 1903.1 1544.78 L1903.1 1541.26 Q1904.66 1542.11 1906.33 1542.53 Q1907.99 1542.94 1909.85 1542.94 Q1912.85 1542.94 1914.61 1541.36 Q1916.36 1539.78 1916.36 1537.08 Q1916.36 1534.37 1914.61 1532.79 Q1912.85 1531.21 1909.85 1531.21 Q1908.44 1531.21 1907.04 1531.52 Q1905.65 1531.83 1904.19 1532.49 L1904.19 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1931.6 1531.03 Q1929.24 1531.03 1927.85 1532.65 Q1926.48 1534.26 1926.48 1537.08 Q1926.48 1539.87 1927.85 1541.5 Q1929.24 1543.12 1931.6 1543.12 Q1933.97 1543.12 1935.34 1541.5 Q1936.73 1539.87 1936.73 1537.08 Q1936.73 1534.26 1935.34 1532.65 Q1933.97 1531.03 1931.6 1531.03 M1938.57 1520.04 L1938.57 1523.24 Q1937.25 1522.61 1935.89 1522.28 Q1934.56 1521.95 1933.24 1521.95 Q1929.76 1521.95 1927.92 1524.3 Q1926.1 1526.64 1925.84 1531.38 Q1926.86 1529.87 1928.41 1529.07 Q1929.95 1528.26 1931.81 1528.26 Q1935.72 1528.26 1937.98 1530.64 Q1940.25 1533 1940.25 1537.08 Q1940.25 1541.07 1937.89 1543.48 Q1935.53 1545.9 1931.6 1545.9 Q1927.11 1545.9 1924.73 1542.46 Q1922.35 1539 1922.35 1532.46 Q1922.35 1526.31 1925.27 1522.67 Q1928.18 1519 1933.1 1519 Q1934.42 1519 1935.75 1519.26 Q1937.11 1519.52 1938.57 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2001.5 1519.47 L2015.27 1519.47 L2015.27 1522.42 L2004.71 1522.42 L2004.71 1528.78 Q2005.47 1528.52 2006.24 1528.4 Q2007 1528.26 2007.77 1528.26 Q2012.11 1528.26 2014.64 1530.64 Q2017.18 1533.01 2017.18 1537.08 Q2017.18 1541.26 2014.57 1543.59 Q2011.97 1545.9 2007.23 1545.9 Q2005.6 1545.9 2003.89 1545.62 Q2002.21 1545.34 2000.4 1544.78 L2000.4 1541.26 Q2001.97 1542.11 2003.63 1542.53 Q2005.3 1542.94 2007.16 1542.94 Q2010.16 1542.94 2011.92 1541.36 Q2013.67 1539.78 2013.67 1537.08 Q2013.67 1534.37 2011.92 1532.79 Q2010.16 1531.21 2007.16 1531.21 Q2005.75 1531.21 2004.35 1531.52 Q2002.96 1531.83 2001.5 1532.49 L2001.5 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2020.09 1519.47 L2036.76 1519.47 L2036.76 1520.96 L2027.35 1545.39 L2023.69 1545.39 L2032.54 1522.42 L2020.09 1522.42 L2020.09 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2098.1 1519.47 L2111.87 1519.47 L2111.87 1522.42 L2101.31 1522.42 L2101.31 1528.78 Q2102.08 1528.52 2102.84 1528.4 Q2103.61 1528.26 2104.37 1528.26 Q2108.71 1528.26 2111.25 1530.64 Q2113.78 1533.01 2113.78 1537.08 Q2113.78 1541.26 2111.18 1543.59 Q2108.57 1545.9 2103.83 1545.9 Q2102.2 1545.9 2100.5 1545.62 Q2098.81 1545.34 2097.01 1544.78 L2097.01 1541.26 Q2098.57 1542.11 2100.24 1542.53 Q2101.9 1542.94 2103.76 1542.94 Q2106.77 1542.94 2108.52 1541.36 Q2110.27 1539.78 2110.27 1537.08 Q2110.27 1534.37 2108.52 1532.79 Q2106.77 1531.21 2103.76 1531.21 Q2102.36 1531.21 2100.95 1531.52 Q2099.56 1531.83 2098.1 1532.49 L2098.1 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2125.08 1533.08 Q2122.58 1533.08 2121.14 1534.42 Q2119.72 1535.76 2119.72 1538.1 Q2119.72 1540.44 2121.14 1541.78 Q2122.58 1543.12 2125.08 1543.12 Q2127.58 1543.12 2129.02 1541.78 Q2130.46 1540.43 2130.46 1538.1 Q2130.46 1535.76 2129.02 1534.42 Q2127.6 1533.08 2125.08 1533.08 M2121.57 1531.59 Q2119.32 1531.03 2118.05 1529.49 Q2116.8 1527.94 2116.8 1525.72 Q2116.8 1522.61 2119.01 1520.81 Q2121.23 1519 2125.08 1519 Q2128.95 1519 2131.16 1520.81 Q2133.36 1522.61 2133.36 1525.72 Q2133.36 1527.94 2132.1 1529.49 Q2130.85 1531.03 2128.61 1531.59 Q2131.14 1532.18 2132.55 1533.9 Q2133.97 1535.62 2133.97 1538.1 Q2133.97 1541.87 2131.66 1543.88 Q2129.37 1545.9 2125.08 1545.9 Q2120.79 1545.9 2118.48 1543.88 Q2116.19 1541.87 2116.19 1538.1 Q2116.19 1535.62 2117.62 1533.9 Q2119.04 1532.18 2121.57 1531.59 M2120.29 1526.05 Q2120.29 1528.07 2121.54 1529.19 Q2122.81 1530.32 2125.08 1530.32 Q2127.34 1530.32 2128.61 1529.19 Q2129.89 1528.07 2129.89 1526.05 Q2129.89 1524.04 2128.61 1522.91 Q2127.34 1521.78 2125.08 1521.78 Q2122.81 1521.78 2121.54 1522.91 Q2120.29 1524.04 2120.29 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2195.05 1519.47 L2208.81 1519.47 L2208.81 1522.42 L2198.26 1522.42 L2198.26 1528.78 Q2199.02 1528.52 2199.79 1528.4 Q2200.55 1528.26 2201.31 1528.26 Q2205.65 1528.26 2208.19 1530.64 Q2210.72 1533.01 2210.72 1537.08 Q2210.72 1541.26 2208.12 1543.59 Q2205.51 1545.9 2200.77 1545.9 Q2199.14 1545.9 2197.44 1545.62 Q2195.76 1545.34 2193.95 1544.78 L2193.95 1541.26 Q2195.51 1542.11 2197.18 1542.53 Q2198.85 1542.94 2200.71 1542.94 Q2203.71 1542.94 2205.46 1541.36 Q2207.22 1539.78 2207.22 1537.08 Q2207.22 1534.37 2205.46 1532.79 Q2203.71 1531.21 2200.71 1531.21 Q2199.3 1531.21 2197.89 1531.52 Q2196.5 1531.83 2195.05 1532.49 L2195.05 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2214.63 1544.85 L2214.63 1541.66 Q2215.95 1542.28 2217.3 1542.61 Q2218.66 1542.94 2219.96 1542.94 Q2223.43 1542.94 2225.25 1540.62 Q2227.09 1538.27 2227.35 1533.52 Q2226.35 1535.01 2224.8 1535.81 Q2223.26 1536.61 2221.38 1536.61 Q2217.49 1536.61 2215.22 1534.26 Q2212.96 1531.9 2212.96 1527.82 Q2212.96 1523.83 2215.32 1521.42 Q2217.68 1519 2221.61 1519 Q2226.1 1519 2228.47 1522.46 Q2230.84 1525.9 2230.84 1532.46 Q2230.84 1538.59 2227.93 1542.25 Q2225.03 1545.9 2220.12 1545.9 Q2218.8 1545.9 2217.44 1545.63 Q2216.09 1545.37 2214.63 1544.85 M2221.61 1533.86 Q2223.97 1533.86 2225.34 1532.25 Q2226.73 1530.64 2226.73 1527.82 Q2226.73 1525.03 2225.34 1523.41 Q2223.97 1521.78 2221.61 1521.78 Q2219.25 1521.78 2217.86 1523.41 Q2216.49 1525.03 2216.49 1527.82 Q2216.49 1530.64 2217.86 1532.25 Q2219.25 1533.86 2221.61 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2299.48 1531.03 Q2297.12 1531.03 2295.73 1532.65 Q2294.36 1534.26 2294.36 1537.08 Q2294.36 1539.87 2295.73 1541.5 Q2297.12 1543.12 2299.48 1543.12 Q2301.84 1543.12 2303.21 1541.5 Q2304.6 1539.87 2304.6 1537.08 Q2304.6 1534.26 2303.21 1532.65 Q2301.84 1531.03 2299.48 1531.03 M2306.44 1520.04 L2306.44 1523.24 Q2305.12 1522.61 2303.77 1522.28 Q2302.43 1521.95 2301.11 1521.95 Q2297.64 1521.95 2295.8 1524.3 Q2293.98 1526.64 2293.72 1531.38 Q2294.74 1529.87 2296.29 1529.07 Q2297.83 1528.26 2299.69 1528.26 Q2303.59 1528.26 2305.85 1530.64 Q2308.13 1533 2308.13 1537.08 Q2308.13 1541.07 2305.76 1543.48 Q2303.4 1545.9 2299.48 1545.9 Q2294.98 1545.9 2292.6 1542.46 Q2290.23 1539 2290.23 1532.46 Q2290.23 1526.31 2293.14 1522.67 Q2296.06 1519 2300.97 1519 Q2302.29 1519 2303.63 1519.26 Q2304.98 1519.52 2306.44 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2319.43 1521.78 Q2316.72 1521.78 2315.35 1524.45 Q2313.99 1527.11 2313.99 1532.46 Q2313.99 1537.79 2315.35 1540.46 Q2316.72 1543.12 2319.43 1543.12 Q2322.15 1543.12 2323.51 1540.46 Q2324.88 1537.79 2324.88 1532.46 Q2324.88 1527.11 2323.51 1524.45 Q2322.15 1521.78 2319.43 1521.78 M2319.43 1519 Q2323.79 1519 2326.08 1522.46 Q2328.39 1525.9 2328.39 1532.46 Q2328.39 1539 2326.08 1542.46 Q2323.79 1545.9 2319.43 1545.9 Q2315.07 1545.9 2312.76 1542.46 Q2310.47 1539 2310.47 1532.46 Q2310.47 1525.9 2312.76 1522.46 Q2315.07 1519 2319.43 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1455.9 2352.76,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1377.59 2352.76,1377.59 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1299.28 2352.76,1299.28 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1220.97 2352.76,1220.97 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1142.66 2352.76,1142.66 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1064.35 2352.76,1064.35 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,986.044 2352.76,986.044 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,907.735 2352.76,907.735 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,829.425 2352.76,829.425 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,751.116 2352.76,751.116 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,672.806 2352.76,672.806 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,594.497 2352.76,594.497 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,516.187 2352.76,516.187 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,437.877 2352.76,437.877 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,359.568 2352.76,359.568 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,281.258 2352.76,281.258 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,202.949 2352.76,202.949 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,124.639 2352.76,124.639 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 153.259,110.512 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1455.9 179.653,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1377.59 179.653,1377.59 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1299.28 179.653,1299.28 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1220.97 179.653,1220.97 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1142.66 179.653,1142.66 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1064.35 179.653,1064.35 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,986.044 179.653,986.044 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,907.735 179.653,907.735 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,829.425 179.653,829.425 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,751.116 179.653,751.116 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,672.806 179.653,672.806 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,594.497 179.653,594.497 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,516.187 179.653,516.187 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,437.877 179.653,437.877 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,359.568 179.653,359.568 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,281.258 179.653,281.258 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,202.949 179.653,202.949 \n \"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,124.639 179.653,124.639 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.315 1445.25 Q57.6067 1445.25 56.2352 1447.92 Q54.881 1450.58 54.881 1455.93 Q54.881 1461.26 56.2352 1463.93 Q57.6067 1466.59 60.315 1466.59 Q63.0407 1466.59 64.3948 1463.93 Q65.7664 1461.26 65.7664 1455.93 Q65.7664 1450.58 64.3948 1447.92 Q63.0407 1445.25 60.315 1445.25 M60.315 1442.47 Q64.6726 1442.47 66.9643 1445.93 Q69.2733 1449.37 69.2733 1455.93 Q69.2733 1462.47 66.9643 1465.93 Q64.6726 1469.37 60.315 1469.37 Q55.9574 1469.37 53.6484 1465.93 Q51.3567 1462.47 51.3567 1455.93 Q51.3567 1449.37 53.6484 1445.93 Q55.9574 1442.47 60.315 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.0753 1464.45 L76.7385 1464.45 L76.7385 1468.86 L73.0753 1468.86 L73.0753 1464.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.0405 1445.25 Q85.3322 1445.25 83.9607 1447.92 Q82.6065 1450.58 82.6065 1455.93 Q82.6065 1461.26 83.9607 1463.93 Q85.3322 1466.59 88.0405 1466.59 Q90.7662 1466.59 92.1204 1463.93 Q93.4919 1461.26 93.4919 1455.93 Q93.4919 1450.58 92.1204 1447.92 Q90.7662 1445.25 88.0405 1445.25 M88.0405 1442.47 Q92.3982 1442.47 94.6898 1445.93 Q96.9988 1449.37 96.9988 1455.93 Q96.9988 1462.47 94.6898 1465.93 Q92.3982 1469.37 88.0405 1469.37 Q83.6829 1469.37 81.3739 1465.93 Q79.0823 1462.47 79.0823 1455.93 Q79.0823 1449.37 81.3739 1445.93 Q83.6829 1442.47 88.0405 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M108.301 1445.25 Q105.593 1445.25 104.221 1447.92 Q102.867 1450.58 102.867 1455.93 Q102.867 1461.26 104.221 1463.93 Q105.593 1466.59 108.301 1466.59 Q111.027 1466.59 112.381 1463.93 Q113.752 1461.26 113.752 1455.93 Q113.752 1450.58 112.381 1447.92 Q111.027 1445.25 108.301 1445.25 M108.301 1442.47 Q112.658 1442.47 114.95 1445.93 Q117.259 1449.37 117.259 1455.93 Q117.259 1462.47 114.95 1465.93 Q112.658 1469.37 108.301 1469.37 Q103.943 1469.37 101.634 1465.93 Q99.3426 1462.47 99.3426 1455.93 Q99.3426 1449.37 101.634 1445.93 Q103.943 1442.47 108.301 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.2351 1366.94 Q58.5268 1366.94 57.1553 1369.61 Q55.8011 1372.27 55.8011 1377.62 Q55.8011 1382.95 57.1553 1385.62 Q58.5268 1388.28 61.2351 1388.28 Q63.9608 1388.28 65.315 1385.62 Q66.6865 1382.95 66.6865 1377.62 Q66.6865 1372.27 65.315 1369.61 Q63.9608 1366.94 61.2351 1366.94 M61.2351 1364.16 Q65.5927 1364.16 67.8844 1367.62 Q70.1934 1371.06 70.1934 1377.62 Q70.1934 1384.16 67.8844 1387.62 Q65.5927 1391.06 61.2351 1391.06 Q56.8775 1391.06 54.5685 1387.62 Q52.2768 1384.16 52.2768 1377.62 Q52.2768 1371.06 54.5685 1367.62 Q56.8775 1364.16 61.2351 1364.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.9955 1386.14 L77.6586 1386.14 L77.6586 1390.55 L73.9955 1390.55 L73.9955 1386.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.9607 1366.94 Q86.2524 1366.94 84.8808 1369.61 Q83.5267 1372.27 83.5267 1377.62 Q83.5267 1382.95 84.8808 1385.62 Q86.2524 1388.28 88.9607 1388.28 Q91.6864 1388.28 93.0405 1385.62 Q94.412 1382.95 94.412 1377.62 Q94.412 1372.27 93.0405 1369.61 Q91.6864 1366.94 88.9607 1366.94 M88.9607 1364.16 Q93.3183 1364.16 95.6099 1367.62 Q97.919 1371.06 97.919 1377.62 Q97.919 1384.16 95.6099 1387.62 Q93.3183 1391.06 88.9607 1391.06 Q84.6031 1391.06 82.294 1387.62 Q80.0024 1384.16 80.0024 1377.62 Q80.0024 1371.06 82.294 1367.62 Q84.6031 1364.16 88.9607 1364.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M102.329 1387.6 L108.058 1387.6 L108.058 1367.83 L101.825 1369.08 L101.825 1365.88 L108.023 1364.63 L111.53 1364.63 L111.53 1387.6 L117.259 1387.6 L117.259 1390.55 L102.329 1390.55 L102.329 1387.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.5129 1288.63 Q58.8046 1288.63 57.4331 1291.31 Q56.0789 1293.96 56.0789 1299.31 Q56.0789 1304.64 57.4331 1307.31 Q58.8046 1309.97 61.5129 1309.97 Q64.2386 1309.97 65.5927 1307.31 Q66.9643 1304.64 66.9643 1299.31 Q66.9643 1293.96 65.5927 1291.31 Q64.2386 1288.63 61.5129 1288.63 M61.5129 1285.85 Q65.8705 1285.85 68.1622 1289.31 Q70.4712 1292.75 70.4712 1299.31 Q70.4712 1305.85 68.1622 1309.31 Q65.8705 1312.75 61.5129 1312.75 Q57.1553 1312.75 54.8463 1309.31 Q52.5546 1305.85 52.5546 1299.31 Q52.5546 1292.75 54.8463 1289.31 Q57.1553 1285.85 61.5129 1285.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M74.2733 1307.83 L77.9364 1307.83 L77.9364 1312.24 L74.2733 1312.24 L74.2733 1307.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M89.2384 1288.63 Q86.5301 1288.63 85.1586 1291.31 Q83.8045 1293.96 83.8045 1299.31 Q83.8045 1304.64 85.1586 1307.31 Q86.5301 1309.97 89.2384 1309.97 Q91.9641 1309.97 93.3183 1307.31 Q94.6898 1304.64 94.6898 1299.31 Q94.6898 1293.96 93.3183 1291.31 Q91.9641 1288.63 89.2384 1288.63 M89.2384 1285.85 Q93.5961 1285.85 95.8877 1289.31 Q98.1967 1292.75 98.1967 1299.31 Q98.1967 1305.85 95.8877 1309.31 Q93.5961 1312.75 89.2384 1312.75 Q84.8808 1312.75 82.5718 1309.31 Q80.2802 1305.85 80.2802 1299.31 Q80.2802 1292.75 82.5718 1289.31 Q84.8808 1285.85 89.2384 1285.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M105.02 1309.29 L117.259 1309.29 L117.259 1312.24 L100.801 1312.24 L100.801 1309.29 Q102.797 1307.23 106.235 1303.75 Q109.69 1300.26 110.575 1299.26 Q112.259 1297.36 112.919 1296.06 Q113.596 1294.74 113.596 1293.48 Q113.596 1291.41 112.138 1290.11 Q110.697 1288.81 108.37 1288.81 Q106.721 1288.81 104.881 1289.38 Q103.058 1289.95 100.974 1291.11 L100.974 1287.57 Q103.093 1286.72 104.933 1286.29 Q106.773 1285.85 108.301 1285.85 Q112.329 1285.85 114.724 1287.87 Q117.12 1289.88 117.12 1293.25 Q117.12 1294.85 116.513 1296.29 Q115.922 1297.71 114.342 1299.66 Q113.908 1300.16 111.582 1302.57 Q109.256 1304.97 105.02 1309.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.8011 1210.32 Q58.0928 1210.32 56.7213 1213 Q55.3671 1215.65 55.3671 1221 Q55.3671 1226.33 56.7213 1229 Q58.0928 1231.66 60.8011 1231.66 Q63.5268 1231.66 64.8809 1229 Q66.2525 1226.33 66.2525 1221 Q66.2525 1215.65 64.8809 1213 Q63.5268 1210.32 60.8011 1210.32 M60.8011 1207.54 Q65.1587 1207.54 67.4504 1211 Q69.7594 1214.44 69.7594 1221 Q69.7594 1227.54 67.4504 1231 Q65.1587 1234.44 60.8011 1234.44 Q56.4435 1234.44 54.1345 1231 Q51.8428 1227.54 51.8428 1221 Q51.8428 1214.44 54.1345 1211 Q56.4435 1207.54 60.8011 1207.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.5614 1229.52 L77.2246 1229.52 L77.2246 1233.93 L73.5614 1233.93 L73.5614 1229.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.5266 1210.32 Q85.8183 1210.32 84.4468 1213 Q83.0926 1215.65 83.0926 1221 Q83.0926 1226.33 84.4468 1229 Q85.8183 1231.66 88.5266 1231.66 Q91.2523 1231.66 92.6065 1229 Q93.978 1226.33 93.978 1221 Q93.978 1215.65 92.6065 1213 Q91.2523 1210.32 88.5266 1210.32 M88.5266 1207.54 Q92.8843 1207.54 95.1759 1211 Q97.4849 1214.44 97.4849 1221 Q97.4849 1227.54 95.1759 1231 Q92.8843 1234.44 88.5266 1234.44 Q84.169 1234.44 81.86 1231 Q79.5684 1227.54 79.5684 1221 Q79.5684 1214.44 81.86 1211 Q84.169 1207.54 88.5266 1207.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M111.912 1219.96 Q114.429 1220.5 115.836 1222.2 Q117.259 1223.9 117.259 1226.4 Q117.259 1230.24 114.62 1232.34 Q111.981 1234.44 107.12 1234.44 Q105.488 1234.44 103.752 1234.11 Q102.034 1233.79 100.193 1233.15 L100.193 1229.77 Q101.652 1230.62 103.388 1231.05 Q105.124 1231.49 107.016 1231.49 Q110.315 1231.49 112.033 1230.18 Q113.77 1228.88 113.77 1226.4 Q113.77 1224.11 112.155 1222.82 Q110.558 1221.52 107.693 1221.52 L104.672 1221.52 L104.672 1218.64 L107.832 1218.64 Q110.419 1218.64 111.79 1217.61 Q113.162 1216.57 113.162 1214.63 Q113.162 1212.63 111.738 1211.57 Q110.332 1210.5 107.693 1210.5 Q106.252 1210.5 104.603 1210.81 Q102.954 1211.12 100.974 1211.78 L100.974 1208.66 Q102.971 1208.1 104.707 1207.82 Q106.461 1207.54 108.006 1207.54 Q111.999 1207.54 114.325 1209.37 Q116.651 1211.17 116.651 1214.26 Q116.651 1216.42 115.419 1217.91 Q114.186 1219.38 111.912 1219.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M59.9504 1132.01 Q57.2421 1132.01 55.8706 1134.69 Q54.5164 1137.34 54.5164 1142.69 Q54.5164 1148.02 55.8706 1150.69 Q57.2421 1153.35 59.9504 1153.35 Q62.6761 1153.35 64.0303 1150.69 Q65.4018 1148.02 65.4018 1142.69 Q65.4018 1137.34 64.0303 1134.69 Q62.6761 1132.01 59.9504 1132.01 M59.9504 1129.23 Q64.308 1129.23 66.5997 1132.69 Q68.9087 1136.13 68.9087 1142.69 Q68.9087 1149.23 66.5997 1152.69 Q64.308 1156.13 59.9504 1156.13 Q55.5928 1156.13 53.2838 1152.69 Q50.9921 1149.23 50.9921 1142.69 Q50.9921 1136.13 53.2838 1132.69 Q55.5928 1129.23 59.9504 1129.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M72.7108 1151.21 L76.3739 1151.21 L76.3739 1155.62 L72.7108 1155.62 L72.7108 1151.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M87.676 1132.01 Q84.9676 1132.01 83.5961 1134.69 Q82.242 1137.34 82.242 1142.69 Q82.242 1148.02 83.5961 1150.69 Q84.9676 1153.35 87.676 1153.35 Q90.4016 1153.35 91.7558 1150.69 Q93.1273 1148.02 93.1273 1142.69 Q93.1273 1137.34 91.7558 1134.69 Q90.4016 1132.01 87.676 1132.01 M87.676 1129.23 Q92.0336 1129.23 94.3252 1132.69 Q96.6342 1136.13 96.6342 1142.69 Q96.6342 1149.23 94.3252 1152.69 Q92.0336 1156.13 87.676 1156.13 Q83.3183 1156.13 81.0093 1152.69 Q78.7177 1149.23 78.7177 1142.69 Q78.7177 1136.13 81.0093 1132.69 Q83.3183 1129.23 87.676 1129.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M110.072 1132.76 L101.218 1146.6 L110.072 1146.6 L110.072 1132.76 M109.152 1129.7 L113.561 1129.7 L113.561 1146.6 L117.259 1146.6 L117.259 1149.51 L113.561 1149.51 L113.561 1155.62 L110.072 1155.62 L110.072 1149.51 L98.3703 1149.51 L98.3703 1146.13 L109.152 1129.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.0615 1053.7 Q58.3532 1053.7 56.9817 1056.38 Q55.6275 1059.03 55.6275 1064.38 Q55.6275 1069.71 56.9817 1072.38 Q58.3532 1075.04 61.0615 1075.04 Q63.7872 1075.04 65.1414 1072.38 Q66.5129 1069.71 66.5129 1064.38 Q66.5129 1059.03 65.1414 1056.38 Q63.7872 1053.7 61.0615 1053.7 M61.0615 1050.93 Q65.4191 1050.93 67.7108 1054.38 Q70.0198 1057.82 70.0198 1064.38 Q70.0198 1070.93 67.7108 1074.38 Q65.4191 1077.82 61.0615 1077.82 Q56.7039 1077.82 54.3949 1074.38 Q52.1032 1070.93 52.1032 1064.38 Q52.1032 1057.82 54.3949 1054.38 Q56.7039 1050.93 61.0615 1050.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.8219 1072.9 L77.485 1072.9 L77.485 1077.31 L73.8219 1077.31 L73.8219 1072.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.7871 1053.7 Q86.0787 1053.7 84.7072 1056.38 Q83.3531 1059.03 83.3531 1064.38 Q83.3531 1069.71 84.7072 1072.38 Q86.0787 1075.04 88.7871 1075.04 Q91.5127 1075.04 92.8669 1072.38 Q94.2384 1069.71 94.2384 1064.38 Q94.2384 1059.03 92.8669 1056.38 Q91.5127 1053.7 88.7871 1053.7 M88.7871 1050.93 Q93.1447 1050.93 95.4363 1054.38 Q97.7453 1057.82 97.7453 1064.38 Q97.7453 1070.93 95.4363 1074.38 Q93.1447 1077.82 88.7871 1077.82 Q84.4294 1077.82 82.1204 1074.38 Q79.8288 1070.93 79.8288 1064.38 Q79.8288 1057.82 82.1204 1054.38 Q84.4294 1050.93 88.7871 1050.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M101.582 1051.39 L115.349 1051.39 L115.349 1054.35 L104.794 1054.35 L104.794 1060.7 Q105.558 1060.44 106.322 1060.32 Q107.086 1060.18 107.849 1060.18 Q112.19 1060.18 114.724 1062.56 Q117.259 1064.94 117.259 1069 Q117.259 1073.18 114.655 1075.51 Q112.051 1077.82 107.311 1077.82 Q105.679 1077.82 103.978 1077.54 Q102.294 1077.26 100.488 1076.71 L100.488 1073.18 Q102.051 1074.03 103.718 1074.45 Q105.384 1074.87 107.242 1074.87 Q110.245 1074.87 111.999 1073.29 Q113.752 1071.71 113.752 1069 Q113.752 1066.29 111.999 1064.71 Q110.245 1063.13 107.242 1063.13 Q105.836 1063.13 104.429 1063.44 Q103.04 1063.75 101.582 1064.41 L101.582 1051.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.1935 975.393 Q57.4851 975.393 56.1136 978.067 Q54.7595 980.723 54.7595 986.07 Q54.7595 991.4 56.1136 994.074 Q57.4851 996.73 60.1935 996.73 Q62.9191 996.73 64.2733 994.074 Q65.6448 991.4 65.6448 986.07 Q65.6448 980.723 64.2733 978.067 Q62.9191 975.393 60.1935 975.393 M60.1935 972.616 Q64.5511 972.616 66.8427 976.07 Q69.1518 979.508 69.1518 986.07 Q69.1518 992.616 66.8427 996.07 Q64.5511 999.508 60.1935 999.508 Q55.8359 999.508 53.5268 996.07 Q51.2352 992.616 51.2352 986.07 Q51.2352 979.508 53.5268 976.07 Q55.8359 972.616 60.1935 972.616 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M72.9538 994.595 L76.617 994.595 L76.617 999.004 L72.9538 999.004 L72.9538 994.595 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M87.919 975.393 Q85.2107 975.393 83.8392 978.067 Q82.485 980.723 82.485 986.07 Q82.485 991.4 83.8392 994.074 Q85.2107 996.73 87.919 996.73 Q90.6447 996.73 91.9989 994.074 Q93.3704 991.4 93.3704 986.07 Q93.3704 980.723 91.9989 978.067 Q90.6447 975.393 87.919 975.393 M87.919 972.616 Q92.2766 972.616 94.5683 976.07 Q96.8773 979.508 96.8773 986.07 Q96.8773 992.616 94.5683 996.07 Q92.2766 999.508 87.919 999.508 Q83.5614 999.508 81.2524 996.07 Q78.9607 992.616 78.9607 986.07 Q78.9607 979.508 81.2524 976.07 Q83.5614 972.616 87.919 972.616 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M108.613 984.647 Q106.252 984.647 104.863 986.261 Q103.492 987.876 103.492 990.688 Q103.492 993.484 104.863 995.116 Q106.252 996.73 108.613 996.73 Q110.974 996.73 112.346 995.116 Q113.735 993.484 113.735 990.688 Q113.735 987.876 112.346 986.261 Q110.974 984.647 108.613 984.647 M115.575 973.657 L115.575 976.852 Q114.256 976.227 112.902 975.897 Q111.565 975.567 110.245 975.567 Q106.773 975.567 104.933 977.911 Q103.11 980.254 102.849 984.994 Q103.874 983.484 105.419 982.685 Q106.964 981.869 108.822 981.869 Q112.728 981.869 114.985 984.248 Q117.259 986.609 117.259 990.688 Q117.259 994.681 114.898 997.095 Q112.537 999.508 108.613 999.508 Q104.117 999.508 101.738 996.07 Q99.3599 992.616 99.3599 986.07 Q99.3599 979.925 102.277 976.279 Q105.193 972.616 110.106 972.616 Q111.426 972.616 112.763 972.876 Q114.117 973.136 115.575 973.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.9921 897.084 Q58.2838 897.084 56.9122 899.757 Q55.5581 902.414 55.5581 907.761 Q55.5581 913.091 56.9122 915.764 Q58.2838 918.421 60.9921 918.421 Q63.7178 918.421 65.0719 915.764 Q66.4434 913.091 66.4434 907.761 Q66.4434 902.414 65.0719 899.757 Q63.7178 897.084 60.9921 897.084 M60.9921 894.306 Q65.3497 894.306 67.6413 897.761 Q69.9504 901.198 69.9504 907.761 Q69.9504 914.306 67.6413 917.761 Q65.3497 921.198 60.9921 921.198 Q56.6345 921.198 54.3254 917.761 Q52.0338 914.306 52.0338 907.761 Q52.0338 901.198 54.3254 897.761 Q56.6345 894.306 60.9921 894.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.7524 916.285 L77.4156 916.285 L77.4156 920.695 L73.7524 920.695 L73.7524 916.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.7176 897.084 Q86.0093 897.084 84.6378 899.757 Q83.2836 902.414 83.2836 907.761 Q83.2836 913.091 84.6378 915.764 Q86.0093 918.421 88.7176 918.421 Q91.4433 918.421 92.7975 915.764 Q94.169 913.091 94.169 907.761 Q94.169 902.414 92.7975 899.757 Q91.4433 897.084 88.7176 897.084 M88.7176 894.306 Q93.0752 894.306 95.3669 897.761 Q97.6759 901.198 97.6759 907.761 Q97.6759 914.306 95.3669 917.761 Q93.0752 921.198 88.7176 921.198 Q84.36 921.198 82.051 917.761 Q79.7593 914.306 79.7593 907.761 Q79.7593 901.198 82.051 897.761 Q84.36 894.306 88.7176 894.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M100.593 894.775 L117.259 894.775 L117.259 896.268 L107.849 920.695 L104.186 920.695 L113.04 897.726 L100.593 897.726 L100.593 894.775 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.3844 818.774 Q57.6761 818.774 56.3046 821.448 Q54.9504 824.104 54.9504 829.451 Q54.9504 834.781 56.3046 837.455 Q57.6761 840.111 60.3844 840.111 Q63.1101 840.111 64.4643 837.455 Q65.8358 834.781 65.8358 829.451 Q65.8358 824.104 64.4643 821.448 Q63.1101 818.774 60.3844 818.774 M60.3844 815.997 Q64.7421 815.997 67.0337 819.451 Q69.3427 822.889 69.3427 829.451 Q69.3427 835.996 67.0337 839.451 Q64.7421 842.889 60.3844 842.889 Q56.0268 842.889 53.7178 839.451 Q51.4262 835.996 51.4262 829.451 Q51.4262 822.889 53.7178 819.451 Q56.0268 815.997 60.3844 815.997 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.1448 837.976 L76.808 837.976 L76.808 842.385 L73.1448 842.385 L73.1448 837.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.11 818.774 Q85.4017 818.774 84.0301 821.448 Q82.676 824.104 82.676 829.451 Q82.676 834.781 84.0301 837.455 Q85.4017 840.111 88.11 840.111 Q90.8357 840.111 92.1898 837.455 Q93.5613 834.781 93.5613 829.451 Q93.5613 824.104 92.1898 821.448 Q90.8357 818.774 88.11 818.774 M88.11 815.997 Q92.4676 815.997 94.7593 819.451 Q97.0683 822.889 97.0683 829.451 Q97.0683 835.996 94.7593 839.451 Q92.4676 842.889 88.11 842.889 Q83.7524 842.889 81.4434 839.451 Q79.1517 835.996 79.1517 829.451 Q79.1517 822.889 81.4434 819.451 Q83.7524 815.997 88.11 815.997 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M108.37 830.076 Q105.87 830.076 104.429 831.413 Q103.006 832.75 103.006 835.094 Q103.006 837.437 104.429 838.774 Q105.87 840.111 108.37 840.111 Q110.87 840.111 112.311 838.774 Q113.752 837.42 113.752 835.094 Q113.752 832.75 112.311 831.413 Q110.888 830.076 108.37 830.076 M104.863 828.583 Q102.606 828.028 101.339 826.483 Q100.089 824.937 100.089 822.715 Q100.089 819.608 102.294 817.802 Q104.516 815.997 108.37 815.997 Q112.242 815.997 114.447 817.802 Q116.651 819.608 116.651 822.715 Q116.651 824.937 115.384 826.483 Q114.134 828.028 111.895 828.583 Q114.429 829.174 115.836 830.892 Q117.259 832.611 117.259 835.094 Q117.259 838.861 114.95 840.875 Q112.658 842.889 108.37 842.889 Q104.082 842.889 101.773 840.875 Q99.4814 838.861 99.4814 835.094 Q99.4814 832.611 100.905 830.892 Q102.329 829.174 104.863 828.583 M103.579 823.045 Q103.579 825.059 104.829 826.187 Q106.096 827.316 108.37 827.316 Q110.627 827.316 111.895 826.187 Q113.179 825.059 113.179 823.045 Q113.179 821.031 111.895 819.903 Q110.627 818.774 108.37 818.774 Q106.096 818.774 104.829 819.903 Q103.579 821.031 103.579 823.045 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.4539 740.465 Q57.7456 740.465 56.374 743.138 Q55.0199 745.795 55.0199 751.142 Q55.0199 756.472 56.374 759.145 Q57.7456 761.801 60.4539 761.801 Q63.1796 761.801 64.5337 759.145 Q65.9052 756.472 65.9052 751.142 Q65.9052 745.795 64.5337 743.138 Q63.1796 740.465 60.4539 740.465 M60.4539 737.687 Q64.8115 737.687 67.1032 741.142 Q69.4122 744.579 69.4122 751.142 Q69.4122 757.687 67.1032 761.142 Q64.8115 764.579 60.4539 764.579 Q56.0963 764.579 53.7872 761.142 Q51.4956 757.687 51.4956 751.142 Q51.4956 744.579 53.7872 741.142 Q56.0963 737.687 60.4539 737.687 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.2142 759.666 L76.8774 759.666 L76.8774 764.076 L73.2142 764.076 L73.2142 759.666 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M88.1794 740.465 Q85.4711 740.465 84.0996 743.138 Q82.7454 745.795 82.7454 751.142 Q82.7454 756.472 84.0996 759.145 Q85.4711 761.801 88.1794 761.801 Q90.9051 761.801 92.2593 759.145 Q93.6308 756.472 93.6308 751.142 Q93.6308 745.795 92.2593 743.138 Q90.9051 740.465 88.1794 740.465 M88.1794 737.687 Q92.537 737.687 94.8287 741.142 Q97.1377 744.579 97.1377 751.142 Q97.1377 757.687 94.8287 761.142 Q92.537 764.579 88.1794 764.579 Q83.8218 764.579 81.5128 761.142 Q79.2211 757.687 79.2211 751.142 Q79.2211 744.579 81.5128 741.142 Q83.8218 737.687 88.1794 737.687 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M101.044 763.537 L101.044 760.343 Q102.363 760.968 103.718 761.298 Q105.072 761.628 106.374 761.628 Q109.846 761.628 111.669 759.301 Q113.509 756.958 113.77 752.201 Q112.763 753.694 111.217 754.492 Q109.672 755.291 107.797 755.291 Q103.909 755.291 101.634 752.947 Q99.3773 750.586 99.3773 746.506 Q99.3773 742.513 101.738 740.1 Q104.099 737.687 108.023 737.687 Q112.52 737.687 114.881 741.142 Q117.259 744.579 117.259 751.142 Q117.259 757.27 114.342 760.933 Q111.443 764.579 106.53 764.579 Q105.211 764.579 103.856 764.319 Q102.502 764.058 101.044 763.537 M108.023 752.548 Q110.384 752.548 111.756 750.933 Q113.145 749.319 113.145 746.506 Q113.145 743.711 111.756 742.097 Q110.384 740.465 108.023 740.465 Q105.662 740.465 104.273 742.097 Q102.902 743.711 102.902 746.506 Q102.902 749.319 104.273 750.933 Q105.662 752.548 108.023 752.548 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.2351 662.155 Q58.5268 662.155 57.1553 664.829 Q55.8011 667.485 55.8011 672.832 Q55.8011 678.162 57.1553 680.836 Q58.5268 683.492 61.2351 683.492 Q63.9608 683.492 65.315 680.836 Q66.6865 678.162 66.6865 672.832 Q66.6865 667.485 65.315 664.829 Q63.9608 662.155 61.2351 662.155 M61.2351 659.377 Q65.5927 659.377 67.8844 662.832 Q70.1934 666.27 70.1934 672.832 Q70.1934 679.377 67.8844 682.832 Q65.5927 686.27 61.2351 686.27 Q56.8775 686.27 54.5685 682.832 Q52.2768 679.377 52.2768 672.832 Q52.2768 666.27 54.5685 662.832 Q56.8775 659.377 61.2351 659.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.9955 681.356 L77.6586 681.356 L77.6586 685.766 L73.9955 685.766 L73.9955 681.356 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M82.0683 682.815 L87.7975 682.815 L87.7975 663.041 L81.5649 664.291 L81.5649 661.096 L87.7628 659.846 L91.2697 659.846 L91.2697 682.815 L96.9988 682.815 L96.9988 685.766 L82.0683 685.766 L82.0683 682.815 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M108.301 662.155 Q105.593 662.155 104.221 664.829 Q102.867 667.485 102.867 672.832 Q102.867 678.162 104.221 680.836 Q105.593 683.492 108.301 683.492 Q111.027 683.492 112.381 680.836 Q113.752 678.162 113.752 672.832 Q113.752 667.485 112.381 664.829 Q111.027 662.155 108.301 662.155 M108.301 659.377 Q112.658 659.377 114.95 662.832 Q117.259 666.27 117.259 672.832 Q117.259 679.377 114.95 682.832 Q112.658 686.27 108.301 686.27 Q103.943 686.27 101.634 682.832 Q99.3426 679.377 99.3426 672.832 Q99.3426 666.27 101.634 662.832 Q103.943 659.377 108.301 659.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M62.1553 583.846 Q59.4469 583.846 58.0754 586.519 Q56.7213 589.175 56.7213 594.523 Q56.7213 599.852 58.0754 602.526 Q59.4469 605.182 62.1553 605.182 Q64.8809 605.182 66.2351 602.526 Q67.6066 599.852 67.6066 594.523 Q67.6066 589.175 66.2351 586.519 Q64.8809 583.846 62.1553 583.846 M62.1553 581.068 Q66.5129 581.068 68.8045 584.523 Q71.1135 587.96 71.1135 594.523 Q71.1135 601.068 68.8045 604.523 Q66.5129 607.96 62.1553 607.96 Q57.7976 607.96 55.4886 604.523 Q53.197 601.068 53.197 594.523 Q53.197 587.96 55.4886 584.523 Q57.7976 581.068 62.1553 581.068 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M74.9156 603.047 L78.5788 603.047 L78.5788 607.457 L74.9156 607.457 L74.9156 603.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M82.9885 604.505 L88.7176 604.505 L88.7176 584.731 L82.485 585.981 L82.485 582.787 L88.6829 581.537 L92.1898 581.537 L92.1898 604.505 L97.919 604.505 L97.919 607.457 L82.9885 607.457 L82.9885 604.505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M102.329 604.505 L108.058 604.505 L108.058 584.731 L101.825 585.981 L101.825 582.787 L108.023 581.537 L111.53 581.537 L111.53 604.505 L117.259 604.505 L117.259 607.457 L102.329 607.457 L102.329 604.505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M62.433 505.536 Q59.7247 505.536 58.3532 508.21 Q56.999 510.866 56.999 516.213 Q56.999 521.543 58.3532 524.216 Q59.7247 526.873 62.433 526.873 Q65.1587 526.873 66.5129 524.216 Q67.8844 521.543 67.8844 516.213 Q67.8844 510.866 66.5129 508.21 Q65.1587 505.536 62.433 505.536 M62.433 502.758 Q66.7907 502.758 69.0823 506.213 Q71.3913 509.651 71.3913 516.213 Q71.3913 522.758 69.0823 526.213 Q66.7907 529.65 62.433 529.65 Q58.0754 529.65 55.7664 526.213 Q53.4748 522.758 53.4748 516.213 Q53.4748 509.651 55.7664 506.213 Q58.0754 502.758 62.433 502.758 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M75.1934 524.737 L78.8566 524.737 L78.8566 529.147 L75.1934 529.147 L75.1934 524.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M83.2663 526.196 L88.9954 526.196 L88.9954 506.421 L82.7628 507.671 L82.7628 504.477 L88.9607 503.227 L92.4676 503.227 L92.4676 526.196 L98.1967 526.196 L98.1967 529.147 L83.2663 529.147 L83.2663 526.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M105.02 526.196 L117.259 526.196 L117.259 529.147 L100.801 529.147 L100.801 526.196 Q102.797 524.13 106.235 520.657 Q109.69 517.168 110.575 516.161 Q112.259 514.269 112.919 512.967 Q113.596 511.647 113.596 510.38 Q113.596 508.314 112.138 507.012 Q110.697 505.71 108.37 505.71 Q106.721 505.71 104.881 506.283 Q103.058 506.855 100.974 508.019 L100.974 504.477 Q103.093 503.626 104.933 503.192 Q106.773 502.758 108.301 502.758 Q112.329 502.758 114.724 504.772 Q117.12 506.786 117.12 510.154 Q117.12 511.751 116.513 513.192 Q115.922 514.616 114.342 516.56 Q113.908 517.064 111.582 519.477 Q109.256 521.873 105.02 526.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.7212 427.226 Q59.0129 427.226 57.6414 429.9 Q56.2872 432.556 56.2872 437.903 Q56.2872 443.233 57.6414 445.907 Q59.0129 448.563 61.7212 448.563 Q64.4469 448.563 65.8011 445.907 Q67.1726 443.233 67.1726 437.903 Q67.1726 432.556 65.8011 429.9 Q64.4469 427.226 61.7212 427.226 M61.7212 424.449 Q66.0789 424.449 68.3705 427.904 Q70.6795 431.341 70.6795 437.903 Q70.6795 444.449 68.3705 447.903 Q66.0789 451.341 61.7212 451.341 Q57.3636 451.341 55.0546 447.903 Q52.7629 444.449 52.7629 437.903 Q52.7629 431.341 55.0546 427.904 Q57.3636 424.449 61.7212 424.449 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M74.4816 446.428 L78.1448 446.428 L78.1448 450.837 L74.4816 450.837 L74.4816 446.428 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M82.5545 447.886 L88.2836 447.886 L88.2836 428.112 L82.051 429.362 L82.051 426.167 L88.2489 424.917 L91.7558 424.917 L91.7558 447.886 L97.4849 447.886 L97.4849 450.837 L82.5545 450.837 L82.5545 447.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M111.912 436.862 Q114.429 437.4 115.836 439.101 Q117.259 440.803 117.259 443.303 Q117.259 447.14 114.62 449.24 Q111.981 451.341 107.12 451.341 Q105.488 451.341 103.752 451.011 Q102.034 450.699 100.193 450.056 L100.193 446.671 Q101.652 447.521 103.388 447.956 Q105.124 448.39 107.016 448.39 Q110.315 448.39 112.033 447.087 Q113.77 445.785 113.77 443.303 Q113.77 441.011 112.155 439.726 Q110.558 438.424 107.693 438.424 L104.672 438.424 L104.672 435.542 L107.832 435.542 Q110.419 435.542 111.79 434.518 Q113.162 433.476 113.162 431.532 Q113.162 429.535 111.738 428.476 Q110.332 427.4 107.693 427.4 Q106.252 427.4 104.603 427.713 Q102.954 428.025 100.974 428.685 L100.974 425.56 Q102.971 425.004 104.707 424.726 Q106.461 424.449 108.006 424.449 Q111.999 424.449 114.325 426.272 Q116.651 428.077 116.651 431.167 Q116.651 433.32 115.419 434.813 Q114.186 436.289 111.912 436.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M60.8705 348.917 Q58.1622 348.917 56.7907 351.59 Q55.4365 354.247 55.4365 359.594 Q55.4365 364.924 56.7907 367.597 Q58.1622 370.254 60.8705 370.254 Q63.5962 370.254 64.9504 367.597 Q66.3219 364.924 66.3219 359.594 Q66.3219 354.247 64.9504 351.59 Q63.5962 348.917 60.8705 348.917 M60.8705 346.139 Q65.2282 346.139 67.5198 349.594 Q69.8288 353.031 69.8288 359.594 Q69.8288 366.139 67.5198 369.594 Q65.2282 373.031 60.8705 373.031 Q56.5129 373.031 54.2039 369.594 Q51.9123 366.139 51.9123 359.594 Q51.9123 353.031 54.2039 349.594 Q56.5129 346.139 60.8705 346.139 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.6309 368.118 L77.2941 368.118 L77.2941 372.528 L73.6309 372.528 L73.6309 368.118 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M81.7038 369.576 L87.4329 369.576 L87.4329 349.802 L81.2003 351.052 L81.2003 347.858 L87.3982 346.608 L90.9051 346.608 L90.9051 369.576 L96.6342 369.576 L96.6342 372.528 L81.7038 372.528 L81.7038 369.576 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M110.072 349.663 L101.218 363.5 L110.072 363.5 L110.072 349.663 M109.152 346.608 L113.561 346.608 L113.561 363.5 L117.259 363.5 L117.259 366.417 L113.561 366.417 L113.561 372.528 L110.072 372.528 L110.072 366.417 L98.3703 366.417 L98.3703 363.031 L109.152 346.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.9817 270.607 Q59.2733 270.607 57.9018 273.281 Q56.5477 275.937 56.5477 281.284 Q56.5477 286.614 57.9018 289.288 Q59.2733 291.944 61.9817 291.944 Q64.7073 291.944 66.0615 289.288 Q67.433 286.614 67.433 281.284 Q67.433 275.937 66.0615 273.281 Q64.7073 270.607 61.9817 270.607 M61.9817 267.83 Q66.3393 267.83 68.6309 271.284 Q70.9399 274.722 70.9399 281.284 Q70.9399 287.829 68.6309 291.284 Q66.3393 294.722 61.9817 294.722 Q57.624 294.722 55.315 291.284 Q53.0234 287.829 53.0234 281.284 Q53.0234 274.722 55.315 271.284 Q57.624 267.83 61.9817 267.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M74.742 289.809 L78.4052 289.809 L78.4052 294.218 L74.742 294.218 L74.742 289.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M82.8149 291.267 L88.544 291.267 L88.544 271.493 L82.3114 272.743 L82.3114 269.548 L88.5093 268.298 L92.0162 268.298 L92.0162 291.267 L97.7453 291.267 L97.7453 294.218 L82.8149 294.218 L82.8149 291.267 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M101.582 268.298 L115.349 268.298 L115.349 271.25 L104.794 271.25 L104.794 277.604 Q105.558 277.343 106.322 277.222 Q107.086 277.083 107.849 277.083 Q112.19 277.083 114.724 279.461 Q117.259 281.84 117.259 285.902 Q117.259 290.086 114.655 292.413 Q112.051 294.722 107.311 294.722 Q105.679 294.722 103.978 294.444 Q102.294 294.166 100.488 293.611 L100.488 290.086 Q102.051 290.937 103.718 291.354 Q105.384 291.77 107.242 291.77 Q110.245 291.77 111.999 290.191 Q113.752 288.611 113.752 285.902 Q113.752 283.194 111.999 281.614 Q110.245 280.034 107.242 280.034 Q105.836 280.034 104.429 280.347 Q103.04 280.659 101.582 281.319 L101.582 268.298 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.1136 192.298 Q58.4053 192.298 57.0338 194.971 Q55.6796 197.628 55.6796 202.975 Q55.6796 208.305 57.0338 210.978 Q58.4053 213.634 61.1136 213.634 Q63.8393 213.634 65.1934 210.978 Q66.565 208.305 66.565 202.975 Q66.565 197.628 65.1934 194.971 Q63.8393 192.298 61.1136 192.298 M61.1136 189.52 Q65.4712 189.52 67.7629 192.975 Q70.0719 196.412 70.0719 202.975 Q70.0719 209.52 67.7629 212.975 Q65.4712 216.412 61.1136 216.412 Q56.756 216.412 54.447 212.975 Q52.1553 209.52 52.1553 202.975 Q52.1553 196.412 54.447 192.975 Q56.756 189.52 61.1136 189.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M73.8739 211.499 L77.5371 211.499 L77.5371 215.909 L73.8739 215.909 L73.8739 211.499 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M81.9468 212.957 L87.676 212.957 L87.676 193.183 L81.4434 194.433 L81.4434 191.239 L87.6412 189.989 L91.1482 189.989 L91.1482 212.957 L96.8773 212.957 L96.8773 215.909 L81.9468 215.909 L81.9468 212.957 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M108.613 201.551 Q106.252 201.551 104.863 203.166 Q103.492 204.78 103.492 207.593 Q103.492 210.388 104.863 212.02 Q106.252 213.634 108.613 213.634 Q110.974 213.634 112.346 212.02 Q113.735 210.388 113.735 207.593 Q113.735 204.78 112.346 203.166 Q110.974 201.551 108.613 201.551 M115.575 190.562 L115.575 193.756 Q114.256 193.131 112.902 192.801 Q111.565 192.471 110.245 192.471 Q106.773 192.471 104.933 194.815 Q103.11 197.159 102.849 201.898 Q103.874 200.388 105.419 199.589 Q106.964 198.773 108.822 198.773 Q112.728 198.773 114.985 201.152 Q117.259 203.513 117.259 207.593 Q117.259 211.586 114.898 213.999 Q112.537 216.412 108.613 216.412 Q104.117 216.412 101.738 212.975 Q99.3599 209.52 99.3599 202.975 Q99.3599 196.829 102.277 193.183 Q105.193 189.52 110.106 189.52 Q111.426 189.52 112.763 189.78 Q114.117 190.041 115.575 190.562 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M61.9122 113.988 Q59.2039 113.988 57.8324 116.662 Q56.4782 119.318 56.4782 124.665 Q56.4782 129.995 57.8324 132.669 Q59.2039 135.325 61.9122 135.325 Q64.6379 135.325 65.992 132.669 Q67.3636 129.995 67.3636 124.665 Q67.3636 119.318 65.992 116.662 Q64.6379 113.988 61.9122 113.988 M61.9122 111.21 Q66.2698 111.21 68.5615 114.665 Q70.8705 118.103 70.8705 124.665 Q70.8705 131.21 68.5615 134.665 Q66.2698 138.103 61.9122 138.103 Q57.5546 138.103 55.2456 134.665 Q52.9539 131.21 52.9539 124.665 Q52.9539 118.103 55.2456 114.665 Q57.5546 111.21 61.9122 111.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M74.6726 133.189 L78.3357 133.189 L78.3357 137.599 L74.6726 137.599 L74.6726 133.189 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M82.7454 134.648 L88.4746 134.648 L88.4746 114.874 L82.242 116.124 L82.242 112.929 L88.4398 111.679 L91.9468 111.679 L91.9468 134.648 L97.6759 134.648 L97.6759 137.599 L82.7454 137.599 L82.7454 134.648 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M100.593 111.679 L117.259 111.679 L117.259 113.172 L107.849 137.599 L104.186 137.599 L113.04 114.631 L100.593 114.631 L100.593 111.679 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M975.495 14.7875 L975.495 32.6433 L983.579 32.6433 Q988.067 32.6433 990.518 30.3199 Q992.968 27.9964 992.968 23.6995 Q992.968 19.4345 990.518 17.111 Q988.067 14.7875 983.579 14.7875 L975.495 14.7875 M969.065 9.504 L983.579 9.504 Q991.568 9.504 995.642 13.1325 Q999.748 16.7291 999.748 23.6995 Q999.748 30.7336 995.642 34.3303 Q991.568 37.9269 983.579 37.9269 L975.495 37.9269 L975.495 57.024 L969.065 57.024 L969.065 9.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1005.89 7.4988 L1011.75 7.4988 L1011.75 57.024 L1005.89 57.024 L1005.89 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1034.09 39.1045 Q1026.99 39.1045 1024.26 40.7278 Q1021.52 42.351 1021.52 46.266 Q1021.52 49.3852 1023.56 51.2312 Q1025.62 53.0454 1029.16 53.0454 Q1034.03 53.0454 1036.96 49.608 Q1039.92 46.1386 1039.92 40.4095 L1039.92 39.1045 L1034.09 39.1045 M1045.77 36.6856 L1045.77 57.024 L1039.92 57.024 L1039.92 51.6131 Q1037.91 54.8597 1034.92 56.4193 Q1031.93 57.947 1027.6 57.947 Q1022.12 57.947 1018.88 54.8915 Q1015.66 51.8041 1015.66 46.6479 Q1015.66 40.6323 1019.67 37.5768 Q1023.71 34.5212 1031.7 34.5212 L1039.92 34.5212 L1039.92 33.9483 Q1039.92 29.9061 1037.24 27.7099 Q1034.6 25.4819 1029.79 25.4819 Q1026.74 25.4819 1023.84 26.214 Q1020.95 26.946 1018.27 28.4101 L1018.27 22.9993 Q1021.49 21.758 1024.51 21.1532 Q1027.53 20.5167 1030.4 20.5167 Q1038.13 20.5167 1041.95 24.5271 Q1045.77 28.5375 1045.77 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1066.75 60.3342 Q1064.26 66.6999 1061.91 68.6414 Q1059.55 70.583 1055.61 70.583 L1050.93 70.583 L1050.93 65.6814 L1054.37 65.6814 Q1056.78 65.6814 1058.12 64.5355 Q1059.46 63.3897 1061.08 59.1247 L1062.13 56.4511 L1047.71 21.376 L1053.92 21.376 L1065.06 49.2578 L1076.2 21.376 L1082.41 21.376 L1066.75 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1119.04 37.7359 L1119.04 40.6005 L1092.11 40.6005 Q1092.5 46.6479 1095.74 49.8308 Q1099.02 52.9818 1104.85 52.9818 Q1108.22 52.9818 1111.37 52.1542 Q1114.55 51.3267 1117.67 49.6716 L1117.67 55.2098 Q1114.52 56.5466 1111.21 57.2468 Q1107.9 57.947 1104.5 57.947 Q1095.97 57.947 1090.97 52.9818 Q1086 48.0165 1086 39.5501 Q1086 30.7973 1090.71 25.6729 Q1095.46 20.5167 1103.48 20.5167 Q1110.67 20.5167 1114.84 25.1636 Q1119.04 29.7788 1119.04 37.7359 M1113.18 36.0172 Q1113.12 31.2111 1110.48 28.3465 Q1107.87 25.4819 1103.54 25.4819 Q1098.64 25.4819 1095.68 28.251 Q1092.75 31.0201 1092.31 36.049 L1113.18 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1145.84 26.8506 Q1144.85 26.2776 1143.68 26.023 Q1142.53 25.7366 1141.13 25.7366 Q1136.16 25.7366 1133.49 28.9831 Q1130.85 32.1977 1130.85 38.2452 L1130.85 57.024 L1124.96 57.024 L1124.96 21.376 L1130.85 21.376 L1130.85 26.9142 Q1132.7 23.6677 1135.66 22.1081 Q1138.62 20.5167 1142.85 20.5167 Q1143.45 20.5167 1144.19 20.6122 Q1144.92 20.6758 1145.81 20.835 L1145.84 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1166.05 7.56246 Q1161.79 14.883 1159.72 22.0444 Q1157.65 29.2059 1157.65 36.5583 Q1157.65 43.9106 1159.72 51.1357 Q1161.82 58.329 1166.05 65.6177 L1160.96 65.6177 Q1156.19 58.138 1153.8 50.9129 Q1151.44 43.6878 1151.44 36.5583 Q1151.44 29.4605 1153.8 22.2672 Q1156.15 15.074 1160.96 7.56246 L1166.05 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1202.69 37.7359 L1202.69 40.6005 L1175.76 40.6005 Q1176.14 46.6479 1179.39 49.8308 Q1182.67 52.9818 1188.49 52.9818 Q1191.86 52.9818 1195.02 52.1542 Q1198.2 51.3267 1201.32 49.6716 L1201.32 55.2098 Q1198.17 56.5466 1194.86 57.2468 Q1191.55 57.947 1188.14 57.947 Q1179.61 57.947 1174.61 52.9818 Q1169.65 48.0165 1169.65 39.5501 Q1169.65 30.7973 1174.36 25.6729 Q1179.1 20.5167 1187.12 20.5167 Q1194.32 20.5167 1198.49 25.1636 Q1202.69 29.7788 1202.69 37.7359 M1196.83 36.0172 Q1196.77 31.2111 1194.12 28.3465 Q1191.51 25.4819 1187.19 25.4819 Q1182.28 25.4819 1179.32 28.251 Q1176.4 31.0201 1175.95 36.049 L1196.83 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1231.56 22.4264 L1231.56 27.9645 Q1229.07 26.6914 1226.4 26.0548 Q1223.73 25.4183 1220.86 25.4183 Q1216.5 25.4183 1214.3 26.7551 Q1212.14 28.0919 1212.14 30.7655 Q1212.14 32.8025 1213.7 33.9801 Q1215.26 35.126 1219.97 36.1763 L1221.97 36.6219 Q1228.21 37.9587 1230.82 40.4095 Q1233.46 42.8285 1233.46 47.189 Q1233.46 52.1542 1229.52 55.0506 Q1225.6 57.947 1218.73 57.947 Q1215.86 57.947 1212.74 57.3741 Q1209.66 56.833 1206.22 55.719 L1206.22 49.6716 Q1209.47 51.3585 1212.62 52.2179 Q1215.77 53.0454 1218.86 53.0454 Q1222.99 53.0454 1225.22 51.645 Q1227.45 50.2127 1227.45 47.6346 Q1227.45 45.2474 1225.83 43.9743 Q1224.23 42.7012 1218.79 41.5235 L1216.75 41.0461 Q1211.31 39.9002 1208.89 37.5449 Q1206.47 35.1578 1206.47 31.0201 Q1206.47 25.9912 1210.04 23.2539 Q1213.6 20.5167 1220.16 20.5167 Q1223.41 20.5167 1226.27 20.9941 Q1229.14 21.4715 1231.56 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1245.4 11.2546 L1245.4 21.376 L1257.46 21.376 L1257.46 25.9275 L1245.4 25.9275 L1245.4 45.2793 Q1245.4 49.6398 1246.58 50.8811 Q1247.79 52.1224 1251.45 52.1224 L1257.46 52.1224 L1257.46 57.024 L1251.45 57.024 Q1244.67 57.024 1242.09 54.5095 Q1239.51 51.9633 1239.51 45.2793 L1239.51 25.9275 L1235.22 25.9275 L1235.22 21.376 L1239.51 21.376 L1239.51 11.2546 L1245.4 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1290.69 67.8457 L1290.69 72.3972 L1256.83 72.3972 L1256.83 67.8457 L1290.69 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1296.84 21.376 L1302.69 21.376 L1302.69 57.6606 Q1302.69 64.4719 1300.08 67.5274 Q1297.5 70.583 1291.74 70.583 L1289.51 70.583 L1289.51 65.6177 L1291.07 65.6177 Q1294.42 65.6177 1295.63 64.0581 Q1296.84 62.5303 1296.84 57.6606 L1296.84 21.376 M1296.84 7.4988 L1302.69 7.4988 L1302.69 14.9149 L1296.84 14.9149 L1296.84 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1339.33 37.7359 L1339.33 40.6005 L1312.4 40.6005 Q1312.78 46.6479 1316.03 49.8308 Q1319.31 52.9818 1325.13 52.9818 Q1328.5 52.9818 1331.66 52.1542 Q1334.84 51.3267 1337.96 49.6716 L1337.96 55.2098 Q1334.81 56.5466 1331.5 57.2468 Q1328.19 57.947 1324.78 57.947 Q1316.25 57.947 1311.25 52.9818 Q1306.29 48.0165 1306.29 39.5501 Q1306.29 30.7973 1311 25.6729 Q1315.74 20.5167 1323.76 20.5167 Q1330.96 20.5167 1335.13 25.1636 Q1339.33 29.7788 1339.33 37.7359 M1333.47 36.0172 Q1333.41 31.2111 1330.76 28.3465 Q1328.15 25.4819 1323.83 25.4819 Q1318.92 25.4819 1315.96 28.251 Q1313.04 31.0201 1312.59 36.049 L1333.47 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1363.52 7.4988 L1363.52 12.3686 L1357.91 12.3686 Q1354.76 12.3686 1353.52 13.6417 Q1352.31 14.9149 1352.31 18.225 L1352.31 21.376 L1361.96 21.376 L1361.96 25.9275 L1352.31 25.9275 L1352.31 57.024 L1346.42 57.024 L1346.42 25.9275 L1340.82 25.9275 L1340.82 21.376 L1346.42 21.376 L1346.42 18.8934 Q1346.42 12.9415 1349.19 10.2361 Q1351.96 7.4988 1357.98 7.4988 L1363.52 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1387.71 7.4988 L1387.71 12.3686 L1382.1 12.3686 Q1378.95 12.3686 1377.71 13.6417 Q1376.5 14.9149 1376.5 18.225 L1376.5 21.376 L1386.15 21.376 L1386.15 25.9275 L1376.5 25.9275 L1376.5 57.024 L1370.61 57.024 L1370.61 25.9275 L1365.01 25.9275 L1365.01 21.376 L1370.61 21.376 L1370.61 18.8934 Q1370.61 12.9415 1373.38 10.2361 Q1376.15 7.4988 1382.17 7.4988 L1387.71 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1414.51 26.8506 Q1413.52 26.2776 1412.34 26.023 Q1411.2 25.7366 1409.79 25.7366 Q1404.83 25.7366 1402.16 28.9831 Q1399.51 32.1977 1399.51 38.2452 L1399.51 57.024 L1393.63 57.024 L1393.63 21.376 L1399.51 21.376 L1399.51 26.9142 Q1401.36 23.6677 1404.32 22.1081 Q1407.28 20.5167 1411.51 20.5167 Q1412.12 20.5167 1412.85 20.6122 Q1413.58 20.6758 1414.47 20.835 L1414.51 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1449.71 37.7359 L1449.71 40.6005 L1422.78 40.6005 Q1423.16 46.6479 1426.41 49.8308 Q1429.69 52.9818 1435.51 52.9818 Q1438.89 52.9818 1442.04 52.1542 Q1445.22 51.3267 1448.34 49.6716 L1448.34 55.2098 Q1445.19 56.5466 1441.88 57.2468 Q1438.57 57.947 1435.16 57.947 Q1426.63 57.947 1421.64 52.9818 Q1416.67 48.0165 1416.67 39.5501 Q1416.67 30.7973 1421.38 25.6729 Q1426.12 20.5167 1434.14 20.5167 Q1441.34 20.5167 1445.51 25.1636 Q1449.71 29.7788 1449.71 37.7359 M1443.85 36.0172 Q1443.79 31.2111 1441.15 28.3465 Q1438.54 25.4819 1434.21 25.4819 Q1429.31 25.4819 1426.35 28.251 Q1423.42 31.0201 1422.97 36.049 L1443.85 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1470.68 60.3342 Q1468.2 66.6999 1465.84 68.6414 Q1463.49 70.583 1459.54 70.583 L1454.86 70.583 L1454.86 65.6814 L1458.3 65.6814 Q1460.72 65.6814 1462.06 64.5355 Q1463.39 63.3897 1465.02 59.1247 L1466.07 56.4511 L1451.65 21.376 L1457.86 21.376 L1469 49.2578 L1480.14 21.376 L1486.34 21.376 L1470.68 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1515.21 22.4264 L1515.21 27.9645 Q1512.73 26.6914 1510.05 26.0548 Q1507.38 25.4183 1504.52 25.4183 Q1500.16 25.4183 1497.96 26.7551 Q1495.8 28.0919 1495.8 30.7655 Q1495.8 32.8025 1497.36 33.9801 Q1498.91 35.126 1503.63 36.1763 L1505.63 36.6219 Q1511.87 37.9587 1514.48 40.4095 Q1517.12 42.8285 1517.12 47.189 Q1517.12 52.1542 1513.17 55.0506 Q1509.26 57.947 1502.38 57.947 Q1499.52 57.947 1496.4 57.3741 Q1493.31 56.833 1489.88 55.719 L1489.88 49.6716 Q1493.12 51.3585 1496.27 52.2179 Q1499.42 53.0454 1502.51 53.0454 Q1506.65 53.0454 1508.88 51.645 Q1511.11 50.2127 1511.11 47.6346 Q1511.11 45.2474 1509.48 43.9743 Q1507.89 42.7012 1502.45 41.5235 L1500.41 41.0461 Q1494.97 39.9002 1492.55 37.5449 Q1490.13 35.1578 1490.13 31.0201 Q1490.13 25.9912 1493.69 23.2539 Q1497.26 20.5167 1503.82 20.5167 Q1507.06 20.5167 1509.93 20.9941 Q1512.79 21.4715 1515.21 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M1522.34 7.56246 L1527.43 7.56246 Q1532.21 15.074 1534.56 22.2672 Q1536.95 29.4605 1536.95 36.5583 Q1536.95 43.6878 1534.56 50.9129 Q1532.21 58.138 1527.43 65.6177 L1522.34 65.6177 Q1526.57 58.329 1528.64 51.1357 Q1530.74 43.9106 1530.74 36.5583 Q1530.74 29.2059 1528.64 22.0444 Q1526.57 14.883 1522.34 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip002)\" d=\"\nM274.235 1454.73 L274.235 1455.9 L293.617 1455.9 L293.617 1454.73 L274.235 1454.73 L274.235 1454.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 274.235,1454.73 274.235,1455.9 293.617,1455.9 293.617,1454.73 274.235,1454.73 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM293.617 1455.12 L293.617 1455.9 L312.999 1455.9 L312.999 1455.12 L293.617 1455.12 L293.617 1455.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 293.617,1455.12 293.617,1455.9 312.999,1455.9 312.999,1455.12 293.617,1455.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM312.999 1453.94 L312.999 1455.9 L332.38 1455.9 L332.38 1453.94 L312.999 1453.94 L312.999 1453.94 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 312.999,1453.94 312.999,1455.9 332.38,1455.9 332.38,1453.94 312.999,1453.94 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM332.38 1453.55 L332.38 1455.9 L351.762 1455.9 L351.762 1453.55 L332.38 1453.55 L332.38 1453.55 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 332.38,1453.55 332.38,1455.9 351.762,1455.9 351.762,1453.55 332.38,1453.55 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM351.762 1454.73 L351.762 1455.9 L371.144 1455.9 L371.144 1454.73 L351.762 1454.73 L351.762 1454.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 351.762,1454.73 351.762,1455.9 371.144,1455.9 371.144,1454.73 351.762,1454.73 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM371.144 1451.99 L371.144 1455.9 L390.525 1455.9 L390.525 1451.99 L371.144 1451.99 L371.144 1451.99 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 371.144,1451.99 371.144,1455.9 390.525,1455.9 390.525,1451.99 371.144,1451.99 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM390.525 1450.42 L390.525 1455.9 L409.907 1455.9 L409.907 1450.42 L390.525 1450.42 L390.525 1450.42 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 390.525,1450.42 390.525,1455.9 409.907,1455.9 409.907,1450.42 390.525,1450.42 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM409.907 1450.03 L409.907 1455.9 L429.288 1455.9 L429.288 1450.03 L409.907 1450.03 L409.907 1450.03 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 409.907,1450.03 409.907,1455.9 429.288,1455.9 429.288,1450.03 409.907,1450.03 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM429.288 1450.03 L429.288 1455.9 L448.67 1455.9 L448.67 1450.03 L429.288 1450.03 L429.288 1450.03 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 429.288,1450.03 429.288,1455.9 448.67,1455.9 448.67,1450.03 429.288,1450.03 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM448.67 1447.29 L448.67 1455.9 L468.052 1455.9 L468.052 1447.29 L448.67 1447.29 L448.67 1447.29 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 448.67,1447.29 448.67,1455.9 468.052,1455.9 468.052,1447.29 448.67,1447.29 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM468.052 1439.07 L468.052 1455.9 L487.433 1455.9 L487.433 1439.07 L468.052 1439.07 L468.052 1439.07 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 468.052,1439.07 468.052,1455.9 487.433,1455.9 487.433,1439.07 468.052,1439.07 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM487.433 1441.02 L487.433 1455.9 L506.815 1455.9 L506.815 1441.02 L487.433 1441.02 L487.433 1441.02 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 487.433,1441.02 487.433,1455.9 506.815,1455.9 506.815,1441.02 487.433,1441.02 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM506.815 1436.32 L506.815 1455.9 L526.197 1455.9 L526.197 1436.32 L506.815 1436.32 L506.815 1436.32 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 506.815,1436.32 506.815,1455.9 526.197,1455.9 526.197,1436.32 506.815,1436.32 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM526.197 1428.88 L526.197 1455.9 L545.578 1455.9 L545.578 1428.88 L526.197 1428.88 L526.197 1428.88 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 526.197,1428.88 526.197,1455.9 545.578,1455.9 545.578,1428.88 526.197,1428.88 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM545.578 1411.66 L545.578 1455.9 L564.96 1455.9 L564.96 1411.66 L545.578 1411.66 L545.578 1411.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 545.578,1411.66 545.578,1455.9 564.96,1455.9 564.96,1411.66 545.578,1411.66 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM564.96 1405.39 L564.96 1455.9 L584.341 1455.9 L584.341 1405.39 L564.96 1405.39 L564.96 1405.39 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 564.96,1405.39 564.96,1455.9 584.341,1455.9 584.341,1405.39 564.96,1405.39 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM584.341 1394.04 L584.341 1455.9 L603.723 1455.9 L603.723 1394.04 L584.341 1394.04 L584.341 1394.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 584.341,1394.04 584.341,1455.9 603.723,1455.9 603.723,1394.04 584.341,1394.04 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM603.723 1381.12 L603.723 1455.9 L623.105 1455.9 L623.105 1381.12 L603.723 1381.12 L603.723 1381.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 603.723,1381.12 603.723,1455.9 623.105,1455.9 623.105,1381.12 603.723,1381.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM623.105 1358.8 L623.105 1455.9 L642.486 1455.9 L642.486 1358.8 L623.105 1358.8 L623.105 1358.8 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 623.105,1358.8 623.105,1455.9 642.486,1455.9 642.486,1358.8 623.105,1358.8 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM642.486 1332.17 L642.486 1455.9 L661.868 1455.9 L661.868 1332.17 L642.486 1332.17 L642.486 1332.17 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 642.486,1332.17 642.486,1455.9 661.868,1455.9 661.868,1332.17 642.486,1332.17 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM661.868 1308.29 L661.868 1455.9 L681.25 1455.9 L681.25 1308.29 L661.868 1308.29 L661.868 1308.29 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 661.868,1308.29 661.868,1455.9 681.25,1455.9 681.25,1308.29 661.868,1308.29 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM681.25 1265.22 L681.25 1455.9 L700.631 1455.9 L700.631 1265.22 L681.25 1265.22 L681.25 1265.22 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 681.25,1265.22 681.25,1455.9 700.631,1455.9 700.631,1265.22 681.25,1265.22 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM700.631 1240.94 L700.631 1455.9 L720.013 1455.9 L720.013 1240.94 L700.631 1240.94 L700.631 1240.94 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 700.631,1240.94 700.631,1455.9 720.013,1455.9 720.013,1240.94 700.631,1240.94 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM720.013 1219.41 L720.013 1455.9 L739.394 1455.9 L739.394 1219.41 L720.013 1219.41 L720.013 1219.41 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 720.013,1219.41 720.013,1455.9 739.394,1455.9 739.394,1219.41 720.013,1219.41 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM739.394 1165.76 L739.394 1455.9 L758.776 1455.9 L758.776 1165.76 L739.394 1165.76 L739.394 1165.76 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 739.394,1165.76 739.394,1455.9 758.776,1455.9 758.776,1165.76 739.394,1165.76 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM758.776 1137.18 L758.776 1455.9 L778.158 1455.9 L778.158 1137.18 L758.776 1137.18 L758.776 1137.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 758.776,1137.18 758.776,1455.9 778.158,1455.9 778.158,1137.18 758.776,1137.18 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM778.158 1089.41 L778.158 1455.9 L797.539 1455.9 L797.539 1089.41 L778.158 1089.41 L778.158 1089.41 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 778.158,1089.41 778.158,1455.9 797.539,1455.9 797.539,1089.41 778.158,1089.41 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM797.539 1029.9 L797.539 1455.9 L816.921 1455.9 L816.921 1029.9 L797.539 1029.9 L797.539 1029.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 797.539,1029.9 797.539,1455.9 816.921,1455.9 816.921,1029.9 797.539,1029.9 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM816.921 962.943 L816.921 1455.9 L836.303 1455.9 L836.303 962.943 L816.921 962.943 L816.921 962.943 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 816.921,962.943 816.921,1455.9 836.303,1455.9 836.303,962.943 816.921,962.943 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM836.303 917.915 L836.303 1455.9 L855.684 1455.9 L855.684 917.915 L836.303 917.915 L836.303 917.915 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 836.303,917.915 836.303,1455.9 855.684,1455.9 855.684,917.915 836.303,917.915 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM855.684 838.822 L855.684 1455.9 L875.066 1455.9 L875.066 838.822 L855.684 838.822 L855.684 838.822 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 855.684,838.822 855.684,1455.9 875.066,1455.9 875.066,838.822 855.684,838.822 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM875.066 773.434 L875.066 1455.9 L894.447 1455.9 L894.447 773.434 L875.066 773.434 L875.066 773.434 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 875.066,773.434 875.066,1455.9 894.447,1455.9 894.447,773.434 875.066,773.434 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM894.447 691.209 L894.447 1455.9 L913.829 1455.9 L913.829 691.209 L894.447 691.209 L894.447 691.209 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 894.447,691.209 894.447,1455.9 913.829,1455.9 913.829,691.209 894.447,691.209 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM913.829 679.462 L913.829 1455.9 L933.211 1455.9 L933.211 679.462 L913.829 679.462 L913.829 679.462 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 913.829,679.462 913.829,1455.9 933.211,1455.9 933.211,679.462 913.829,679.462 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM933.211 608.984 L933.211 1455.9 L952.592 1455.9 L952.592 608.984 L933.211 608.984 L933.211 608.984 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 933.211,608.984 933.211,1455.9 952.592,1455.9 952.592,608.984 933.211,608.984 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM952.592 518.145 L952.592 1455.9 L971.974 1455.9 L971.974 518.145 L952.592 518.145 L952.592 518.145 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 952.592,518.145 952.592,1455.9 971.974,1455.9 971.974,518.145 952.592,518.145 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM971.974 426.523 L971.974 1455.9 L991.356 1455.9 L991.356 426.523 L971.974 426.523 L971.974 426.523 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 971.974,426.523 971.974,1455.9 991.356,1455.9 991.356,426.523 971.974,426.523 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM991.356 382.669 L991.356 1455.9 L1010.74 1455.9 L1010.74 382.669 L991.356 382.669 L991.356 382.669 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 991.356,382.669 991.356,1455.9 1010.74,1455.9 1010.74,382.669 991.356,382.669 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1010.74 330.593 L1010.74 1455.9 L1030.12 1455.9 L1030.12 330.593 L1010.74 330.593 L1010.74 330.593 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1010.74,330.593 1010.74,1455.9 1030.12,1455.9 1030.12,330.593 1010.74,330.593 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1030.12 310.233 L1030.12 1455.9 L1049.5 1455.9 L1049.5 310.233 L1030.12 310.233 L1030.12 310.233 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1030.12,310.233 1030.12,1455.9 1049.5,1455.9 1049.5,310.233 1030.12,310.233 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1049.5 225.267 L1049.5 1455.9 L1068.88 1455.9 L1068.88 225.267 L1049.5 225.267 L1049.5 225.267 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1049.5,225.267 1049.5,1455.9 1068.88,1455.9 1068.88,225.267 1049.5,225.267 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1068.88 278.517 L1068.88 1455.9 L1088.26 1455.9 L1088.26 278.517 L1068.88 278.517 L1068.88 278.517 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1068.88,278.517 1068.88,1455.9 1088.26,1455.9 1088.26,278.517 1068.88,278.517 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1088.26 205.298 L1088.26 1455.9 L1107.65 1455.9 L1107.65 205.298 L1088.26 205.298 L1088.26 205.298 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1088.26,205.298 1088.26,1455.9 1107.65,1455.9 1107.65,205.298 1088.26,205.298 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1107.65 173.974 L1107.65 1455.9 L1127.03 1455.9 L1127.03 173.974 L1107.65 173.974 L1107.65 173.974 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1107.65,173.974 1107.65,1455.9 1127.03,1455.9 1127.03,173.974 1107.65,173.974 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1127.03 183.763 L1127.03 1455.9 L1146.41 1455.9 L1146.41 183.763 L1127.03 183.763 L1127.03 183.763 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1127.03,183.763 1127.03,1455.9 1146.41,1455.9 1146.41,183.763 1127.03,183.763 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1146.41 176.715 L1146.41 1455.9 L1165.79 1455.9 L1165.79 176.715 L1146.41 176.715 L1146.41 176.715 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1146.41,176.715 1146.41,1455.9 1165.79,1455.9 1165.79,176.715 1146.41,176.715 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1165.79 149.698 L1165.79 1455.9 L1185.17 1455.9 L1185.17 149.698 L1165.79 149.698 L1165.79 149.698 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1165.79,149.698 1165.79,1455.9 1185.17,1455.9 1185.17,149.698 1165.79,149.698 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1185.17 206.081 L1185.17 1455.9 L1204.55 1455.9 L1204.55 206.081 L1185.17 206.081 L1185.17 206.081 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1185.17,206.081 1185.17,1455.9 1204.55,1455.9 1204.55,206.081 1185.17,206.081 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1204.55 233.881 L1204.55 1455.9 L1223.94 1455.9 L1223.94 233.881 L1204.55 233.881 L1204.55 233.881 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1204.55,233.881 1204.55,1455.9 1223.94,1455.9 1223.94,233.881 1204.55,233.881 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1223.94 270.687 L1223.94 1455.9 L1243.32 1455.9 L1243.32 270.687 L1223.94 270.687 L1223.94 270.687 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1223.94,270.687 1223.94,1455.9 1243.32,1455.9 1243.32,270.687 1223.94,270.687 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1243.32 310.624 L1243.32 1455.9 L1262.7 1455.9 L1262.7 310.624 L1243.32 310.624 L1243.32 310.624 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1243.32,310.624 1243.32,1455.9 1262.7,1455.9 1262.7,310.624 1243.32,310.624 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1262.7 317.672 L1262.7 1455.9 L1282.08 1455.9 L1282.08 317.672 L1262.7 317.672 L1262.7 317.672 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1262.7,317.672 1262.7,1455.9 1282.08,1455.9 1282.08,317.672 1262.7,317.672 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1282.08 376.013 L1282.08 1455.9 L1301.46 1455.9 L1301.46 376.013 L1282.08 376.013 L1282.08 376.013 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1282.08,376.013 1282.08,1455.9 1301.46,1455.9 1301.46,376.013 1282.08,376.013 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1301.46 432.004 L1301.46 1455.9 L1320.84 1455.9 L1320.84 432.004 L1301.46 432.004 L1301.46 432.004 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1301.46,432.004 1301.46,1455.9 1320.84,1455.9 1320.84,432.004 1301.46,432.004 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1320.84 482.905 L1320.84 1455.9 L1340.22 1455.9 L1340.22 482.905 L1320.84 482.905 L1320.84 482.905 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1320.84,482.905 1320.84,1455.9 1340.22,1455.9 1340.22,482.905 1320.84,482.905 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1340.22 562.39 L1340.22 1455.9 L1359.61 1455.9 L1359.61 562.39 L1340.22 562.39 L1340.22 562.39 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1340.22,562.39 1340.22,1455.9 1359.61,1455.9 1359.61,562.39 1340.22,562.39 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1359.61 629.736 L1359.61 1455.9 L1378.99 1455.9 L1378.99 629.736 L1359.61 629.736 L1359.61 629.736 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1359.61,629.736 1359.61,1455.9 1378.99,1455.9 1378.99,629.736 1359.61,629.736 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1378.99 682.595 L1378.99 1455.9 L1398.37 1455.9 L1398.37 682.595 L1378.99 682.595 L1378.99 682.595 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1378.99,682.595 1378.99,1455.9 1398.37,1455.9 1398.37,682.595 1378.99,682.595 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1398.37 734.279 L1398.37 1455.9 L1417.75 1455.9 L1417.75 734.279 L1398.37 734.279 L1398.37 734.279 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1398.37,734.279 1398.37,1455.9 1417.75,1455.9 1417.75,734.279 1398.37,734.279 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1417.75 812.197 L1417.75 1455.9 L1437.13 1455.9 L1437.13 812.197 L1417.75 812.197 L1417.75 812.197 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1417.75,812.197 1417.75,1455.9 1437.13,1455.9 1437.13,812.197 1417.75,812.197 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1437.13 891.681 L1437.13 1455.9 L1456.51 1455.9 L1456.51 891.681 L1437.13 891.681 L1437.13 891.681 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1437.13,891.681 1437.13,1455.9 1456.51,1455.9 1456.51,891.681 1437.13,891.681 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1456.51 934.752 L1456.51 1455.9 L1475.9 1455.9 L1475.9 934.752 L1456.51 934.752 L1456.51 934.752 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1456.51,934.752 1456.51,1455.9 1475.9,1455.9 1475.9,934.752 1456.51,934.752 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1475.9 963.335 L1475.9 1455.9 L1495.28 1455.9 L1495.28 963.335 L1475.9 963.335 L1475.9 963.335 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1475.9,963.335 1475.9,1455.9 1495.28,1455.9 1495.28,963.335 1475.9,963.335 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1495.28 1010.71 L1495.28 1455.9 L1514.66 1455.9 L1514.66 1010.71 L1495.28 1010.71 L1495.28 1010.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1495.28,1010.71 1495.28,1455.9 1514.66,1455.9 1514.66,1010.71 1495.28,1010.71 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1514.66 1067.09 L1514.66 1455.9 L1534.04 1455.9 L1534.04 1067.09 L1514.66 1067.09 L1514.66 1067.09 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1514.66,1067.09 1514.66,1455.9 1534.04,1455.9 1534.04,1067.09 1514.66,1067.09 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1534.04 1134.05 L1534.04 1455.9 L1553.42 1455.9 L1553.42 1134.05 L1534.04 1134.05 L1534.04 1134.05 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1534.04,1134.05 1534.04,1455.9 1553.42,1455.9 1553.42,1134.05 1534.04,1134.05 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1553.42 1168.51 L1553.42 1455.9 L1572.8 1455.9 L1572.8 1168.51 L1553.42 1168.51 L1553.42 1168.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1553.42,1168.51 1553.42,1455.9 1572.8,1455.9 1572.8,1168.51 1553.42,1168.51 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1572.8 1202.18 L1572.8 1455.9 L1592.19 1455.9 L1592.19 1202.18 L1572.8 1202.18 L1572.8 1202.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1572.8,1202.18 1572.8,1455.9 1592.19,1455.9 1592.19,1202.18 1572.8,1202.18 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1592.19 1231.15 L1592.19 1455.9 L1611.57 1455.9 L1611.57 1231.15 L1592.19 1231.15 L1592.19 1231.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1592.19,1231.15 1592.19,1455.9 1611.57,1455.9 1611.57,1231.15 1592.19,1231.15 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1611.57 1258.56 L1611.57 1455.9 L1630.95 1455.9 L1630.95 1258.56 L1611.57 1258.56 L1611.57 1258.56 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1611.57,1258.56 1611.57,1455.9 1630.95,1455.9 1630.95,1258.56 1611.57,1258.56 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1630.95 1299.28 L1630.95 1455.9 L1650.33 1455.9 L1650.33 1299.28 L1630.95 1299.28 L1630.95 1299.28 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1630.95,1299.28 1630.95,1455.9 1650.33,1455.9 1650.33,1299.28 1630.95,1299.28 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1650.33 1315.73 L1650.33 1455.9 L1669.71 1455.9 L1669.71 1315.73 L1650.33 1315.73 L1650.33 1315.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1650.33,1315.73 1650.33,1455.9 1669.71,1455.9 1669.71,1315.73 1650.33,1315.73 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1669.71 1346.66 L1669.71 1455.9 L1689.09 1455.9 L1689.09 1346.66 L1669.71 1346.66 L1669.71 1346.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1669.71,1346.66 1669.71,1455.9 1689.09,1455.9 1689.09,1346.66 1669.71,1346.66 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1689.09 1359.58 L1689.09 1455.9 L1708.48 1455.9 L1708.48 1359.58 L1689.09 1359.58 L1689.09 1359.58 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1689.09,1359.58 1689.09,1455.9 1708.48,1455.9 1708.48,1359.58 1689.09,1359.58 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1708.48 1364.28 L1708.48 1455.9 L1727.86 1455.9 L1727.86 1364.28 L1708.48 1364.28 L1708.48 1364.28 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1708.48,1364.28 1708.48,1455.9 1727.86,1455.9 1727.86,1364.28 1708.48,1364.28 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1727.86 1383.86 L1727.86 1455.9 L1747.24 1455.9 L1747.24 1383.86 L1727.86 1383.86 L1727.86 1383.86 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1727.86,1383.86 1727.86,1455.9 1747.24,1455.9 1747.24,1383.86 1727.86,1383.86 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1747.24 1395.21 L1747.24 1455.9 L1766.62 1455.9 L1766.62 1395.21 L1747.24 1395.21 L1747.24 1395.21 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1747.24,1395.21 1747.24,1455.9 1766.62,1455.9 1766.62,1395.21 1747.24,1395.21 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1766.62 1403.04 L1766.62 1455.9 L1786 1455.9 L1786 1403.04 L1766.62 1403.04 L1766.62 1403.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1766.62,1403.04 1766.62,1455.9 1786,1455.9 1786,1403.04 1766.62,1403.04 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1786 1417.14 L1786 1455.9 L1805.38 1455.9 L1805.38 1417.14 L1786 1417.14 L1786 1417.14 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1786,1417.14 1786,1455.9 1805.38,1455.9 1805.38,1417.14 1786,1417.14 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1805.38 1421.84 L1805.38 1455.9 L1824.77 1455.9 L1824.77 1421.84 L1805.38 1421.84 L1805.38 1421.84 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1805.38,1421.84 1805.38,1455.9 1824.77,1455.9 1824.77,1421.84 1805.38,1421.84 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1824.77 1430.84 L1824.77 1455.9 L1844.15 1455.9 L1844.15 1430.84 L1824.77 1430.84 L1824.77 1430.84 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1824.77,1430.84 1824.77,1455.9 1844.15,1455.9 1844.15,1430.84 1824.77,1430.84 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1844.15 1430.06 L1844.15 1455.9 L1863.53 1455.9 L1863.53 1430.06 L1844.15 1430.06 L1844.15 1430.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1844.15,1430.06 1844.15,1455.9 1863.53,1455.9 1863.53,1430.06 1844.15,1430.06 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1863.53 1434.37 L1863.53 1455.9 L1882.91 1455.9 L1882.91 1434.37 L1863.53 1434.37 L1863.53 1434.37 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1863.53,1434.37 1863.53,1455.9 1882.91,1455.9 1882.91,1434.37 1863.53,1434.37 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1882.91 1438.28 L1882.91 1455.9 L1902.29 1455.9 L1902.29 1438.28 L1882.91 1438.28 L1882.91 1438.28 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1882.91,1438.28 1882.91,1455.9 1902.29,1455.9 1902.29,1438.28 1882.91,1438.28 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1902.29 1446.9 L1902.29 1455.9 L1921.67 1455.9 L1921.67 1446.9 L1902.29 1446.9 L1902.29 1446.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1902.29,1446.9 1902.29,1455.9 1921.67,1455.9 1921.67,1446.9 1902.29,1446.9 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1921.67 1446.9 L1921.67 1455.9 L1941.06 1455.9 L1941.06 1446.9 L1921.67 1446.9 L1921.67 1446.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1921.67,1446.9 1921.67,1455.9 1941.06,1455.9 1941.06,1446.9 1921.67,1446.9 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1941.06 1447.68 L1941.06 1455.9 L1960.44 1455.9 L1960.44 1447.68 L1941.06 1447.68 L1941.06 1447.68 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1941.06,1447.68 1941.06,1455.9 1960.44,1455.9 1960.44,1447.68 1941.06,1447.68 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1960.44 1448.85 L1960.44 1455.9 L1979.82 1455.9 L1979.82 1448.85 L1960.44 1448.85 L1960.44 1448.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1960.44,1448.85 1960.44,1455.9 1979.82,1455.9 1979.82,1448.85 1960.44,1448.85 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1979.82 1451.99 L1979.82 1455.9 L1999.2 1455.9 L1999.2 1451.99 L1979.82 1451.99 L1979.82 1451.99 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1979.82,1451.99 1979.82,1455.9 1999.2,1455.9 1999.2,1451.99 1979.82,1451.99 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM1999.2 1451.99 L1999.2 1455.9 L2018.58 1455.9 L2018.58 1451.99 L1999.2 1451.99 L1999.2 1451.99 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1999.2,1451.99 1999.2,1455.9 2018.58,1455.9 2018.58,1451.99 1999.2,1451.99 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2018.58 1453.94 L2018.58 1455.9 L2037.96 1455.9 L2037.96 1453.94 L2018.58 1453.94 L2018.58 1453.94 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2018.58,1453.94 2018.58,1455.9 2037.96,1455.9 2037.96,1453.94 2018.58,1453.94 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2037.96 1453.55 L2037.96 1455.9 L2057.35 1455.9 L2057.35 1453.55 L2037.96 1453.55 L2037.96 1453.55 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2037.96,1453.55 2037.96,1455.9 2057.35,1455.9 2057.35,1453.55 2037.96,1453.55 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2057.35 1455.12 L2057.35 1455.9 L2076.73 1455.9 L2076.73 1455.12 L2057.35 1455.12 L2057.35 1455.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2057.35,1455.12 2057.35,1455.9 2076.73,1455.9 2076.73,1455.12 2057.35,1455.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2076.73 1454.34 L2076.73 1455.9 L2096.11 1455.9 L2096.11 1454.34 L2076.73 1454.34 L2076.73 1454.34 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2076.73,1454.34 2076.73,1455.9 2096.11,1455.9 2096.11,1454.34 2076.73,1454.34 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2096.11 1455.12 L2096.11 1455.9 L2115.49 1455.9 L2115.49 1455.12 L2096.11 1455.12 L2096.11 1455.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2096.11,1455.12 2096.11,1455.9 2115.49,1455.9 2115.49,1455.12 2096.11,1455.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2115.49 1455.12 L2115.49 1455.9 L2134.87 1455.9 L2134.87 1455.12 L2115.49 1455.12 L2115.49 1455.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2115.49,1455.12 2115.49,1455.9 2134.87,1455.9 2134.87,1455.12 2115.49,1455.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2134.87 1453.55 L2134.87 1455.9 L2154.25 1455.9 L2154.25 1453.55 L2134.87 1453.55 L2134.87 1453.55 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2134.87,1453.55 2134.87,1455.9 2154.25,1455.9 2154.25,1453.55 2134.87,1453.55 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2154.25 1455.12 L2154.25 1455.9 L2173.63 1455.9 L2173.63 1455.12 L2154.25 1455.12 L2154.25 1455.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2154.25,1455.12 2154.25,1455.9 2173.63,1455.9 2173.63,1455.12 2154.25,1455.12 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2173.63 1455.9 L2173.63 1455.9 L2193.02 1455.9 L2193.02 1455.9 L2173.63 1455.9 L2173.63 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2173.63,1455.9 2173.63,1455.9 2193.02,1455.9 2173.63,1455.9 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2193.02 1455.9 L2193.02 1455.9 L2212.4 1455.9 L2212.4 1455.9 L2193.02 1455.9 L2193.02 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2193.02,1455.9 2193.02,1455.9 2212.4,1455.9 2193.02,1455.9 \n \"/>\n<path clip-path=\"url(#clip002)\" d=\"\nM2212.4 1455.51 L2212.4 1455.9 L2231.78 1455.9 L2231.78 1455.51 L2212.4 1455.51 L2212.4 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2212.4,1455.51 2212.4,1455.9 2231.78,1455.9 2231.78,1455.51 2212.4,1455.51 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 687.267,2879.66 687.267,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1159.14,2879.66 1159.14,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip002)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1631.02,2879.66 1631.02,-1274.06 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"\nM1891.16 338.105 L2279.44 338.105 L2279.44 156.665 L1891.16 156.665 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.16,338.105 2279.44,338.105 2279.44,156.665 1891.16,156.665 1891.16,338.105 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"\nM1915.6 241.337 L2062.23 241.337 L2062.23 192.953 L1915.6 192.953 L1915.6 241.337 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1915.6,241.337 2062.23,241.337 2062.23,192.953 1915.6,192.953 1915.6,241.337 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"M 0 0 M2086.67 198.406 L2090.93 198.406 L2090.93 234.425 L2086.67 234.425 L2086.67 198.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2105.45 211.485 Q2102.02 211.485 2100.03 214.17 Q2098.04 216.832 2098.04 221.485 Q2098.04 226.138 2100.01 228.823 Q2102 231.485 2105.45 231.485 Q2108.85 231.485 2110.84 228.8 Q2112.83 226.115 2112.83 221.485 Q2112.83 216.878 2110.84 214.193 Q2108.85 211.485 2105.45 211.485 M2105.45 207.874 Q2111 207.874 2114.17 211.485 Q2117.34 215.096 2117.34 221.485 Q2117.34 227.851 2114.17 231.485 Q2111 235.096 2105.45 235.096 Q2099.87 235.096 2096.7 231.485 Q2093.55 227.851 2093.55 221.485 Q2093.55 215.096 2096.7 211.485 Q2099.87 207.874 2105.45 207.874 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2138.34 209.263 L2138.34 213.291 Q2136.53 212.365 2134.59 211.902 Q2132.65 211.439 2130.56 211.439 Q2127.39 211.439 2125.79 212.411 Q2124.22 213.383 2124.22 215.328 Q2124.22 216.809 2125.35 217.665 Q2126.49 218.499 2129.91 219.263 L2131.37 219.587 Q2135.91 220.559 2137.81 222.341 Q2139.73 224.101 2139.73 227.272 Q2139.73 230.883 2136.86 232.989 Q2134.01 235.096 2129.01 235.096 Q2126.93 235.096 2124.66 234.679 Q2122.41 234.286 2119.91 233.476 L2119.91 229.077 Q2122.28 230.304 2124.57 230.929 Q2126.86 231.531 2129.1 231.531 Q2132.11 231.531 2133.73 230.513 Q2135.35 229.471 2135.35 227.596 Q2135.35 225.86 2134.17 224.934 Q2133.02 224.008 2129.06 223.152 L2127.58 222.804 Q2123.62 221.971 2121.86 220.258 Q2120.1 218.522 2120.1 215.513 Q2120.1 211.855 2122.69 209.865 Q2125.28 207.874 2130.05 207.874 Q2132.41 207.874 2134.5 208.221 Q2136.58 208.568 2138.34 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2160.72 209.263 L2160.72 213.291 Q2158.92 212.365 2156.97 211.902 Q2155.03 211.439 2152.95 211.439 Q2149.78 211.439 2148.18 212.411 Q2146.6 213.383 2146.6 215.328 Q2146.6 216.809 2147.74 217.665 Q2148.87 218.499 2152.3 219.263 L2153.76 219.587 Q2158.29 220.559 2160.19 222.341 Q2162.11 224.101 2162.11 227.272 Q2162.11 230.883 2159.24 232.989 Q2156.4 235.096 2151.4 235.096 Q2149.31 235.096 2147.04 234.679 Q2144.8 234.286 2142.3 233.476 L2142.3 229.077 Q2144.66 230.304 2146.95 230.929 Q2149.24 231.531 2151.49 231.531 Q2154.5 231.531 2156.12 230.513 Q2157.74 229.471 2157.74 227.596 Q2157.74 225.86 2156.56 224.934 Q2155.4 224.008 2151.44 223.152 L2149.96 222.804 Q2146 221.971 2144.24 220.258 Q2142.48 218.522 2142.48 215.513 Q2142.48 211.855 2145.08 209.865 Q2147.67 207.874 2152.44 207.874 Q2154.8 207.874 2156.88 208.221 Q2158.96 208.568 2160.72 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip000)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1915.6,277.625 2062.23,277.625 \n \"/>\n<path clip-path=\"url(#clip000)\" d=\"M 0 0 M2086.67 304.766 L2086.67 268.979 L2090.93 268.979 L2090.93 285.09 Q2090.93 288.446 2092.53 290.159 Q2094.13 291.872 2097.25 291.872 Q2100.68 291.872 2102.39 289.928 Q2104.13 287.983 2104.13 284.095 L2104.13 268.979 L2108.39 268.979 L2108.39 288.932 Q2108.39 290.321 2108.78 290.993 Q2109.2 291.641 2110.05 291.641 Q2110.26 291.641 2110.63 291.525 Q2111 291.386 2111.65 291.108 L2111.65 294.534 Q2110.7 295.067 2109.84 295.321 Q2109.01 295.576 2108.2 295.576 Q2106.6 295.576 2105.65 294.673 Q2104.71 293.77 2104.36 291.919 Q2103.2 293.747 2101.51 294.673 Q2099.84 295.576 2097.58 295.576 Q2095.22 295.576 2093.55 294.673 Q2091.9 293.77 2090.93 291.965 L2090.93 304.766 L2086.67 304.766 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2148.53 265.183 L2148.53 274.141 L2161.42 274.141 L2161.42 278.076 L2148.53 278.076 L2148.53 287.034 L2144.64 287.034 L2144.64 278.076 L2131.74 278.076 L2131.74 274.141 L2144.64 274.141 L2144.64 265.183 L2148.53 265.183 M2131.74 290.969 L2161.42 290.969 L2161.42 294.905 L2131.74 294.905 L2131.74 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2185.59 290.969 L2201.9 290.969 L2201.9 294.905 L2179.96 294.905 L2179.96 290.969 Q2182.62 288.215 2187.21 283.585 Q2191.81 278.933 2192.99 277.59 Q2195.24 275.067 2196.12 273.331 Q2197.02 271.571 2197.02 269.882 Q2197.02 267.127 2195.08 265.391 Q2193.15 263.655 2190.05 263.655 Q2187.85 263.655 2185.4 264.419 Q2182.97 265.183 2180.19 266.734 L2180.19 262.011 Q2183.02 260.877 2185.47 260.298 Q2187.92 259.72 2189.96 259.72 Q2195.33 259.72 2198.52 262.405 Q2201.72 265.09 2201.72 269.581 Q2201.72 271.71 2200.91 273.632 Q2200.12 275.53 2198.02 278.122 Q2197.44 278.794 2194.33 282.011 Q2191.23 285.206 2185.59 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M 0 0 M2216.42 272.358 Q2212.9 272.358 2211 274.905 Q2209.01 277.567 2209.01 281.965 Q2209.01 286.618 2210.98 289.303 Q2212.97 291.965 2216.42 291.965 Q2219.82 291.965 2221.81 289.28 Q2223.8 286.595 2223.8 281.965 Q2223.8 277.729 2221.81 274.905 Q2219.98 272.358 2216.42 272.358 M2216.42 268.979 L2230.56 268.979 L2230.56 273.238 L2225.79 273.238 Q2228.32 276.849 2228.32 281.965 Q2228.32 288.331 2225.15 291.942 Q2221.97 295.576 2216.42 295.576 Q2210.84 295.576 2207.69 291.942 Q2204.52 288.331 2204.52 281.965 Q2204.52 275.553 2207.69 271.965 Q2210.31 268.979 2216.42 268.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time simulate_loss(; estfunc=est_corrected_jeffreys)",
"execution_count": 12,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 47.89219416971975, σ = 2.429885336073135)\n 3.417961 seconds (195.07 k allocations: 10.304 MiB, 2.15% compilation time)\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 12,
"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=\"clip040\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip040)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip041\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip040)\" d=\"\nM153.259 1495.09 L2352.76 1495.09 L2352.76 110.512 L153.259 110.512 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip042\">\n <rect x=\"153\" y=\"110\" width=\"2200\" height=\"1386\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 181.019,1495.09 181.019,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 274.235,1495.09 274.235,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 367.452,1495.09 367.452,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 460.668,1495.09 460.668,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 553.885,1495.09 553.885,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 647.101,1495.09 647.101,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 740.317,1495.09 740.317,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 833.534,1495.09 833.534,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 926.75,1495.09 926.75,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1019.97,1495.09 1019.97,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1113.18,1495.09 1113.18,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1206.4,1495.09 1206.4,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1299.62,1495.09 1299.62,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1392.83,1495.09 1392.83,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1486.05,1495.09 1486.05,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1579.26,1495.09 1579.26,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1672.48,1495.09 1672.48,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1765.7,1495.09 1765.7,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1858.91,1495.09 1858.91,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1952.13,1495.09 1952.13,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2045.35,1495.09 2045.35,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2138.56,1495.09 2138.56,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2231.78,1495.09 2231.78,110.512 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2325,1495.09 2325,110.512 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 2352.76,1495.09 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 181.019,1495.09 181.019,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 274.235,1495.09 274.235,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 367.452,1495.09 367.452,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 460.668,1495.09 460.668,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 553.885,1495.09 553.885,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 647.101,1495.09 647.101,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 740.317,1495.09 740.317,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 833.534,1495.09 833.534,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 926.75,1495.09 926.75,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1019.97,1495.09 1019.97,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1113.18,1495.09 1113.18,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1206.4,1495.09 1206.4,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1299.62,1495.09 1299.62,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1392.83,1495.09 1392.83,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1486.05,1495.09 1486.05,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1579.26,1495.09 1579.26,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1672.48,1495.09 1672.48,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1765.7,1495.09 1765.7,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1858.91,1495.09 1858.91,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1952.13,1495.09 1952.13,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2045.35,1495.09 2045.35,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2138.56,1495.09 2138.56,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2231.78,1495.09 2231.78,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2325,1495.09 2325,1478.47 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"M 0 0 M174.413 1531.42 Q176.93 1531.95 178.337 1533.66 Q179.76 1535.36 179.76 1537.86 Q179.76 1541.69 177.121 1543.79 Q174.483 1545.9 169.621 1545.9 Q167.99 1545.9 166.253 1545.57 Q164.535 1545.25 162.694 1544.61 L162.694 1541.23 Q164.153 1542.08 165.889 1542.51 Q167.625 1542.94 169.517 1542.94 Q172.816 1542.94 174.535 1541.64 Q176.271 1540.34 176.271 1537.86 Q176.271 1535.57 174.656 1534.28 Q173.059 1532.98 170.194 1532.98 L167.174 1532.98 L167.174 1530.1 L170.333 1530.1 Q172.92 1530.1 174.292 1529.07 Q175.663 1528.03 175.663 1526.09 Q175.663 1524.09 174.239 1523.03 Q172.833 1521.95 170.194 1521.95 Q168.753 1521.95 167.104 1522.27 Q165.455 1522.58 163.476 1523.24 L163.476 1520.11 Q165.472 1519.56 167.208 1519.28 Q168.962 1519 170.507 1519 Q174.5 1519 176.826 1520.83 Q179.153 1522.63 179.153 1525.72 Q179.153 1527.87 177.92 1529.37 Q176.687 1530.84 174.413 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M182.677 1519.47 L199.344 1519.47 L199.344 1520.96 L189.934 1545.39 L186.271 1545.39 L195.125 1522.42 L182.677 1522.42 L182.677 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M267.326 1531.42 Q269.843 1531.95 271.249 1533.66 Q272.673 1535.36 272.673 1537.86 Q272.673 1541.69 270.034 1543.79 Q267.395 1545.9 262.534 1545.9 Q260.902 1545.9 259.166 1545.57 Q257.447 1545.25 255.607 1544.61 L255.607 1541.23 Q257.065 1542.08 258.801 1542.51 Q260.538 1542.94 262.43 1542.94 Q265.728 1542.94 267.447 1541.64 Q269.183 1540.34 269.183 1537.86 Q269.183 1535.57 267.569 1534.28 Q265.972 1532.98 263.107 1532.98 L260.086 1532.98 L260.086 1530.1 L263.246 1530.1 Q265.833 1530.1 267.204 1529.07 Q268.576 1528.03 268.576 1526.09 Q268.576 1524.09 267.152 1523.03 Q265.746 1521.95 263.107 1521.95 Q261.666 1521.95 260.017 1522.27 Q258.367 1522.58 256.388 1523.24 L256.388 1520.11 Q258.385 1519.56 260.121 1519.28 Q261.874 1519 263.419 1519 Q267.412 1519 269.739 1520.83 Q272.065 1522.63 272.065 1525.72 Q272.065 1527.87 270.833 1529.37 Q269.6 1530.84 267.326 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M283.975 1533.08 Q281.475 1533.08 280.034 1534.42 Q278.61 1535.76 278.61 1538.1 Q278.61 1540.44 280.034 1541.78 Q281.475 1543.12 283.975 1543.12 Q286.475 1543.12 287.916 1541.78 Q289.357 1540.43 289.357 1538.1 Q289.357 1535.76 287.916 1534.42 Q286.492 1533.08 283.975 1533.08 M280.468 1531.59 Q278.211 1531.03 276.944 1529.49 Q275.694 1527.94 275.694 1525.72 Q275.694 1522.61 277.899 1520.81 Q280.121 1519 283.975 1519 Q287.846 1519 290.051 1520.81 Q292.256 1522.61 292.256 1525.72 Q292.256 1527.94 290.989 1529.49 Q289.739 1531.03 287.499 1531.59 Q290.034 1532.18 291.44 1533.9 Q292.864 1535.62 292.864 1538.1 Q292.864 1541.87 290.555 1543.88 Q288.263 1545.9 283.975 1545.9 Q279.687 1545.9 277.378 1543.88 Q275.086 1541.87 275.086 1538.1 Q275.086 1535.62 276.51 1533.9 Q277.933 1532.18 280.468 1531.59 M279.183 1526.05 Q279.183 1528.07 280.433 1529.19 Q281.701 1530.32 283.975 1530.32 Q286.232 1530.32 287.499 1529.19 Q288.784 1528.07 288.784 1526.05 Q288.784 1524.04 287.499 1522.91 Q286.232 1521.78 283.975 1521.78 Q281.701 1521.78 280.433 1522.91 Q279.183 1524.04 279.183 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M360.577 1531.42 Q363.094 1531.95 364.5 1533.66 Q365.924 1535.36 365.924 1537.86 Q365.924 1541.69 363.285 1543.79 Q360.646 1545.9 355.785 1545.9 Q354.153 1545.9 352.417 1545.57 Q350.698 1545.25 348.858 1544.61 L348.858 1541.23 Q350.316 1542.08 352.053 1542.51 Q353.789 1542.94 355.681 1542.94 Q358.98 1542.94 360.698 1541.64 Q362.434 1540.34 362.434 1537.86 Q362.434 1535.57 360.82 1534.28 Q359.223 1532.98 356.358 1532.98 L353.337 1532.98 L353.337 1530.1 L356.497 1530.1 Q359.084 1530.1 360.455 1529.07 Q361.827 1528.03 361.827 1526.09 Q361.827 1524.09 360.403 1523.03 Q358.997 1521.95 356.358 1521.95 Q354.917 1521.95 353.268 1522.27 Q351.619 1522.58 349.639 1523.24 L349.639 1520.11 Q351.636 1519.56 353.372 1519.28 Q355.125 1519 356.671 1519 Q360.664 1519 362.99 1520.83 Q365.316 1522.63 365.316 1525.72 Q365.316 1527.87 364.084 1529.37 Q362.851 1530.84 360.577 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M369.83 1544.85 L369.83 1541.66 Q371.15 1542.28 372.504 1542.61 Q373.858 1542.94 375.16 1542.94 Q378.632 1542.94 380.455 1540.62 Q382.295 1538.27 382.556 1533.52 Q381.549 1535.01 380.004 1535.81 Q378.459 1536.61 376.584 1536.61 Q372.695 1536.61 370.42 1534.26 Q368.164 1531.9 368.164 1527.82 Q368.164 1523.83 370.525 1521.42 Q372.886 1519 376.809 1519 Q381.306 1519 383.667 1522.46 Q386.045 1525.9 386.045 1532.46 Q386.045 1538.59 383.129 1542.25 Q380.229 1545.9 375.316 1545.9 Q373.997 1545.9 372.643 1545.63 Q371.289 1545.37 369.83 1544.85 M376.809 1533.86 Q379.17 1533.86 380.542 1532.25 Q381.931 1530.64 381.931 1527.82 Q381.931 1525.03 380.542 1523.41 Q379.17 1521.78 376.809 1521.78 Q374.448 1521.78 373.059 1523.41 Q371.688 1525.03 371.688 1527.82 Q371.688 1530.64 373.059 1532.25 Q374.448 1533.86 376.809 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M452.795 1522.53 L443.941 1536.36 L452.795 1536.36 L452.795 1522.53 M451.875 1519.47 L456.285 1519.47 L456.285 1536.36 L459.982 1536.36 L459.982 1539.28 L456.285 1539.28 L456.285 1545.39 L452.795 1545.39 L452.795 1539.28 L441.094 1539.28 L441.094 1535.9 L451.875 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M471.284 1521.78 Q468.576 1521.78 467.205 1524.45 Q465.85 1527.11 465.85 1532.46 Q465.85 1537.79 467.205 1540.46 Q468.576 1543.12 471.284 1543.12 Q474.01 1543.12 475.364 1540.46 Q476.736 1537.79 476.736 1532.46 Q476.736 1527.11 475.364 1524.45 Q474.01 1521.78 471.284 1521.78 M471.284 1519 Q475.642 1519 477.934 1522.46 Q480.243 1525.9 480.243 1532.46 Q480.243 1539 477.934 1542.46 Q475.642 1545.9 471.284 1545.9 Q466.927 1545.9 464.618 1542.46 Q462.326 1539 462.326 1532.46 Q462.326 1525.9 464.618 1522.46 Q466.927 1519 471.284 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M546.471 1522.53 L537.617 1536.36 L546.471 1536.36 L546.471 1522.53 M545.551 1519.47 L549.961 1519.47 L549.961 1536.36 L553.659 1536.36 L553.659 1539.28 L549.961 1539.28 L549.961 1545.39 L546.471 1545.39 L546.471 1539.28 L534.77 1539.28 L534.77 1535.9 L545.551 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M558.069 1542.44 L563.798 1542.44 L563.798 1522.67 L557.565 1523.92 L557.565 1520.72 L563.763 1519.47 L567.27 1519.47 L567.27 1542.44 L572.999 1542.44 L572.999 1545.39 L558.069 1545.39 L558.069 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M639.827 1522.53 L630.973 1536.36 L639.827 1536.36 L639.827 1522.53 M638.907 1519.47 L643.316 1519.47 L643.316 1536.36 L647.014 1536.36 L647.014 1539.28 L643.316 1539.28 L643.316 1545.39 L639.827 1545.39 L639.827 1539.28 L628.125 1539.28 L628.125 1535.9 L638.907 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M653.837 1542.44 L666.077 1542.44 L666.077 1545.39 L649.618 1545.39 L649.618 1542.44 Q651.615 1540.37 655.052 1536.9 Q658.507 1533.41 659.393 1532.41 Q661.077 1530.51 661.736 1529.21 Q662.413 1527.89 662.413 1526.62 Q662.413 1524.56 660.955 1523.26 Q659.514 1521.95 657.188 1521.95 Q655.538 1521.95 653.698 1522.53 Q651.875 1523.1 649.792 1524.26 L649.792 1520.72 Q651.91 1519.87 653.75 1519.44 Q655.59 1519 657.118 1519 Q661.146 1519 663.542 1521.02 Q665.938 1523.03 665.938 1526.4 Q665.938 1528 665.33 1529.44 Q664.74 1530.86 663.16 1532.81 Q662.726 1533.31 660.399 1535.72 Q658.073 1538.12 653.837 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M732.687 1522.53 L723.833 1536.36 L732.687 1536.36 L732.687 1522.53 M731.767 1519.47 L736.177 1519.47 L736.177 1536.36 L739.875 1536.36 L739.875 1539.28 L736.177 1539.28 L736.177 1545.39 L732.687 1545.39 L732.687 1539.28 L720.986 1539.28 L720.986 1535.9 L731.767 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M754.302 1531.42 Q756.819 1531.95 758.225 1533.66 Q759.649 1535.36 759.649 1537.86 Q759.649 1541.69 757.01 1543.79 Q754.371 1545.9 749.51 1545.9 Q747.878 1545.9 746.142 1545.57 Q744.423 1545.25 742.583 1544.61 L742.583 1541.23 Q744.041 1542.08 745.777 1542.51 Q747.513 1542.94 749.406 1542.94 Q752.704 1542.94 754.423 1541.64 Q756.159 1540.34 756.159 1537.86 Q756.159 1535.57 754.545 1534.28 Q752.947 1532.98 750.083 1532.98 L747.062 1532.98 L747.062 1530.1 L750.222 1530.1 Q752.809 1530.1 754.18 1529.07 Q755.552 1528.03 755.552 1526.09 Q755.552 1524.09 754.128 1523.03 Q752.722 1521.95 750.083 1521.95 Q748.642 1521.95 746.993 1522.27 Q745.343 1522.58 743.364 1523.24 L743.364 1520.11 Q745.361 1519.56 747.097 1519.28 Q748.85 1519 750.395 1519 Q754.388 1519 756.715 1520.83 Q759.041 1522.63 759.041 1525.72 Q759.041 1527.87 757.809 1529.37 Q756.576 1530.84 754.302 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M825.478 1522.53 L816.624 1536.36 L825.478 1536.36 L825.478 1522.53 M824.558 1519.47 L828.968 1519.47 L828.968 1536.36 L832.666 1536.36 L832.666 1539.28 L828.968 1539.28 L828.968 1545.39 L825.478 1545.39 L825.478 1539.28 L813.777 1539.28 L813.777 1535.9 L824.558 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M846.103 1522.53 L837.249 1536.36 L846.103 1536.36 L846.103 1522.53 M845.183 1519.47 L849.593 1519.47 L849.593 1536.36 L853.291 1536.36 L853.291 1539.28 L849.593 1539.28 L849.593 1545.39 L846.103 1545.39 L846.103 1539.28 L834.402 1539.28 L834.402 1535.9 L845.183 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M919.25 1522.53 L910.396 1536.36 L919.25 1536.36 L919.25 1522.53 M918.33 1519.47 L922.74 1519.47 L922.74 1536.36 L926.438 1536.36 L926.438 1539.28 L922.74 1539.28 L922.74 1545.39 L919.25 1545.39 L919.25 1539.28 L907.549 1539.28 L907.549 1535.9 L918.33 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M930.274 1519.47 L944.042 1519.47 L944.042 1522.42 L933.486 1522.42 L933.486 1528.78 Q934.25 1528.52 935.014 1528.4 Q935.778 1528.26 936.542 1528.26 Q940.882 1528.26 943.417 1530.64 Q945.951 1533.01 945.951 1537.08 Q945.951 1541.26 943.347 1543.59 Q940.743 1545.9 936.004 1545.9 Q934.372 1545.9 932.67 1545.62 Q930.986 1545.34 929.181 1544.78 L929.181 1541.26 Q930.743 1542.11 932.41 1542.53 Q934.076 1542.94 935.934 1542.94 Q938.938 1542.94 940.691 1541.36 Q942.444 1539.78 942.444 1537.08 Q942.444 1534.37 940.691 1532.79 Q938.938 1531.21 935.934 1531.21 Q934.528 1531.21 933.122 1531.52 Q931.733 1531.83 930.274 1532.49 L930.274 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1012.03 1522.53 L1003.18 1536.36 L1012.03 1536.36 L1012.03 1522.53 M1011.11 1519.47 L1015.52 1519.47 L1015.52 1536.36 L1019.22 1536.36 L1019.22 1539.28 L1015.52 1539.28 L1015.52 1545.39 L1012.03 1545.39 L1012.03 1539.28 L1000.33 1539.28 L1000.33 1535.9 L1011.11 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1030.96 1531.03 Q1028.59 1531.03 1027.21 1532.65 Q1025.83 1534.26 1025.83 1537.08 Q1025.83 1539.87 1027.21 1541.5 Q1028.59 1543.12 1030.96 1543.12 Q1033.32 1543.12 1034.69 1541.5 Q1036.08 1539.87 1036.08 1537.08 Q1036.08 1534.26 1034.69 1532.65 Q1033.32 1531.03 1030.96 1531.03 M1037.92 1520.04 L1037.92 1523.24 Q1036.6 1522.61 1035.24 1522.28 Q1033.91 1521.95 1032.59 1521.95 Q1029.12 1521.95 1027.28 1524.3 Q1025.45 1526.64 1025.19 1531.38 Q1026.22 1529.87 1027.76 1529.07 Q1029.31 1528.26 1031.16 1528.26 Q1035.07 1528.26 1037.33 1530.64 Q1039.6 1533 1039.6 1537.08 Q1039.6 1541.07 1037.24 1543.48 Q1034.88 1545.9 1030.96 1545.9 Q1026.46 1545.9 1024.08 1542.46 Q1021.7 1539 1021.7 1532.46 Q1021.7 1526.31 1024.62 1522.67 Q1027.54 1519 1032.45 1519 Q1033.77 1519 1035.11 1519.26 Q1036.46 1519.52 1037.92 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1105.65 1522.53 L1096.79 1536.36 L1105.65 1536.36 L1105.65 1522.53 M1104.73 1519.47 L1109.14 1519.47 L1109.14 1536.36 L1112.84 1536.36 L1112.84 1539.28 L1109.14 1539.28 L1109.14 1545.39 L1105.65 1545.39 L1105.65 1539.28 L1093.95 1539.28 L1093.95 1535.9 L1104.73 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1115.75 1519.47 L1132.42 1519.47 L1132.42 1520.96 L1123.01 1545.39 L1119.35 1545.39 L1128.2 1522.42 L1115.75 1522.42 L1115.75 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1198.56 1522.53 L1189.71 1536.36 L1198.56 1536.36 L1198.56 1522.53 M1197.64 1519.47 L1202.05 1519.47 L1202.05 1536.36 L1205.75 1536.36 L1205.75 1539.28 L1202.05 1539.28 L1202.05 1545.39 L1198.56 1545.39 L1198.56 1539.28 L1186.86 1539.28 L1186.86 1535.9 L1197.64 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1217.05 1533.08 Q1214.55 1533.08 1213.11 1534.42 Q1211.69 1535.76 1211.69 1538.1 Q1211.69 1540.44 1213.11 1541.78 Q1214.55 1543.12 1217.05 1543.12 Q1219.55 1543.12 1220.99 1541.78 Q1222.43 1540.43 1222.43 1538.1 Q1222.43 1535.76 1220.99 1534.42 Q1219.57 1533.08 1217.05 1533.08 M1213.54 1531.59 Q1211.29 1531.03 1210.02 1529.49 Q1208.77 1527.94 1208.77 1525.72 Q1208.77 1522.61 1210.97 1520.81 Q1213.2 1519 1217.05 1519 Q1220.92 1519 1223.13 1520.81 Q1225.33 1522.61 1225.33 1525.72 Q1225.33 1527.94 1224.06 1529.49 Q1222.81 1531.03 1220.57 1531.59 Q1223.11 1532.18 1224.52 1533.9 Q1225.94 1535.62 1225.94 1538.1 Q1225.94 1541.87 1223.63 1543.88 Q1221.34 1545.9 1217.05 1545.9 Q1212.76 1545.9 1210.45 1543.88 Q1208.16 1541.87 1208.16 1538.1 Q1208.16 1535.62 1209.59 1533.9 Q1211.01 1532.18 1213.54 1531.59 M1212.26 1526.05 Q1212.26 1528.07 1213.51 1529.19 Q1214.78 1530.32 1217.05 1530.32 Q1219.31 1530.32 1220.57 1529.19 Q1221.86 1528.07 1221.86 1526.05 Q1221.86 1524.04 1220.57 1522.91 Q1219.31 1521.78 1217.05 1521.78 Q1214.78 1521.78 1213.51 1522.91 Q1212.26 1524.04 1212.26 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1291.81 1522.53 L1282.96 1536.36 L1291.81 1536.36 L1291.81 1522.53 M1290.89 1519.47 L1295.3 1519.47 L1295.3 1536.36 L1299 1536.36 L1299 1539.28 L1295.3 1539.28 L1295.3 1545.39 L1291.81 1545.39 L1291.81 1539.28 L1280.11 1539.28 L1280.11 1535.9 L1290.89 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1302.91 1544.85 L1302.91 1541.66 Q1304.23 1542.28 1305.58 1542.61 Q1306.93 1542.94 1308.24 1542.94 Q1311.71 1542.94 1313.53 1540.62 Q1315.37 1538.27 1315.63 1533.52 Q1314.62 1535.01 1313.08 1535.81 Q1311.53 1536.61 1309.66 1536.61 Q1305.77 1536.61 1303.5 1534.26 Q1301.24 1531.9 1301.24 1527.82 Q1301.24 1523.83 1303.6 1521.42 Q1305.96 1519 1309.88 1519 Q1314.38 1519 1316.74 1522.46 Q1319.12 1525.9 1319.12 1532.46 Q1319.12 1538.59 1316.2 1542.25 Q1313.3 1545.9 1308.39 1545.9 Q1307.07 1545.9 1305.72 1545.63 Q1304.36 1545.37 1302.91 1544.85 M1309.88 1533.86 Q1312.25 1533.86 1313.62 1532.25 Q1315.01 1530.64 1315.01 1527.82 Q1315.01 1525.03 1313.62 1523.41 Q1312.25 1521.78 1309.88 1521.78 Q1307.52 1521.78 1306.13 1523.41 Q1304.76 1525.03 1304.76 1527.82 Q1304.76 1530.64 1306.13 1532.25 Q1307.52 1533.86 1309.88 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1375.41 1519.47 L1389.18 1519.47 L1389.18 1522.42 L1378.62 1522.42 L1378.62 1528.78 Q1379.39 1528.52 1380.15 1528.4 Q1380.91 1528.26 1381.68 1528.26 Q1386.02 1528.26 1388.55 1530.64 Q1391.09 1533.01 1391.09 1537.08 Q1391.09 1541.26 1388.48 1543.59 Q1385.88 1545.9 1381.14 1545.9 Q1379.51 1545.9 1377.81 1545.62 Q1376.12 1545.34 1374.32 1544.78 L1374.32 1541.26 Q1375.88 1542.11 1377.55 1542.53 Q1379.21 1542.94 1381.07 1542.94 Q1384.07 1542.94 1385.83 1541.36 Q1387.58 1539.78 1387.58 1537.08 Q1387.58 1534.37 1385.83 1532.79 Q1384.07 1531.21 1381.07 1531.21 Q1379.66 1531.21 1378.26 1531.52 Q1376.87 1531.83 1375.41 1532.49 L1375.41 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1402.39 1521.78 Q1399.68 1521.78 1398.31 1524.45 Q1396.96 1527.11 1396.96 1532.46 Q1396.96 1537.79 1398.31 1540.46 Q1399.68 1543.12 1402.39 1543.12 Q1405.12 1543.12 1406.47 1540.46 Q1407.84 1537.79 1407.84 1532.46 Q1407.84 1527.11 1406.47 1524.45 Q1405.12 1521.78 1402.39 1521.78 M1402.39 1519 Q1406.75 1519 1409.04 1522.46 Q1411.35 1525.9 1411.35 1532.46 Q1411.35 1539 1409.04 1542.46 Q1406.75 1545.9 1402.39 1545.9 Q1398.03 1545.9 1395.72 1542.46 Q1393.43 1539 1393.43 1532.46 Q1393.43 1525.9 1395.72 1522.46 Q1398.03 1519 1402.39 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1469.09 1519.47 L1482.85 1519.47 L1482.85 1522.42 L1472.3 1522.42 L1472.3 1528.78 Q1473.06 1528.52 1473.83 1528.4 Q1474.59 1528.26 1475.35 1528.26 Q1479.69 1528.26 1482.23 1530.64 Q1484.76 1533.01 1484.76 1537.08 Q1484.76 1541.26 1482.16 1543.59 Q1479.56 1545.9 1474.82 1545.9 Q1473.18 1545.9 1471.48 1545.62 Q1469.8 1545.34 1467.99 1544.78 L1467.99 1541.26 Q1469.56 1542.11 1471.22 1542.53 Q1472.89 1542.94 1474.75 1542.94 Q1477.75 1542.94 1479.5 1541.36 Q1481.26 1539.78 1481.26 1537.08 Q1481.26 1534.37 1479.5 1532.79 Q1477.75 1531.21 1474.75 1531.21 Q1473.34 1531.21 1471.93 1531.52 Q1470.55 1531.83 1469.09 1532.49 L1469.09 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1489.17 1542.44 L1494.9 1542.44 L1494.9 1522.67 L1488.67 1523.92 L1488.67 1520.72 L1494.87 1519.47 L1498.37 1519.47 L1498.37 1542.44 L1504.1 1542.44 L1504.1 1545.39 L1489.17 1545.39 L1489.17 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1562.44 1519.47 L1576.21 1519.47 L1576.21 1522.42 L1565.65 1522.42 L1565.65 1528.78 Q1566.42 1528.52 1567.18 1528.4 Q1567.95 1528.26 1568.71 1528.26 Q1573.05 1528.26 1575.58 1530.64 Q1578.12 1533.01 1578.12 1537.08 Q1578.12 1541.26 1575.51 1543.59 Q1572.91 1545.9 1568.17 1545.9 Q1566.54 1545.9 1564.84 1545.62 Q1563.15 1545.34 1561.35 1544.78 L1561.35 1541.26 Q1562.91 1542.11 1564.58 1542.53 Q1566.24 1542.94 1568.1 1542.94 Q1571.11 1542.94 1572.86 1541.36 Q1574.61 1539.78 1574.61 1537.08 Q1574.61 1534.37 1572.86 1532.79 Q1571.11 1531.21 1568.1 1531.21 Q1566.7 1531.21 1565.29 1531.52 Q1563.9 1531.83 1562.44 1532.49 L1562.44 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1584.94 1542.44 L1597.18 1542.44 L1597.18 1545.39 L1580.72 1545.39 L1580.72 1542.44 Q1582.72 1540.37 1586.16 1536.9 Q1589.61 1533.41 1590.5 1532.41 Q1592.18 1530.51 1592.84 1529.21 Q1593.52 1527.89 1593.52 1526.62 Q1593.52 1524.56 1592.06 1523.26 Q1590.62 1521.95 1588.29 1521.95 Q1586.64 1521.95 1584.8 1522.53 Q1582.98 1523.1 1580.9 1524.26 L1580.9 1520.72 Q1583.01 1519.87 1584.86 1519.44 Q1586.7 1519 1588.22 1519 Q1592.25 1519 1594.65 1521.02 Q1597.04 1523.03 1597.04 1526.4 Q1597.04 1528 1596.43 1529.44 Q1595.84 1530.86 1594.26 1532.81 Q1593.83 1533.31 1591.5 1535.72 Q1589.18 1538.12 1584.94 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1655.3 1519.47 L1669.07 1519.47 L1669.07 1522.42 L1658.51 1522.42 L1658.51 1528.78 Q1659.28 1528.52 1660.04 1528.4 Q1660.81 1528.26 1661.57 1528.26 Q1665.91 1528.26 1668.44 1530.64 Q1670.98 1533.01 1670.98 1537.08 Q1670.98 1541.26 1668.38 1543.59 Q1665.77 1545.9 1661.03 1545.9 Q1659.4 1545.9 1657.7 1545.62 Q1656.01 1545.34 1654.21 1544.78 L1654.21 1541.26 Q1655.77 1542.11 1657.44 1542.53 Q1659.1 1542.94 1660.96 1542.94 Q1663.97 1542.94 1665.72 1541.36 Q1667.47 1539.78 1667.47 1537.08 Q1667.47 1534.37 1665.72 1532.79 Q1663.97 1531.21 1660.96 1531.21 Q1659.56 1531.21 1658.15 1531.52 Q1656.76 1531.83 1655.3 1532.49 L1655.3 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1685.41 1531.42 Q1687.92 1531.95 1689.33 1533.66 Q1690.75 1535.36 1690.75 1537.86 Q1690.75 1541.69 1688.11 1543.79 Q1685.48 1545.9 1680.61 1545.9 Q1678.98 1545.9 1677.25 1545.57 Q1675.53 1545.25 1673.69 1544.61 L1673.69 1541.23 Q1675.15 1542.08 1676.88 1542.51 Q1678.62 1542.94 1680.51 1542.94 Q1683.81 1542.94 1685.53 1541.64 Q1687.26 1540.34 1687.26 1537.86 Q1687.26 1535.57 1685.65 1534.28 Q1684.05 1532.98 1681.19 1532.98 L1678.17 1532.98 L1678.17 1530.1 L1681.33 1530.1 Q1683.91 1530.1 1685.29 1529.07 Q1686.66 1528.03 1686.66 1526.09 Q1686.66 1524.09 1685.23 1523.03 Q1683.83 1521.95 1681.19 1521.95 Q1679.75 1521.95 1678.1 1522.27 Q1676.45 1522.58 1674.47 1523.24 L1674.47 1520.11 Q1676.47 1519.56 1678.2 1519.28 Q1679.96 1519 1681.5 1519 Q1685.49 1519 1687.82 1520.83 Q1690.15 1522.63 1690.15 1525.72 Q1690.15 1527.87 1688.91 1529.37 Q1687.68 1530.84 1685.41 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1748.09 1519.47 L1761.86 1519.47 L1761.86 1522.42 L1751.31 1522.42 L1751.31 1528.78 Q1752.07 1528.52 1752.83 1528.4 Q1753.6 1528.26 1754.36 1528.26 Q1758.7 1528.26 1761.24 1530.64 Q1763.77 1533.01 1763.77 1537.08 Q1763.77 1541.26 1761.17 1543.59 Q1758.56 1545.9 1753.82 1545.9 Q1752.19 1545.9 1750.49 1545.62 Q1748.81 1545.34 1747 1544.78 L1747 1541.26 Q1748.56 1542.11 1750.23 1542.53 Q1751.9 1542.94 1753.75 1542.94 Q1756.76 1542.94 1758.51 1541.36 Q1760.26 1539.78 1760.26 1537.08 Q1760.26 1534.37 1758.51 1532.79 Q1756.76 1531.21 1753.75 1531.21 Q1752.35 1531.21 1750.94 1531.52 Q1749.55 1531.83 1748.09 1532.49 L1748.09 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1777.21 1522.53 L1768.35 1536.36 L1777.21 1536.36 L1777.21 1522.53 M1776.29 1519.47 L1780.7 1519.47 L1780.7 1536.36 L1784.4 1536.36 L1784.4 1539.28 L1780.7 1539.28 L1780.7 1545.39 L1777.21 1545.39 L1777.21 1539.28 L1765.51 1539.28 L1765.51 1535.9 L1776.29 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1841.87 1519.47 L1855.63 1519.47 L1855.63 1522.42 L1845.08 1522.42 L1845.08 1528.78 Q1845.84 1528.52 1846.61 1528.4 Q1847.37 1528.26 1848.13 1528.26 Q1852.47 1528.26 1855.01 1530.64 Q1857.54 1533.01 1857.54 1537.08 Q1857.54 1541.26 1854.94 1543.59 Q1852.33 1545.9 1847.59 1545.9 Q1845.96 1545.9 1844.26 1545.62 Q1842.58 1545.34 1840.77 1544.78 L1840.77 1541.26 Q1842.33 1542.11 1844 1542.53 Q1845.67 1542.94 1847.53 1542.94 Q1850.53 1542.94 1852.28 1541.36 Q1854.04 1539.78 1854.04 1537.08 Q1854.04 1534.37 1852.28 1532.79 Q1850.53 1531.21 1847.53 1531.21 Q1846.12 1531.21 1844.71 1531.52 Q1843.32 1531.83 1841.87 1532.49 L1841.87 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1861.38 1519.47 L1875.15 1519.47 L1875.15 1522.42 L1864.59 1522.42 L1864.59 1528.78 Q1865.36 1528.52 1866.12 1528.4 Q1866.88 1528.26 1867.65 1528.26 Q1871.99 1528.26 1874.52 1530.64 Q1877.06 1533.01 1877.06 1537.08 Q1877.06 1541.26 1874.45 1543.59 Q1871.85 1545.9 1867.11 1545.9 Q1865.48 1545.9 1863.78 1545.62 Q1862.09 1545.34 1860.29 1544.78 L1860.29 1541.26 Q1861.85 1542.11 1863.51 1542.53 Q1865.18 1542.94 1867.04 1542.94 Q1870.04 1542.94 1871.8 1541.36 Q1873.55 1539.78 1873.55 1537.08 Q1873.55 1534.37 1871.8 1532.79 Q1870.04 1531.21 1867.04 1531.21 Q1865.63 1531.21 1864.23 1531.52 Q1862.84 1531.83 1861.38 1532.49 L1861.38 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1934.65 1519.47 L1948.42 1519.47 L1948.42 1522.42 L1937.86 1522.42 L1937.86 1528.78 Q1938.62 1528.52 1939.39 1528.4 Q1940.15 1528.26 1940.92 1528.26 Q1945.26 1528.26 1947.79 1530.64 Q1950.32 1533.01 1950.32 1537.08 Q1950.32 1541.26 1947.72 1543.59 Q1945.12 1545.9 1940.38 1545.9 Q1938.75 1545.9 1937.04 1545.62 Q1935.36 1545.34 1933.55 1544.78 L1933.55 1541.26 Q1935.12 1542.11 1936.78 1542.53 Q1938.45 1542.94 1940.31 1542.94 Q1943.31 1542.94 1945.06 1541.36 Q1946.82 1539.78 1946.82 1537.08 Q1946.82 1534.37 1945.06 1532.79 Q1943.31 1531.21 1940.31 1531.21 Q1938.9 1531.21 1937.5 1531.52 Q1936.11 1531.83 1934.65 1532.49 L1934.65 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1962.06 1531.03 Q1959.7 1531.03 1958.31 1532.65 Q1956.94 1534.26 1956.94 1537.08 Q1956.94 1539.87 1958.31 1541.5 Q1959.7 1543.12 1962.06 1543.12 Q1964.42 1543.12 1965.79 1541.5 Q1967.18 1539.87 1967.18 1537.08 Q1967.18 1534.26 1965.79 1532.65 Q1964.42 1531.03 1962.06 1531.03 M1969.02 1520.04 L1969.02 1523.24 Q1967.7 1522.61 1966.35 1522.28 Q1965.01 1521.95 1963.69 1521.95 Q1960.22 1521.95 1958.38 1524.3 Q1956.56 1526.64 1956.3 1531.38 Q1957.32 1529.87 1958.87 1529.07 Q1960.41 1528.26 1962.27 1528.26 Q1966.18 1528.26 1968.43 1530.64 Q1970.71 1533 1970.71 1537.08 Q1970.71 1541.07 1968.35 1543.48 Q1965.98 1545.9 1962.06 1545.9 Q1957.56 1545.9 1955.19 1542.46 Q1952.81 1539 1952.81 1532.46 Q1952.81 1526.31 1955.72 1522.67 Q1958.64 1519 1963.55 1519 Q1964.87 1519 1966.21 1519.26 Q1967.56 1519.52 1969.02 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2028.26 1519.47 L2042.03 1519.47 L2042.03 1522.42 L2031.48 1522.42 L2031.48 1528.78 Q2032.24 1528.52 2033 1528.4 Q2033.77 1528.26 2034.53 1528.26 Q2038.87 1528.26 2041.41 1530.64 Q2043.94 1533.01 2043.94 1537.08 Q2043.94 1541.26 2041.34 1543.59 Q2038.73 1545.9 2033.99 1545.9 Q2032.36 1545.9 2030.66 1545.62 Q2028.98 1545.34 2027.17 1544.78 L2027.17 1541.26 Q2028.73 1542.11 2030.4 1542.53 Q2032.07 1542.94 2033.92 1542.94 Q2036.93 1542.94 2038.68 1541.36 Q2040.43 1539.78 2040.43 1537.08 Q2040.43 1534.37 2038.68 1532.79 Q2036.93 1531.21 2033.92 1531.21 Q2032.52 1531.21 2031.11 1531.52 Q2029.72 1531.83 2028.26 1532.49 L2028.26 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2046.86 1519.47 L2063.52 1519.47 L2063.52 1520.96 L2054.11 1545.39 L2050.45 1545.39 L2059.31 1522.42 L2046.86 1522.42 L2046.86 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2121.18 1519.47 L2134.94 1519.47 L2134.94 1522.42 L2124.39 1522.42 L2124.39 1528.78 Q2125.15 1528.52 2125.92 1528.4 Q2126.68 1528.26 2127.44 1528.26 Q2131.78 1528.26 2134.32 1530.64 Q2136.85 1533.01 2136.85 1537.08 Q2136.85 1541.26 2134.25 1543.59 Q2131.64 1545.9 2126.91 1545.9 Q2125.27 1545.9 2123.57 1545.62 Q2121.89 1545.34 2120.08 1544.78 L2120.08 1541.26 Q2121.64 1542.11 2123.31 1542.53 Q2124.98 1542.94 2126.84 1542.94 Q2129.84 1542.94 2131.59 1541.36 Q2133.35 1539.78 2133.35 1537.08 Q2133.35 1534.37 2131.59 1532.79 Q2129.84 1531.21 2126.84 1531.21 Q2125.43 1531.21 2124.02 1531.52 Q2122.63 1531.83 2121.18 1532.49 L2121.18 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2148.16 1533.08 Q2145.66 1533.08 2144.21 1534.42 Q2142.79 1535.76 2142.79 1538.1 Q2142.79 1540.44 2144.21 1541.78 Q2145.66 1543.12 2148.16 1543.12 Q2150.66 1543.12 2152.1 1541.78 Q2153.54 1540.43 2153.54 1538.1 Q2153.54 1535.76 2152.1 1534.42 Q2150.67 1533.08 2148.16 1533.08 M2144.65 1531.59 Q2142.39 1531.03 2141.12 1529.49 Q2139.87 1527.94 2139.87 1525.72 Q2139.87 1522.61 2142.08 1520.81 Q2144.3 1519 2148.16 1519 Q2152.03 1519 2154.23 1520.81 Q2156.44 1522.61 2156.44 1525.72 Q2156.44 1527.94 2155.17 1529.49 Q2153.92 1531.03 2151.68 1531.59 Q2154.21 1532.18 2155.62 1533.9 Q2157.04 1535.62 2157.04 1538.1 Q2157.04 1541.87 2154.74 1543.88 Q2152.44 1545.9 2148.16 1545.9 Q2143.87 1545.9 2141.56 1543.88 Q2139.27 1541.87 2139.27 1538.1 Q2139.27 1535.62 2140.69 1533.9 Q2142.11 1532.18 2144.65 1531.59 M2143.36 1526.05 Q2143.36 1528.07 2144.61 1529.19 Q2145.88 1530.32 2148.16 1530.32 Q2150.41 1530.32 2151.68 1529.19 Q2152.96 1528.07 2152.96 1526.05 Q2152.96 1524.04 2151.68 1522.91 Q2150.41 1521.78 2148.16 1521.78 Q2145.88 1521.78 2144.61 1522.91 Q2143.36 1524.04 2143.36 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2214.43 1519.47 L2228.19 1519.47 L2228.19 1522.42 L2217.64 1522.42 L2217.64 1528.78 Q2218.4 1528.52 2219.17 1528.4 Q2219.93 1528.26 2220.69 1528.26 Q2225.03 1528.26 2227.57 1530.64 Q2230.1 1533.01 2230.1 1537.08 Q2230.1 1541.26 2227.5 1543.59 Q2224.9 1545.9 2220.16 1545.9 Q2218.52 1545.9 2216.82 1545.62 Q2215.14 1545.34 2213.33 1544.78 L2213.33 1541.26 Q2214.9 1542.11 2216.56 1542.53 Q2218.23 1542.94 2220.09 1542.94 Q2223.09 1542.94 2224.84 1541.36 Q2226.6 1539.78 2226.6 1537.08 Q2226.6 1534.37 2224.84 1532.79 Q2223.09 1531.21 2220.09 1531.21 Q2218.68 1531.21 2217.27 1531.52 Q2215.89 1531.83 2214.43 1532.49 L2214.43 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2234.01 1544.85 L2234.01 1541.66 Q2235.33 1542.28 2236.68 1542.61 Q2238.04 1542.94 2239.34 1542.94 Q2242.81 1542.94 2244.64 1540.62 Q2246.48 1538.27 2246.74 1533.52 Q2245.73 1535.01 2244.18 1535.81 Q2242.64 1536.61 2240.76 1536.61 Q2236.88 1536.61 2234.6 1534.26 Q2232.34 1531.9 2232.34 1527.82 Q2232.34 1523.83 2234.7 1521.42 Q2237.07 1519 2240.99 1519 Q2245.49 1519 2247.85 1522.46 Q2250.23 1525.9 2250.23 1532.46 Q2250.23 1538.59 2247.31 1542.25 Q2244.41 1545.9 2239.5 1545.9 Q2238.18 1545.9 2236.82 1545.63 Q2235.47 1545.37 2234.01 1544.85 M2240.99 1533.86 Q2243.35 1533.86 2244.72 1532.25 Q2246.11 1530.64 2246.11 1527.82 Q2246.11 1525.03 2244.72 1523.41 Q2243.35 1521.78 2240.99 1521.78 Q2238.63 1521.78 2237.24 1523.41 Q2235.87 1525.03 2235.87 1527.82 Q2235.87 1530.64 2237.24 1532.25 Q2238.63 1533.86 2240.99 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2315.17 1531.03 Q2312.81 1531.03 2311.42 1532.65 Q2310.05 1534.26 2310.05 1537.08 Q2310.05 1539.87 2311.42 1541.5 Q2312.81 1543.12 2315.17 1543.12 Q2317.53 1543.12 2318.9 1541.5 Q2320.29 1539.87 2320.29 1537.08 Q2320.29 1534.26 2318.9 1532.65 Q2317.53 1531.03 2315.17 1531.03 M2322.13 1520.04 L2322.13 1523.24 Q2320.81 1522.61 2319.46 1522.28 Q2318.12 1521.95 2316.8 1521.95 Q2313.33 1521.95 2311.49 1524.3 Q2309.67 1526.64 2309.41 1531.38 Q2310.43 1529.87 2311.98 1529.07 Q2313.52 1528.26 2315.38 1528.26 Q2319.28 1528.26 2321.54 1530.64 Q2323.82 1533 2323.82 1537.08 Q2323.82 1541.07 2321.45 1543.48 Q2319.09 1545.9 2315.17 1545.9 Q2310.67 1545.9 2308.29 1542.46 Q2305.92 1539 2305.92 1532.46 Q2305.92 1526.31 2308.83 1522.67 Q2311.75 1519 2316.66 1519 Q2317.98 1519 2319.32 1519.26 Q2320.67 1519.52 2322.13 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2335.12 1521.78 Q2332.41 1521.78 2331.04 1524.45 Q2329.68 1527.11 2329.68 1532.46 Q2329.68 1537.79 2331.04 1540.46 Q2332.41 1543.12 2335.12 1543.12 Q2337.84 1543.12 2339.2 1540.46 Q2340.57 1537.79 2340.57 1532.46 Q2340.57 1527.11 2339.2 1524.45 Q2337.84 1521.78 2335.12 1521.78 M2335.12 1519 Q2339.48 1519 2341.77 1522.46 Q2344.08 1525.9 2344.08 1532.46 Q2344.08 1539 2341.77 1542.46 Q2339.48 1545.9 2335.12 1545.9 Q2330.76 1545.9 2328.45 1542.46 Q2326.16 1539 2326.16 1532.46 Q2326.16 1525.9 2328.45 1522.46 Q2330.76 1519 2335.12 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1455.9 2352.76,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1377.17 2352.76,1377.17 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1298.43 2352.76,1298.43 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1219.7 2352.76,1219.7 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1140.96 2352.76,1140.96 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1062.23 2352.76,1062.23 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,983.495 2352.76,983.495 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,904.761 2352.76,904.761 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,826.027 2352.76,826.027 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,747.292 2352.76,747.292 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,668.558 2352.76,668.558 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,589.823 2352.76,589.823 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,511.089 2352.76,511.089 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,432.355 2352.76,432.355 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,353.62 2352.76,353.62 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,274.886 2352.76,274.886 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,196.152 2352.76,196.152 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,117.417 2352.76,117.417 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 153.259,110.512 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1455.9 179.653,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1377.17 179.653,1377.17 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1298.43 179.653,1298.43 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1219.7 179.653,1219.7 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1140.96 179.653,1140.96 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1062.23 179.653,1062.23 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,983.495 179.653,983.495 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,904.761 179.653,904.761 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,826.027 179.653,826.027 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,747.292 179.653,747.292 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,668.558 179.653,668.558 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,589.823 179.653,589.823 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,511.089 179.653,511.089 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,432.355 179.653,432.355 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,353.62 179.653,353.62 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,274.886 179.653,274.886 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,196.152 179.653,196.152 \n \"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,117.417 179.653,117.417 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.315 1445.25 Q57.6067 1445.25 56.2352 1447.92 Q54.881 1450.58 54.881 1455.93 Q54.881 1461.26 56.2352 1463.93 Q57.6067 1466.59 60.315 1466.59 Q63.0407 1466.59 64.3948 1463.93 Q65.7664 1461.26 65.7664 1455.93 Q65.7664 1450.58 64.3948 1447.92 Q63.0407 1445.25 60.315 1445.25 M60.315 1442.47 Q64.6726 1442.47 66.9643 1445.93 Q69.2733 1449.37 69.2733 1455.93 Q69.2733 1462.47 66.9643 1465.93 Q64.6726 1469.37 60.315 1469.37 Q55.9574 1469.37 53.6484 1465.93 Q51.3567 1462.47 51.3567 1455.93 Q51.3567 1449.37 53.6484 1445.93 Q55.9574 1442.47 60.315 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.0753 1464.45 L76.7385 1464.45 L76.7385 1468.86 L73.0753 1468.86 L73.0753 1464.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.0405 1445.25 Q85.3322 1445.25 83.9607 1447.92 Q82.6065 1450.58 82.6065 1455.93 Q82.6065 1461.26 83.9607 1463.93 Q85.3322 1466.59 88.0405 1466.59 Q90.7662 1466.59 92.1204 1463.93 Q93.4919 1461.26 93.4919 1455.93 Q93.4919 1450.58 92.1204 1447.92 Q90.7662 1445.25 88.0405 1445.25 M88.0405 1442.47 Q92.3982 1442.47 94.6898 1445.93 Q96.9988 1449.37 96.9988 1455.93 Q96.9988 1462.47 94.6898 1465.93 Q92.3982 1469.37 88.0405 1469.37 Q83.6829 1469.37 81.3739 1465.93 Q79.0823 1462.47 79.0823 1455.93 Q79.0823 1449.37 81.3739 1445.93 Q83.6829 1442.47 88.0405 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M108.301 1445.25 Q105.593 1445.25 104.221 1447.92 Q102.867 1450.58 102.867 1455.93 Q102.867 1461.26 104.221 1463.93 Q105.593 1466.59 108.301 1466.59 Q111.027 1466.59 112.381 1463.93 Q113.752 1461.26 113.752 1455.93 Q113.752 1450.58 112.381 1447.92 Q111.027 1445.25 108.301 1445.25 M108.301 1442.47 Q112.658 1442.47 114.95 1445.93 Q117.259 1449.37 117.259 1455.93 Q117.259 1462.47 114.95 1465.93 Q112.658 1469.37 108.301 1469.37 Q103.943 1469.37 101.634 1465.93 Q99.3426 1462.47 99.3426 1455.93 Q99.3426 1449.37 101.634 1445.93 Q103.943 1442.47 108.301 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.2351 1366.52 Q58.5268 1366.52 57.1553 1369.19 Q55.8011 1371.85 55.8011 1377.19 Q55.8011 1382.52 57.1553 1385.2 Q58.5268 1387.85 61.2351 1387.85 Q63.9608 1387.85 65.315 1385.2 Q66.6865 1382.52 66.6865 1377.19 Q66.6865 1371.85 65.315 1369.19 Q63.9608 1366.52 61.2351 1366.52 M61.2351 1363.74 Q65.5927 1363.74 67.8844 1367.19 Q70.1934 1370.63 70.1934 1377.19 Q70.1934 1383.74 67.8844 1387.19 Q65.5927 1390.63 61.2351 1390.63 Q56.8775 1390.63 54.5685 1387.19 Q52.2768 1383.74 52.2768 1377.19 Q52.2768 1370.63 54.5685 1367.19 Q56.8775 1363.74 61.2351 1363.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.9955 1385.72 L77.6586 1385.72 L77.6586 1390.13 L73.9955 1390.13 L73.9955 1385.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.9607 1366.52 Q86.2524 1366.52 84.8808 1369.19 Q83.5267 1371.85 83.5267 1377.19 Q83.5267 1382.52 84.8808 1385.2 Q86.2524 1387.85 88.9607 1387.85 Q91.6864 1387.85 93.0405 1385.2 Q94.412 1382.52 94.412 1377.19 Q94.412 1371.85 93.0405 1369.19 Q91.6864 1366.52 88.9607 1366.52 M88.9607 1363.74 Q93.3183 1363.74 95.6099 1367.19 Q97.919 1370.63 97.919 1377.19 Q97.919 1383.74 95.6099 1387.19 Q93.3183 1390.63 88.9607 1390.63 Q84.6031 1390.63 82.294 1387.19 Q80.0024 1383.74 80.0024 1377.19 Q80.0024 1370.63 82.294 1367.19 Q84.6031 1363.74 88.9607 1363.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M102.329 1387.18 L108.058 1387.18 L108.058 1367.4 L101.825 1368.65 L101.825 1365.46 L108.023 1364.21 L111.53 1364.21 L111.53 1387.18 L117.259 1387.18 L117.259 1390.13 L102.329 1390.13 L102.329 1387.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.5129 1287.78 Q58.8046 1287.78 57.4331 1290.46 Q56.0789 1293.11 56.0789 1298.46 Q56.0789 1303.79 57.4331 1306.46 Q58.8046 1309.12 61.5129 1309.12 Q64.2386 1309.12 65.5927 1306.46 Q66.9643 1303.79 66.9643 1298.46 Q66.9643 1293.11 65.5927 1290.46 Q64.2386 1287.78 61.5129 1287.78 M61.5129 1285 Q65.8705 1285 68.1622 1288.46 Q70.4712 1291.9 70.4712 1298.46 Q70.4712 1305 68.1622 1308.46 Q65.8705 1311.9 61.5129 1311.9 Q57.1553 1311.9 54.8463 1308.46 Q52.5546 1305 52.5546 1298.46 Q52.5546 1291.9 54.8463 1288.46 Q57.1553 1285 61.5129 1285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M74.2733 1306.98 L77.9364 1306.98 L77.9364 1311.39 L74.2733 1311.39 L74.2733 1306.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M89.2384 1287.78 Q86.5301 1287.78 85.1586 1290.46 Q83.8045 1293.11 83.8045 1298.46 Q83.8045 1303.79 85.1586 1306.46 Q86.5301 1309.12 89.2384 1309.12 Q91.9641 1309.12 93.3183 1306.46 Q94.6898 1303.79 94.6898 1298.46 Q94.6898 1293.11 93.3183 1290.46 Q91.9641 1287.78 89.2384 1287.78 M89.2384 1285 Q93.5961 1285 95.8877 1288.46 Q98.1967 1291.9 98.1967 1298.46 Q98.1967 1305 95.8877 1308.46 Q93.5961 1311.9 89.2384 1311.9 Q84.8808 1311.9 82.5718 1308.46 Q80.2802 1305 80.2802 1298.46 Q80.2802 1291.9 82.5718 1288.46 Q84.8808 1285 89.2384 1285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M105.02 1308.44 L117.259 1308.44 L117.259 1311.39 L100.801 1311.39 L100.801 1308.44 Q102.797 1306.38 106.235 1302.9 Q109.69 1299.41 110.575 1298.41 Q112.259 1296.51 112.919 1295.21 Q113.596 1293.89 113.596 1292.63 Q113.596 1290.56 112.138 1289.26 Q110.697 1287.96 108.37 1287.96 Q106.721 1287.96 104.881 1288.53 Q103.058 1289.1 100.974 1290.26 L100.974 1286.72 Q103.093 1285.87 104.933 1285.44 Q106.773 1285 108.301 1285 Q112.329 1285 114.724 1287.02 Q117.12 1289.03 117.12 1292.4 Q117.12 1294 116.513 1295.44 Q115.922 1296.86 114.342 1298.81 Q113.908 1299.31 111.582 1301.72 Q109.256 1304.12 105.02 1308.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.8011 1209.05 Q58.0928 1209.05 56.7213 1211.72 Q55.3671 1214.38 55.3671 1219.72 Q55.3671 1225.05 56.7213 1227.73 Q58.0928 1230.38 60.8011 1230.38 Q63.5268 1230.38 64.8809 1227.73 Q66.2525 1225.05 66.2525 1219.72 Q66.2525 1214.38 64.8809 1211.72 Q63.5268 1209.05 60.8011 1209.05 M60.8011 1206.27 Q65.1587 1206.27 67.4504 1209.72 Q69.7594 1213.16 69.7594 1219.72 Q69.7594 1226.27 67.4504 1229.72 Q65.1587 1233.16 60.8011 1233.16 Q56.4435 1233.16 54.1345 1229.72 Q51.8428 1226.27 51.8428 1219.72 Q51.8428 1213.16 54.1345 1209.72 Q56.4435 1206.27 60.8011 1206.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.5614 1228.25 L77.2246 1228.25 L77.2246 1232.66 L73.5614 1232.66 L73.5614 1228.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.5266 1209.05 Q85.8183 1209.05 84.4468 1211.72 Q83.0926 1214.38 83.0926 1219.72 Q83.0926 1225.05 84.4468 1227.73 Q85.8183 1230.38 88.5266 1230.38 Q91.2523 1230.38 92.6065 1227.73 Q93.978 1225.05 93.978 1219.72 Q93.978 1214.38 92.6065 1211.72 Q91.2523 1209.05 88.5266 1209.05 M88.5266 1206.27 Q92.8843 1206.27 95.1759 1209.72 Q97.4849 1213.16 97.4849 1219.72 Q97.4849 1226.27 95.1759 1229.72 Q92.8843 1233.16 88.5266 1233.16 Q84.169 1233.16 81.86 1229.72 Q79.5684 1226.27 79.5684 1219.72 Q79.5684 1213.16 81.86 1209.72 Q84.169 1206.27 88.5266 1206.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M111.912 1218.68 Q114.429 1219.22 115.836 1220.92 Q117.259 1222.62 117.259 1225.12 Q117.259 1228.96 114.62 1231.06 Q111.981 1233.16 107.12 1233.16 Q105.488 1233.16 103.752 1232.83 Q102.034 1232.52 100.193 1231.88 L100.193 1228.49 Q101.652 1229.34 103.388 1229.78 Q105.124 1230.21 107.016 1230.21 Q110.315 1230.21 112.033 1228.91 Q113.77 1227.61 113.77 1225.12 Q113.77 1222.83 112.155 1221.55 Q110.558 1220.25 107.693 1220.25 L104.672 1220.25 L104.672 1217.36 L107.832 1217.36 Q110.419 1217.36 111.79 1216.34 Q113.162 1215.3 113.162 1213.35 Q113.162 1211.36 111.738 1210.3 Q110.332 1209.22 107.693 1209.22 Q106.252 1209.22 104.603 1209.53 Q102.954 1209.85 100.974 1210.51 L100.974 1207.38 Q102.971 1206.83 104.707 1206.55 Q106.461 1206.27 108.006 1206.27 Q111.999 1206.27 114.325 1208.09 Q116.651 1209.9 116.651 1212.99 Q116.651 1215.14 115.419 1216.63 Q114.186 1218.11 111.912 1218.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M59.9504 1130.31 Q57.2421 1130.31 55.8706 1132.99 Q54.5164 1135.64 54.5164 1140.99 Q54.5164 1146.32 55.8706 1148.99 Q57.2421 1151.65 59.9504 1151.65 Q62.6761 1151.65 64.0303 1148.99 Q65.4018 1146.32 65.4018 1140.99 Q65.4018 1135.64 64.0303 1132.99 Q62.6761 1130.31 59.9504 1130.31 M59.9504 1127.54 Q64.308 1127.54 66.5997 1130.99 Q68.9087 1134.43 68.9087 1140.99 Q68.9087 1147.54 66.5997 1150.99 Q64.308 1154.43 59.9504 1154.43 Q55.5928 1154.43 53.2838 1150.99 Q50.9921 1147.54 50.9921 1140.99 Q50.9921 1134.43 53.2838 1130.99 Q55.5928 1127.54 59.9504 1127.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M72.7108 1149.51 L76.3739 1149.51 L76.3739 1153.92 L72.7108 1153.92 L72.7108 1149.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M87.676 1130.31 Q84.9676 1130.31 83.5961 1132.99 Q82.242 1135.64 82.242 1140.99 Q82.242 1146.32 83.5961 1148.99 Q84.9676 1151.65 87.676 1151.65 Q90.4016 1151.65 91.7558 1148.99 Q93.1273 1146.32 93.1273 1140.99 Q93.1273 1135.64 91.7558 1132.99 Q90.4016 1130.31 87.676 1130.31 M87.676 1127.54 Q92.0336 1127.54 94.3252 1130.99 Q96.6342 1134.43 96.6342 1140.99 Q96.6342 1147.54 94.3252 1150.99 Q92.0336 1154.43 87.676 1154.43 Q83.3183 1154.43 81.0093 1150.99 Q78.7177 1147.54 78.7177 1140.99 Q78.7177 1134.43 81.0093 1130.99 Q83.3183 1127.54 87.676 1127.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M110.072 1131.06 L101.218 1144.9 L110.072 1144.9 L110.072 1131.06 M109.152 1128 L113.561 1128 L113.561 1144.9 L117.259 1144.9 L117.259 1147.81 L113.561 1147.81 L113.561 1153.92 L110.072 1153.92 L110.072 1147.81 L98.3703 1147.81 L98.3703 1144.43 L109.152 1128 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.0615 1051.58 Q58.3532 1051.58 56.9817 1054.25 Q55.6275 1056.91 55.6275 1062.26 Q55.6275 1067.59 56.9817 1070.26 Q58.3532 1072.92 61.0615 1072.92 Q63.7872 1072.92 65.1414 1070.26 Q66.5129 1067.59 66.5129 1062.26 Q66.5129 1056.91 65.1414 1054.25 Q63.7872 1051.58 61.0615 1051.58 M61.0615 1048.8 Q65.4191 1048.8 67.7108 1052.26 Q70.0198 1055.69 70.0198 1062.26 Q70.0198 1068.8 67.7108 1072.26 Q65.4191 1075.69 61.0615 1075.69 Q56.7039 1075.69 54.3949 1072.26 Q52.1032 1068.8 52.1032 1062.26 Q52.1032 1055.69 54.3949 1052.26 Q56.7039 1048.8 61.0615 1048.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.8219 1070.78 L77.485 1070.78 L77.485 1075.19 L73.8219 1075.19 L73.8219 1070.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.7871 1051.58 Q86.0787 1051.58 84.7072 1054.25 Q83.3531 1056.91 83.3531 1062.26 Q83.3531 1067.59 84.7072 1070.26 Q86.0787 1072.92 88.7871 1072.92 Q91.5127 1072.92 92.8669 1070.26 Q94.2384 1067.59 94.2384 1062.26 Q94.2384 1056.91 92.8669 1054.25 Q91.5127 1051.58 88.7871 1051.58 M88.7871 1048.8 Q93.1447 1048.8 95.4363 1052.26 Q97.7453 1055.69 97.7453 1062.26 Q97.7453 1068.8 95.4363 1072.26 Q93.1447 1075.69 88.7871 1075.69 Q84.4294 1075.69 82.1204 1072.26 Q79.8288 1068.8 79.8288 1062.26 Q79.8288 1055.69 82.1204 1052.26 Q84.4294 1048.8 88.7871 1048.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M101.582 1049.27 L115.349 1049.27 L115.349 1052.22 L104.794 1052.22 L104.794 1058.58 Q105.558 1058.31 106.322 1058.19 Q107.086 1058.05 107.849 1058.05 Q112.19 1058.05 114.724 1060.43 Q117.259 1062.81 117.259 1066.87 Q117.259 1071.06 114.655 1073.38 Q112.051 1075.69 107.311 1075.69 Q105.679 1075.69 103.978 1075.42 Q102.294 1075.14 100.488 1074.58 L100.488 1071.06 Q102.051 1071.91 103.718 1072.33 Q105.384 1072.74 107.242 1072.74 Q110.245 1072.74 111.999 1071.16 Q113.752 1069.58 113.752 1066.87 Q113.752 1064.17 111.999 1062.59 Q110.245 1061.01 107.242 1061.01 Q105.836 1061.01 104.429 1061.32 Q103.04 1061.63 101.582 1062.29 L101.582 1049.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.1935 972.844 Q57.4851 972.844 56.1136 975.518 Q54.7595 978.174 54.7595 983.521 Q54.7595 988.851 56.1136 991.525 Q57.4851 994.181 60.1935 994.181 Q62.9191 994.181 64.2733 991.525 Q65.6448 988.851 65.6448 983.521 Q65.6448 978.174 64.2733 975.518 Q62.9191 972.844 60.1935 972.844 M60.1935 970.067 Q64.5511 970.067 66.8427 973.522 Q69.1518 976.959 69.1518 983.521 Q69.1518 990.067 66.8427 993.521 Q64.5511 996.959 60.1935 996.959 Q55.8359 996.959 53.5268 993.521 Q51.2352 990.067 51.2352 983.521 Q51.2352 976.959 53.5268 973.522 Q55.8359 970.067 60.1935 970.067 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M72.9538 992.046 L76.617 992.046 L76.617 996.455 L72.9538 996.455 L72.9538 992.046 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M87.919 972.844 Q85.2107 972.844 83.8392 975.518 Q82.485 978.174 82.485 983.521 Q82.485 988.851 83.8392 991.525 Q85.2107 994.181 87.919 994.181 Q90.6447 994.181 91.9989 991.525 Q93.3704 988.851 93.3704 983.521 Q93.3704 978.174 91.9989 975.518 Q90.6447 972.844 87.919 972.844 M87.919 970.067 Q92.2766 970.067 94.5683 973.522 Q96.8773 976.959 96.8773 983.521 Q96.8773 990.067 94.5683 993.521 Q92.2766 996.959 87.919 996.959 Q83.5614 996.959 81.2524 993.521 Q78.9607 990.067 78.9607 983.521 Q78.9607 976.959 81.2524 973.522 Q83.5614 970.067 87.919 970.067 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M108.613 982.098 Q106.252 982.098 104.863 983.712 Q103.492 985.327 103.492 988.139 Q103.492 990.935 104.863 992.567 Q106.252 994.181 108.613 994.181 Q110.974 994.181 112.346 992.567 Q113.735 990.935 113.735 988.139 Q113.735 985.327 112.346 983.712 Q110.974 982.098 108.613 982.098 M115.575 971.108 L115.575 974.303 Q114.256 973.678 112.902 973.348 Q111.565 973.018 110.245 973.018 Q106.773 973.018 104.933 975.362 Q103.11 977.706 102.849 982.445 Q103.874 980.935 105.419 980.136 Q106.964 979.32 108.822 979.32 Q112.728 979.32 114.985 981.699 Q117.259 984.06 117.259 988.139 Q117.259 992.133 114.898 994.546 Q112.537 996.959 108.613 996.959 Q104.117 996.959 101.738 993.521 Q99.3599 990.067 99.3599 983.521 Q99.3599 977.376 102.277 973.73 Q105.193 970.067 110.106 970.067 Q111.426 970.067 112.763 970.327 Q114.117 970.588 115.575 971.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.9921 894.11 Q58.2838 894.11 56.9122 896.784 Q55.5581 899.44 55.5581 904.787 Q55.5581 910.117 56.9122 912.791 Q58.2838 915.447 60.9921 915.447 Q63.7178 915.447 65.0719 912.791 Q66.4434 910.117 66.4434 904.787 Q66.4434 899.44 65.0719 896.784 Q63.7178 894.11 60.9921 894.11 M60.9921 891.332 Q65.3497 891.332 67.6413 894.787 Q69.9504 898.225 69.9504 904.787 Q69.9504 911.332 67.6413 914.787 Q65.3497 918.225 60.9921 918.225 Q56.6345 918.225 54.3254 914.787 Q52.0338 911.332 52.0338 904.787 Q52.0338 898.225 54.3254 894.787 Q56.6345 891.332 60.9921 891.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.7524 913.311 L77.4156 913.311 L77.4156 917.721 L73.7524 917.721 L73.7524 913.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.7176 894.11 Q86.0093 894.11 84.6378 896.784 Q83.2836 899.44 83.2836 904.787 Q83.2836 910.117 84.6378 912.791 Q86.0093 915.447 88.7176 915.447 Q91.4433 915.447 92.7975 912.791 Q94.169 910.117 94.169 904.787 Q94.169 899.44 92.7975 896.784 Q91.4433 894.11 88.7176 894.11 M88.7176 891.332 Q93.0752 891.332 95.3669 894.787 Q97.6759 898.225 97.6759 904.787 Q97.6759 911.332 95.3669 914.787 Q93.0752 918.225 88.7176 918.225 Q84.36 918.225 82.051 914.787 Q79.7593 911.332 79.7593 904.787 Q79.7593 898.225 82.051 894.787 Q84.36 891.332 88.7176 891.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M100.593 891.801 L117.259 891.801 L117.259 893.294 L107.849 917.721 L104.186 917.721 L113.04 894.752 L100.593 894.752 L100.593 891.801 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.3844 815.376 Q57.6761 815.376 56.3046 818.049 Q54.9504 820.705 54.9504 826.053 Q54.9504 831.383 56.3046 834.056 Q57.6761 836.712 60.3844 836.712 Q63.1101 836.712 64.4643 834.056 Q65.8358 831.383 65.8358 826.053 Q65.8358 820.705 64.4643 818.049 Q63.1101 815.376 60.3844 815.376 M60.3844 812.598 Q64.7421 812.598 67.0337 816.053 Q69.3427 819.49 69.3427 826.053 Q69.3427 832.598 67.0337 836.053 Q64.7421 839.49 60.3844 839.49 Q56.0268 839.49 53.7178 836.053 Q51.4262 832.598 51.4262 826.053 Q51.4262 819.49 53.7178 816.053 Q56.0268 812.598 60.3844 812.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.1448 834.577 L76.808 834.577 L76.808 838.987 L73.1448 838.987 L73.1448 834.577 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.11 815.376 Q85.4017 815.376 84.0301 818.049 Q82.676 820.705 82.676 826.053 Q82.676 831.383 84.0301 834.056 Q85.4017 836.712 88.11 836.712 Q90.8357 836.712 92.1898 834.056 Q93.5613 831.383 93.5613 826.053 Q93.5613 820.705 92.1898 818.049 Q90.8357 815.376 88.11 815.376 M88.11 812.598 Q92.4676 812.598 94.7593 816.053 Q97.0683 819.49 97.0683 826.053 Q97.0683 832.598 94.7593 836.053 Q92.4676 839.49 88.11 839.49 Q83.7524 839.49 81.4434 836.053 Q79.1517 832.598 79.1517 826.053 Q79.1517 819.49 81.4434 816.053 Q83.7524 812.598 88.11 812.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M108.37 826.678 Q105.87 826.678 104.429 828.014 Q103.006 829.351 103.006 831.695 Q103.006 834.039 104.429 835.376 Q105.87 836.712 108.37 836.712 Q110.87 836.712 112.311 835.376 Q113.752 834.021 113.752 831.695 Q113.752 829.351 112.311 828.014 Q110.888 826.678 108.37 826.678 M104.863 825.185 Q102.606 824.629 101.339 823.084 Q100.089 821.539 100.089 819.317 Q100.089 816.209 102.294 814.403 Q104.516 812.598 108.37 812.598 Q112.242 812.598 114.447 814.403 Q116.651 816.209 116.651 819.317 Q116.651 821.539 115.384 823.084 Q114.134 824.629 111.895 825.185 Q114.429 825.775 115.836 827.494 Q117.259 829.212 117.259 831.695 Q117.259 835.462 114.95 837.476 Q112.658 839.49 108.37 839.49 Q104.082 839.49 101.773 837.476 Q99.4814 835.462 99.4814 831.695 Q99.4814 829.212 100.905 827.494 Q102.329 825.775 104.863 825.185 M103.579 819.646 Q103.579 821.66 104.829 822.789 Q106.096 823.917 108.37 823.917 Q110.627 823.917 111.895 822.789 Q113.179 821.66 113.179 819.646 Q113.179 817.633 111.895 816.504 Q110.627 815.376 108.37 815.376 Q106.096 815.376 104.829 816.504 Q103.579 817.633 103.579 819.646 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.4539 736.641 Q57.7456 736.641 56.374 739.315 Q55.0199 741.971 55.0199 747.318 Q55.0199 752.648 56.374 755.322 Q57.7456 757.978 60.4539 757.978 Q63.1796 757.978 64.5337 755.322 Q65.9052 752.648 65.9052 747.318 Q65.9052 741.971 64.5337 739.315 Q63.1796 736.641 60.4539 736.641 M60.4539 733.864 Q64.8115 733.864 67.1032 737.318 Q69.4122 740.756 69.4122 747.318 Q69.4122 753.863 67.1032 757.318 Q64.8115 760.756 60.4539 760.756 Q56.0963 760.756 53.7872 757.318 Q51.4956 753.863 51.4956 747.318 Q51.4956 740.756 53.7872 737.318 Q56.0963 733.864 60.4539 733.864 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.2142 755.843 L76.8774 755.843 L76.8774 760.252 L73.2142 760.252 L73.2142 755.843 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M88.1794 736.641 Q85.4711 736.641 84.0996 739.315 Q82.7454 741.971 82.7454 747.318 Q82.7454 752.648 84.0996 755.322 Q85.4711 757.978 88.1794 757.978 Q90.9051 757.978 92.2593 755.322 Q93.6308 752.648 93.6308 747.318 Q93.6308 741.971 92.2593 739.315 Q90.9051 736.641 88.1794 736.641 M88.1794 733.864 Q92.537 733.864 94.8287 737.318 Q97.1377 740.756 97.1377 747.318 Q97.1377 753.863 94.8287 757.318 Q92.537 760.756 88.1794 760.756 Q83.8218 760.756 81.5128 757.318 Q79.2211 753.863 79.2211 747.318 Q79.2211 740.756 81.5128 737.318 Q83.8218 733.864 88.1794 733.864 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M101.044 759.714 L101.044 756.52 Q102.363 757.145 103.718 757.474 Q105.072 757.804 106.374 757.804 Q109.846 757.804 111.669 755.478 Q113.509 753.134 113.77 748.377 Q112.763 749.87 111.217 750.669 Q109.672 751.468 107.797 751.468 Q103.909 751.468 101.634 749.124 Q99.3773 746.763 99.3773 742.683 Q99.3773 738.69 101.738 736.277 Q104.099 733.864 108.023 733.864 Q112.52 733.864 114.881 737.318 Q117.259 740.756 117.259 747.318 Q117.259 753.447 114.342 757.11 Q111.443 760.756 106.53 760.756 Q105.211 760.756 103.856 760.495 Q102.502 760.235 101.044 759.714 M108.023 748.725 Q110.384 748.725 111.756 747.11 Q113.145 745.495 113.145 742.683 Q113.145 739.888 111.756 738.273 Q110.384 736.641 108.023 736.641 Q105.662 736.641 104.273 738.273 Q102.902 739.888 102.902 742.683 Q102.902 745.495 104.273 747.11 Q105.662 748.725 108.023 748.725 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.2351 657.907 Q58.5268 657.907 57.1553 660.58 Q55.8011 663.237 55.8011 668.584 Q55.8011 673.914 57.1553 676.587 Q58.5268 679.244 61.2351 679.244 Q63.9608 679.244 65.315 676.587 Q66.6865 673.914 66.6865 668.584 Q66.6865 663.237 65.315 660.58 Q63.9608 657.907 61.2351 657.907 M61.2351 655.129 Q65.5927 655.129 67.8844 658.584 Q70.1934 662.021 70.1934 668.584 Q70.1934 675.129 67.8844 678.584 Q65.5927 682.021 61.2351 682.021 Q56.8775 682.021 54.5685 678.584 Q52.2768 675.129 52.2768 668.584 Q52.2768 662.021 54.5685 658.584 Q56.8775 655.129 61.2351 655.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.9955 677.108 L77.6586 677.108 L77.6586 681.518 L73.9955 681.518 L73.9955 677.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M82.0683 678.566 L87.7975 678.566 L87.7975 658.792 L81.5649 660.042 L81.5649 656.848 L87.7628 655.598 L91.2697 655.598 L91.2697 678.566 L96.9988 678.566 L96.9988 681.518 L82.0683 681.518 L82.0683 678.566 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M108.301 657.907 Q105.593 657.907 104.221 660.58 Q102.867 663.237 102.867 668.584 Q102.867 673.914 104.221 676.587 Q105.593 679.244 108.301 679.244 Q111.027 679.244 112.381 676.587 Q113.752 673.914 113.752 668.584 Q113.752 663.237 112.381 660.58 Q111.027 657.907 108.301 657.907 M108.301 655.129 Q112.658 655.129 114.95 658.584 Q117.259 662.021 117.259 668.584 Q117.259 675.129 114.95 678.584 Q112.658 682.021 108.301 682.021 Q103.943 682.021 101.634 678.584 Q99.3426 675.129 99.3426 668.584 Q99.3426 662.021 101.634 658.584 Q103.943 655.129 108.301 655.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M62.1553 579.172 Q59.4469 579.172 58.0754 581.846 Q56.7213 584.502 56.7213 589.85 Q56.7213 595.179 58.0754 597.853 Q59.4469 600.509 62.1553 600.509 Q64.8809 600.509 66.2351 597.853 Q67.6066 595.179 67.6066 589.85 Q67.6066 584.502 66.2351 581.846 Q64.8809 579.172 62.1553 579.172 M62.1553 576.395 Q66.5129 576.395 68.8045 579.85 Q71.1135 583.287 71.1135 589.85 Q71.1135 596.395 68.8045 599.849 Q66.5129 603.287 62.1553 603.287 Q57.7976 603.287 55.4886 599.849 Q53.197 596.395 53.197 589.85 Q53.197 583.287 55.4886 579.85 Q57.7976 576.395 62.1553 576.395 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M74.9156 598.374 L78.5788 598.374 L78.5788 602.783 L74.9156 602.783 L74.9156 598.374 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M82.9885 599.832 L88.7176 599.832 L88.7176 580.058 L82.485 581.308 L82.485 578.113 L88.6829 576.863 L92.1898 576.863 L92.1898 599.832 L97.919 599.832 L97.919 602.783 L82.9885 602.783 L82.9885 599.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M102.329 599.832 L108.058 599.832 L108.058 580.058 L101.825 581.308 L101.825 578.113 L108.023 576.863 L111.53 576.863 L111.53 599.832 L117.259 599.832 L117.259 602.783 L102.329 602.783 L102.329 599.832 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M62.433 500.438 Q59.7247 500.438 58.3532 503.112 Q56.999 505.768 56.999 511.115 Q56.999 516.445 58.3532 519.119 Q59.7247 521.775 62.433 521.775 Q65.1587 521.775 66.5129 519.119 Q67.8844 516.445 67.8844 511.115 Q67.8844 505.768 66.5129 503.112 Q65.1587 500.438 62.433 500.438 M62.433 497.66 Q66.7907 497.66 69.0823 501.115 Q71.3913 504.553 71.3913 511.115 Q71.3913 517.66 69.0823 521.115 Q66.7907 524.553 62.433 524.553 Q58.0754 524.553 55.7664 521.115 Q53.4748 517.66 53.4748 511.115 Q53.4748 504.553 55.7664 501.115 Q58.0754 497.66 62.433 497.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M75.1934 519.639 L78.8566 519.639 L78.8566 524.049 L75.1934 524.049 L75.1934 519.639 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M83.2663 521.098 L88.9954 521.098 L88.9954 501.324 L82.7628 502.574 L82.7628 499.379 L88.9607 498.129 L92.4676 498.129 L92.4676 521.098 L98.1967 521.098 L98.1967 524.049 L83.2663 524.049 L83.2663 521.098 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M105.02 521.098 L117.259 521.098 L117.259 524.049 L100.801 524.049 L100.801 521.098 Q102.797 519.032 106.235 515.56 Q109.69 512.07 110.575 511.063 Q112.259 509.171 112.919 507.869 Q113.596 506.549 113.596 505.282 Q113.596 503.216 112.138 501.914 Q110.697 500.612 108.37 500.612 Q106.721 500.612 104.881 501.185 Q103.058 501.758 100.974 502.921 L100.974 499.379 Q103.093 498.528 104.933 498.094 Q106.773 497.66 108.301 497.66 Q112.329 497.66 114.724 499.674 Q117.12 501.688 117.12 505.056 Q117.12 506.653 116.513 508.094 Q115.922 509.518 114.342 511.462 Q113.908 511.966 111.582 514.379 Q109.256 516.775 105.02 521.098 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.7212 421.704 Q59.0129 421.704 57.6414 424.377 Q56.2872 427.034 56.2872 432.381 Q56.2872 437.711 57.6414 440.384 Q59.0129 443.04 61.7212 443.04 Q64.4469 443.04 65.8011 440.384 Q67.1726 437.711 67.1726 432.381 Q67.1726 427.034 65.8011 424.377 Q64.4469 421.704 61.7212 421.704 M61.7212 418.926 Q66.0789 418.926 68.3705 422.381 Q70.6795 425.818 70.6795 432.381 Q70.6795 438.926 68.3705 442.381 Q66.0789 445.818 61.7212 445.818 Q57.3636 445.818 55.0546 442.381 Q52.7629 438.926 52.7629 432.381 Q52.7629 425.818 55.0546 422.381 Q57.3636 418.926 61.7212 418.926 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M74.4816 440.905 L78.1448 440.905 L78.1448 445.315 L74.4816 445.315 L74.4816 440.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M82.5545 442.363 L88.2836 442.363 L88.2836 422.589 L82.051 423.839 L82.051 420.645 L88.2489 419.395 L91.7558 419.395 L91.7558 442.363 L97.4849 442.363 L97.4849 445.315 L82.5545 445.315 L82.5545 442.363 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M111.912 431.339 Q114.429 431.877 115.836 433.579 Q117.259 435.28 117.259 437.78 Q117.259 441.617 114.62 443.717 Q111.981 445.818 107.12 445.818 Q105.488 445.818 103.752 445.488 Q102.034 445.176 100.193 444.533 L100.193 441.148 Q101.652 441.999 103.388 442.433 Q105.124 442.867 107.016 442.867 Q110.315 442.867 112.033 441.565 Q113.77 440.263 113.77 437.78 Q113.77 435.488 112.155 434.204 Q110.558 432.902 107.693 432.902 L104.672 432.902 L104.672 430.02 L107.832 430.02 Q110.419 430.02 111.79 428.995 Q113.162 427.954 113.162 426.009 Q113.162 424.013 111.738 422.954 Q110.332 421.877 107.693 421.877 Q106.252 421.877 104.603 422.19 Q102.954 422.502 100.974 423.162 L100.974 420.037 Q102.971 419.481 104.707 419.204 Q106.461 418.926 108.006 418.926 Q111.999 418.926 114.325 420.749 Q116.651 422.554 116.651 425.645 Q116.651 427.797 115.419 429.29 Q114.186 430.766 111.912 431.339 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M60.8705 342.969 Q58.1622 342.969 56.7907 345.643 Q55.4365 348.299 55.4365 353.646 Q55.4365 358.976 56.7907 361.65 Q58.1622 364.306 60.8705 364.306 Q63.5962 364.306 64.9504 361.65 Q66.3219 358.976 66.3219 353.646 Q66.3219 348.299 64.9504 345.643 Q63.5962 342.969 60.8705 342.969 M60.8705 340.192 Q65.2282 340.192 67.5198 343.646 Q69.8288 347.084 69.8288 353.646 Q69.8288 360.191 67.5198 363.646 Q65.2282 367.084 60.8705 367.084 Q56.5129 367.084 54.2039 363.646 Q51.9123 360.191 51.9123 353.646 Q51.9123 347.084 54.2039 343.646 Q56.5129 340.192 60.8705 340.192 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.6309 362.171 L77.2941 362.171 L77.2941 366.58 L73.6309 366.58 L73.6309 362.171 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M81.7038 363.629 L87.4329 363.629 L87.4329 343.855 L81.2003 345.105 L81.2003 341.91 L87.3982 340.66 L90.9051 340.66 L90.9051 363.629 L96.6342 363.629 L96.6342 366.58 L81.7038 366.58 L81.7038 363.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M110.072 343.716 L101.218 357.553 L110.072 357.553 L110.072 343.716 M109.152 340.66 L113.561 340.66 L113.561 357.553 L117.259 357.553 L117.259 360.469 L113.561 360.469 L113.561 366.58 L110.072 366.58 L110.072 360.469 L98.3703 360.469 L98.3703 357.084 L109.152 340.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.9817 264.235 Q59.2733 264.235 57.9018 266.909 Q56.5477 269.565 56.5477 274.912 Q56.5477 280.242 57.9018 282.915 Q59.2733 285.572 61.9817 285.572 Q64.7073 285.572 66.0615 282.915 Q67.433 280.242 67.433 274.912 Q67.433 269.565 66.0615 266.909 Q64.7073 264.235 61.9817 264.235 M61.9817 261.457 Q66.3393 261.457 68.6309 264.912 Q70.9399 268.349 70.9399 274.912 Q70.9399 281.457 68.6309 284.912 Q66.3393 288.349 61.9817 288.349 Q57.624 288.349 55.315 284.912 Q53.0234 281.457 53.0234 274.912 Q53.0234 268.349 55.315 264.912 Q57.624 261.457 61.9817 261.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M74.742 283.436 L78.4052 283.436 L78.4052 287.846 L74.742 287.846 L74.742 283.436 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M82.8149 284.895 L88.544 284.895 L88.544 265.12 L82.3114 266.37 L82.3114 263.176 L88.5093 261.926 L92.0162 261.926 L92.0162 284.895 L97.7453 284.895 L97.7453 287.846 L82.8149 287.846 L82.8149 284.895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M101.582 261.926 L115.349 261.926 L115.349 264.877 L104.794 264.877 L104.794 271.231 Q105.558 270.971 106.322 270.849 Q107.086 270.711 107.849 270.711 Q112.19 270.711 114.724 273.089 Q117.259 275.468 117.259 279.53 Q117.259 283.714 114.655 286.04 Q112.051 288.349 107.311 288.349 Q105.679 288.349 103.978 288.072 Q102.294 287.794 100.488 287.238 L100.488 283.714 Q102.051 284.565 103.718 284.981 Q105.384 285.398 107.242 285.398 Q110.245 285.398 111.999 283.818 Q113.752 282.238 113.752 279.53 Q113.752 276.822 111.999 275.242 Q110.245 273.662 107.242 273.662 Q105.836 273.662 104.429 273.974 Q103.04 274.287 101.582 274.947 L101.582 261.926 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.1136 185.501 Q58.4053 185.501 57.0338 188.174 Q55.6796 190.83 55.6796 196.178 Q55.6796 201.507 57.0338 204.181 Q58.4053 206.837 61.1136 206.837 Q63.8393 206.837 65.1934 204.181 Q66.565 201.507 66.565 196.178 Q66.565 190.83 65.1934 188.174 Q63.8393 185.501 61.1136 185.501 M61.1136 182.723 Q65.4712 182.723 67.7629 186.178 Q70.0719 189.615 70.0719 196.178 Q70.0719 202.723 67.7629 206.178 Q65.4712 209.615 61.1136 209.615 Q56.756 209.615 54.447 206.178 Q52.1553 202.723 52.1553 196.178 Q52.1553 189.615 54.447 186.178 Q56.756 182.723 61.1136 182.723 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M73.8739 204.702 L77.5371 204.702 L77.5371 209.112 L73.8739 209.112 L73.8739 204.702 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M81.9468 206.16 L87.676 206.16 L87.676 186.386 L81.4434 187.636 L81.4434 184.442 L87.6412 183.192 L91.1482 183.192 L91.1482 206.16 L96.8773 206.16 L96.8773 209.112 L81.9468 209.112 L81.9468 206.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M108.613 194.754 Q106.252 194.754 104.863 196.369 Q103.492 197.983 103.492 200.796 Q103.492 203.591 104.863 205.223 Q106.252 206.837 108.613 206.837 Q110.974 206.837 112.346 205.223 Q113.735 203.591 113.735 200.796 Q113.735 197.983 112.346 196.369 Q110.974 194.754 108.613 194.754 M115.575 183.764 L115.575 186.959 Q114.256 186.334 112.902 186.004 Q111.565 185.674 110.245 185.674 Q106.773 185.674 104.933 188.018 Q103.11 190.362 102.849 195.101 Q103.874 193.591 105.419 192.792 Q106.964 191.976 108.822 191.976 Q112.728 191.976 114.985 194.355 Q117.259 196.716 117.259 200.796 Q117.259 204.789 114.898 207.202 Q112.537 209.615 108.613 209.615 Q104.117 209.615 101.738 206.178 Q99.3599 202.723 99.3599 196.178 Q99.3599 190.032 102.277 186.386 Q105.193 182.723 110.106 182.723 Q111.426 182.723 112.763 182.983 Q114.117 183.244 115.575 183.764 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M61.9122 106.766 Q59.2039 106.766 57.8324 109.44 Q56.4782 112.096 56.4782 117.443 Q56.4782 122.773 57.8324 125.447 Q59.2039 128.103 61.9122 128.103 Q64.6379 128.103 65.992 125.447 Q67.3636 122.773 67.3636 117.443 Q67.3636 112.096 65.992 109.44 Q64.6379 106.766 61.9122 106.766 M61.9122 103.988 Q66.2698 103.988 68.5615 107.443 Q70.8705 110.881 70.8705 117.443 Q70.8705 123.988 68.5615 127.443 Q66.2698 130.881 61.9122 130.881 Q57.5546 130.881 55.2456 127.443 Q52.9539 123.988 52.9539 117.443 Q52.9539 110.881 55.2456 107.443 Q57.5546 103.988 61.9122 103.988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M74.6726 125.967 L78.3357 125.967 L78.3357 130.377 L74.6726 130.377 L74.6726 125.967 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M82.7454 127.426 L88.4746 127.426 L88.4746 107.652 L82.242 108.902 L82.242 105.707 L88.4398 104.457 L91.9468 104.457 L91.9468 127.426 L97.6759 127.426 L97.6759 130.377 L82.7454 130.377 L82.7454 127.426 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M100.593 104.457 L117.259 104.457 L117.259 105.95 L107.849 130.377 L104.186 130.377 L113.04 107.409 L100.593 107.409 L100.593 104.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M817.052 14.7875 L817.052 32.6433 L825.137 32.6433 Q829.624 32.6433 832.075 30.3199 Q834.526 27.9964 834.526 23.6995 Q834.526 19.4345 832.075 17.111 Q829.624 14.7875 825.137 14.7875 L817.052 14.7875 M810.623 9.504 L825.137 9.504 Q833.126 9.504 837.2 13.1325 Q841.305 16.7291 841.305 23.6995 Q841.305 30.7336 837.2 34.3303 Q833.126 37.9269 825.137 37.9269 L817.052 37.9269 L817.052 57.024 L810.623 57.024 L810.623 9.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M847.448 7.4988 L853.305 7.4988 L853.305 57.024 L847.448 57.024 L847.448 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M875.648 39.1045 Q868.551 39.1045 865.813 40.7278 Q863.076 42.351 863.076 46.266 Q863.076 49.3852 865.113 51.2312 Q867.182 53.0454 870.715 53.0454 Q875.585 53.0454 878.513 49.608 Q881.473 46.1386 881.473 40.4095 L881.473 39.1045 L875.648 39.1045 M887.33 36.6856 L887.33 57.024 L881.473 57.024 L881.473 51.6131 Q879.468 54.8597 876.476 56.4193 Q873.484 57.947 869.155 57.947 Q863.681 57.947 860.434 54.8915 Q857.22 51.8041 857.22 46.6479 Q857.22 40.6323 861.23 37.5768 Q865.272 34.5212 873.261 34.5212 L881.473 34.5212 L881.473 33.9483 Q881.473 29.9061 878.799 27.7099 Q876.158 25.4819 871.352 25.4819 Q868.296 25.4819 865.4 26.214 Q862.503 26.946 859.83 28.4101 L859.83 22.9993 Q863.044 21.758 866.068 21.1532 Q869.092 20.5167 871.956 20.5167 Q879.691 20.5167 883.51 24.5271 Q887.33 28.5375 887.33 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M908.305 60.3342 Q905.822 66.6999 903.467 68.6414 Q901.111 70.583 897.165 70.583 L892.486 70.583 L892.486 65.6814 L895.923 65.6814 Q898.342 65.6814 899.679 64.5355 Q901.016 63.3897 902.639 59.1247 L903.689 56.4511 L889.271 21.376 L895.478 21.376 L906.618 49.2578 L917.758 21.376 L923.964 21.376 L908.305 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M960.599 37.7359 L960.599 40.6005 L933.672 40.6005 Q934.054 46.6479 937.3 49.8308 Q940.579 52.9818 946.403 52.9818 Q949.777 52.9818 952.928 52.1542 Q956.111 51.3267 959.23 49.6716 L959.23 55.2098 Q956.079 56.5466 952.769 57.2468 Q949.459 57.947 946.053 57.947 Q937.523 57.947 932.526 52.9818 Q927.561 48.0165 927.561 39.5501 Q927.561 30.7973 932.271 25.6729 Q937.014 20.5167 945.035 20.5167 Q952.228 20.5167 956.397 25.1636 Q960.599 29.7788 960.599 37.7359 M954.742 36.0172 Q954.679 31.2111 952.037 28.3465 Q949.427 25.4819 945.098 25.4819 Q940.197 25.4819 937.237 28.251 Q934.308 31.0201 933.863 36.049 L954.742 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M987.398 26.8506 Q986.412 26.2776 985.234 26.023 Q984.088 25.7366 982.688 25.7366 Q977.723 25.7366 975.049 28.9831 Q972.407 32.1977 972.407 38.2452 L972.407 57.024 L966.519 57.024 L966.519 21.376 L972.407 21.376 L972.407 26.9142 Q974.253 23.6677 977.213 22.1081 Q980.173 20.5167 984.407 20.5167 Q985.011 20.5167 985.743 20.6122 Q986.475 20.6758 987.367 20.835 L987.398 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1007.61 7.56246 Q1003.34 14.883 1001.28 22.0444 Q999.207 29.2059 999.207 36.5583 Q999.207 43.9106 1001.28 51.1357 Q1003.38 58.329 1007.61 65.6177 L1002.52 65.6177 Q997.743 58.138 995.356 50.9129 Q993 43.6878 993 36.5583 Q993 29.4605 995.356 22.2672 Q997.711 15.074 1002.52 7.56246 L1007.61 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1044.24 37.7359 L1044.24 40.6005 L1017.32 40.6005 Q1017.7 46.6479 1020.95 49.8308 Q1024.22 52.9818 1030.05 52.9818 Q1033.42 52.9818 1036.57 52.1542 Q1039.76 51.3267 1042.88 49.6716 L1042.88 55.2098 Q1039.72 56.5466 1036.41 57.2468 Q1033.1 57.947 1029.7 57.947 Q1021.17 57.947 1016.17 52.9818 Q1011.21 48.0165 1011.21 39.5501 Q1011.21 30.7973 1015.92 25.6729 Q1020.66 20.5167 1028.68 20.5167 Q1035.87 20.5167 1040.04 25.1636 Q1044.24 29.7788 1044.24 37.7359 M1038.39 36.0172 Q1038.32 31.2111 1035.68 28.3465 Q1033.07 25.4819 1028.74 25.4819 Q1023.84 25.4819 1020.88 28.251 Q1017.95 31.0201 1017.51 36.049 L1038.39 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1073.11 22.4264 L1073.11 27.9645 Q1070.63 26.6914 1067.96 26.0548 Q1065.28 25.4183 1062.42 25.4183 Q1058.06 25.4183 1055.86 26.7551 Q1053.7 28.0919 1053.7 30.7655 Q1053.7 32.8025 1055.26 33.9801 Q1056.82 35.126 1061.53 36.1763 L1063.53 36.6219 Q1069.77 37.9587 1072.38 40.4095 Q1075.02 42.8285 1075.02 47.189 Q1075.02 52.1542 1071.08 55.0506 Q1067.16 57.947 1060.29 57.947 Q1057.42 57.947 1054.3 57.3741 Q1051.21 56.833 1047.78 55.719 L1047.78 49.6716 Q1051.02 51.3585 1054.17 52.2179 Q1057.33 53.0454 1060.41 53.0454 Q1064.55 53.0454 1066.78 51.645 Q1069.01 50.2127 1069.01 47.6346 Q1069.01 45.2474 1067.38 43.9743 Q1065.79 42.7012 1060.35 41.5235 L1058.31 41.0461 Q1052.87 39.9002 1050.45 37.5449 Q1048.03 35.1578 1048.03 31.0201 Q1048.03 25.9912 1051.6 23.2539 Q1055.16 20.5167 1061.72 20.5167 Q1064.96 20.5167 1067.83 20.9941 Q1070.69 21.4715 1073.11 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1086.96 11.2546 L1086.96 21.376 L1099.02 21.376 L1099.02 25.9275 L1086.96 25.9275 L1086.96 45.2793 Q1086.96 49.6398 1088.14 50.8811 Q1089.35 52.1224 1093.01 52.1224 L1099.02 52.1224 L1099.02 57.024 L1093.01 57.024 Q1086.23 57.024 1083.65 54.5095 Q1081.07 51.9633 1081.07 45.2793 L1081.07 25.9275 L1076.77 25.9275 L1076.77 21.376 L1081.07 21.376 L1081.07 11.2546 L1086.96 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1132.25 67.8457 L1132.25 72.3972 L1098.38 72.3972 L1098.38 67.8457 L1132.25 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1164.05 22.7447 L1164.05 28.2192 Q1161.56 26.8506 1159.05 26.1822 Q1156.57 25.4819 1154.02 25.4819 Q1148.32 25.4819 1145.17 29.1104 Q1142.02 32.707 1142.02 39.2318 Q1142.02 45.7567 1145.17 49.3852 Q1148.32 52.9818 1154.02 52.9818 Q1156.57 52.9818 1159.05 52.3134 Q1161.56 51.6131 1164.05 50.2445 L1164.05 55.6554 Q1161.6 56.8012 1158.95 57.3741 Q1156.34 57.947 1153.38 57.947 Q1145.33 57.947 1140.59 52.8863 Q1135.85 47.8256 1135.85 39.2318 Q1135.85 30.5108 1140.62 25.5138 Q1145.43 20.5167 1153.77 20.5167 Q1156.47 20.5167 1159.05 21.0896 Q1161.63 21.6307 1164.05 22.7447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1184 25.4819 Q1179.29 25.4819 1176.56 29.174 Q1173.82 32.8343 1173.82 39.2318 Q1173.82 45.6294 1176.52 49.3215 Q1179.26 52.9818 1184 52.9818 Q1188.68 52.9818 1191.42 49.2897 Q1194.16 45.5976 1194.16 39.2318 Q1194.16 32.898 1191.42 29.2059 Q1188.68 25.4819 1184 25.4819 M1184 20.5167 Q1191.64 20.5167 1196 25.4819 Q1200.36 30.4472 1200.36 39.2318 Q1200.36 47.9847 1196 52.9818 Q1191.64 57.947 1184 57.947 Q1176.33 57.947 1171.97 52.9818 Q1167.64 47.9847 1167.64 39.2318 Q1167.64 30.4472 1171.97 25.4819 Q1176.33 20.5167 1184 20.5167 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1227.16 26.8506 Q1226.18 26.2776 1225 26.023 Q1223.85 25.7366 1222.45 25.7366 Q1217.49 25.7366 1214.81 28.9831 Q1212.17 32.1977 1212.17 38.2452 L1212.17 57.024 L1206.28 57.024 L1206.28 21.376 L1212.17 21.376 L1212.17 26.9142 Q1214.02 23.6677 1216.98 22.1081 Q1219.94 20.5167 1224.17 20.5167 Q1224.78 20.5167 1225.51 20.6122 Q1226.24 20.6758 1227.13 20.835 L1227.16 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1252.82 26.8506 Q1251.83 26.2776 1250.65 26.023 Q1249.51 25.7366 1248.11 25.7366 Q1243.14 25.7366 1240.47 28.9831 Q1237.83 32.1977 1237.83 38.2452 L1237.83 57.024 L1231.94 57.024 L1231.94 21.376 L1237.83 21.376 L1237.83 26.9142 Q1239.67 23.6677 1242.63 22.1081 Q1245.59 20.5167 1249.82 20.5167 Q1250.43 20.5167 1251.16 20.6122 Q1251.89 20.6758 1252.78 20.835 L1252.82 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1288.02 37.7359 L1288.02 40.6005 L1261.09 40.6005 Q1261.47 46.6479 1264.72 49.8308 Q1268 52.9818 1273.82 52.9818 Q1277.2 52.9818 1280.35 52.1542 Q1283.53 51.3267 1286.65 49.6716 L1286.65 55.2098 Q1283.5 56.5466 1280.19 57.2468 Q1276.88 57.947 1273.47 57.947 Q1264.94 57.947 1259.95 52.9818 Q1254.98 48.0165 1254.98 39.5501 Q1254.98 30.7973 1259.69 25.6729 Q1264.43 20.5167 1272.45 20.5167 Q1279.65 20.5167 1283.82 25.1636 Q1288.02 29.7788 1288.02 37.7359 M1282.16 36.0172 Q1282.1 31.2111 1279.46 28.3465 Q1276.85 25.4819 1272.52 25.4819 Q1267.62 25.4819 1264.66 28.251 Q1261.73 31.0201 1261.28 36.049 L1282.16 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1319.82 22.7447 L1319.82 28.2192 Q1317.33 26.8506 1314.82 26.1822 Q1312.34 25.4819 1309.79 25.4819 Q1304.09 25.4819 1300.94 29.1104 Q1297.79 32.707 1297.79 39.2318 Q1297.79 45.7567 1300.94 49.3852 Q1304.09 52.9818 1309.79 52.9818 Q1312.34 52.9818 1314.82 52.3134 Q1317.33 51.6131 1319.82 50.2445 L1319.82 55.6554 Q1317.36 56.8012 1314.72 57.3741 Q1312.11 57.947 1309.15 57.947 Q1301.1 57.947 1296.36 52.8863 Q1291.62 47.8256 1291.62 39.2318 Q1291.62 30.5108 1296.39 25.5138 Q1301.2 20.5167 1309.53 20.5167 Q1312.24 20.5167 1314.82 21.0896 Q1317.4 21.6307 1319.82 22.7447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1331.75 11.2546 L1331.75 21.376 L1343.81 21.376 L1343.81 25.9275 L1331.75 25.9275 L1331.75 45.2793 Q1331.75 49.6398 1332.93 50.8811 Q1334.14 52.1224 1337.8 52.1224 L1343.81 52.1224 L1343.81 57.024 L1337.8 57.024 Q1331.02 57.024 1328.44 54.5095 Q1325.86 51.9633 1325.86 45.2793 L1325.86 25.9275 L1321.57 25.9275 L1321.57 21.376 L1325.86 21.376 L1325.86 11.2546 L1331.75 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1380.45 37.7359 L1380.45 40.6005 L1353.52 40.6005 Q1353.9 46.6479 1357.15 49.8308 Q1360.43 52.9818 1366.25 52.9818 Q1369.63 52.9818 1372.78 52.1542 Q1375.96 51.3267 1379.08 49.6716 L1379.08 55.2098 Q1375.93 56.5466 1372.62 57.2468 Q1369.31 57.947 1365.9 57.947 Q1357.37 57.947 1352.38 52.9818 Q1347.41 48.0165 1347.41 39.5501 Q1347.41 30.7973 1352.12 25.6729 Q1356.86 20.5167 1364.88 20.5167 Q1372.08 20.5167 1376.25 25.1636 Q1380.45 29.7788 1380.45 37.7359 M1374.59 36.0172 Q1374.53 31.2111 1371.89 28.3465 Q1369.28 25.4819 1364.95 25.4819 Q1360.05 25.4819 1357.09 28.251 Q1354.16 31.0201 1353.71 36.049 L1374.59 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1410.05 26.7869 L1410.05 7.4988 L1415.91 7.4988 L1415.91 57.024 L1410.05 57.024 L1410.05 51.6768 Q1408.2 54.8597 1405.37 56.4193 Q1402.57 57.947 1398.62 57.947 Q1392.16 57.947 1388.09 52.7908 Q1384.05 47.6346 1384.05 39.2318 Q1384.05 30.8291 1388.09 25.6729 Q1392.16 20.5167 1398.62 20.5167 Q1402.57 20.5167 1405.37 22.0763 Q1408.2 23.604 1410.05 26.7869 M1390.09 39.2318 Q1390.09 45.693 1392.73 49.3852 Q1395.41 53.0454 1400.06 53.0454 Q1404.7 53.0454 1407.38 49.3852 Q1410.05 45.693 1410.05 39.2318 Q1410.05 32.7707 1407.38 29.1104 Q1404.7 25.4183 1400.06 25.4183 Q1395.41 25.4183 1392.73 29.1104 Q1390.09 32.7707 1390.09 39.2318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1449.13 67.8457 L1449.13 72.3972 L1415.27 72.3972 L1415.27 67.8457 L1449.13 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1455.28 21.376 L1461.13 21.376 L1461.13 57.6606 Q1461.13 64.4719 1458.52 67.5274 Q1455.95 70.583 1450.19 70.583 L1447.96 70.583 L1447.96 65.6177 L1449.52 65.6177 Q1452.86 65.6177 1454.07 64.0581 Q1455.28 62.5303 1455.28 57.6606 L1455.28 21.376 M1455.28 7.4988 L1461.13 7.4988 L1461.13 14.9149 L1455.28 14.9149 L1455.28 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1497.77 37.7359 L1497.77 40.6005 L1470.84 40.6005 Q1471.22 46.6479 1474.47 49.8308 Q1477.75 52.9818 1483.57 52.9818 Q1486.95 52.9818 1490.1 52.1542 Q1493.28 51.3267 1496.4 49.6716 L1496.4 55.2098 Q1493.25 56.5466 1489.94 57.2468 Q1486.63 57.947 1483.22 57.947 Q1474.69 57.947 1469.7 52.9818 Q1464.73 48.0165 1464.73 39.5501 Q1464.73 30.7973 1469.44 25.6729 Q1474.18 20.5167 1482.2 20.5167 Q1489.4 20.5167 1493.57 25.1636 Q1497.77 29.7788 1497.77 37.7359 M1491.91 36.0172 Q1491.85 31.2111 1489.21 28.3465 Q1486.6 25.4819 1482.27 25.4819 Q1477.37 25.4819 1474.41 28.251 Q1471.48 31.0201 1471.03 36.049 L1491.91 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1521.96 7.4988 L1521.96 12.3686 L1516.36 12.3686 Q1513.21 12.3686 1511.96 13.6417 Q1510.75 14.9149 1510.75 18.225 L1510.75 21.376 L1520.4 21.376 L1520.4 25.9275 L1510.75 25.9275 L1510.75 57.024 L1504.87 57.024 L1504.87 25.9275 L1499.26 25.9275 L1499.26 21.376 L1504.87 21.376 L1504.87 18.8934 Q1504.87 12.9415 1507.64 10.2361 Q1510.4 7.4988 1516.42 7.4988 L1521.96 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1546.15 7.4988 L1546.15 12.3686 L1540.55 12.3686 Q1537.4 12.3686 1536.15 13.6417 Q1534.94 14.9149 1534.94 18.225 L1534.94 21.376 L1544.59 21.376 L1544.59 25.9275 L1534.94 25.9275 L1534.94 57.024 L1529.06 57.024 L1529.06 25.9275 L1523.45 25.9275 L1523.45 21.376 L1529.06 21.376 L1529.06 18.8934 Q1529.06 12.9415 1531.83 10.2361 Q1534.59 7.4988 1540.61 7.4988 L1546.15 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1572.95 26.8506 Q1571.96 26.2776 1570.78 26.023 Q1569.64 25.7366 1568.24 25.7366 Q1563.27 25.7366 1560.6 28.9831 Q1557.96 32.1977 1557.96 38.2452 L1557.96 57.024 L1552.07 57.024 L1552.07 21.376 L1557.96 21.376 L1557.96 26.9142 Q1559.8 23.6677 1562.76 22.1081 Q1565.72 20.5167 1569.96 20.5167 Q1570.56 20.5167 1571.29 20.6122 Q1572.02 20.6758 1572.92 20.835 L1572.95 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1608.15 37.7359 L1608.15 40.6005 L1581.22 40.6005 Q1581.61 46.6479 1584.85 49.8308 Q1588.13 52.9818 1593.95 52.9818 Q1597.33 52.9818 1600.48 52.1542 Q1603.66 51.3267 1606.78 49.6716 L1606.78 55.2098 Q1603.63 56.5466 1600.32 57.2468 Q1597.01 57.947 1593.6 57.947 Q1585.07 57.947 1580.08 52.9818 Q1575.11 48.0165 1575.11 39.5501 Q1575.11 30.7973 1579.82 25.6729 Q1584.57 20.5167 1592.59 20.5167 Q1599.78 20.5167 1603.95 25.1636 Q1608.15 29.7788 1608.15 37.7359 M1602.29 36.0172 Q1602.23 31.2111 1599.59 28.3465 Q1596.98 25.4819 1592.65 25.4819 Q1587.75 25.4819 1584.79 28.251 Q1581.86 31.0201 1581.41 36.049 L1602.29 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1629.13 60.3342 Q1626.64 66.6999 1624.29 68.6414 Q1621.93 70.583 1617.99 70.583 L1613.31 70.583 L1613.31 65.6814 L1616.74 65.6814 Q1619.16 65.6814 1620.5 64.5355 Q1621.84 63.3897 1623.46 59.1247 L1624.51 56.4511 L1610.09 21.376 L1616.3 21.376 L1627.44 49.2578 L1638.58 21.376 L1644.78 21.376 L1629.13 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1673.65 22.4264 L1673.65 27.9645 Q1671.17 26.6914 1668.5 26.0548 Q1665.82 25.4183 1662.96 25.4183 Q1658.6 25.4183 1656.4 26.7551 Q1654.24 28.0919 1654.24 30.7655 Q1654.24 32.8025 1655.8 33.9801 Q1657.36 35.126 1662.07 36.1763 L1664.07 36.6219 Q1670.31 37.9587 1672.92 40.4095 Q1675.56 42.8285 1675.56 47.189 Q1675.56 52.1542 1671.62 55.0506 Q1667.7 57.947 1660.83 57.947 Q1657.96 57.947 1654.84 57.3741 Q1651.76 56.833 1648.32 55.719 L1648.32 49.6716 Q1651.56 51.3585 1654.72 52.2179 Q1657.87 53.0454 1660.95 53.0454 Q1665.09 53.0454 1667.32 51.645 Q1669.55 50.2127 1669.55 47.6346 Q1669.55 45.2474 1667.92 43.9743 Q1666.33 42.7012 1660.89 41.5235 L1658.85 41.0461 Q1653.41 39.9002 1650.99 37.5449 Q1648.57 35.1578 1648.57 31.0201 Q1648.57 25.9912 1652.14 23.2539 Q1655.7 20.5167 1662.26 20.5167 Q1665.51 20.5167 1668.37 20.9941 Q1671.23 21.4715 1673.65 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M1680.78 7.56246 L1685.88 7.56246 Q1690.65 15.074 1693.01 22.2672 Q1695.39 29.4605 1695.39 36.5583 Q1695.39 43.6878 1693.01 50.9129 Q1690.65 58.138 1685.88 65.6177 L1680.78 65.6177 Q1685.02 58.329 1687.09 51.1357 Q1689.19 43.9106 1689.19 36.5583 Q1689.19 29.2059 1687.09 22.0444 Q1685.02 14.883 1680.78 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip042)\" d=\"\nM274.235 1455.51 L274.235 1455.9 L292.879 1455.9 L292.879 1455.51 L274.235 1455.51 L274.235 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 274.235,1455.51 274.235,1455.9 292.879,1455.9 292.879,1455.51 274.235,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM292.879 1455.51 L292.879 1455.9 L311.522 1455.9 L311.522 1455.51 L292.879 1455.51 L292.879 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 292.879,1455.51 292.879,1455.9 311.522,1455.9 311.522,1455.51 292.879,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM311.522 1455.9 L311.522 1455.9 L330.165 1455.9 L330.165 1455.9 L311.522 1455.9 L311.522 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 311.522,1455.9 311.522,1455.9 330.165,1455.9 311.522,1455.9 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM330.165 1455.51 L330.165 1455.9 L348.808 1455.9 L348.808 1455.51 L330.165 1455.51 L330.165 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 330.165,1455.51 330.165,1455.9 348.808,1455.9 348.808,1455.51 330.165,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM348.808 1455.9 L348.808 1455.9 L367.452 1455.9 L367.452 1455.9 L348.808 1455.9 L348.808 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 348.808,1455.9 348.808,1455.9 367.452,1455.9 348.808,1455.9 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM367.452 1455.9 L367.452 1455.9 L386.095 1455.9 L386.095 1455.9 L367.452 1455.9 L367.452 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 367.452,1455.9 367.452,1455.9 386.095,1455.9 367.452,1455.9 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM386.095 1454.72 L386.095 1455.9 L404.738 1455.9 L404.738 1454.72 L386.095 1454.72 L386.095 1454.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 386.095,1454.72 386.095,1455.9 404.738,1455.9 404.738,1454.72 386.095,1454.72 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM404.738 1453.54 L404.738 1455.9 L423.382 1455.9 L423.382 1453.54 L404.738 1453.54 L404.738 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 404.738,1453.54 404.738,1455.9 423.382,1455.9 423.382,1453.54 404.738,1453.54 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM423.382 1454.72 L423.382 1455.9 L442.025 1455.9 L442.025 1454.72 L423.382 1454.72 L423.382 1454.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 423.382,1454.72 423.382,1455.9 442.025,1455.9 442.025,1454.72 423.382,1454.72 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM442.025 1452.75 L442.025 1455.9 L460.668 1455.9 L460.668 1452.75 L442.025 1452.75 L442.025 1452.75 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 442.025,1452.75 442.025,1455.9 460.668,1455.9 460.668,1452.75 442.025,1452.75 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM460.668 1451.18 L460.668 1455.9 L479.311 1455.9 L479.311 1451.18 L460.668 1451.18 L460.668 1451.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 460.668,1451.18 460.668,1455.9 479.311,1455.9 479.311,1451.18 460.668,1451.18 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM479.311 1450.78 L479.311 1455.9 L497.955 1455.9 L497.955 1450.78 L479.311 1450.78 L479.311 1450.78 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 479.311,1450.78 479.311,1455.9 497.955,1455.9 497.955,1450.78 479.311,1450.78 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM497.955 1448.42 L497.955 1455.9 L516.598 1455.9 L516.598 1448.42 L497.955 1448.42 L497.955 1448.42 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 497.955,1448.42 497.955,1455.9 516.598,1455.9 516.598,1448.42 497.955,1448.42 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM516.598 1446.06 L516.598 1455.9 L535.241 1455.9 L535.241 1446.06 L516.598 1446.06 L516.598 1446.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 516.598,1446.06 516.598,1455.9 535.241,1455.9 535.241,1446.06 516.598,1446.06 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM535.241 1442.12 L535.241 1455.9 L553.885 1455.9 L553.885 1442.12 L535.241 1442.12 L535.241 1442.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 535.241,1442.12 535.241,1455.9 553.885,1455.9 553.885,1442.12 535.241,1442.12 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM553.885 1433.46 L553.885 1455.9 L572.528 1455.9 L572.528 1433.46 L553.885 1433.46 L553.885 1433.46 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 553.885,1433.46 553.885,1455.9 572.528,1455.9 572.528,1433.46 553.885,1433.46 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM572.528 1435.43 L572.528 1455.9 L591.171 1455.9 L591.171 1435.43 L572.528 1435.43 L572.528 1435.43 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 572.528,1435.43 572.528,1455.9 591.171,1455.9 591.171,1435.43 572.528,1435.43 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM591.171 1426.38 L591.171 1455.9 L609.814 1455.9 L609.814 1426.38 L591.171 1426.38 L591.171 1426.38 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 591.171,1426.38 591.171,1455.9 609.814,1455.9 609.814,1426.38 591.171,1426.38 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM609.814 1418.9 L609.814 1455.9 L628.458 1455.9 L628.458 1418.9 L609.814 1418.9 L609.814 1418.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 609.814,1418.9 609.814,1455.9 628.458,1455.9 628.458,1418.9 609.814,1418.9 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM628.458 1396.46 L628.458 1455.9 L647.101 1455.9 L647.101 1396.46 L628.458 1396.46 L628.458 1396.46 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 628.458,1396.46 628.458,1455.9 647.101,1455.9 647.101,1396.46 628.458,1396.46 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM647.101 1389.76 L647.101 1455.9 L665.744 1455.9 L665.744 1389.76 L647.101 1389.76 L647.101 1389.76 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 647.101,1389.76 647.101,1455.9 665.744,1455.9 665.744,1389.76 647.101,1389.76 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM665.744 1377.17 L665.744 1455.9 L684.388 1455.9 L684.388 1377.17 L665.744 1377.17 L665.744 1377.17 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 665.744,1377.17 665.744,1455.9 684.388,1455.9 684.388,1377.17 665.744,1377.17 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM684.388 1351.97 L684.388 1455.9 L703.031 1455.9 L703.031 1351.97 L684.388 1351.97 L684.388 1351.97 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 684.388,1351.97 684.388,1455.9 703.031,1455.9 703.031,1351.97 684.388,1351.97 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM703.031 1329.14 L703.031 1455.9 L721.674 1455.9 L721.674 1329.14 L703.031 1329.14 L703.031 1329.14 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 703.031,1329.14 703.031,1455.9 721.674,1455.9 721.674,1329.14 703.031,1329.14 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM721.674 1320.08 L721.674 1455.9 L740.317 1455.9 L740.317 1320.08 L721.674 1320.08 L721.674 1320.08 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 721.674,1320.08 721.674,1455.9 740.317,1455.9 740.317,1320.08 721.674,1320.08 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM740.317 1293.71 L740.317 1455.9 L758.961 1455.9 L758.961 1293.71 L740.317 1293.71 L740.317 1293.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 740.317,1293.71 740.317,1455.9 758.961,1455.9 758.961,1293.71 740.317,1293.71 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM758.961 1241.74 L758.961 1455.9 L777.604 1455.9 L777.604 1241.74 L758.961 1241.74 L758.961 1241.74 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 758.961,1241.74 758.961,1455.9 777.604,1455.9 777.604,1241.74 758.961,1241.74 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM777.604 1211.83 L777.604 1455.9 L796.247 1455.9 L796.247 1211.83 L777.604 1211.83 L777.604 1211.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 777.604,1211.83 777.604,1455.9 796.247,1455.9 796.247,1211.83 777.604,1211.83 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM796.247 1162.22 L796.247 1455.9 L814.89 1455.9 L814.89 1162.22 L796.247 1162.22 L796.247 1162.22 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 796.247,1162.22 796.247,1455.9 814.89,1455.9 814.89,1162.22 796.247,1162.22 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM814.89 1131.52 L814.89 1455.9 L833.534 1455.9 L833.534 1131.52 L814.89 1131.52 L814.89 1131.52 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 814.89,1131.52 814.89,1455.9 833.534,1455.9 833.534,1131.52 814.89,1131.52 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM833.534 1060.66 L833.534 1455.9 L852.177 1455.9 L852.177 1060.66 L833.534 1060.66 L833.534 1060.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 833.534,1060.66 833.534,1455.9 852.177,1455.9 852.177,1060.66 833.534,1060.66 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM852.177 1007.51 L852.177 1455.9 L870.82 1455.9 L870.82 1007.51 L852.177 1007.51 L852.177 1007.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 852.177,1007.51 852.177,1455.9 870.82,1455.9 870.82,1007.51 852.177,1007.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM870.82 946.49 L870.82 1455.9 L889.464 1455.9 L889.464 946.49 L870.82 946.49 L870.82 946.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 870.82,946.49 870.82,1455.9 889.464,1455.9 889.464,946.49 870.82,946.49 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM889.464 888.62 L889.464 1455.9 L908.107 1455.9 L908.107 888.62 L889.464 888.62 L889.464 888.62 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 889.464,888.62 889.464,1455.9 908.107,1455.9 908.107,888.62 889.464,888.62 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM908.107 819.728 L908.107 1455.9 L926.75 1455.9 L926.75 819.728 L908.107 819.728 L908.107 819.728 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 908.107,819.728 908.107,1455.9 926.75,1455.9 926.75,819.728 908.107,819.728 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM926.75 761.464 L926.75 1455.9 L945.393 1455.9 L945.393 761.464 L926.75 761.464 L926.75 761.464 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 926.75,761.464 926.75,1455.9 945.393,1455.9 945.393,761.464 926.75,761.464 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM945.393 690.21 L945.393 1455.9 L964.037 1455.9 L964.037 690.21 L945.393 690.21 L945.393 690.21 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 945.393,690.21 945.393,1455.9 964.037,1455.9 964.037,690.21 945.393,690.21 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM964.037 633.521 L964.037 1455.9 L982.68 1455.9 L982.68 633.521 L964.037 633.521 L964.037 633.521 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 964.037,633.521 964.037,1455.9 982.68,1455.9 982.68,633.521 964.037,633.521 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM982.68 539.433 L982.68 1455.9 L1001.32 1455.9 L1001.32 539.433 L982.68 539.433 L982.68 539.433 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 982.68,539.433 982.68,1455.9 1001.32,1455.9 1001.32,539.433 982.68,539.433 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1001.32 491.405 L1001.32 1455.9 L1019.97 1455.9 L1019.97 491.405 L1001.32 491.405 L1001.32 491.405 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1001.32,491.405 1001.32,1455.9 1019.97,1455.9 1019.97,491.405 1001.32,491.405 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1019.97 450.464 L1019.97 1455.9 L1038.61 1455.9 L1038.61 450.464 L1019.97 450.464 L1019.97 450.464 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1019.97,450.464 1019.97,1455.9 1038.61,1455.9 1038.61,450.464 1019.97,450.464 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1038.61 351.258 L1038.61 1455.9 L1057.25 1455.9 L1057.25 351.258 L1038.61 351.258 L1038.61 351.258 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1038.61,351.258 1038.61,1455.9 1057.25,1455.9 1057.25,351.258 1038.61,351.258 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1057.25 300.475 L1057.25 1455.9 L1075.9 1455.9 L1075.9 300.475 L1057.25 300.475 L1057.25 300.475 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1057.25,300.475 1057.25,1455.9 1075.9,1455.9 1075.9,300.475 1057.25,300.475 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1075.9 302.443 L1075.9 1455.9 L1094.54 1455.9 L1094.54 302.443 L1075.9 302.443 L1075.9 302.443 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1075.9,302.443 1075.9,1455.9 1094.54,1455.9 1094.54,302.443 1075.9,302.443 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1094.54 225.677 L1094.54 1455.9 L1113.18 1455.9 L1113.18 225.677 L1094.54 225.677 L1094.54 225.677 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1094.54,225.677 1094.54,1455.9 1113.18,1455.9 1113.18,225.677 1094.54,225.677 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1113.18 234.338 L1113.18 1455.9 L1131.83 1455.9 L1131.83 234.338 L1113.18 234.338 L1113.18 234.338 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1113.18,234.338 1113.18,1455.9 1131.83,1455.9 1131.83,234.338 1113.18,234.338 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1131.83 172.925 L1131.83 1455.9 L1150.47 1455.9 L1150.47 172.925 L1131.83 172.925 L1131.83 172.925 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1131.83,172.925 1131.83,1455.9 1150.47,1455.9 1150.47,172.925 1131.83,172.925 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1150.47 149.698 L1150.47 1455.9 L1169.11 1455.9 L1169.11 149.698 L1150.47 149.698 L1150.47 149.698 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1150.47,149.698 1150.47,1455.9 1169.11,1455.9 1169.11,149.698 1150.47,149.698 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1169.11 150.092 L1169.11 1455.9 L1187.76 1455.9 L1187.76 150.092 L1169.11 150.092 L1169.11 150.092 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1169.11,150.092 1169.11,1455.9 1187.76,1455.9 1187.76,150.092 1169.11,150.092 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1187.76 200.088 L1187.76 1455.9 L1206.4 1455.9 L1206.4 200.088 L1187.76 200.088 L1187.76 200.088 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1187.76,200.088 1187.76,1455.9 1206.4,1455.9 1206.4,200.088 1187.76,200.088 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1206.4 176.074 L1206.4 1455.9 L1225.04 1455.9 L1225.04 176.074 L1206.4 176.074 L1206.4 176.074 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1206.4,176.074 1206.4,1455.9 1225.04,1455.9 1225.04,176.074 1206.4,176.074 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1225.04 183.948 L1225.04 1455.9 L1243.69 1455.9 L1243.69 183.948 L1225.04 183.948 L1225.04 183.948 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1225.04,183.948 1225.04,1455.9 1243.69,1455.9 1243.69,183.948 1225.04,183.948 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1243.69 242.605 L1243.69 1455.9 L1262.33 1455.9 L1262.33 242.605 L1243.69 242.605 L1243.69 242.605 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1243.69,242.605 1243.69,1455.9 1262.33,1455.9 1262.33,242.605 1243.69,242.605 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1262.33 249.297 L1262.33 1455.9 L1280.97 1455.9 L1280.97 249.297 L1262.33 249.297 L1262.33 249.297 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1262.33,249.297 1262.33,1455.9 1280.97,1455.9 1280.97,249.297 1262.33,249.297 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1280.97 295.357 L1280.97 1455.9 L1299.62 1455.9 L1299.62 295.357 L1280.97 295.357 L1280.97 295.357 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1280.97,295.357 1280.97,1455.9 1299.62,1455.9 1299.62,295.357 1280.97,295.357 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1299.62 352.833 L1299.62 1455.9 L1318.26 1455.9 L1318.26 352.833 L1299.62 352.833 L1299.62 352.833 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1299.62,352.833 1299.62,1455.9 1318.26,1455.9 1318.26,352.833 1299.62,352.833 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1318.26 412.277 L1318.26 1455.9 L1336.9 1455.9 L1336.9 412.277 L1318.26 412.277 L1318.26 412.277 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1318.26,412.277 1318.26,1455.9 1336.9,1455.9 1336.9,412.277 1318.26,412.277 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1336.9 452.826 L1336.9 1455.9 L1355.55 1455.9 L1355.55 452.826 L1336.9 452.826 L1336.9 452.826 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1336.9,452.826 1336.9,1455.9 1355.55,1455.9 1355.55,452.826 1336.9,452.826 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1355.55 498.098 L1355.55 1455.9 L1374.19 1455.9 L1374.19 498.098 L1355.55 498.098 L1355.55 498.098 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1355.55,498.098 1355.55,1455.9 1374.19,1455.9 1374.19,498.098 1355.55,498.098 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1374.19 594.941 L1374.19 1455.9 L1392.83 1455.9 L1392.83 594.941 L1374.19 594.941 L1374.19 594.941 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1374.19,594.941 1374.19,1455.9 1392.83,1455.9 1392.83,594.941 1374.19,594.941 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1392.83 627.616 L1392.83 1455.9 L1411.48 1455.9 L1411.48 627.616 L1392.83 627.616 L1392.83 627.616 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1392.83,627.616 1392.83,1455.9 1411.48,1455.9 1411.48,627.616 1392.83,627.616 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1411.48 655.96 L1411.48 1455.9 L1430.12 1455.9 L1430.12 655.96 L1411.48 655.96 L1411.48 655.96 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1411.48,655.96 1411.48,1455.9 1430.12,1455.9 1430.12,655.96 1411.48,655.96 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1430.12 755.953 L1430.12 1455.9 L1448.76 1455.9 L1448.76 755.953 L1430.12 755.953 L1430.12 755.953 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1430.12,755.953 1430.12,1455.9 1448.76,1455.9 1448.76,755.953 1430.12,755.953 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1448.76 821.696 L1448.76 1455.9 L1467.41 1455.9 L1467.41 821.696 L1448.76 821.696 L1448.76 821.696 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1448.76,821.696 1448.76,1455.9 1467.41,1455.9 1467.41,821.696 1448.76,821.696 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1467.41 880.353 L1467.41 1455.9 L1486.05 1455.9 L1486.05 880.353 L1467.41 880.353 L1467.41 880.353 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1467.41,880.353 1467.41,1455.9 1486.05,1455.9 1486.05,880.353 1467.41,880.353 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1486.05 928.381 L1486.05 1455.9 L1504.69 1455.9 L1504.69 928.381 L1486.05 928.381 L1486.05 928.381 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1486.05,928.381 1486.05,1455.9 1504.69,1455.9 1504.69,928.381 1486.05,928.381 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1504.69 975.228 L1504.69 1455.9 L1523.34 1455.9 L1523.34 975.228 L1504.69 975.228 L1504.69 975.228 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1504.69,975.228 1504.69,1455.9 1523.34,1455.9 1523.34,975.228 1504.69,975.228 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1523.34 1053.18 L1523.34 1455.9 L1541.98 1455.9 L1541.98 1053.18 L1523.34 1053.18 L1523.34 1053.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1523.34,1053.18 1523.34,1455.9 1541.98,1455.9 1541.98,1053.18 1523.34,1053.18 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1541.98 1092.15 L1541.98 1455.9 L1560.62 1455.9 L1560.62 1092.15 L1541.98 1092.15 L1541.98 1092.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1541.98,1092.15 1541.98,1455.9 1560.62,1455.9 1560.62,1092.15 1541.98,1092.15 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1560.62 1149.23 L1560.62 1455.9 L1579.26 1455.9 L1579.26 1149.23 L1560.62 1149.23 L1560.62 1149.23 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1560.62,1149.23 1560.62,1455.9 1579.26,1455.9 1579.26,1149.23 1560.62,1149.23 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1579.26 1167.73 L1579.26 1455.9 L1597.91 1455.9 L1597.91 1167.73 L1579.26 1167.73 L1579.26 1167.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1579.26,1167.73 1579.26,1455.9 1597.91,1455.9 1597.91,1167.73 1579.26,1167.73 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1597.91 1204.74 L1597.91 1455.9 L1616.55 1455.9 L1616.55 1204.74 L1597.91 1204.74 L1597.91 1204.74 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1597.91,1204.74 1597.91,1455.9 1616.55,1455.9 1616.55,1204.74 1597.91,1204.74 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1616.55 1244.89 L1616.55 1455.9 L1635.19 1455.9 L1635.19 1244.89 L1616.55 1244.89 L1616.55 1244.89 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1616.55,1244.89 1616.55,1455.9 1635.19,1455.9 1635.19,1244.89 1616.55,1244.89 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1635.19 1263 L1635.19 1455.9 L1653.84 1455.9 L1653.84 1263 L1635.19 1263 L1635.19 1263 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1635.19,1263 1635.19,1455.9 1653.84,1455.9 1653.84,1263 1635.19,1263 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1653.84 1294.1 L1653.84 1455.9 L1672.48 1455.9 L1672.48 1294.1 L1653.84 1294.1 L1653.84 1294.1 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1653.84,1294.1 1653.84,1455.9 1672.48,1455.9 1672.48,1294.1 1653.84,1294.1 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1672.48 1323.63 L1672.48 1455.9 L1691.12 1455.9 L1691.12 1323.63 L1672.48 1323.63 L1672.48 1323.63 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1672.48,1323.63 1672.48,1455.9 1691.12,1455.9 1691.12,1323.63 1672.48,1323.63 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1691.12 1336.62 L1691.12 1455.9 L1709.77 1455.9 L1709.77 1336.62 L1691.12 1336.62 L1691.12 1336.62 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1691.12,1336.62 1691.12,1455.9 1709.77,1455.9 1709.77,1336.62 1691.12,1336.62 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1709.77 1350.79 L1709.77 1455.9 L1728.41 1455.9 L1728.41 1350.79 L1709.77 1350.79 L1709.77 1350.79 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1709.77,1350.79 1709.77,1455.9 1728.41,1455.9 1728.41,1350.79 1709.77,1350.79 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1728.41 1367.72 L1728.41 1455.9 L1747.05 1455.9 L1747.05 1367.72 L1728.41 1367.72 L1728.41 1367.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1728.41,1367.72 1728.41,1455.9 1747.05,1455.9 1747.05,1367.72 1728.41,1367.72 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1747.05 1389.76 L1747.05 1455.9 L1765.7 1455.9 L1765.7 1389.76 L1747.05 1389.76 L1747.05 1389.76 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1747.05,1389.76 1747.05,1455.9 1765.7,1455.9 1765.7,1389.76 1747.05,1389.76 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1765.7 1393.7 L1765.7 1455.9 L1784.34 1455.9 L1784.34 1393.7 L1765.7 1393.7 L1765.7 1393.7 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1765.7,1393.7 1765.7,1455.9 1784.34,1455.9 1784.34,1393.7 1765.7,1393.7 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1784.34 1405.91 L1784.34 1455.9 L1802.98 1455.9 L1802.98 1405.91 L1784.34 1405.91 L1784.34 1405.91 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1784.34,1405.91 1784.34,1455.9 1802.98,1455.9 1802.98,1405.91 1784.34,1405.91 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1802.98 1412.2 L1802.98 1455.9 L1821.63 1455.9 L1821.63 1412.2 L1802.98 1412.2 L1802.98 1412.2 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1802.98,1412.2 1802.98,1455.9 1821.63,1455.9 1821.63,1412.2 1802.98,1412.2 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1821.63 1426.38 L1821.63 1455.9 L1840.27 1455.9 L1840.27 1426.38 L1821.63 1426.38 L1821.63 1426.38 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1821.63,1426.38 1821.63,1455.9 1840.27,1455.9 1840.27,1426.38 1821.63,1426.38 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1840.27 1427.16 L1840.27 1455.9 L1858.91 1455.9 L1858.91 1427.16 L1840.27 1427.16 L1840.27 1427.16 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1840.27,1427.16 1840.27,1455.9 1858.91,1455.9 1858.91,1427.16 1840.27,1427.16 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1858.91 1435.82 L1858.91 1455.9 L1877.56 1455.9 L1877.56 1435.82 L1858.91 1435.82 L1858.91 1435.82 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1858.91,1435.82 1858.91,1455.9 1877.56,1455.9 1877.56,1435.82 1858.91,1435.82 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1877.56 1438.58 L1877.56 1455.9 L1896.2 1455.9 L1896.2 1438.58 L1877.56 1438.58 L1877.56 1438.58 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1877.56,1438.58 1877.56,1455.9 1896.2,1455.9 1896.2,1438.58 1877.56,1438.58 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1896.2 1441.34 L1896.2 1455.9 L1914.84 1455.9 L1914.84 1441.34 L1896.2 1441.34 L1896.2 1441.34 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1896.2,1441.34 1896.2,1455.9 1914.84,1455.9 1914.84,1441.34 1896.2,1441.34 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1914.84 1442.52 L1914.84 1455.9 L1933.49 1455.9 L1933.49 1442.52 L1914.84 1442.52 L1914.84 1442.52 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1914.84,1442.52 1914.84,1455.9 1933.49,1455.9 1933.49,1442.52 1914.84,1442.52 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1933.49 1444.49 L1933.49 1455.9 L1952.13 1455.9 L1952.13 1444.49 L1933.49 1444.49 L1933.49 1444.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1933.49,1444.49 1933.49,1455.9 1952.13,1455.9 1952.13,1444.49 1933.49,1444.49 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1952.13 1450 L1952.13 1455.9 L1970.77 1455.9 L1970.77 1450 L1952.13 1450 L1952.13 1450 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1952.13,1450 1952.13,1455.9 1970.77,1455.9 1970.77,1450 1952.13,1450 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1970.77 1451.57 L1970.77 1455.9 L1989.42 1455.9 L1989.42 1451.57 L1970.77 1451.57 L1970.77 1451.57 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1970.77,1451.57 1970.77,1455.9 1989.42,1455.9 1989.42,1451.57 1970.77,1451.57 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM1989.42 1451.57 L1989.42 1455.9 L2008.06 1455.9 L2008.06 1451.57 L1989.42 1451.57 L1989.42 1451.57 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1989.42,1451.57 1989.42,1455.9 2008.06,1455.9 2008.06,1451.57 1989.42,1451.57 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2008.06 1453.93 L2008.06 1455.9 L2026.7 1455.9 L2026.7 1453.93 L2008.06 1453.93 L2008.06 1453.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2008.06,1453.93 2008.06,1455.9 2026.7,1455.9 2026.7,1453.93 2008.06,1453.93 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2026.7 1453.54 L2026.7 1455.9 L2045.35 1455.9 L2045.35 1453.54 L2026.7 1453.54 L2026.7 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2026.7,1453.54 2026.7,1455.9 2045.35,1455.9 2045.35,1453.54 2026.7,1453.54 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2045.35 1453.15 L2045.35 1455.9 L2063.99 1455.9 L2063.99 1453.15 L2045.35 1453.15 L2045.35 1453.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2045.35,1453.15 2045.35,1455.9 2063.99,1455.9 2063.99,1453.15 2045.35,1453.15 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2063.99 1453.54 L2063.99 1455.9 L2082.63 1455.9 L2082.63 1453.54 L2063.99 1453.54 L2063.99 1453.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2063.99,1453.54 2063.99,1455.9 2082.63,1455.9 2082.63,1453.54 2063.99,1453.54 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2082.63 1453.93 L2082.63 1455.9 L2101.28 1455.9 L2101.28 1453.93 L2082.63 1453.93 L2082.63 1453.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2082.63,1453.93 2082.63,1455.9 2101.28,1455.9 2101.28,1453.93 2082.63,1453.93 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2101.28 1454.72 L2101.28 1455.9 L2119.92 1455.9 L2119.92 1454.72 L2101.28 1454.72 L2101.28 1454.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2101.28,1454.72 2101.28,1455.9 2119.92,1455.9 2119.92,1454.72 2101.28,1454.72 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2119.92 1455.51 L2119.92 1455.9 L2138.56 1455.9 L2138.56 1455.51 L2119.92 1455.51 L2119.92 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2119.92,1455.51 2119.92,1455.9 2138.56,1455.9 2138.56,1455.51 2119.92,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2138.56 1455.51 L2138.56 1455.9 L2157.21 1455.9 L2157.21 1455.51 L2138.56 1455.51 L2138.56 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2138.56,1455.51 2138.56,1455.9 2157.21,1455.9 2157.21,1455.51 2138.56,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2157.21 1455.9 L2157.21 1455.9 L2175.85 1455.9 L2175.85 1455.9 L2157.21 1455.9 L2157.21 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2157.21,1455.9 2157.21,1455.9 2175.85,1455.9 2157.21,1455.9 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2175.85 1455.51 L2175.85 1455.9 L2194.49 1455.9 L2194.49 1455.51 L2175.85 1455.51 L2175.85 1455.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2175.85,1455.51 2175.85,1455.9 2194.49,1455.9 2194.49,1455.51 2175.85,1455.51 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2194.49 1455.11 L2194.49 1455.9 L2213.14 1455.9 L2213.14 1455.11 L2194.49 1455.11 L2194.49 1455.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2194.49,1455.11 2194.49,1455.9 2213.14,1455.9 2213.14,1455.11 2194.49,1455.11 \n \"/>\n<path clip-path=\"url(#clip042)\" d=\"\nM2213.14 1455.11 L2213.14 1455.9 L2231.78 1455.9 L2231.78 1455.11 L2213.14 1455.11 L2213.14 1455.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2213.14,1455.11 2213.14,1455.9 2231.78,1455.9 2231.78,1455.11 2213.14,1455.11 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 743.34,2879.66 743.34,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1196.35,2879.66 1196.35,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip042)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1649.36,2879.66 1649.36,-1274.06 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"\nM1891.16 338.105 L2279.44 338.105 L2279.44 156.665 L1891.16 156.665 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.16,338.105 2279.44,338.105 2279.44,156.665 1891.16,156.665 1891.16,338.105 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"\nM1915.6 241.337 L2062.23 241.337 L2062.23 192.953 L1915.6 192.953 L1915.6 241.337 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip040)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1915.6,241.337 2062.23,241.337 2062.23,192.953 1915.6,192.953 1915.6,241.337 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"M 0 0 M2086.67 198.406 L2090.93 198.406 L2090.93 234.425 L2086.67 234.425 L2086.67 198.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2105.45 211.485 Q2102.02 211.485 2100.03 214.17 Q2098.04 216.832 2098.04 221.485 Q2098.04 226.138 2100.01 228.823 Q2102 231.485 2105.45 231.485 Q2108.85 231.485 2110.84 228.8 Q2112.83 226.115 2112.83 221.485 Q2112.83 216.878 2110.84 214.193 Q2108.85 211.485 2105.45 211.485 M2105.45 207.874 Q2111 207.874 2114.17 211.485 Q2117.34 215.096 2117.34 221.485 Q2117.34 227.851 2114.17 231.485 Q2111 235.096 2105.45 235.096 Q2099.87 235.096 2096.7 231.485 Q2093.55 227.851 2093.55 221.485 Q2093.55 215.096 2096.7 211.485 Q2099.87 207.874 2105.45 207.874 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2138.34 209.263 L2138.34 213.291 Q2136.53 212.365 2134.59 211.902 Q2132.65 211.439 2130.56 211.439 Q2127.39 211.439 2125.79 212.411 Q2124.22 213.383 2124.22 215.328 Q2124.22 216.809 2125.35 217.665 Q2126.49 218.499 2129.91 219.263 L2131.37 219.587 Q2135.91 220.559 2137.81 222.341 Q2139.73 224.101 2139.73 227.272 Q2139.73 230.883 2136.86 232.989 Q2134.01 235.096 2129.01 235.096 Q2126.93 235.096 2124.66 234.679 Q2122.41 234.286 2119.91 233.476 L2119.91 229.077 Q2122.28 230.304 2124.57 230.929 Q2126.86 231.531 2129.1 231.531 Q2132.11 231.531 2133.73 230.513 Q2135.35 229.471 2135.35 227.596 Q2135.35 225.86 2134.17 224.934 Q2133.02 224.008 2129.06 223.152 L2127.58 222.804 Q2123.62 221.971 2121.86 220.258 Q2120.1 218.522 2120.1 215.513 Q2120.1 211.855 2122.69 209.865 Q2125.28 207.874 2130.05 207.874 Q2132.41 207.874 2134.5 208.221 Q2136.58 208.568 2138.34 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2160.72 209.263 L2160.72 213.291 Q2158.92 212.365 2156.97 211.902 Q2155.03 211.439 2152.95 211.439 Q2149.78 211.439 2148.18 212.411 Q2146.6 213.383 2146.6 215.328 Q2146.6 216.809 2147.74 217.665 Q2148.87 218.499 2152.3 219.263 L2153.76 219.587 Q2158.29 220.559 2160.19 222.341 Q2162.11 224.101 2162.11 227.272 Q2162.11 230.883 2159.24 232.989 Q2156.4 235.096 2151.4 235.096 Q2149.31 235.096 2147.04 234.679 Q2144.8 234.286 2142.3 233.476 L2142.3 229.077 Q2144.66 230.304 2146.95 230.929 Q2149.24 231.531 2151.49 231.531 Q2154.5 231.531 2156.12 230.513 Q2157.74 229.471 2157.74 227.596 Q2157.74 225.86 2156.56 224.934 Q2155.4 224.008 2151.44 223.152 L2149.96 222.804 Q2146 221.971 2144.24 220.258 Q2142.48 218.522 2142.48 215.513 Q2142.48 211.855 2145.08 209.865 Q2147.67 207.874 2152.44 207.874 Q2154.8 207.874 2156.88 208.221 Q2158.96 208.568 2160.72 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip040)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1915.6,277.625 2062.23,277.625 \n \"/>\n<path clip-path=\"url(#clip040)\" d=\"M 0 0 M2086.67 304.766 L2086.67 268.979 L2090.93 268.979 L2090.93 285.09 Q2090.93 288.446 2092.53 290.159 Q2094.13 291.872 2097.25 291.872 Q2100.68 291.872 2102.39 289.928 Q2104.13 287.983 2104.13 284.095 L2104.13 268.979 L2108.39 268.979 L2108.39 288.932 Q2108.39 290.321 2108.78 290.993 Q2109.2 291.641 2110.05 291.641 Q2110.26 291.641 2110.63 291.525 Q2111 291.386 2111.65 291.108 L2111.65 294.534 Q2110.7 295.067 2109.84 295.321 Q2109.01 295.576 2108.2 295.576 Q2106.6 295.576 2105.65 294.673 Q2104.71 293.77 2104.36 291.919 Q2103.2 293.747 2101.51 294.673 Q2099.84 295.576 2097.58 295.576 Q2095.22 295.576 2093.55 294.673 Q2091.9 293.77 2090.93 291.965 L2090.93 304.766 L2086.67 304.766 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2148.53 265.183 L2148.53 274.141 L2161.42 274.141 L2161.42 278.076 L2148.53 278.076 L2148.53 287.034 L2144.64 287.034 L2144.64 278.076 L2131.74 278.076 L2131.74 274.141 L2144.64 274.141 L2144.64 265.183 L2148.53 265.183 M2131.74 290.969 L2161.42 290.969 L2161.42 294.905 L2131.74 294.905 L2131.74 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2185.59 290.969 L2201.9 290.969 L2201.9 294.905 L2179.96 294.905 L2179.96 290.969 Q2182.62 288.215 2187.21 283.585 Q2191.81 278.933 2192.99 277.59 Q2195.24 275.067 2196.12 273.331 Q2197.02 271.571 2197.02 269.882 Q2197.02 267.127 2195.08 265.391 Q2193.15 263.655 2190.05 263.655 Q2187.85 263.655 2185.4 264.419 Q2182.97 265.183 2180.19 266.734 L2180.19 262.011 Q2183.02 260.877 2185.47 260.298 Q2187.92 259.72 2189.96 259.72 Q2195.33 259.72 2198.52 262.405 Q2201.72 265.09 2201.72 269.581 Q2201.72 271.71 2200.91 273.632 Q2200.12 275.53 2198.02 278.122 Q2197.44 278.794 2194.33 282.011 Q2191.23 285.206 2185.59 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip040)\" d=\"M 0 0 M2216.42 272.358 Q2212.9 272.358 2211 274.905 Q2209.01 277.567 2209.01 281.965 Q2209.01 286.618 2210.98 289.303 Q2212.97 291.965 2216.42 291.965 Q2219.82 291.965 2221.81 289.28 Q2223.8 286.595 2223.8 281.965 Q2223.8 277.729 2221.81 274.905 Q2219.98 272.358 2216.42 272.358 M2216.42 268.979 L2230.56 268.979 L2230.56 273.238 L2225.79 273.238 Q2228.32 276.849 2228.32 281.965 Q2228.32 288.331 2225.15 291.942 Q2221.97 295.576 2216.42 295.576 Q2210.84 295.576 2207.69 291.942 Q2204.52 288.331 2204.52 281.965 Q2204.52 275.553 2207.69 271.965 Q2210.31 268.979 2216.42 268.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time simulate_loss(; estfunc=est_asymptbest);",
"execution_count": 13,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 45.46237407675723, σ = 1.421092577000849e-14)\n 1.631957 seconds (193.42 k allocations: 10.223 MiB, 4.55% compilation time)\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time simulate_loss(; estfunc=est_corrected_asymptbest(10))",
"execution_count": 14,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 44.17270008612336, σ = 1.6913369336917667)\n 3.252354 seconds (958.71 k allocations: 58.388 MiB, 0.00% compilation time)\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 14,
"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=\"clip080\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip080)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip081\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip080)\" d=\"\nM153.259 1495.09 L2352.76 1495.09 L2352.76 110.512 L153.259 110.512 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip082\">\n <rect x=\"153\" y=\"110\" width=\"2200\" height=\"1386\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.469,1495.09 197.469,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 325.413,1495.09 325.413,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 453.357,1495.09 453.357,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 581.301,1495.09 581.301,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 709.245,1495.09 709.245,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 837.189,1495.09 837.189,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 965.133,1495.09 965.133,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1093.08,1495.09 1093.08,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1221.02,1495.09 1221.02,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1348.97,1495.09 1348.97,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1476.91,1495.09 1476.91,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1604.85,1495.09 1604.85,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1732.8,1495.09 1732.8,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1860.74,1495.09 1860.74,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1988.69,1495.09 1988.69,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2116.63,1495.09 2116.63,110.512 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2244.57,1495.09 2244.57,110.512 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 2352.76,1495.09 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.469,1495.09 197.469,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 325.413,1495.09 325.413,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 453.357,1495.09 453.357,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 581.301,1495.09 581.301,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 709.245,1495.09 709.245,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 837.189,1495.09 837.189,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 965.133,1495.09 965.133,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1093.08,1495.09 1093.08,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1221.02,1495.09 1221.02,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1348.97,1495.09 1348.97,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1476.91,1495.09 1476.91,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1604.85,1495.09 1604.85,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1732.8,1495.09 1732.8,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1860.74,1495.09 1860.74,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1988.69,1495.09 1988.69,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2116.63,1495.09 2116.63,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2244.57,1495.09 2244.57,1478.47 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"M 0 0 M190.464 1531.42 Q192.981 1531.95 194.387 1533.66 Q195.811 1535.36 195.811 1537.86 Q195.811 1541.69 193.172 1543.79 Q190.533 1545.9 185.672 1545.9 Q184.04 1545.9 182.304 1545.57 Q180.585 1545.25 178.745 1544.61 L178.745 1541.23 Q180.203 1542.08 181.939 1542.51 Q183.676 1542.94 185.568 1542.94 Q188.867 1542.94 190.585 1541.64 Q192.321 1540.34 192.321 1537.86 Q192.321 1535.57 190.707 1534.28 Q189.11 1532.98 186.245 1532.98 L183.224 1532.98 L183.224 1530.1 L186.384 1530.1 Q188.971 1530.1 190.342 1529.07 Q191.714 1528.03 191.714 1526.09 Q191.714 1524.09 190.29 1523.03 Q188.884 1521.95 186.245 1521.95 Q184.804 1521.95 183.155 1522.27 Q181.505 1522.58 179.526 1523.24 L179.526 1520.11 Q181.523 1519.56 183.259 1519.28 Q185.012 1519 186.558 1519 Q190.551 1519 192.877 1520.83 Q195.203 1522.63 195.203 1525.72 Q195.203 1527.87 193.971 1529.37 Q192.738 1530.84 190.464 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M207.547 1531.03 Q205.186 1531.03 203.797 1532.65 Q202.425 1534.26 202.425 1537.08 Q202.425 1539.87 203.797 1541.5 Q205.186 1543.12 207.547 1543.12 Q209.908 1543.12 211.28 1541.5 Q212.668 1539.87 212.668 1537.08 Q212.668 1534.26 211.28 1532.65 Q209.908 1531.03 207.547 1531.03 M214.509 1520.04 L214.509 1523.24 Q213.189 1522.61 211.835 1522.28 Q210.498 1521.95 209.179 1521.95 Q205.707 1521.95 203.866 1524.3 Q202.044 1526.64 201.783 1531.38 Q202.807 1529.87 204.353 1529.07 Q205.898 1528.26 207.755 1528.26 Q211.662 1528.26 213.918 1530.64 Q216.193 1533 216.193 1537.08 Q216.193 1541.07 213.832 1543.48 Q211.471 1545.9 207.547 1545.9 Q203.05 1545.9 200.672 1542.46 Q198.294 1539 198.294 1532.46 Q198.294 1526.31 201.21 1522.67 Q204.127 1519 209.04 1519 Q210.359 1519 211.696 1519.26 Q213.05 1519.52 214.509 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M318.807 1531.42 Q321.324 1531.95 322.731 1533.66 Q324.154 1535.36 324.154 1537.86 Q324.154 1541.69 321.515 1543.79 Q318.877 1545.9 314.015 1545.9 Q312.384 1545.9 310.647 1545.57 Q308.929 1545.25 307.088 1544.61 L307.088 1541.23 Q308.547 1542.08 310.283 1542.51 Q312.019 1542.94 313.911 1542.94 Q317.21 1542.94 318.929 1541.64 Q320.665 1540.34 320.665 1537.86 Q320.665 1535.57 319.05 1534.28 Q317.453 1532.98 314.588 1532.98 L311.568 1532.98 L311.568 1530.1 L314.727 1530.1 Q317.314 1530.1 318.686 1529.07 Q320.057 1528.03 320.057 1526.09 Q320.057 1524.09 318.634 1523.03 Q317.227 1521.95 314.588 1521.95 Q313.147 1521.95 311.498 1522.27 Q309.849 1522.58 307.87 1523.24 L307.87 1520.11 Q309.866 1519.56 311.602 1519.28 Q313.356 1519 314.901 1519 Q318.894 1519 321.22 1520.83 Q323.547 1522.63 323.547 1525.72 Q323.547 1527.87 322.314 1529.37 Q321.081 1530.84 318.807 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M327.071 1519.47 L343.738 1519.47 L343.738 1520.96 L334.328 1545.39 L330.665 1545.39 L339.519 1522.42 L327.071 1522.42 L327.071 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M446.447 1531.42 Q448.965 1531.95 450.371 1533.66 Q451.795 1535.36 451.795 1537.86 Q451.795 1541.69 449.156 1543.79 Q446.517 1545.9 441.656 1545.9 Q440.024 1545.9 438.288 1545.57 Q436.569 1545.25 434.729 1544.61 L434.729 1541.23 Q436.187 1542.08 437.923 1542.51 Q439.659 1542.94 441.552 1542.94 Q444.85 1542.94 446.569 1541.64 Q448.305 1540.34 448.305 1537.86 Q448.305 1535.57 446.69 1534.28 Q445.093 1532.98 442.229 1532.98 L439.208 1532.98 L439.208 1530.1 L442.368 1530.1 Q444.954 1530.1 446.326 1529.07 Q447.697 1528.03 447.697 1526.09 Q447.697 1524.09 446.274 1523.03 Q444.868 1521.95 442.229 1521.95 Q440.788 1521.95 439.138 1522.27 Q437.489 1522.58 435.51 1523.24 L435.51 1520.11 Q437.506 1519.56 439.243 1519.28 Q440.996 1519 442.541 1519 Q446.534 1519 448.861 1520.83 Q451.187 1522.63 451.187 1525.72 Q451.187 1527.87 449.954 1529.37 Q448.722 1530.84 446.447 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M463.097 1533.08 Q460.597 1533.08 459.156 1534.42 Q457.732 1535.76 457.732 1538.1 Q457.732 1540.44 459.156 1541.78 Q460.597 1543.12 463.097 1543.12 Q465.597 1543.12 467.038 1541.78 Q468.479 1540.43 468.479 1538.1 Q468.479 1535.76 467.038 1534.42 Q465.614 1533.08 463.097 1533.08 M459.59 1531.59 Q457.333 1531.03 456.065 1529.49 Q454.815 1527.94 454.815 1525.72 Q454.815 1522.61 457.02 1520.81 Q459.242 1519 463.097 1519 Q466.968 1519 469.173 1520.81 Q471.378 1522.61 471.378 1525.72 Q471.378 1527.94 470.11 1529.49 Q468.86 1531.03 466.621 1531.59 Q469.156 1532.18 470.562 1533.9 Q471.985 1535.62 471.985 1538.1 Q471.985 1541.87 469.676 1543.88 Q467.385 1545.9 463.097 1545.9 Q458.808 1545.9 456.499 1543.88 Q454.208 1541.87 454.208 1538.1 Q454.208 1535.62 455.631 1533.9 Q457.055 1532.18 459.59 1531.59 M458.305 1526.05 Q458.305 1528.07 459.555 1529.19 Q460.822 1530.32 463.097 1530.32 Q465.354 1530.32 466.621 1529.19 Q467.906 1528.07 467.906 1526.05 Q467.906 1524.04 466.621 1522.91 Q465.354 1521.78 463.097 1521.78 Q460.822 1521.78 459.555 1522.91 Q458.305 1524.04 458.305 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M574.426 1531.42 Q576.944 1531.95 578.35 1533.66 Q579.773 1535.36 579.773 1537.86 Q579.773 1541.69 577.134 1543.79 Q574.496 1545.9 569.635 1545.9 Q568.003 1545.9 566.267 1545.57 Q564.548 1545.25 562.707 1544.61 L562.707 1541.23 Q564.166 1542.08 565.902 1542.51 Q567.638 1542.94 569.53 1542.94 Q572.829 1542.94 574.548 1541.64 Q576.284 1540.34 576.284 1537.86 Q576.284 1535.57 574.669 1534.28 Q573.072 1532.98 570.207 1532.98 L567.187 1532.98 L567.187 1530.1 L570.346 1530.1 Q572.933 1530.1 574.305 1529.07 Q575.676 1528.03 575.676 1526.09 Q575.676 1524.09 574.253 1523.03 Q572.846 1521.95 570.207 1521.95 Q568.766 1521.95 567.117 1522.27 Q565.468 1522.58 563.489 1523.24 L563.489 1520.11 Q565.485 1519.56 567.221 1519.28 Q568.975 1519 570.52 1519 Q574.513 1519 576.839 1520.83 Q579.166 1522.63 579.166 1525.72 Q579.166 1527.87 577.933 1529.37 Q576.7 1530.84 574.426 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M583.68 1544.85 L583.68 1541.66 Q584.999 1542.28 586.353 1542.61 Q587.707 1542.94 589.009 1542.94 Q592.482 1542.94 594.305 1540.62 Q596.145 1538.27 596.405 1533.52 Q595.398 1535.01 593.853 1535.81 Q592.308 1536.61 590.433 1536.61 Q586.544 1536.61 584.27 1534.26 Q582.013 1531.9 582.013 1527.82 Q582.013 1523.83 584.374 1521.42 Q586.735 1519 590.659 1519 Q595.155 1519 597.516 1522.46 Q599.895 1525.9 599.895 1532.46 Q599.895 1538.59 596.978 1542.25 Q594.079 1545.9 589.166 1545.9 Q587.846 1545.9 586.492 1545.63 Q585.138 1545.37 583.68 1544.85 M590.659 1533.86 Q593.02 1533.86 594.391 1532.25 Q595.78 1530.64 595.78 1527.82 Q595.78 1525.03 594.391 1523.41 Q593.02 1521.78 590.659 1521.78 Q588.298 1521.78 586.909 1523.41 Q585.537 1525.03 585.537 1527.82 Q585.537 1530.64 586.909 1532.25 Q588.298 1533.86 590.659 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M701.372 1522.53 L692.518 1536.36 L701.372 1536.36 L701.372 1522.53 M700.452 1519.47 L704.862 1519.47 L704.862 1536.36 L708.559 1536.36 L708.559 1539.28 L704.862 1539.28 L704.862 1545.39 L701.372 1545.39 L701.372 1539.28 L689.671 1539.28 L689.671 1535.9 L700.452 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M719.861 1521.78 Q717.153 1521.78 715.782 1524.45 Q714.427 1527.11 714.427 1532.46 Q714.427 1537.79 715.782 1540.46 Q717.153 1543.12 719.861 1543.12 Q722.587 1543.12 723.941 1540.46 Q725.313 1537.79 725.313 1532.46 Q725.313 1527.11 723.941 1524.45 Q722.587 1521.78 719.861 1521.78 M719.861 1519 Q724.219 1519 726.511 1522.46 Q728.82 1525.9 728.82 1532.46 Q728.82 1539 726.511 1542.46 Q724.219 1545.9 719.861 1545.9 Q715.504 1545.9 713.195 1542.46 Q710.903 1539 710.903 1532.46 Q710.903 1525.9 713.195 1522.46 Q715.504 1519 719.861 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M829.776 1522.53 L820.922 1536.36 L829.776 1536.36 L829.776 1522.53 M828.856 1519.47 L833.266 1519.47 L833.266 1536.36 L836.964 1536.36 L836.964 1539.28 L833.266 1539.28 L833.266 1545.39 L829.776 1545.39 L829.776 1539.28 L818.075 1539.28 L818.075 1535.9 L828.856 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M841.373 1542.44 L847.102 1542.44 L847.102 1522.67 L840.87 1523.92 L840.87 1520.72 L847.068 1519.47 L850.575 1519.47 L850.575 1542.44 L856.304 1542.44 L856.304 1545.39 L841.373 1545.39 L841.373 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M957.859 1522.53 L949.005 1536.36 L957.859 1536.36 L957.859 1522.53 M956.939 1519.47 L961.349 1519.47 L961.349 1536.36 L965.047 1536.36 L965.047 1539.28 L961.349 1539.28 L961.349 1545.39 L957.859 1545.39 L957.859 1539.28 L946.158 1539.28 L946.158 1535.9 L956.939 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M971.869 1542.44 L984.109 1542.44 L984.109 1545.39 L967.651 1545.39 L967.651 1542.44 Q969.647 1540.37 973.085 1536.9 Q976.54 1533.41 977.425 1532.41 Q979.109 1530.51 979.769 1529.21 Q980.446 1527.89 980.446 1526.62 Q980.446 1524.56 978.987 1523.26 Q977.546 1521.95 975.22 1521.95 Q973.571 1521.95 971.731 1522.53 Q969.908 1523.1 967.824 1524.26 L967.824 1520.72 Q969.942 1519.87 971.783 1519.44 Q973.623 1519 975.151 1519 Q979.178 1519 981.574 1521.02 Q983.97 1523.03 983.97 1526.4 Q983.97 1528 983.362 1529.44 Q982.772 1530.86 981.192 1532.81 Q980.758 1533.31 978.432 1535.72 Q976.106 1538.12 971.869 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1085.45 1522.53 L1076.59 1536.36 L1085.45 1536.36 L1085.45 1522.53 M1084.53 1519.47 L1088.94 1519.47 L1088.94 1536.36 L1092.63 1536.36 L1092.63 1539.28 L1088.94 1539.28 L1088.94 1545.39 L1085.45 1545.39 L1085.45 1539.28 L1073.75 1539.28 L1073.75 1535.9 L1084.53 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1107.06 1531.42 Q1109.58 1531.95 1110.99 1533.66 Q1112.41 1535.36 1112.41 1537.86 Q1112.41 1541.69 1109.77 1543.79 Q1107.13 1545.9 1102.27 1545.9 Q1100.64 1545.9 1098.9 1545.57 Q1097.18 1545.25 1095.34 1544.61 L1095.34 1541.23 Q1096.8 1542.08 1098.54 1542.51 Q1100.27 1542.94 1102.17 1542.94 Q1105.46 1542.94 1107.18 1541.64 Q1108.92 1540.34 1108.92 1537.86 Q1108.92 1535.57 1107.3 1534.28 Q1105.71 1532.98 1102.84 1532.98 L1099.82 1532.98 L1099.82 1530.1 L1102.98 1530.1 Q1105.57 1530.1 1106.94 1529.07 Q1108.31 1528.03 1108.31 1526.09 Q1108.31 1524.09 1106.89 1523.03 Q1105.48 1521.95 1102.84 1521.95 Q1101.4 1521.95 1099.75 1522.27 Q1098.1 1522.58 1096.12 1523.24 L1096.12 1520.11 Q1098.12 1519.56 1099.86 1519.28 Q1101.61 1519 1103.16 1519 Q1107.15 1519 1109.47 1520.83 Q1111.8 1522.63 1111.8 1525.72 Q1111.8 1527.87 1110.57 1529.37 Q1109.34 1530.84 1107.06 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1212.97 1522.53 L1204.11 1536.36 L1212.97 1536.36 L1212.97 1522.53 M1212.05 1519.47 L1216.46 1519.47 L1216.46 1536.36 L1220.15 1536.36 L1220.15 1539.28 L1216.46 1539.28 L1216.46 1545.39 L1212.97 1545.39 L1212.97 1539.28 L1201.26 1539.28 L1201.26 1535.9 L1212.05 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1233.59 1522.53 L1224.74 1536.36 L1233.59 1536.36 L1233.59 1522.53 M1232.67 1519.47 L1237.08 1519.47 L1237.08 1536.36 L1240.78 1536.36 L1240.78 1539.28 L1237.08 1539.28 L1237.08 1545.39 L1233.59 1545.39 L1233.59 1539.28 L1221.89 1539.28 L1221.89 1535.9 L1232.67 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1341.47 1522.53 L1332.61 1536.36 L1341.47 1536.36 L1341.47 1522.53 M1340.55 1519.47 L1344.96 1519.47 L1344.96 1536.36 L1348.65 1536.36 L1348.65 1539.28 L1344.96 1539.28 L1344.96 1545.39 L1341.47 1545.39 L1341.47 1539.28 L1329.76 1539.28 L1329.76 1535.9 L1340.55 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1352.49 1519.47 L1366.26 1519.47 L1366.26 1522.42 L1355.7 1522.42 L1355.7 1528.78 Q1356.47 1528.52 1357.23 1528.4 Q1357.99 1528.26 1358.76 1528.26 Q1363.1 1528.26 1365.63 1530.64 Q1368.17 1533.01 1368.17 1537.08 Q1368.17 1541.26 1365.56 1543.59 Q1362.96 1545.9 1358.22 1545.9 Q1356.59 1545.9 1354.89 1545.62 Q1353.2 1545.34 1351.4 1544.78 L1351.4 1541.26 Q1352.96 1542.11 1354.63 1542.53 Q1356.29 1542.94 1358.15 1542.94 Q1361.15 1542.94 1362.91 1541.36 Q1364.66 1539.78 1364.66 1537.08 Q1364.66 1534.37 1362.91 1532.79 Q1361.15 1531.21 1358.15 1531.21 Q1356.74 1531.21 1355.34 1531.52 Q1353.95 1531.83 1352.49 1532.49 L1352.49 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1468.98 1522.53 L1460.12 1536.36 L1468.98 1536.36 L1468.98 1522.53 M1468.06 1519.47 L1472.47 1519.47 L1472.47 1536.36 L1476.16 1536.36 L1476.16 1539.28 L1472.47 1539.28 L1472.47 1545.39 L1468.98 1545.39 L1468.98 1539.28 L1457.27 1539.28 L1457.27 1535.9 L1468.06 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1487.9 1531.03 Q1485.54 1531.03 1484.15 1532.65 Q1482.78 1534.26 1482.78 1537.08 Q1482.78 1539.87 1484.15 1541.5 Q1485.54 1543.12 1487.9 1543.12 Q1490.26 1543.12 1491.63 1541.5 Q1493.02 1539.87 1493.02 1537.08 Q1493.02 1534.26 1491.63 1532.65 Q1490.26 1531.03 1487.9 1531.03 M1494.86 1520.04 L1494.86 1523.24 Q1493.54 1522.61 1492.19 1522.28 Q1490.85 1521.95 1489.53 1521.95 Q1486.06 1521.95 1484.22 1524.3 Q1482.4 1526.64 1482.14 1531.38 Q1483.16 1529.87 1484.7 1529.07 Q1486.25 1528.26 1488.11 1528.26 Q1492.01 1528.26 1494.27 1530.64 Q1496.54 1533 1496.54 1537.08 Q1496.54 1541.07 1494.18 1543.48 Q1491.82 1545.9 1487.9 1545.9 Q1483.4 1545.9 1481.02 1542.46 Q1478.65 1539 1478.65 1532.46 Q1478.65 1526.31 1481.56 1522.67 Q1484.48 1519 1489.39 1519 Q1490.71 1519 1492.05 1519.26 Q1493.4 1519.52 1494.86 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1597.32 1522.53 L1588.46 1536.36 L1597.32 1536.36 L1597.32 1522.53 M1596.4 1519.47 L1600.81 1519.47 L1600.81 1536.36 L1604.51 1536.36 L1604.51 1539.28 L1600.81 1539.28 L1600.81 1545.39 L1597.32 1545.39 L1597.32 1539.28 L1585.62 1539.28 L1585.62 1535.9 L1596.4 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1607.42 1519.47 L1624.09 1519.47 L1624.09 1520.96 L1614.68 1545.39 L1611.02 1545.39 L1619.87 1522.42 L1607.42 1522.42 L1607.42 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1724.96 1522.53 L1716.11 1536.36 L1724.96 1536.36 L1724.96 1522.53 M1724.04 1519.47 L1728.45 1519.47 L1728.45 1536.36 L1732.15 1536.36 L1732.15 1539.28 L1728.45 1539.28 L1728.45 1545.39 L1724.96 1545.39 L1724.96 1539.28 L1713.26 1539.28 L1713.26 1535.9 L1724.04 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1743.45 1533.08 Q1740.95 1533.08 1739.51 1534.42 Q1738.08 1535.76 1738.08 1538.1 Q1738.08 1540.44 1739.51 1541.78 Q1740.95 1543.12 1743.45 1543.12 Q1745.95 1543.12 1747.39 1541.78 Q1748.83 1540.43 1748.83 1538.1 Q1748.83 1535.76 1747.39 1534.42 Q1745.97 1533.08 1743.45 1533.08 M1739.94 1531.59 Q1737.68 1531.03 1736.42 1529.49 Q1735.17 1527.94 1735.17 1525.72 Q1735.17 1522.61 1737.37 1520.81 Q1739.59 1519 1743.45 1519 Q1747.32 1519 1749.53 1520.81 Q1751.73 1522.61 1751.73 1525.72 Q1751.73 1527.94 1750.46 1529.49 Q1749.21 1531.03 1746.97 1531.59 Q1749.51 1532.18 1750.91 1533.9 Q1752.34 1535.62 1752.34 1538.1 Q1752.34 1541.87 1750.03 1543.88 Q1747.74 1545.9 1743.45 1545.9 Q1739.16 1545.9 1736.85 1543.88 Q1734.56 1541.87 1734.56 1538.1 Q1734.56 1535.62 1735.98 1533.9 Q1737.41 1532.18 1739.94 1531.59 M1738.66 1526.05 Q1738.66 1528.07 1739.91 1529.19 Q1741.17 1530.32 1743.45 1530.32 Q1745.71 1530.32 1746.97 1529.19 Q1748.26 1528.07 1748.26 1526.05 Q1748.26 1524.04 1746.97 1522.91 Q1745.71 1521.78 1743.45 1521.78 Q1741.17 1521.78 1739.91 1522.91 Q1738.66 1524.04 1738.66 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1852.94 1522.53 L1844.08 1536.36 L1852.94 1536.36 L1852.94 1522.53 M1852.02 1519.47 L1856.43 1519.47 L1856.43 1536.36 L1860.13 1536.36 L1860.13 1539.28 L1856.43 1539.28 L1856.43 1545.39 L1852.94 1545.39 L1852.94 1539.28 L1841.24 1539.28 L1841.24 1535.9 L1852.02 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1864.03 1544.85 L1864.03 1541.66 Q1865.35 1542.28 1866.71 1542.61 Q1868.06 1542.94 1869.36 1542.94 Q1872.83 1542.94 1874.66 1540.62 Q1876.5 1538.27 1876.76 1533.52 Q1875.75 1535.01 1874.21 1535.81 Q1872.66 1536.61 1870.79 1536.61 Q1866.9 1536.61 1864.62 1534.26 Q1862.37 1531.9 1862.37 1527.82 Q1862.37 1523.83 1864.73 1521.42 Q1867.09 1519 1871.01 1519 Q1875.51 1519 1877.87 1522.46 Q1880.25 1525.9 1880.25 1532.46 Q1880.25 1538.59 1877.33 1542.25 Q1874.43 1545.9 1869.52 1545.9 Q1868.2 1545.9 1866.84 1545.63 Q1865.49 1545.37 1864.03 1544.85 M1871.01 1533.86 Q1873.37 1533.86 1874.74 1532.25 Q1876.13 1530.64 1876.13 1527.82 Q1876.13 1525.03 1874.74 1523.41 Q1873.37 1521.78 1871.01 1521.78 Q1868.65 1521.78 1867.26 1523.41 Q1865.89 1525.03 1865.89 1527.82 Q1865.89 1530.64 1867.26 1532.25 Q1868.65 1533.86 1871.01 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1971.26 1519.47 L1985.03 1519.47 L1985.03 1522.42 L1974.48 1522.42 L1974.48 1528.78 Q1975.24 1528.52 1976 1528.4 Q1976.77 1528.26 1977.53 1528.26 Q1981.87 1528.26 1984.41 1530.64 Q1986.94 1533.01 1986.94 1537.08 Q1986.94 1541.26 1984.34 1543.59 Q1981.73 1545.9 1976.99 1545.9 Q1975.36 1545.9 1973.66 1545.62 Q1971.98 1545.34 1970.17 1544.78 L1970.17 1541.26 Q1971.73 1542.11 1973.4 1542.53 Q1975.07 1542.94 1976.92 1542.94 Q1979.93 1542.94 1981.68 1541.36 Q1983.43 1539.78 1983.43 1537.08 Q1983.43 1534.37 1981.68 1532.79 Q1979.93 1531.21 1976.92 1531.21 Q1975.52 1531.21 1974.11 1531.52 Q1972.72 1531.83 1971.26 1532.49 L1971.26 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1998.24 1521.78 Q1995.53 1521.78 1994.16 1524.45 Q1992.81 1527.11 1992.81 1532.46 Q1992.81 1537.79 1994.16 1540.46 Q1995.53 1543.12 1998.24 1543.12 Q2000.97 1543.12 2002.32 1540.46 Q2003.69 1537.79 2003.69 1532.46 Q2003.69 1527.11 2002.32 1524.45 Q2000.97 1521.78 1998.24 1521.78 M1998.24 1519 Q2002.6 1519 2004.89 1522.46 Q2007.2 1525.9 2007.2 1532.46 Q2007.2 1539 2004.89 1542.46 Q2002.6 1545.9 1998.24 1545.9 Q1993.89 1545.9 1991.58 1542.46 Q1989.28 1539 1989.28 1532.46 Q1989.28 1525.9 1991.58 1522.46 Q1993.89 1519 1998.24 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2099.67 1519.47 L2113.44 1519.47 L2113.44 1522.42 L2102.88 1522.42 L2102.88 1528.78 Q2103.64 1528.52 2104.41 1528.4 Q2105.17 1528.26 2105.94 1528.26 Q2110.28 1528.26 2112.81 1530.64 Q2115.35 1533.01 2115.35 1537.08 Q2115.35 1541.26 2112.74 1543.59 Q2110.14 1545.9 2105.4 1545.9 Q2103.77 1545.9 2102.06 1545.62 Q2100.38 1545.34 2098.57 1544.78 L2098.57 1541.26 Q2100.14 1542.11 2101.8 1542.53 Q2103.47 1542.94 2105.33 1542.94 Q2108.33 1542.94 2110.08 1541.36 Q2111.84 1539.78 2111.84 1537.08 Q2111.84 1534.37 2110.08 1532.79 Q2108.33 1531.21 2105.33 1531.21 Q2103.92 1531.21 2102.52 1531.52 Q2101.13 1531.83 2099.67 1532.49 L2099.67 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2119.75 1542.44 L2125.48 1542.44 L2125.48 1522.67 L2119.25 1523.92 L2119.25 1520.72 L2125.45 1519.47 L2128.96 1519.47 L2128.96 1542.44 L2134.69 1542.44 L2134.69 1545.39 L2119.75 1545.39 L2119.75 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2227.75 1519.47 L2241.52 1519.47 L2241.52 1522.42 L2230.96 1522.42 L2230.96 1528.78 Q2231.73 1528.52 2232.49 1528.4 Q2233.25 1528.26 2234.02 1528.26 Q2238.36 1528.26 2240.89 1530.64 Q2243.43 1533.01 2243.43 1537.08 Q2243.43 1541.26 2240.82 1543.59 Q2238.22 1545.9 2233.48 1545.9 Q2231.85 1545.9 2230.15 1545.62 Q2228.46 1545.34 2226.66 1544.78 L2226.66 1541.26 Q2228.22 1542.11 2229.89 1542.53 Q2231.55 1542.94 2233.41 1542.94 Q2236.41 1542.94 2238.17 1541.36 Q2239.92 1539.78 2239.92 1537.08 Q2239.92 1534.37 2238.17 1532.79 Q2236.41 1531.21 2233.41 1531.21 Q2232 1531.21 2230.6 1531.52 Q2229.21 1531.83 2227.75 1532.49 L2227.75 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2250.25 1542.44 L2262.49 1542.44 L2262.49 1545.39 L2246.03 1545.39 L2246.03 1542.44 Q2248.03 1540.37 2251.47 1536.9 Q2254.92 1533.41 2255.81 1532.41 Q2257.49 1530.51 2258.15 1529.21 Q2258.83 1527.89 2258.83 1526.62 Q2258.83 1524.56 2257.37 1523.26 Q2255.93 1521.95 2253.6 1521.95 Q2251.95 1521.95 2250.11 1522.53 Q2248.29 1523.1 2246.21 1524.26 L2246.21 1520.72 Q2248.32 1519.87 2250.16 1519.44 Q2252 1519 2253.53 1519 Q2257.56 1519 2259.96 1521.02 Q2262.35 1523.03 2262.35 1526.4 Q2262.35 1528 2261.74 1529.44 Q2261.15 1530.86 2259.57 1532.81 Q2259.14 1533.31 2256.81 1535.72 Q2254.49 1538.12 2250.25 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1455.9 2352.76,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1401.48 2352.76,1401.48 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1347.05 2352.76,1347.05 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1292.63 2352.76,1292.63 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1238.2 2352.76,1238.2 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1183.78 2352.76,1183.78 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1129.35 2352.76,1129.35 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1074.93 2352.76,1074.93 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1020.5 2352.76,1020.5 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,966.075 2352.76,966.075 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,911.65 2352.76,911.65 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,857.225 2352.76,857.225 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,802.8 2352.76,802.8 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,748.375 2352.76,748.375 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,693.95 2352.76,693.95 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,639.525 2352.76,639.525 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,585.099 2352.76,585.099 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,530.674 2352.76,530.674 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,476.249 2352.76,476.249 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,421.824 2352.76,421.824 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,367.399 2352.76,367.399 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,312.974 2352.76,312.974 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,258.549 2352.76,258.549 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,204.123 2352.76,204.123 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,149.698 2352.76,149.698 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 153.259,110.512 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1455.9 179.653,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1401.48 179.653,1401.48 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1347.05 179.653,1347.05 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1292.63 179.653,1292.63 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1238.2 179.653,1238.2 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1183.78 179.653,1183.78 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1129.35 179.653,1129.35 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1074.93 179.653,1074.93 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1020.5 179.653,1020.5 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,966.075 179.653,966.075 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,911.65 179.653,911.65 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,857.225 179.653,857.225 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,802.8 179.653,802.8 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,748.375 179.653,748.375 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,693.95 179.653,693.95 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,639.525 179.653,639.525 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,585.099 179.653,585.099 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,530.674 179.653,530.674 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,476.249 179.653,476.249 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,421.824 179.653,421.824 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,367.399 179.653,367.399 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,312.974 179.653,312.974 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,258.549 179.653,258.549 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,204.123 179.653,204.123 \n \"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,149.698 179.653,149.698 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.315 1445.25 Q57.6067 1445.25 56.2352 1447.92 Q54.881 1450.58 54.881 1455.93 Q54.881 1461.26 56.2352 1463.93 Q57.6067 1466.59 60.315 1466.59 Q63.0407 1466.59 64.3948 1463.93 Q65.7664 1461.26 65.7664 1455.93 Q65.7664 1450.58 64.3948 1447.92 Q63.0407 1445.25 60.315 1445.25 M60.315 1442.47 Q64.6726 1442.47 66.9643 1445.93 Q69.2733 1449.37 69.2733 1455.93 Q69.2733 1462.47 66.9643 1465.93 Q64.6726 1469.37 60.315 1469.37 Q55.9574 1469.37 53.6484 1465.93 Q51.3567 1462.47 51.3567 1455.93 Q51.3567 1449.37 53.6484 1445.93 Q55.9574 1442.47 60.315 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.0753 1464.45 L76.7385 1464.45 L76.7385 1468.86 L73.0753 1468.86 L73.0753 1464.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.0405 1445.25 Q85.3322 1445.25 83.9607 1447.92 Q82.6065 1450.58 82.6065 1455.93 Q82.6065 1461.26 83.9607 1463.93 Q85.3322 1466.59 88.0405 1466.59 Q90.7662 1466.59 92.1204 1463.93 Q93.4919 1461.26 93.4919 1455.93 Q93.4919 1450.58 92.1204 1447.92 Q90.7662 1445.25 88.0405 1445.25 M88.0405 1442.47 Q92.3982 1442.47 94.6898 1445.93 Q96.9988 1449.37 96.9988 1455.93 Q96.9988 1462.47 94.6898 1465.93 Q92.3982 1469.37 88.0405 1469.37 Q83.6829 1469.37 81.3739 1465.93 Q79.0823 1462.47 79.0823 1455.93 Q79.0823 1449.37 81.3739 1445.93 Q83.6829 1442.47 88.0405 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.301 1445.25 Q105.593 1445.25 104.221 1447.92 Q102.867 1450.58 102.867 1455.93 Q102.867 1461.26 104.221 1463.93 Q105.593 1466.59 108.301 1466.59 Q111.027 1466.59 112.381 1463.93 Q113.752 1461.26 113.752 1455.93 Q113.752 1450.58 112.381 1447.92 Q111.027 1445.25 108.301 1445.25 M108.301 1442.47 Q112.658 1442.47 114.95 1445.93 Q117.259 1449.37 117.259 1455.93 Q117.259 1462.47 114.95 1465.93 Q112.658 1469.37 108.301 1469.37 Q103.943 1469.37 101.634 1465.93 Q99.3426 1462.47 99.3426 1455.93 Q99.3426 1449.37 101.634 1445.93 Q103.943 1442.47 108.301 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.2351 1390.83 Q58.5268 1390.83 57.1553 1393.5 Q55.8011 1396.16 55.8011 1401.5 Q55.8011 1406.83 57.1553 1409.51 Q58.5268 1412.16 61.2351 1412.16 Q63.9608 1412.16 65.315 1409.51 Q66.6865 1406.83 66.6865 1401.5 Q66.6865 1396.16 65.315 1393.5 Q63.9608 1390.83 61.2351 1390.83 M61.2351 1388.05 Q65.5927 1388.05 67.8844 1391.5 Q70.1934 1394.94 70.1934 1401.5 Q70.1934 1408.05 67.8844 1411.5 Q65.5927 1414.94 61.2351 1414.94 Q56.8775 1414.94 54.5685 1411.5 Q52.2768 1408.05 52.2768 1401.5 Q52.2768 1394.94 54.5685 1391.5 Q56.8775 1388.05 61.2351 1388.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.9955 1410.03 L77.6586 1410.03 L77.6586 1414.44 L73.9955 1414.44 L73.9955 1410.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.9607 1390.83 Q86.2524 1390.83 84.8808 1393.5 Q83.5267 1396.16 83.5267 1401.5 Q83.5267 1406.83 84.8808 1409.51 Q86.2524 1412.16 88.9607 1412.16 Q91.6864 1412.16 93.0405 1409.51 Q94.412 1406.83 94.412 1401.5 Q94.412 1396.16 93.0405 1393.5 Q91.6864 1390.83 88.9607 1390.83 M88.9607 1388.05 Q93.3183 1388.05 95.6099 1391.5 Q97.919 1394.94 97.919 1401.5 Q97.919 1408.05 95.6099 1411.5 Q93.3183 1414.94 88.9607 1414.94 Q84.6031 1414.94 82.294 1411.5 Q80.0024 1408.05 80.0024 1401.5 Q80.0024 1394.94 82.294 1391.5 Q84.6031 1388.05 88.9607 1388.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M102.329 1411.49 L108.058 1411.49 L108.058 1391.71 L101.825 1392.96 L101.825 1389.77 L108.023 1388.52 L111.53 1388.52 L111.53 1411.49 L117.259 1411.49 L117.259 1414.44 L102.329 1414.44 L102.329 1411.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.5129 1336.4 Q58.8046 1336.4 57.4331 1339.07 Q56.0789 1341.73 56.0789 1347.08 Q56.0789 1352.41 57.4331 1355.08 Q58.8046 1357.74 61.5129 1357.74 Q64.2386 1357.74 65.5927 1355.08 Q66.9643 1352.41 66.9643 1347.08 Q66.9643 1341.73 65.5927 1339.07 Q64.2386 1336.4 61.5129 1336.4 M61.5129 1333.62 Q65.8705 1333.62 68.1622 1337.08 Q70.4712 1340.52 70.4712 1347.08 Q70.4712 1353.62 68.1622 1357.08 Q65.8705 1360.51 61.5129 1360.51 Q57.1553 1360.51 54.8463 1357.08 Q52.5546 1353.62 52.5546 1347.08 Q52.5546 1340.52 54.8463 1337.08 Q57.1553 1333.62 61.5129 1333.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.2733 1355.6 L77.9364 1355.6 L77.9364 1360.01 L74.2733 1360.01 L74.2733 1355.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M89.2384 1336.4 Q86.5301 1336.4 85.1586 1339.07 Q83.8045 1341.73 83.8045 1347.08 Q83.8045 1352.41 85.1586 1355.08 Q86.5301 1357.74 89.2384 1357.74 Q91.9641 1357.74 93.3183 1355.08 Q94.6898 1352.41 94.6898 1347.08 Q94.6898 1341.73 93.3183 1339.07 Q91.9641 1336.4 89.2384 1336.4 M89.2384 1333.62 Q93.5961 1333.62 95.8877 1337.08 Q98.1967 1340.52 98.1967 1347.08 Q98.1967 1353.62 95.8877 1357.08 Q93.5961 1360.51 89.2384 1360.51 Q84.8808 1360.51 82.5718 1357.08 Q80.2802 1353.62 80.2802 1347.08 Q80.2802 1340.52 82.5718 1337.08 Q84.8808 1333.62 89.2384 1333.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M105.02 1357.06 L117.259 1357.06 L117.259 1360.01 L100.801 1360.01 L100.801 1357.06 Q102.797 1354.99 106.235 1351.52 Q109.69 1348.03 110.575 1347.03 Q112.259 1345.13 112.919 1343.83 Q113.596 1342.51 113.596 1341.24 Q113.596 1339.18 112.138 1337.88 Q110.697 1336.57 108.37 1336.57 Q106.721 1336.57 104.881 1337.15 Q103.058 1337.72 100.974 1338.88 L100.974 1335.34 Q103.093 1334.49 104.933 1334.06 Q106.773 1333.62 108.301 1333.62 Q112.329 1333.62 114.724 1335.64 Q117.12 1337.65 117.12 1341.02 Q117.12 1342.62 116.513 1344.06 Q115.922 1345.48 114.342 1347.42 Q113.908 1347.93 111.582 1350.34 Q109.256 1352.74 105.02 1357.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.8011 1281.98 Q58.0928 1281.98 56.7213 1284.65 Q55.3671 1287.31 55.3671 1292.65 Q55.3671 1297.98 56.7213 1300.66 Q58.0928 1303.31 60.8011 1303.31 Q63.5268 1303.31 64.8809 1300.66 Q66.2525 1297.98 66.2525 1292.65 Q66.2525 1287.31 64.8809 1284.65 Q63.5268 1281.98 60.8011 1281.98 M60.8011 1279.2 Q65.1587 1279.2 67.4504 1282.65 Q69.7594 1286.09 69.7594 1292.65 Q69.7594 1299.2 67.4504 1302.65 Q65.1587 1306.09 60.8011 1306.09 Q56.4435 1306.09 54.1345 1302.65 Q51.8428 1299.2 51.8428 1292.65 Q51.8428 1286.09 54.1345 1282.65 Q56.4435 1279.2 60.8011 1279.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.5614 1301.18 L77.2246 1301.18 L77.2246 1305.59 L73.5614 1305.59 L73.5614 1301.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.5266 1281.98 Q85.8183 1281.98 84.4468 1284.65 Q83.0926 1287.31 83.0926 1292.65 Q83.0926 1297.98 84.4468 1300.66 Q85.8183 1303.31 88.5266 1303.31 Q91.2523 1303.31 92.6065 1300.66 Q93.978 1297.98 93.978 1292.65 Q93.978 1287.31 92.6065 1284.65 Q91.2523 1281.98 88.5266 1281.98 M88.5266 1279.2 Q92.8843 1279.2 95.1759 1282.65 Q97.4849 1286.09 97.4849 1292.65 Q97.4849 1299.2 95.1759 1302.65 Q92.8843 1306.09 88.5266 1306.09 Q84.169 1306.09 81.86 1302.65 Q79.5684 1299.2 79.5684 1292.65 Q79.5684 1286.09 81.86 1282.65 Q84.169 1279.2 88.5266 1279.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M111.912 1291.61 Q114.429 1292.15 115.836 1293.85 Q117.259 1295.55 117.259 1298.05 Q117.259 1301.89 114.62 1303.99 Q111.981 1306.09 107.12 1306.09 Q105.488 1306.09 103.752 1305.76 Q102.034 1305.45 100.193 1304.81 L100.193 1301.42 Q101.652 1302.27 103.388 1302.7 Q105.124 1303.14 107.016 1303.14 Q110.315 1303.14 112.033 1301.84 Q113.77 1300.53 113.77 1298.05 Q113.77 1295.76 112.155 1294.48 Q110.558 1293.17 107.693 1293.17 L104.672 1293.17 L104.672 1290.29 L107.832 1290.29 Q110.419 1290.29 111.79 1289.27 Q113.162 1288.23 113.162 1286.28 Q113.162 1284.28 111.738 1283.23 Q110.332 1282.15 107.693 1282.15 Q106.252 1282.15 104.603 1282.46 Q102.954 1282.77 100.974 1283.43 L100.974 1280.31 Q102.971 1279.75 104.707 1279.48 Q106.461 1279.2 108.006 1279.2 Q111.999 1279.2 114.325 1281.02 Q116.651 1282.83 116.651 1285.92 Q116.651 1288.07 115.419 1289.56 Q114.186 1291.04 111.912 1291.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M59.9504 1227.55 Q57.2421 1227.55 55.8706 1230.22 Q54.5164 1232.88 54.5164 1238.23 Q54.5164 1243.56 55.8706 1246.23 Q57.2421 1248.89 59.9504 1248.89 Q62.6761 1248.89 64.0303 1246.23 Q65.4018 1243.56 65.4018 1238.23 Q65.4018 1232.88 64.0303 1230.22 Q62.6761 1227.55 59.9504 1227.55 M59.9504 1224.77 Q64.308 1224.77 66.5997 1228.23 Q68.9087 1231.66 68.9087 1238.23 Q68.9087 1244.77 66.5997 1248.23 Q64.308 1251.66 59.9504 1251.66 Q55.5928 1251.66 53.2838 1248.23 Q50.9921 1244.77 50.9921 1238.23 Q50.9921 1231.66 53.2838 1228.23 Q55.5928 1224.77 59.9504 1224.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M72.7108 1246.75 L76.3739 1246.75 L76.3739 1251.16 L72.7108 1251.16 L72.7108 1246.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M87.676 1227.55 Q84.9676 1227.55 83.5961 1230.22 Q82.242 1232.88 82.242 1238.23 Q82.242 1243.56 83.5961 1246.23 Q84.9676 1248.89 87.676 1248.89 Q90.4016 1248.89 91.7558 1246.23 Q93.1273 1243.56 93.1273 1238.23 Q93.1273 1232.88 91.7558 1230.22 Q90.4016 1227.55 87.676 1227.55 M87.676 1224.77 Q92.0336 1224.77 94.3252 1228.23 Q96.6342 1231.66 96.6342 1238.23 Q96.6342 1244.77 94.3252 1248.23 Q92.0336 1251.66 87.676 1251.66 Q83.3183 1251.66 81.0093 1248.23 Q78.7177 1244.77 78.7177 1238.23 Q78.7177 1231.66 81.0093 1228.23 Q83.3183 1224.77 87.676 1224.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M110.072 1228.3 L101.218 1242.13 L110.072 1242.13 L110.072 1228.3 M109.152 1225.24 L113.561 1225.24 L113.561 1242.13 L117.259 1242.13 L117.259 1245.05 L113.561 1245.05 L113.561 1251.16 L110.072 1251.16 L110.072 1245.05 L98.3703 1245.05 L98.3703 1241.66 L109.152 1225.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.0615 1173.13 Q58.3532 1173.13 56.9817 1175.8 Q55.6275 1178.45 55.6275 1183.8 Q55.6275 1189.13 56.9817 1191.81 Q58.3532 1194.46 61.0615 1194.46 Q63.7872 1194.46 65.1414 1191.81 Q66.5129 1189.13 66.5129 1183.8 Q66.5129 1178.45 65.1414 1175.8 Q63.7872 1173.13 61.0615 1173.13 M61.0615 1170.35 Q65.4191 1170.35 67.7108 1173.8 Q70.0198 1177.24 70.0198 1183.8 Q70.0198 1190.35 67.7108 1193.8 Q65.4191 1197.24 61.0615 1197.24 Q56.7039 1197.24 54.3949 1193.8 Q52.1032 1190.35 52.1032 1183.8 Q52.1032 1177.24 54.3949 1173.8 Q56.7039 1170.35 61.0615 1170.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.8219 1192.33 L77.485 1192.33 L77.485 1196.74 L73.8219 1196.74 L73.8219 1192.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.7871 1173.13 Q86.0787 1173.13 84.7072 1175.8 Q83.3531 1178.45 83.3531 1183.8 Q83.3531 1189.13 84.7072 1191.81 Q86.0787 1194.46 88.7871 1194.46 Q91.5127 1194.46 92.8669 1191.81 Q94.2384 1189.13 94.2384 1183.8 Q94.2384 1178.45 92.8669 1175.8 Q91.5127 1173.13 88.7871 1173.13 M88.7871 1170.35 Q93.1447 1170.35 95.4363 1173.8 Q97.7453 1177.24 97.7453 1183.8 Q97.7453 1190.35 95.4363 1193.8 Q93.1447 1197.24 88.7871 1197.24 Q84.4294 1197.24 82.1204 1193.8 Q79.8288 1190.35 79.8288 1183.8 Q79.8288 1177.24 82.1204 1173.8 Q84.4294 1170.35 88.7871 1170.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M101.582 1170.82 L115.349 1170.82 L115.349 1173.77 L104.794 1173.77 L104.794 1180.12 Q105.558 1179.86 106.322 1179.74 Q107.086 1179.6 107.849 1179.6 Q112.19 1179.6 114.724 1181.98 Q117.259 1184.36 117.259 1188.42 Q117.259 1192.6 114.655 1194.93 Q112.051 1197.24 107.311 1197.24 Q105.679 1197.24 103.978 1196.96 Q102.294 1196.68 100.488 1196.13 L100.488 1192.6 Q102.051 1193.45 103.718 1193.87 Q105.384 1194.29 107.242 1194.29 Q110.245 1194.29 111.999 1192.71 Q113.752 1191.13 113.752 1188.42 Q113.752 1185.71 111.999 1184.13 Q110.245 1182.55 107.242 1182.55 Q105.836 1182.55 104.429 1182.86 Q103.04 1183.18 101.582 1183.84 L101.582 1170.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.1935 1118.7 Q57.4851 1118.7 56.1136 1121.37 Q54.7595 1124.03 54.7595 1129.38 Q54.7595 1134.71 56.1136 1137.38 Q57.4851 1140.04 60.1935 1140.04 Q62.9191 1140.04 64.2733 1137.38 Q65.6448 1134.71 65.6448 1129.38 Q65.6448 1124.03 64.2733 1121.37 Q62.9191 1118.7 60.1935 1118.7 M60.1935 1115.92 Q64.5511 1115.92 66.8427 1119.38 Q69.1518 1122.81 69.1518 1129.38 Q69.1518 1135.92 66.8427 1139.38 Q64.5511 1142.81 60.1935 1142.81 Q55.8359 1142.81 53.5268 1139.38 Q51.2352 1135.92 51.2352 1129.38 Q51.2352 1122.81 53.5268 1119.38 Q55.8359 1115.92 60.1935 1115.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M72.9538 1137.9 L76.617 1137.9 L76.617 1142.31 L72.9538 1142.31 L72.9538 1137.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M87.919 1118.7 Q85.2107 1118.7 83.8392 1121.37 Q82.485 1124.03 82.485 1129.38 Q82.485 1134.71 83.8392 1137.38 Q85.2107 1140.04 87.919 1140.04 Q90.6447 1140.04 91.9989 1137.38 Q93.3704 1134.71 93.3704 1129.38 Q93.3704 1124.03 91.9989 1121.37 Q90.6447 1118.7 87.919 1118.7 M87.919 1115.92 Q92.2766 1115.92 94.5683 1119.38 Q96.8773 1122.81 96.8773 1129.38 Q96.8773 1135.92 94.5683 1139.38 Q92.2766 1142.81 87.919 1142.81 Q83.5614 1142.81 81.2524 1139.38 Q78.9607 1135.92 78.9607 1129.38 Q78.9607 1122.81 81.2524 1119.38 Q83.5614 1115.92 87.919 1115.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.613 1127.95 Q106.252 1127.95 104.863 1129.57 Q103.492 1131.18 103.492 1133.99 Q103.492 1136.79 104.863 1138.42 Q106.252 1140.04 108.613 1140.04 Q110.974 1140.04 112.346 1138.42 Q113.735 1136.79 113.735 1133.99 Q113.735 1131.18 112.346 1129.57 Q110.974 1127.95 108.613 1127.95 M115.575 1116.96 L115.575 1120.16 Q114.256 1119.53 112.902 1119.2 Q111.565 1118.87 110.245 1118.87 Q106.773 1118.87 104.933 1121.22 Q103.11 1123.56 102.849 1128.3 Q103.874 1126.79 105.419 1125.99 Q106.964 1125.18 108.822 1125.18 Q112.728 1125.18 114.985 1127.55 Q117.259 1129.92 117.259 1133.99 Q117.259 1137.99 114.898 1140.4 Q112.537 1142.81 108.613 1142.81 Q104.117 1142.81 101.738 1139.38 Q99.3599 1135.92 99.3599 1129.38 Q99.3599 1123.23 102.277 1119.59 Q105.193 1115.92 110.106 1115.92 Q111.426 1115.92 112.763 1116.18 Q114.117 1116.44 115.575 1116.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.9921 1064.27 Q58.2838 1064.27 56.9122 1066.95 Q55.5581 1069.6 55.5581 1074.95 Q55.5581 1080.28 56.9122 1082.96 Q58.2838 1085.61 60.9921 1085.61 Q63.7178 1085.61 65.0719 1082.96 Q66.4434 1080.28 66.4434 1074.95 Q66.4434 1069.6 65.0719 1066.95 Q63.7178 1064.27 60.9921 1064.27 M60.9921 1061.5 Q65.3497 1061.5 67.6413 1064.95 Q69.9504 1068.39 69.9504 1074.95 Q69.9504 1081.5 67.6413 1084.95 Q65.3497 1088.39 60.9921 1088.39 Q56.6345 1088.39 54.3254 1084.95 Q52.0338 1081.5 52.0338 1074.95 Q52.0338 1068.39 54.3254 1064.95 Q56.6345 1061.5 60.9921 1061.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.7524 1083.48 L77.4156 1083.48 L77.4156 1087.89 L73.7524 1087.89 L73.7524 1083.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.7176 1064.27 Q86.0093 1064.27 84.6378 1066.95 Q83.2836 1069.6 83.2836 1074.95 Q83.2836 1080.28 84.6378 1082.96 Q86.0093 1085.61 88.7176 1085.61 Q91.4433 1085.61 92.7975 1082.96 Q94.169 1080.28 94.169 1074.95 Q94.169 1069.6 92.7975 1066.95 Q91.4433 1064.27 88.7176 1064.27 M88.7176 1061.5 Q93.0752 1061.5 95.3669 1064.95 Q97.6759 1068.39 97.6759 1074.95 Q97.6759 1081.5 95.3669 1084.95 Q93.0752 1088.39 88.7176 1088.39 Q84.36 1088.39 82.051 1084.95 Q79.7593 1081.5 79.7593 1074.95 Q79.7593 1068.39 82.051 1064.95 Q84.36 1061.5 88.7176 1061.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M100.593 1061.97 L117.259 1061.97 L117.259 1063.46 L107.849 1087.89 L104.186 1087.89 L113.04 1064.92 L100.593 1064.92 L100.593 1061.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.3844 1009.85 Q57.6761 1009.85 56.3046 1012.52 Q54.9504 1015.18 54.9504 1020.53 Q54.9504 1025.86 56.3046 1028.53 Q57.6761 1031.19 60.3844 1031.19 Q63.1101 1031.19 64.4643 1028.53 Q65.8358 1025.86 65.8358 1020.53 Q65.8358 1015.18 64.4643 1012.52 Q63.1101 1009.85 60.3844 1009.85 M60.3844 1007.07 Q64.7421 1007.07 67.0337 1010.53 Q69.3427 1013.96 69.3427 1020.53 Q69.3427 1027.07 67.0337 1030.53 Q64.7421 1033.96 60.3844 1033.96 Q56.0268 1033.96 53.7178 1030.53 Q51.4262 1027.07 51.4262 1020.53 Q51.4262 1013.96 53.7178 1010.53 Q56.0268 1007.07 60.3844 1007.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.1448 1029.05 L76.808 1029.05 L76.808 1033.46 L73.1448 1033.46 L73.1448 1029.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.11 1009.85 Q85.4017 1009.85 84.0301 1012.52 Q82.676 1015.18 82.676 1020.53 Q82.676 1025.86 84.0301 1028.53 Q85.4017 1031.19 88.11 1031.19 Q90.8357 1031.19 92.1898 1028.53 Q93.5613 1025.86 93.5613 1020.53 Q93.5613 1015.18 92.1898 1012.52 Q90.8357 1009.85 88.11 1009.85 M88.11 1007.07 Q92.4676 1007.07 94.7593 1010.53 Q97.0683 1013.96 97.0683 1020.53 Q97.0683 1027.07 94.7593 1030.53 Q92.4676 1033.96 88.11 1033.96 Q83.7524 1033.96 81.4434 1030.53 Q79.1517 1027.07 79.1517 1020.53 Q79.1517 1013.96 81.4434 1010.53 Q83.7524 1007.07 88.11 1007.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.37 1021.15 Q105.87 1021.15 104.429 1022.49 Q103.006 1023.83 103.006 1026.17 Q103.006 1028.51 104.429 1029.85 Q105.87 1031.19 108.37 1031.19 Q110.87 1031.19 112.311 1029.85 Q113.752 1028.5 113.752 1026.17 Q113.752 1023.83 112.311 1022.49 Q110.888 1021.15 108.37 1021.15 M104.863 1019.66 Q102.606 1019.1 101.339 1017.56 Q100.089 1016.01 100.089 1013.79 Q100.089 1010.68 102.294 1008.88 Q104.516 1007.07 108.37 1007.07 Q112.242 1007.07 114.447 1008.88 Q116.651 1010.68 116.651 1013.79 Q116.651 1016.01 115.384 1017.56 Q114.134 1019.1 111.895 1019.66 Q114.429 1020.25 115.836 1021.97 Q117.259 1023.69 117.259 1026.17 Q117.259 1029.94 114.95 1031.95 Q112.658 1033.96 108.37 1033.96 Q104.082 1033.96 101.773 1031.95 Q99.4814 1029.94 99.4814 1026.17 Q99.4814 1023.69 100.905 1021.97 Q102.329 1020.25 104.863 1019.66 M103.579 1014.12 Q103.579 1016.13 104.829 1017.26 Q106.096 1018.39 108.37 1018.39 Q110.627 1018.39 111.895 1017.26 Q113.179 1016.13 113.179 1014.12 Q113.179 1012.11 111.895 1010.98 Q110.627 1009.85 108.37 1009.85 Q106.096 1009.85 104.829 1010.98 Q103.579 1012.11 103.579 1014.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.4539 955.424 Q57.7456 955.424 56.374 958.098 Q55.0199 960.754 55.0199 966.101 Q55.0199 971.431 56.374 974.105 Q57.7456 976.761 60.4539 976.761 Q63.1796 976.761 64.5337 974.105 Q65.9052 971.431 65.9052 966.101 Q65.9052 960.754 64.5337 958.098 Q63.1796 955.424 60.4539 955.424 M60.4539 952.647 Q64.8115 952.647 67.1032 956.102 Q69.4122 959.539 69.4122 966.101 Q69.4122 972.647 67.1032 976.101 Q64.8115 979.539 60.4539 979.539 Q56.0963 979.539 53.7872 976.101 Q51.4956 972.647 51.4956 966.101 Q51.4956 959.539 53.7872 956.102 Q56.0963 952.647 60.4539 952.647 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.2142 974.626 L76.8774 974.626 L76.8774 979.035 L73.2142 979.035 L73.2142 974.626 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M88.1794 955.424 Q85.4711 955.424 84.0996 958.098 Q82.7454 960.754 82.7454 966.101 Q82.7454 971.431 84.0996 974.105 Q85.4711 976.761 88.1794 976.761 Q90.9051 976.761 92.2593 974.105 Q93.6308 971.431 93.6308 966.101 Q93.6308 960.754 92.2593 958.098 Q90.9051 955.424 88.1794 955.424 M88.1794 952.647 Q92.537 952.647 94.8287 956.102 Q97.1377 959.539 97.1377 966.101 Q97.1377 972.647 94.8287 976.101 Q92.537 979.539 88.1794 979.539 Q83.8218 979.539 81.5128 976.101 Q79.2211 972.647 79.2211 966.101 Q79.2211 959.539 81.5128 956.102 Q83.8218 952.647 88.1794 952.647 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M101.044 978.497 L101.044 975.303 Q102.363 975.928 103.718 976.258 Q105.072 976.588 106.374 976.588 Q109.846 976.588 111.669 974.261 Q113.509 971.917 113.77 967.161 Q112.763 968.654 111.217 969.452 Q109.672 970.251 107.797 970.251 Q103.909 970.251 101.634 967.907 Q99.3773 965.546 99.3773 961.466 Q99.3773 957.473 101.738 955.06 Q104.099 952.647 108.023 952.647 Q112.52 952.647 114.881 956.102 Q117.259 959.539 117.259 966.101 Q117.259 972.23 114.342 975.893 Q111.443 979.539 106.53 979.539 Q105.211 979.539 103.856 979.278 Q102.502 979.018 101.044 978.497 M108.023 967.508 Q110.384 967.508 111.756 965.893 Q113.145 964.279 113.145 961.466 Q113.145 958.671 111.756 957.056 Q110.384 955.424 108.023 955.424 Q105.662 955.424 104.273 957.056 Q102.902 958.671 102.902 961.466 Q102.902 964.279 104.273 965.893 Q105.662 967.508 108.023 967.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.2351 900.999 Q58.5268 900.999 57.1553 903.673 Q55.8011 906.329 55.8011 911.676 Q55.8011 917.006 57.1553 919.68 Q58.5268 922.336 61.2351 922.336 Q63.9608 922.336 65.315 919.68 Q66.6865 917.006 66.6865 911.676 Q66.6865 906.329 65.315 903.673 Q63.9608 900.999 61.2351 900.999 M61.2351 898.222 Q65.5927 898.222 67.8844 901.676 Q70.1934 905.114 70.1934 911.676 Q70.1934 918.221 67.8844 921.676 Q65.5927 925.114 61.2351 925.114 Q56.8775 925.114 54.5685 921.676 Q52.2768 918.221 52.2768 911.676 Q52.2768 905.114 54.5685 901.676 Q56.8775 898.222 61.2351 898.222 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.9955 920.201 L77.6586 920.201 L77.6586 924.61 L73.9955 924.61 L73.9955 920.201 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.0683 921.659 L87.7975 921.659 L87.7975 901.885 L81.5649 903.135 L81.5649 899.94 L87.7628 898.69 L91.2697 898.69 L91.2697 921.659 L96.9988 921.659 L96.9988 924.61 L82.0683 924.61 L82.0683 921.659 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.301 900.999 Q105.593 900.999 104.221 903.673 Q102.867 906.329 102.867 911.676 Q102.867 917.006 104.221 919.68 Q105.593 922.336 108.301 922.336 Q111.027 922.336 112.381 919.68 Q113.752 917.006 113.752 911.676 Q113.752 906.329 112.381 903.673 Q111.027 900.999 108.301 900.999 M108.301 898.222 Q112.658 898.222 114.95 901.676 Q117.259 905.114 117.259 911.676 Q117.259 918.221 114.95 921.676 Q112.658 925.114 108.301 925.114 Q103.943 925.114 101.634 921.676 Q99.3426 918.221 99.3426 911.676 Q99.3426 905.114 101.634 901.676 Q103.943 898.222 108.301 898.222 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M62.1553 846.574 Q59.4469 846.574 58.0754 849.248 Q56.7213 851.904 56.7213 857.251 Q56.7213 862.581 58.0754 865.255 Q59.4469 867.911 62.1553 867.911 Q64.8809 867.911 66.2351 865.255 Q67.6066 862.581 67.6066 857.251 Q67.6066 851.904 66.2351 849.248 Q64.8809 846.574 62.1553 846.574 M62.1553 843.796 Q66.5129 843.796 68.8045 847.251 Q71.1135 850.689 71.1135 857.251 Q71.1135 863.796 68.8045 867.251 Q66.5129 870.689 62.1553 870.689 Q57.7976 870.689 55.4886 867.251 Q53.197 863.796 53.197 857.251 Q53.197 850.689 55.4886 847.251 Q57.7976 843.796 62.1553 843.796 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.9156 865.775 L78.5788 865.775 L78.5788 870.185 L74.9156 870.185 L74.9156 865.775 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.9885 867.234 L88.7176 867.234 L88.7176 847.46 L82.485 848.71 L82.485 845.515 L88.6829 844.265 L92.1898 844.265 L92.1898 867.234 L97.919 867.234 L97.919 870.185 L82.9885 870.185 L82.9885 867.234 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M102.329 867.234 L108.058 867.234 L108.058 847.46 L101.825 848.71 L101.825 845.515 L108.023 844.265 L111.53 844.265 L111.53 867.234 L117.259 867.234 L117.259 870.185 L102.329 870.185 L102.329 867.234 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M62.433 792.149 Q59.7247 792.149 58.3532 794.823 Q56.999 797.479 56.999 802.826 Q56.999 808.156 58.3532 810.829 Q59.7247 813.486 62.433 813.486 Q65.1587 813.486 66.5129 810.829 Q67.8844 808.156 67.8844 802.826 Q67.8844 797.479 66.5129 794.823 Q65.1587 792.149 62.433 792.149 M62.433 789.371 Q66.7907 789.371 69.0823 792.826 Q71.3913 796.264 71.3913 802.826 Q71.3913 809.371 69.0823 812.826 Q66.7907 816.263 62.433 816.263 Q58.0754 816.263 55.7664 812.826 Q53.4748 809.371 53.4748 802.826 Q53.4748 796.264 55.7664 792.826 Q58.0754 789.371 62.433 789.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M75.1934 811.35 L78.8566 811.35 L78.8566 815.76 L75.1934 815.76 L75.1934 811.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M83.2663 812.809 L88.9954 812.809 L88.9954 793.034 L82.7628 794.284 L82.7628 791.09 L88.9607 789.84 L92.4676 789.84 L92.4676 812.809 L98.1967 812.809 L98.1967 815.76 L83.2663 815.76 L83.2663 812.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M105.02 812.809 L117.259 812.809 L117.259 815.76 L100.801 815.76 L100.801 812.809 Q102.797 810.743 106.235 807.27 Q109.69 803.781 110.575 802.774 Q112.259 800.882 112.919 799.58 Q113.596 798.26 113.596 796.993 Q113.596 794.927 112.138 793.625 Q110.697 792.323 108.37 792.323 Q106.721 792.323 104.881 792.896 Q103.058 793.468 100.974 794.632 L100.974 791.09 Q103.093 790.239 104.933 789.805 Q106.773 789.371 108.301 789.371 Q112.329 789.371 114.724 791.385 Q117.12 793.399 117.12 796.767 Q117.12 798.364 116.513 799.805 Q115.922 801.229 114.342 803.173 Q113.908 803.677 111.582 806.09 Q109.256 808.486 105.02 812.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.7212 737.724 Q59.0129 737.724 57.6414 740.397 Q56.2872 743.054 56.2872 748.401 Q56.2872 753.731 57.6414 756.404 Q59.0129 759.061 61.7212 759.061 Q64.4469 759.061 65.8011 756.404 Q67.1726 753.731 67.1726 748.401 Q67.1726 743.054 65.8011 740.397 Q64.4469 737.724 61.7212 737.724 M61.7212 734.946 Q66.0789 734.946 68.3705 738.401 Q70.6795 741.838 70.6795 748.401 Q70.6795 754.946 68.3705 758.401 Q66.0789 761.838 61.7212 761.838 Q57.3636 761.838 55.0546 758.401 Q52.7629 754.946 52.7629 748.401 Q52.7629 741.838 55.0546 738.401 Q57.3636 734.946 61.7212 734.946 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.4816 756.925 L78.1448 756.925 L78.1448 761.335 L74.4816 761.335 L74.4816 756.925 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.5545 758.383 L88.2836 758.383 L88.2836 738.609 L82.051 739.859 L82.051 736.665 L88.2489 735.415 L91.7558 735.415 L91.7558 758.383 L97.4849 758.383 L97.4849 761.335 L82.5545 761.335 L82.5545 758.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M111.912 747.359 Q114.429 747.897 115.836 749.599 Q117.259 751.3 117.259 753.8 Q117.259 757.637 114.62 759.738 Q111.981 761.838 107.12 761.838 Q105.488 761.838 103.752 761.508 Q102.034 761.196 100.193 760.554 L100.193 757.168 Q101.652 758.019 103.388 758.453 Q105.124 758.887 107.016 758.887 Q110.315 758.887 112.033 757.585 Q113.77 756.283 113.77 753.8 Q113.77 751.509 112.155 750.224 Q110.558 748.922 107.693 748.922 L104.672 748.922 L104.672 746.04 L107.832 746.04 Q110.419 746.04 111.79 745.015 Q113.162 743.974 113.162 742.029 Q113.162 740.033 111.738 738.974 Q110.332 737.897 107.693 737.897 Q106.252 737.897 104.603 738.21 Q102.954 738.522 100.974 739.182 L100.974 736.057 Q102.971 735.502 104.707 735.224 Q106.461 734.946 108.006 734.946 Q111.999 734.946 114.325 736.769 Q116.651 738.575 116.651 741.665 Q116.651 743.818 115.419 745.311 Q114.186 746.786 111.912 747.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M60.8705 683.299 Q58.1622 683.299 56.7907 685.972 Q55.4365 688.629 55.4365 693.976 Q55.4365 699.306 56.7907 701.979 Q58.1622 704.635 60.8705 704.635 Q63.5962 704.635 64.9504 701.979 Q66.3219 699.306 66.3219 693.976 Q66.3219 688.629 64.9504 685.972 Q63.5962 683.299 60.8705 683.299 M60.8705 680.521 Q65.2282 680.521 67.5198 683.976 Q69.8288 687.413 69.8288 693.976 Q69.8288 700.521 67.5198 703.976 Q65.2282 707.413 60.8705 707.413 Q56.5129 707.413 54.2039 703.976 Q51.9123 700.521 51.9123 693.976 Q51.9123 687.413 54.2039 683.976 Q56.5129 680.521 60.8705 680.521 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.6309 702.5 L77.2941 702.5 L77.2941 706.91 L73.6309 706.91 L73.6309 702.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M81.7038 703.958 L87.4329 703.958 L87.4329 684.184 L81.2003 685.434 L81.2003 682.24 L87.3982 680.99 L90.9051 680.99 L90.9051 703.958 L96.6342 703.958 L96.6342 706.91 L81.7038 706.91 L81.7038 703.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M110.072 684.045 L101.218 697.882 L110.072 697.882 L110.072 684.045 M109.152 680.99 L113.561 680.99 L113.561 697.882 L117.259 697.882 L117.259 700.799 L113.561 700.799 L113.561 706.91 L110.072 706.91 L110.072 700.799 L98.3703 700.799 L98.3703 697.413 L109.152 680.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.9817 628.874 Q59.2733 628.874 57.9018 631.547 Q56.5477 634.203 56.5477 639.551 Q56.5477 644.88 57.9018 647.554 Q59.2733 650.21 61.9817 650.21 Q64.7073 650.21 66.0615 647.554 Q67.433 644.88 67.433 639.551 Q67.433 634.203 66.0615 631.547 Q64.7073 628.874 61.9817 628.874 M61.9817 626.096 Q66.3393 626.096 68.6309 629.551 Q70.9399 632.988 70.9399 639.551 Q70.9399 646.096 68.6309 649.551 Q66.3393 652.988 61.9817 652.988 Q57.624 652.988 55.315 649.551 Q53.0234 646.096 53.0234 639.551 Q53.0234 632.988 55.315 629.551 Q57.624 626.096 61.9817 626.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.742 648.075 L78.4052 648.075 L78.4052 652.485 L74.742 652.485 L74.742 648.075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.8149 649.533 L88.544 649.533 L88.544 629.759 L82.3114 631.009 L82.3114 627.815 L88.5093 626.565 L92.0162 626.565 L92.0162 649.533 L97.7453 649.533 L97.7453 652.485 L82.8149 652.485 L82.8149 649.533 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M101.582 626.565 L115.349 626.565 L115.349 629.516 L104.794 629.516 L104.794 635.87 Q105.558 635.61 106.322 635.488 Q107.086 635.349 107.849 635.349 Q112.19 635.349 114.724 637.728 Q117.259 640.106 117.259 644.169 Q117.259 648.353 114.655 650.679 Q112.051 652.988 107.311 652.988 Q105.679 652.988 103.978 652.71 Q102.294 652.432 100.488 651.877 L100.488 648.353 Q102.051 649.203 103.718 649.62 Q105.384 650.037 107.242 650.037 Q110.245 650.037 111.999 648.457 Q113.752 646.877 113.752 644.169 Q113.752 641.46 111.999 639.88 Q110.245 638.301 107.242 638.301 Q105.836 638.301 104.429 638.613 Q103.04 638.926 101.582 639.585 L101.582 626.565 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.1136 574.448 Q58.4053 574.448 57.0338 577.122 Q55.6796 579.778 55.6796 585.125 Q55.6796 590.455 57.0338 593.129 Q58.4053 595.785 61.1136 595.785 Q63.8393 595.785 65.1934 593.129 Q66.565 590.455 66.565 585.125 Q66.565 579.778 65.1934 577.122 Q63.8393 574.448 61.1136 574.448 M61.1136 571.671 Q65.4712 571.671 67.7629 575.126 Q70.0719 578.563 70.0719 585.125 Q70.0719 591.671 67.7629 595.125 Q65.4712 598.563 61.1136 598.563 Q56.756 598.563 54.447 595.125 Q52.1553 591.671 52.1553 585.125 Q52.1553 578.563 54.447 575.126 Q56.756 571.671 61.1136 571.671 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.8739 593.65 L77.5371 593.65 L77.5371 598.059 L73.8739 598.059 L73.8739 593.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M81.9468 595.108 L87.676 595.108 L87.676 575.334 L81.4434 576.584 L81.4434 573.389 L87.6412 572.139 L91.1482 572.139 L91.1482 595.108 L96.8773 595.108 L96.8773 598.059 L81.9468 598.059 L81.9468 595.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.613 583.702 Q106.252 583.702 104.863 585.316 Q103.492 586.931 103.492 589.743 Q103.492 592.539 104.863 594.171 Q106.252 595.785 108.613 595.785 Q110.974 595.785 112.346 594.171 Q113.735 592.539 113.735 589.743 Q113.735 586.931 112.346 585.316 Q110.974 583.702 108.613 583.702 M115.575 572.712 L115.575 575.907 Q114.256 575.282 112.902 574.952 Q111.565 574.622 110.245 574.622 Q106.773 574.622 104.933 576.966 Q103.11 579.31 102.849 584.049 Q103.874 582.539 105.419 581.74 Q106.964 580.924 108.822 580.924 Q112.728 580.924 114.985 583.303 Q117.259 585.664 117.259 589.743 Q117.259 593.737 114.898 596.15 Q112.537 598.563 108.613 598.563 Q104.117 598.563 101.738 595.125 Q99.3599 591.671 99.3599 585.125 Q99.3599 578.98 102.277 575.334 Q105.193 571.671 110.106 571.671 Q111.426 571.671 112.763 571.931 Q114.117 572.191 115.575 572.712 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.9122 520.023 Q59.2039 520.023 57.8324 522.697 Q56.4782 525.353 56.4782 530.7 Q56.4782 536.03 57.8324 538.704 Q59.2039 541.36 61.9122 541.36 Q64.6379 541.36 65.992 538.704 Q67.3636 536.03 67.3636 530.7 Q67.3636 525.353 65.992 522.697 Q64.6379 520.023 61.9122 520.023 M61.9122 517.246 Q66.2698 517.246 68.5615 520.7 Q70.8705 524.138 70.8705 530.7 Q70.8705 537.245 68.5615 540.7 Q66.2698 544.138 61.9122 544.138 Q57.5546 544.138 55.2456 540.7 Q52.9539 537.245 52.9539 530.7 Q52.9539 524.138 55.2456 520.7 Q57.5546 517.246 61.9122 517.246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.6726 539.225 L78.3357 539.225 L78.3357 543.634 L74.6726 543.634 L74.6726 539.225 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.7454 540.683 L88.4746 540.683 L88.4746 520.909 L82.242 522.159 L82.242 518.964 L88.4398 517.714 L91.9468 517.714 L91.9468 540.683 L97.6759 540.683 L97.6759 543.634 L82.7454 543.634 L82.7454 540.683 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M100.593 517.714 L117.259 517.714 L117.259 519.207 L107.849 543.634 L104.186 543.634 L113.04 520.666 L100.593 520.666 L100.593 517.714 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.3046 465.598 Q58.5963 465.598 57.2247 468.272 Q55.8706 470.928 55.8706 476.275 Q55.8706 481.605 57.2247 484.279 Q58.5963 486.935 61.3046 486.935 Q64.0303 486.935 65.3844 484.279 Q66.7559 481.605 66.7559 476.275 Q66.7559 470.928 65.3844 468.272 Q64.0303 465.598 61.3046 465.598 M61.3046 462.82 Q65.6622 462.82 67.9538 466.275 Q70.2629 469.713 70.2629 476.275 Q70.2629 482.82 67.9538 486.275 Q65.6622 489.713 61.3046 489.713 Q56.947 489.713 54.6379 486.275 Q52.3463 482.82 52.3463 476.275 Q52.3463 469.713 54.6379 466.275 Q56.947 462.82 61.3046 462.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.0649 484.799 L77.7281 484.799 L77.7281 489.209 L74.0649 489.209 L74.0649 484.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.1378 486.258 L87.8669 486.258 L87.8669 466.484 L81.6343 467.734 L81.6343 464.539 L87.8322 463.289 L91.3391 463.289 L91.3391 486.258 L97.0683 486.258 L97.0683 489.209 L82.1378 489.209 L82.1378 486.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.37 476.9 Q105.87 476.9 104.429 478.237 Q103.006 479.574 103.006 481.917 Q103.006 484.261 104.429 485.598 Q105.87 486.935 108.37 486.935 Q110.87 486.935 112.311 485.598 Q113.752 484.244 113.752 481.917 Q113.752 479.574 112.311 478.237 Q110.888 476.9 108.37 476.9 M104.863 475.407 Q102.606 474.852 101.339 473.306 Q100.089 471.761 100.089 469.539 Q100.089 466.431 102.294 464.626 Q104.516 462.82 108.37 462.82 Q112.242 462.82 114.447 464.626 Q116.651 466.431 116.651 469.539 Q116.651 471.761 115.384 473.306 Q114.134 474.852 111.895 475.407 Q114.429 475.997 115.836 477.716 Q117.259 479.435 117.259 481.917 Q117.259 485.685 114.95 487.699 Q112.658 489.713 108.37 489.713 Q104.082 489.713 101.773 487.699 Q99.4814 485.685 99.4814 481.917 Q99.4814 479.435 100.905 477.716 Q102.329 475.997 104.863 475.407 M103.579 469.869 Q103.579 471.883 104.829 473.011 Q106.096 474.14 108.37 474.14 Q110.627 474.14 111.895 473.011 Q113.179 471.883 113.179 469.869 Q113.179 467.855 111.895 466.727 Q110.627 465.598 108.37 465.598 Q106.096 465.598 104.829 466.727 Q103.579 467.855 103.579 469.869 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.374 411.173 Q58.6657 411.173 57.2942 413.847 Q55.94 416.503 55.94 421.85 Q55.94 427.18 57.2942 429.853 Q58.6657 432.51 61.374 432.51 Q64.0997 432.51 65.4539 429.853 Q66.8254 427.18 66.8254 421.85 Q66.8254 416.503 65.4539 413.847 Q64.0997 411.173 61.374 411.173 M61.374 408.395 Q65.7316 408.395 68.0233 411.85 Q70.3323 415.288 70.3323 421.85 Q70.3323 428.395 68.0233 431.85 Q65.7316 435.287 61.374 435.287 Q57.0164 435.287 54.7074 431.85 Q52.4157 428.395 52.4157 421.85 Q52.4157 415.288 54.7074 411.85 Q57.0164 408.395 61.374 408.395 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.1344 430.374 L77.7975 430.374 L77.7975 434.784 L74.1344 434.784 L74.1344 430.374 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M82.2072 431.833 L87.9364 431.833 L87.9364 412.058 L81.7038 413.308 L81.7038 410.114 L87.9017 408.864 L91.4086 408.864 L91.4086 431.833 L97.1377 431.833 L97.1377 434.784 L82.2072 434.784 L82.2072 431.833 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M101.044 434.246 L101.044 431.051 Q102.363 431.676 103.718 432.006 Q105.072 432.336 106.374 432.336 Q109.846 432.336 111.669 430.01 Q113.509 427.666 113.77 422.909 Q112.763 424.402 111.217 425.201 Q109.672 425.999 107.797 425.999 Q103.909 425.999 101.634 423.656 Q99.3773 421.294 99.3773 417.215 Q99.3773 413.222 101.738 410.808 Q104.099 408.395 108.023 408.395 Q112.52 408.395 114.881 411.85 Q117.259 415.288 117.259 421.85 Q117.259 427.978 114.342 431.642 Q111.443 435.287 106.53 435.287 Q105.211 435.287 103.856 435.027 Q102.502 434.767 101.044 434.246 M108.023 423.256 Q110.384 423.256 111.756 421.642 Q113.145 420.027 113.145 417.215 Q113.145 414.419 111.756 412.805 Q110.384 411.173 108.023 411.173 Q105.662 411.173 104.273 412.805 Q102.902 414.419 102.902 417.215 Q102.902 420.027 104.273 421.642 Q105.662 423.256 108.023 423.256 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.5129 356.748 Q58.8046 356.748 57.4331 359.421 Q56.0789 362.078 56.0789 367.425 Q56.0789 372.755 57.4331 375.428 Q58.8046 378.085 61.5129 378.085 Q64.2386 378.085 65.5927 375.428 Q66.9643 372.755 66.9643 367.425 Q66.9643 362.078 65.5927 359.421 Q64.2386 356.748 61.5129 356.748 M61.5129 353.97 Q65.8705 353.97 68.1622 357.425 Q70.4712 360.862 70.4712 367.425 Q70.4712 373.97 68.1622 377.425 Q65.8705 380.862 61.5129 380.862 Q57.1553 380.862 54.8463 377.425 Q52.5546 373.97 52.5546 367.425 Q52.5546 360.862 54.8463 357.425 Q57.1553 353.97 61.5129 353.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.2733 375.949 L77.9364 375.949 L77.9364 380.359 L74.2733 380.359 L74.2733 375.949 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M84.7593 377.407 L96.9988 377.407 L96.9988 380.359 L80.5406 380.359 L80.5406 377.407 Q82.5371 375.341 85.9746 371.869 Q89.4294 368.38 90.3148 367.373 Q91.9989 365.48 92.6586 364.178 Q93.3356 362.859 93.3356 361.592 Q93.3356 359.526 91.8773 358.224 Q90.4364 356.921 88.11 356.921 Q86.4607 356.921 84.6204 357.494 Q82.7975 358.067 80.7142 359.23 L80.7142 355.689 Q82.8322 354.838 84.6725 354.404 Q86.5128 353.97 88.0405 353.97 Q92.0683 353.97 94.4641 355.984 Q96.8599 357.998 96.8599 361.366 Q96.8599 362.963 96.2523 364.404 Q95.662 365.828 94.0822 367.772 Q93.6481 368.276 91.3218 370.689 Q88.9954 373.085 84.7593 377.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M108.301 356.748 Q105.593 356.748 104.221 359.421 Q102.867 362.078 102.867 367.425 Q102.867 372.755 104.221 375.428 Q105.593 378.085 108.301 378.085 Q111.027 378.085 112.381 375.428 Q113.752 372.755 113.752 367.425 Q113.752 362.078 112.381 359.421 Q111.027 356.748 108.301 356.748 M108.301 353.97 Q112.658 353.97 114.95 357.425 Q117.259 360.862 117.259 367.425 Q117.259 373.97 114.95 377.425 Q112.658 380.862 108.301 380.862 Q103.943 380.862 101.634 377.425 Q99.3426 373.97 99.3426 367.425 Q99.3426 360.862 101.634 357.425 Q103.943 353.97 108.301 353.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M62.433 302.323 Q59.7247 302.323 58.3532 304.996 Q56.999 307.653 56.999 313 Q56.999 318.33 58.3532 321.003 Q59.7247 323.659 62.433 323.659 Q65.1587 323.659 66.5129 321.003 Q67.8844 318.33 67.8844 313 Q67.8844 307.653 66.5129 304.996 Q65.1587 302.323 62.433 302.323 M62.433 299.545 Q66.7907 299.545 69.0823 303 Q71.3913 306.437 71.3913 313 Q71.3913 319.545 69.0823 323 Q66.7907 326.437 62.433 326.437 Q58.0754 326.437 55.7664 323 Q53.4748 319.545 53.4748 313 Q53.4748 306.437 55.7664 303 Q58.0754 299.545 62.433 299.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M75.1934 321.524 L78.8566 321.524 L78.8566 325.934 L75.1934 325.934 L75.1934 321.524 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M85.6794 322.982 L97.919 322.982 L97.919 325.934 L81.4607 325.934 L81.4607 322.982 Q83.4572 320.916 86.8947 317.444 Q90.3496 313.955 91.235 312.948 Q92.919 311.055 93.5787 309.753 Q94.2558 308.434 94.2558 307.166 Q94.2558 305.1 92.7975 303.798 Q91.3565 302.496 89.0301 302.496 Q87.3808 302.496 85.5406 303.069 Q83.7176 303.642 81.6343 304.805 L81.6343 301.264 Q83.7524 300.413 85.5926 299.979 Q87.4329 299.545 88.9607 299.545 Q92.9884 299.545 95.3842 301.559 Q97.7801 303.573 97.7801 306.941 Q97.7801 308.538 97.1724 309.979 Q96.5822 311.403 95.0023 313.347 Q94.5683 313.85 92.2419 316.264 Q89.9155 318.659 85.6794 322.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M102.329 322.982 L108.058 322.982 L108.058 303.208 L101.825 304.458 L101.825 301.264 L108.023 300.014 L111.53 300.014 L111.53 322.982 L117.259 322.982 L117.259 325.934 L102.329 325.934 L102.329 322.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M62.7108 247.898 Q60.0025 247.898 58.631 250.571 Q57.2768 253.227 57.2768 258.575 Q57.2768 263.904 58.631 266.578 Q60.0025 269.234 62.7108 269.234 Q65.4365 269.234 66.7907 266.578 Q68.1622 263.904 68.1622 258.575 Q68.1622 253.227 66.7907 250.571 Q65.4365 247.898 62.7108 247.898 M62.7108 245.12 Q67.0684 245.12 69.3601 248.575 Q71.6691 252.012 71.6691 258.575 Q71.6691 265.12 69.3601 268.575 Q67.0684 272.012 62.7108 272.012 Q58.3532 272.012 56.0442 268.575 Q53.7525 265.12 53.7525 258.575 Q53.7525 252.012 56.0442 248.575 Q58.3532 245.12 62.7108 245.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M75.4712 267.099 L79.1343 267.099 L79.1343 271.509 L75.4712 271.509 L75.4712 267.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M85.9572 268.557 L98.1967 268.557 L98.1967 271.509 L81.7385 271.509 L81.7385 268.557 Q83.735 266.491 87.1725 263.019 Q90.6273 259.529 91.5127 258.522 Q93.1968 256.63 93.8565 255.328 Q94.5336 254.009 94.5336 252.741 Q94.5336 250.675 93.0752 249.373 Q91.6343 248.071 89.3079 248.071 Q87.6586 248.071 85.8183 248.644 Q83.9954 249.217 81.9121 250.38 L81.9121 246.839 Q84.0301 245.988 85.8704 245.554 Q87.7107 245.12 89.2384 245.12 Q93.2662 245.12 95.662 247.134 Q98.0578 249.148 98.0578 252.516 Q98.0578 254.113 97.4502 255.554 Q96.8599 256.977 95.2801 258.922 Q94.8461 259.425 92.5197 261.838 Q90.1933 264.234 85.9572 268.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M105.02 268.557 L117.259 268.557 L117.259 271.509 L100.801 271.509 L100.801 268.557 Q102.797 266.491 106.235 263.019 Q109.69 259.529 110.575 258.522 Q112.259 256.63 112.919 255.328 Q113.596 254.009 113.596 252.741 Q113.596 250.675 112.138 249.373 Q110.697 248.071 108.37 248.071 Q106.721 248.071 104.881 248.644 Q103.058 249.217 100.974 250.38 L100.974 246.839 Q103.093 245.988 104.933 245.554 Q106.773 245.12 108.301 245.12 Q112.329 245.12 114.724 247.134 Q117.12 249.148 117.12 252.516 Q117.12 254.113 116.513 255.554 Q115.922 256.977 114.342 258.922 Q113.908 259.425 111.582 261.838 Q109.256 264.234 105.02 268.557 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.999 193.472 Q59.2907 193.472 57.9192 196.146 Q56.565 198.802 56.565 204.149 Q56.565 209.479 57.9192 212.153 Q59.2907 214.809 61.999 214.809 Q64.7247 214.809 66.0789 212.153 Q67.4504 209.479 67.4504 204.149 Q67.4504 198.802 66.0789 196.146 Q64.7247 193.472 61.999 193.472 M61.999 190.695 Q66.3566 190.695 68.6483 194.149 Q70.9573 197.587 70.9573 204.149 Q70.9573 210.695 68.6483 214.149 Q66.3566 217.587 61.999 217.587 Q57.6414 217.587 55.3324 214.149 Q53.0407 210.695 53.0407 204.149 Q53.0407 197.587 55.3324 194.149 Q57.6414 190.695 61.999 190.695 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M74.7594 212.674 L78.4225 212.674 L78.4225 217.083 L74.7594 217.083 L74.7594 212.674 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M85.2454 214.132 L97.4849 214.132 L97.4849 217.083 L81.0267 217.083 L81.0267 214.132 Q83.0232 212.066 86.4607 208.594 Q89.9155 205.104 90.8009 204.097 Q92.485 202.205 93.1447 200.903 Q93.8218 199.583 93.8218 198.316 Q93.8218 196.25 92.3634 194.948 Q90.9225 193.646 88.5961 193.646 Q86.9468 193.646 85.1065 194.219 Q83.2836 194.792 81.2003 195.955 L81.2003 192.413 Q83.3183 191.563 85.1586 191.129 Q86.9989 190.695 88.5266 190.695 Q92.5544 190.695 94.9502 192.709 Q97.346 194.722 97.346 198.09 Q97.346 199.688 96.7384 201.129 Q96.1481 202.552 94.5683 204.497 Q94.1343 205 91.8079 207.413 Q89.4815 209.809 85.2454 214.132 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M111.912 203.108 Q114.429 203.646 115.836 205.347 Q117.259 207.049 117.259 209.549 Q117.259 213.385 114.62 215.486 Q111.981 217.587 107.12 217.587 Q105.488 217.587 103.752 217.257 Q102.034 216.944 100.193 216.302 L100.193 212.917 Q101.652 213.767 103.388 214.201 Q105.124 214.635 107.016 214.635 Q110.315 214.635 112.033 213.333 Q113.77 212.031 113.77 209.549 Q113.77 207.257 112.155 205.972 Q110.558 204.67 107.693 204.67 L104.672 204.67 L104.672 201.788 L107.832 201.788 Q110.419 201.788 111.79 200.764 Q113.162 199.722 113.162 197.778 Q113.162 195.781 111.738 194.722 Q110.332 193.646 107.693 193.646 Q106.252 193.646 104.603 193.959 Q102.954 194.271 100.974 194.931 L100.974 191.806 Q102.971 191.25 104.707 190.972 Q106.461 190.695 108.006 190.695 Q111.999 190.695 114.325 192.518 Q116.651 194.323 116.651 197.413 Q116.651 199.566 115.419 201.059 Q114.186 202.535 111.912 203.108 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M61.1483 139.047 Q58.44 139.047 57.0685 141.721 Q55.7143 144.377 55.7143 149.724 Q55.7143 155.054 57.0685 157.728 Q58.44 160.384 61.1483 160.384 Q63.874 160.384 65.2282 157.728 Q66.5997 155.054 66.5997 149.724 Q66.5997 144.377 65.2282 141.721 Q63.874 139.047 61.1483 139.047 M61.1483 136.269 Q65.5059 136.269 67.7976 139.724 Q70.1066 143.162 70.1066 149.724 Q70.1066 156.269 67.7976 159.724 Q65.5059 163.162 61.1483 163.162 Q56.7907 163.162 54.4817 159.724 Q52.19 156.269 52.19 149.724 Q52.19 143.162 54.4817 139.724 Q56.7907 136.269 61.1483 136.269 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M73.9087 158.249 L77.5718 158.249 L77.5718 162.658 L73.9087 162.658 L73.9087 158.249 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M84.3947 159.707 L96.6342 159.707 L96.6342 162.658 L80.176 162.658 L80.176 159.707 Q82.1725 157.641 85.61 154.169 Q89.0648 150.679 89.9503 149.672 Q91.6343 147.78 92.294 146.478 Q92.9711 145.158 92.9711 143.891 Q92.9711 141.825 91.5127 140.523 Q90.0718 139.221 87.7454 139.221 Q86.0961 139.221 84.2558 139.794 Q82.4329 140.367 80.3496 141.53 L80.3496 137.988 Q82.4677 137.138 84.3079 136.704 Q86.1482 136.269 87.676 136.269 Q91.7037 136.269 94.0995 138.283 Q96.4954 140.297 96.4954 143.665 Q96.4954 145.262 95.8877 146.703 Q95.2974 148.127 93.7176 150.071 Q93.2836 150.575 90.9572 152.988 Q88.6308 155.384 84.3947 159.707 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M110.072 139.794 L101.218 153.631 L110.072 153.631 L110.072 139.794 M109.152 136.738 L113.561 136.738 L113.561 153.631 L117.259 153.631 L117.259 156.547 L113.561 156.547 L113.561 162.658 L110.072 162.658 L110.072 156.547 L98.3703 156.547 L98.3703 153.162 L109.152 136.738 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1105.32 14.7875 L1105.32 32.6433 L1113.41 32.6433 Q1117.9 32.6433 1120.35 30.3199 Q1122.8 27.9964 1122.8 23.6995 Q1122.8 19.4345 1120.35 17.111 Q1117.9 14.7875 1113.41 14.7875 L1105.32 14.7875 M1098.89 9.504 L1113.41 9.504 Q1121.4 9.504 1125.47 13.1325 Q1129.58 16.7291 1129.58 23.6995 Q1129.58 30.7336 1125.47 34.3303 Q1121.4 37.9269 1113.41 37.9269 L1105.32 37.9269 L1105.32 57.024 L1098.89 57.024 L1098.89 9.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1135.72 7.4988 L1141.58 7.4988 L1141.58 57.024 L1135.72 57.024 L1135.72 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1163.92 39.1045 Q1156.82 39.1045 1154.08 40.7278 Q1151.35 42.351 1151.35 46.266 Q1151.35 49.3852 1153.38 51.2312 Q1155.45 53.0454 1158.99 53.0454 Q1163.86 53.0454 1166.78 49.608 Q1169.74 46.1386 1169.74 40.4095 L1169.74 39.1045 L1163.92 39.1045 M1175.6 36.6856 L1175.6 57.024 L1169.74 57.024 L1169.74 51.6131 Q1167.74 54.8597 1164.75 56.4193 Q1161.76 57.947 1157.43 57.947 Q1151.95 57.947 1148.71 54.8915 Q1145.49 51.8041 1145.49 46.6479 Q1145.49 40.6323 1149.5 37.5768 Q1153.54 34.5212 1161.53 34.5212 L1169.74 34.5212 L1169.74 33.9483 Q1169.74 29.9061 1167.07 27.7099 Q1164.43 25.4819 1159.62 25.4819 Q1156.57 25.4819 1153.67 26.214 Q1150.77 26.946 1148.1 28.4101 L1148.1 22.9993 Q1151.32 21.758 1154.34 21.1532 Q1157.36 20.5167 1160.23 20.5167 Q1167.96 20.5167 1171.78 24.5271 Q1175.6 28.5375 1175.6 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1196.58 60.3342 Q1194.09 66.6999 1191.74 68.6414 Q1189.38 70.583 1185.44 70.583 L1180.76 70.583 L1180.76 65.6814 L1184.19 65.6814 Q1186.61 65.6814 1187.95 64.5355 Q1189.29 63.3897 1190.91 59.1247 L1191.96 56.4511 L1177.54 21.376 L1183.75 21.376 L1194.89 49.2578 L1206.03 21.376 L1212.24 21.376 L1196.58 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1248.87 37.7359 L1248.87 40.6005 L1221.94 40.6005 Q1222.32 46.6479 1225.57 49.8308 Q1228.85 52.9818 1234.67 52.9818 Q1238.05 52.9818 1241.2 52.1542 Q1244.38 51.3267 1247.5 49.6716 L1247.5 55.2098 Q1244.35 56.5466 1241.04 57.2468 Q1237.73 57.947 1234.32 57.947 Q1225.79 57.947 1220.8 52.9818 Q1215.83 48.0165 1215.83 39.5501 Q1215.83 30.7973 1220.54 25.6729 Q1225.28 20.5167 1233.31 20.5167 Q1240.5 20.5167 1244.67 25.1636 Q1248.87 29.7788 1248.87 37.7359 M1243.01 36.0172 Q1242.95 31.2111 1240.31 28.3465 Q1237.7 25.4819 1233.37 25.4819 Q1228.47 25.4819 1225.51 28.251 Q1222.58 31.0201 1222.13 36.049 L1243.01 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1275.67 26.8506 Q1274.68 26.2776 1273.51 26.023 Q1272.36 25.7366 1270.96 25.7366 Q1265.99 25.7366 1263.32 28.9831 Q1260.68 32.1977 1260.68 38.2452 L1260.68 57.024 L1254.79 57.024 L1254.79 21.376 L1260.68 21.376 L1260.68 26.9142 Q1262.52 23.6677 1265.48 22.1081 Q1268.44 20.5167 1272.68 20.5167 Q1273.28 20.5167 1274.01 20.6122 Q1274.75 20.6758 1275.64 20.835 L1275.67 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1295.88 7.56246 Q1291.62 14.883 1289.55 22.0444 Q1287.48 29.2059 1287.48 36.5583 Q1287.48 43.9106 1289.55 51.1357 Q1291.65 58.329 1295.88 65.6177 L1290.79 65.6177 Q1286.01 58.138 1283.63 50.9129 Q1281.27 43.6878 1281.27 36.5583 Q1281.27 29.4605 1283.63 22.2672 Q1285.98 15.074 1290.79 7.56246 L1295.88 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1332.52 37.7359 L1332.52 40.6005 L1305.59 40.6005 Q1305.97 46.6479 1309.22 49.8308 Q1312.5 52.9818 1318.32 52.9818 Q1321.69 52.9818 1324.84 52.1542 Q1328.03 51.3267 1331.15 49.6716 L1331.15 55.2098 Q1328 56.5466 1324.69 57.2468 Q1321.38 57.947 1317.97 57.947 Q1309.44 57.947 1304.44 52.9818 Q1299.48 48.0165 1299.48 39.5501 Q1299.48 30.7973 1304.19 25.6729 Q1308.93 20.5167 1316.95 20.5167 Q1324.14 20.5167 1328.31 25.1636 Q1332.52 29.7788 1332.52 37.7359 M1326.66 36.0172 Q1326.6 31.2111 1323.95 28.3465 Q1321.34 25.4819 1317.01 25.4819 Q1312.11 25.4819 1309.15 28.251 Q1306.22 31.0201 1305.78 36.049 L1326.66 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1361.38 22.4264 L1361.38 27.9645 Q1358.9 26.6914 1356.23 26.0548 Q1353.55 25.4183 1350.69 25.4183 Q1346.33 25.4183 1344.13 26.7551 Q1341.97 28.0919 1341.97 30.7655 Q1341.97 32.8025 1343.53 33.9801 Q1345.09 35.126 1349.8 36.1763 L1351.8 36.6219 Q1358.04 37.9587 1360.65 40.4095 Q1363.29 42.8285 1363.29 47.189 Q1363.29 52.1542 1359.35 55.0506 Q1355.43 57.947 1348.56 57.947 Q1345.69 57.947 1342.57 57.3741 Q1339.49 56.833 1336.05 55.719 L1336.05 49.6716 Q1339.29 51.3585 1342.45 52.2179 Q1345.6 53.0454 1348.68 53.0454 Q1352.82 53.0454 1355.05 51.645 Q1357.28 50.2127 1357.28 47.6346 Q1357.28 45.2474 1355.65 43.9743 Q1354.06 42.7012 1348.62 41.5235 L1346.58 41.0461 Q1341.14 39.9002 1338.72 37.5449 Q1336.3 35.1578 1336.3 31.0201 Q1336.3 25.9912 1339.87 23.2539 Q1343.43 20.5167 1349.99 20.5167 Q1353.24 20.5167 1356.1 20.9941 Q1358.96 21.4715 1361.38 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1375.23 11.2546 L1375.23 21.376 L1387.29 21.376 L1387.29 25.9275 L1375.23 25.9275 L1375.23 45.2793 Q1375.23 49.6398 1376.41 50.8811 Q1377.62 52.1224 1381.28 52.1224 L1387.29 52.1224 L1387.29 57.024 L1381.28 57.024 Q1374.5 57.024 1371.92 54.5095 Q1369.34 51.9633 1369.34 45.2793 L1369.34 25.9275 L1365.04 25.9275 L1365.04 21.376 L1369.34 21.376 L1369.34 11.2546 L1375.23 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M1392.51 7.56246 L1397.6 7.56246 Q1402.38 15.074 1404.73 22.2672 Q1407.12 29.4605 1407.12 36.5583 Q1407.12 43.6878 1404.73 50.9129 Q1402.38 58.138 1397.6 65.6177 L1392.51 65.6177 Q1396.75 58.329 1398.81 51.1357 Q1400.91 43.9106 1400.91 36.5583 Q1400.91 29.2059 1398.81 22.0444 Q1396.75 14.883 1392.51 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip082)\" d=\"\nM274.235 1455.36 L274.235 1455.9 L287.03 1455.9 L287.03 1455.36 L274.235 1455.36 L274.235 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 274.235,1455.36 274.235,1455.9 287.03,1455.9 287.03,1455.36 274.235,1455.36 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM287.03 1455.9 L287.03 1455.9 L299.824 1455.9 L299.824 1455.9 L287.03 1455.9 L287.03 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 287.03,1455.9 287.03,1455.9 299.824,1455.9 287.03,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM299.824 1455.9 L299.824 1455.9 L312.619 1455.9 L312.619 1455.9 L299.824 1455.9 L299.824 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 299.824,1455.9 299.824,1455.9 312.619,1455.9 299.824,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM312.619 1455.9 L312.619 1455.9 L325.413 1455.9 L325.413 1455.9 L312.619 1455.9 L312.619 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 312.619,1455.9 312.619,1455.9 325.413,1455.9 312.619,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM325.413 1455.9 L325.413 1455.9 L338.207 1455.9 L338.207 1455.9 L325.413 1455.9 L325.413 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 325.413,1455.9 325.413,1455.9 338.207,1455.9 325.413,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM338.207 1455.9 L338.207 1455.9 L351.002 1455.9 L351.002 1455.9 L338.207 1455.9 L338.207 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 338.207,1455.9 338.207,1455.9 351.002,1455.9 338.207,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM351.002 1455.9 L351.002 1455.9 L363.796 1455.9 L363.796 1455.9 L351.002 1455.9 L351.002 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 351.002,1455.9 351.002,1455.9 363.796,1455.9 351.002,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM363.796 1455.9 L363.796 1455.9 L376.591 1455.9 L376.591 1455.9 L363.796 1455.9 L363.796 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 363.796,1455.9 363.796,1455.9 376.591,1455.9 363.796,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM376.591 1455.9 L376.591 1455.9 L389.385 1455.9 L389.385 1455.9 L376.591 1455.9 L376.591 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 376.591,1455.9 376.591,1455.9 389.385,1455.9 376.591,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM389.385 1455.36 L389.385 1455.9 L402.179 1455.9 L402.179 1455.36 L389.385 1455.36 L389.385 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 389.385,1455.36 389.385,1455.9 402.179,1455.9 402.179,1455.36 389.385,1455.36 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM402.179 1455.36 L402.179 1455.9 L414.974 1455.9 L414.974 1455.36 L402.179 1455.36 L402.179 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 402.179,1455.36 402.179,1455.9 414.974,1455.9 414.974,1455.36 402.179,1455.36 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM414.974 1455.9 L414.974 1455.9 L427.768 1455.9 L427.768 1455.9 L414.974 1455.9 L414.974 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 414.974,1455.9 414.974,1455.9 427.768,1455.9 414.974,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM427.768 1454.81 L427.768 1455.9 L440.563 1455.9 L440.563 1454.81 L427.768 1454.81 L427.768 1454.81 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 427.768,1454.81 427.768,1455.9 440.563,1455.9 440.563,1454.81 427.768,1454.81 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM440.563 1454.27 L440.563 1455.9 L453.357 1455.9 L453.357 1454.27 L440.563 1454.27 L440.563 1454.27 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 440.563,1454.27 440.563,1455.9 453.357,1455.9 453.357,1454.27 440.563,1454.27 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM453.357 1453.18 L453.357 1455.9 L466.151 1455.9 L466.151 1453.18 L453.357 1453.18 L453.357 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 453.357,1453.18 453.357,1455.9 466.151,1455.9 466.151,1453.18 453.357,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM466.151 1455.9 L466.151 1455.9 L478.946 1455.9 L478.946 1455.9 L466.151 1455.9 L466.151 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 466.151,1455.9 466.151,1455.9 478.946,1455.9 466.151,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM478.946 1452.09 L478.946 1455.9 L491.74 1455.9 L491.74 1452.09 L478.946 1452.09 L478.946 1452.09 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 478.946,1452.09 478.946,1455.9 491.74,1455.9 491.74,1452.09 478.946,1452.09 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM491.74 1453.72 L491.74 1455.9 L504.535 1455.9 L504.535 1453.72 L491.74 1453.72 L491.74 1453.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 491.74,1453.72 491.74,1455.9 504.535,1455.9 504.535,1453.72 491.74,1453.72 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM504.535 1453.18 L504.535 1455.9 L517.329 1455.9 L517.329 1453.18 L504.535 1453.18 L504.535 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 504.535,1453.18 504.535,1455.9 517.329,1455.9 517.329,1453.18 504.535,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM517.329 1452.64 L517.329 1455.9 L530.124 1455.9 L530.124 1452.64 L517.329 1452.64 L517.329 1452.64 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 517.329,1452.64 517.329,1455.9 530.124,1455.9 530.124,1452.64 517.329,1452.64 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM530.124 1451 L530.124 1455.9 L542.918 1455.9 L542.918 1451 L530.124 1451 L530.124 1451 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 530.124,1451 530.124,1455.9 542.918,1455.9 542.918,1451 530.124,1451 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM542.918 1446.65 L542.918 1455.9 L555.712 1455.9 L555.712 1446.65 L542.918 1446.65 L542.918 1446.65 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 542.918,1446.65 542.918,1455.9 555.712,1455.9 555.712,1446.65 542.918,1446.65 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM555.712 1447.19 L555.712 1455.9 L568.507 1455.9 L568.507 1447.19 L555.712 1447.19 L555.712 1447.19 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 555.712,1447.19 555.712,1455.9 568.507,1455.9 568.507,1447.19 555.712,1447.19 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM568.507 1447.74 L568.507 1455.9 L581.301 1455.9 L581.301 1447.74 L568.507 1447.74 L568.507 1447.74 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 568.507,1447.74 568.507,1455.9 581.301,1455.9 581.301,1447.74 568.507,1447.74 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM581.301 1446.11 L581.301 1455.9 L594.096 1455.9 L594.096 1446.11 L581.301 1446.11 L581.301 1446.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 581.301,1446.11 581.301,1455.9 594.096,1455.9 594.096,1446.11 581.301,1446.11 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM594.096 1443.38 L594.096 1455.9 L606.89 1455.9 L606.89 1443.38 L594.096 1443.38 L594.096 1443.38 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 594.096,1443.38 594.096,1455.9 606.89,1455.9 606.89,1443.38 594.096,1443.38 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM606.89 1439.03 L606.89 1455.9 L619.684 1455.9 L619.684 1439.03 L606.89 1439.03 L606.89 1439.03 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 606.89,1439.03 606.89,1455.9 619.684,1455.9 619.684,1439.03 606.89,1439.03 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM619.684 1440.12 L619.684 1455.9 L632.479 1455.9 L632.479 1440.12 L619.684 1440.12 L619.684 1440.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 619.684,1440.12 619.684,1455.9 632.479,1455.9 632.479,1440.12 619.684,1440.12 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM632.479 1430.87 L632.479 1455.9 L645.273 1455.9 L645.273 1430.87 L632.479 1430.87 L632.479 1430.87 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 632.479,1430.87 632.479,1455.9 645.273,1455.9 645.273,1430.87 632.479,1430.87 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM645.273 1430.87 L645.273 1455.9 L658.068 1455.9 L658.068 1430.87 L645.273 1430.87 L645.273 1430.87 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 645.273,1430.87 645.273,1455.9 658.068,1455.9 658.068,1430.87 645.273,1430.87 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM658.068 1426.51 L658.068 1455.9 L670.862 1455.9 L670.862 1426.51 L658.068 1426.51 L658.068 1426.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 658.068,1426.51 658.068,1455.9 670.862,1455.9 670.862,1426.51 658.068,1426.51 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM670.862 1410.73 L670.862 1455.9 L683.656 1455.9 L683.656 1410.73 L670.862 1410.73 L670.862 1410.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 670.862,1410.73 670.862,1455.9 683.656,1455.9 683.656,1410.73 670.862,1410.73 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM683.656 1410.18 L683.656 1455.9 L696.451 1455.9 L696.451 1410.18 L683.656 1410.18 L683.656 1410.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 683.656,1410.18 683.656,1455.9 696.451,1455.9 696.451,1410.18 683.656,1410.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM696.451 1403.11 L696.451 1455.9 L709.245 1455.9 L709.245 1403.11 L696.451 1403.11 L696.451 1403.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 696.451,1403.11 696.451,1455.9 709.245,1455.9 709.245,1403.11 696.451,1403.11 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM709.245 1405.83 L709.245 1455.9 L722.04 1455.9 L722.04 1405.83 L709.245 1405.83 L709.245 1405.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 709.245,1405.83 709.245,1455.9 722.04,1455.9 722.04,1405.83 709.245,1405.83 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM722.04 1387.87 L722.04 1455.9 L734.834 1455.9 L734.834 1387.87 L722.04 1387.87 L722.04 1387.87 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 722.04,1387.87 722.04,1455.9 734.834,1455.9 734.834,1387.87 722.04,1387.87 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM734.834 1382.97 L734.834 1455.9 L747.628 1455.9 L747.628 1382.97 L734.834 1382.97 L734.834 1382.97 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 734.834,1382.97 734.834,1455.9 747.628,1455.9 747.628,1382.97 734.834,1382.97 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM747.628 1381.34 L747.628 1455.9 L760.423 1455.9 L760.423 1381.34 L747.628 1381.34 L747.628 1381.34 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 747.628,1381.34 747.628,1455.9 760.423,1455.9 760.423,1381.34 747.628,1381.34 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM760.423 1365.56 L760.423 1455.9 L773.217 1455.9 L773.217 1365.56 L760.423 1365.56 L760.423 1365.56 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 760.423,1365.56 760.423,1455.9 773.217,1455.9 773.217,1365.56 760.423,1365.56 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM773.217 1318.75 L773.217 1455.9 L786.012 1455.9 L786.012 1318.75 L773.217 1318.75 L773.217 1318.75 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 773.217,1318.75 773.217,1455.9 786.012,1455.9 786.012,1318.75 773.217,1318.75 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM786.012 1307.87 L786.012 1455.9 L798.806 1455.9 L798.806 1307.87 L786.012 1307.87 L786.012 1307.87 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 786.012,1307.87 786.012,1455.9 798.806,1455.9 798.806,1307.87 786.012,1307.87 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM798.806 1286.1 L798.806 1455.9 L811.6 1455.9 L811.6 1286.1 L798.806 1286.1 L798.806 1286.1 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 798.806,1286.1 798.806,1455.9 811.6,1455.9 811.6,1286.1 798.806,1286.1 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM811.6 1269.77 L811.6 1455.9 L824.395 1455.9 L824.395 1269.77 L811.6 1269.77 L811.6 1269.77 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 811.6,1269.77 811.6,1455.9 824.395,1455.9 824.395,1269.77 811.6,1269.77 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM824.395 1230.58 L824.395 1455.9 L837.189 1455.9 L837.189 1230.58 L824.395 1230.58 L824.395 1230.58 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 824.395,1230.58 824.395,1455.9 837.189,1455.9 837.189,1230.58 824.395,1230.58 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM837.189 1205 L837.189 1455.9 L849.984 1455.9 L849.984 1205 L837.189 1205 L837.189 1205 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 837.189,1205 837.189,1455.9 849.984,1455.9 849.984,1205 837.189,1205 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM849.984 1196.84 L849.984 1455.9 L862.778 1455.9 L862.778 1196.84 L849.984 1196.84 L849.984 1196.84 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 849.984,1196.84 849.984,1455.9 862.778,1455.9 862.778,1196.84 849.984,1196.84 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM862.778 1172.89 L862.778 1455.9 L875.573 1455.9 L875.573 1172.89 L862.778 1172.89 L862.778 1172.89 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 862.778,1172.89 862.778,1455.9 875.573,1455.9 875.573,1172.89 862.778,1172.89 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM875.573 1127.72 L875.573 1455.9 L888.367 1455.9 L888.367 1127.72 L875.573 1127.72 L875.573 1127.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 875.573,1127.72 875.573,1455.9 888.367,1455.9 888.367,1127.72 875.573,1127.72 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM888.367 1110.85 L888.367 1455.9 L901.161 1455.9 L901.161 1110.85 L888.367 1110.85 L888.367 1110.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 888.367,1110.85 888.367,1455.9 901.161,1455.9 901.161,1110.85 888.367,1110.85 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM901.161 1082 L901.161 1455.9 L913.956 1455.9 L913.956 1082 L901.161 1082 L901.161 1082 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 901.161,1082 901.161,1455.9 913.956,1455.9 913.956,1082 901.161,1082 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM913.956 1036.28 L913.956 1455.9 L926.75 1455.9 L926.75 1036.28 L913.956 1036.28 L913.956 1036.28 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 913.956,1036.28 913.956,1455.9 926.75,1455.9 926.75,1036.28 913.956,1036.28 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM926.75 996.554 L926.75 1455.9 L939.545 1455.9 L939.545 996.554 L926.75 996.554 L926.75 996.554 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 926.75,996.554 926.75,1455.9 939.545,1455.9 939.545,996.554 926.75,996.554 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM939.545 945.938 L939.545 1455.9 L952.339 1455.9 L952.339 945.938 L939.545 945.938 L939.545 945.938 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 939.545,945.938 939.545,1455.9 952.339,1455.9 952.339,945.938 939.545,945.938 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM952.339 882.805 L952.339 1455.9 L965.133 1455.9 L965.133 882.805 L952.339 882.805 L952.339 882.805 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 952.339,882.805 952.339,1455.9 965.133,1455.9 965.133,882.805 952.339,882.805 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM965.133 868.11 L965.133 1455.9 L977.928 1455.9 L977.928 868.11 L965.133 868.11 L965.133 868.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 965.133,868.11 965.133,1455.9 977.928,1455.9 977.928,868.11 965.133,868.11 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM977.928 826.747 L977.928 1455.9 L990.722 1455.9 L990.722 826.747 L977.928 826.747 L977.928 826.747 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 977.928,826.747 977.928,1455.9 990.722,1455.9 990.722,826.747 977.928,826.747 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM990.722 767.968 L990.722 1455.9 L1003.52 1455.9 L1003.52 767.968 L990.722 767.968 L990.722 767.968 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 990.722,767.968 990.722,1455.9 1003.52,1455.9 1003.52,767.968 990.722,767.968 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1003.52 686.33 L1003.52 1455.9 L1016.31 1455.9 L1016.31 686.33 L1003.52 686.33 L1003.52 686.33 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1003.52,686.33 1003.52,1455.9 1016.31,1455.9 1016.31,686.33 1003.52,686.33 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1016.31 684.153 L1016.31 1455.9 L1029.11 1455.9 L1029.11 684.153 L1016.31 684.153 L1016.31 684.153 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1016.31,684.153 1016.31,1455.9 1029.11,1455.9 1029.11,684.153 1016.31,684.153 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1029.11 629.184 L1029.11 1455.9 L1041.9 1455.9 L1041.9 629.184 L1029.11 629.184 L1029.11 629.184 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1029.11,629.184 1029.11,1455.9 1041.9,1455.9 1041.9,629.184 1029.11,629.184 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1041.9 579.113 L1041.9 1455.9 L1054.69 1455.9 L1054.69 579.113 L1041.9 579.113 L1041.9 579.113 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1041.9,579.113 1041.9,1455.9 1054.69,1455.9 1054.69,579.113 1041.9,579.113 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1054.69 538.838 L1054.69 1455.9 L1067.49 1455.9 L1067.49 538.838 L1054.69 538.838 L1054.69 538.838 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1054.69,538.838 1054.69,1455.9 1067.49,1455.9 1067.49,538.838 1054.69,538.838 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1067.49 487.134 L1067.49 1455.9 L1080.28 1455.9 L1080.28 487.134 L1067.49 487.134 L1067.49 487.134 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1067.49,487.134 1067.49,1455.9 1080.28,1455.9 1080.28,487.134 1067.49,487.134 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1080.28 433.798 L1080.28 1455.9 L1093.08 1455.9 L1093.08 433.798 L1080.28 433.798 L1080.28 433.798 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1080.28,433.798 1080.28,1455.9 1093.08,1455.9 1093.08,433.798 1080.28,433.798 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1093.08 422.912 L1093.08 1455.9 L1105.87 1455.9 L1105.87 422.912 L1093.08 422.912 L1093.08 422.912 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1093.08,422.912 1093.08,1455.9 1105.87,1455.9 1105.87,422.912 1093.08,422.912 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1105.87 346.717 L1105.87 1455.9 L1118.67 1455.9 L1118.67 346.717 L1105.87 346.717 L1105.87 346.717 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1105.87,346.717 1105.87,1455.9 1118.67,1455.9 1118.67,346.717 1105.87,346.717 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1118.67 396.788 L1118.67 1455.9 L1131.46 1455.9 L1131.46 396.788 L1118.67 396.788 L1118.67 396.788 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1118.67,396.788 1118.67,1455.9 1131.46,1455.9 1131.46,396.788 1118.67,396.788 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1131.46 291.204 L1131.46 1455.9 L1144.26 1455.9 L1144.26 291.204 L1131.46 291.204 L1131.46 291.204 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1131.46,291.204 1131.46,1455.9 1144.26,1455.9 1144.26,291.204 1131.46,291.204 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1144.26 277.597 L1144.26 1455.9 L1157.05 1455.9 L1157.05 277.597 L1144.26 277.597 L1144.26 277.597 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1144.26,277.597 1144.26,1455.9 1157.05,1455.9 1157.05,277.597 1144.26,277.597 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1157.05 223.172 L1157.05 1455.9 L1169.84 1455.9 L1169.84 223.172 L1157.05 223.172 L1157.05 223.172 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1157.05,223.172 1157.05,1455.9 1169.84,1455.9 1169.84,223.172 1157.05,223.172 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1169.84 240.588 L1169.84 1455.9 L1182.64 1455.9 L1182.64 240.588 L1169.84 240.588 L1169.84 240.588 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1169.84,240.588 1169.84,1455.9 1182.64,1455.9 1182.64,240.588 1169.84,240.588 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1182.64 206.3 L1182.64 1455.9 L1195.43 1455.9 L1195.43 206.3 L1182.64 206.3 L1182.64 206.3 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1182.64,206.3 1182.64,1455.9 1195.43,1455.9 1195.43,206.3 1182.64,206.3 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1195.43 209.022 L1195.43 1455.9 L1208.23 1455.9 L1208.23 209.022 L1195.43 209.022 L1195.43 209.022 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1195.43,209.022 1195.43,1455.9 1208.23,1455.9 1208.23,209.022 1195.43,209.022 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1208.23 192.15 L1208.23 1455.9 L1221.02 1455.9 L1221.02 192.15 L1208.23 192.15 L1208.23 192.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1208.23,192.15 1208.23,1455.9 1221.02,1455.9 1221.02,192.15 1208.23,192.15 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1221.02 157.318 L1221.02 1455.9 L1233.82 1455.9 L1233.82 157.318 L1221.02 157.318 L1221.02 157.318 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1221.02,157.318 1221.02,1455.9 1233.82,1455.9 1233.82,157.318 1221.02,157.318 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1233.82 149.698 L1233.82 1455.9 L1246.61 1455.9 L1246.61 149.698 L1233.82 149.698 L1233.82 149.698 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1233.82,149.698 1233.82,1455.9 1246.61,1455.9 1246.61,149.698 1233.82,149.698 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1246.61 180.176 L1246.61 1455.9 L1259.4 1455.9 L1259.4 180.176 L1246.61 180.176 L1246.61 180.176 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1246.61,180.176 1246.61,1455.9 1259.4,1455.9 1259.4,180.176 1246.61,180.176 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1259.4 195.415 L1259.4 1455.9 L1272.2 1455.9 L1272.2 195.415 L1259.4 195.415 L1259.4 195.415 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1259.4,195.415 1259.4,1455.9 1272.2,1455.9 1272.2,195.415 1259.4,195.415 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1272.2 174.19 L1272.2 1455.9 L1284.99 1455.9 L1284.99 174.19 L1272.2 174.19 L1272.2 174.19 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1272.2,174.19 1272.2,1455.9 1284.99,1455.9 1284.99,174.19 1272.2,174.19 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1284.99 200.858 L1284.99 1455.9 L1297.79 1455.9 L1297.79 200.858 L1284.99 200.858 L1284.99 200.858 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1284.99,200.858 1284.99,1455.9 1297.79,1455.9 1297.79,200.858 1284.99,200.858 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1297.79 220.451 L1297.79 1455.9 L1310.58 1455.9 L1310.58 220.451 L1297.79 220.451 L1297.79 220.451 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1297.79,220.451 1297.79,1455.9 1310.58,1455.9 1310.58,220.451 1297.79,220.451 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1310.58 279.774 L1310.58 1455.9 L1323.38 1455.9 L1323.38 279.774 L1310.58 279.774 L1310.58 279.774 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1310.58,279.774 1310.58,1455.9 1323.38,1455.9 1323.38,279.774 1310.58,279.774 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1323.38 271.066 L1323.38 1455.9 L1336.17 1455.9 L1336.17 271.066 L1323.38 271.066 L1323.38 271.066 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1323.38,271.066 1323.38,1455.9 1336.17,1455.9 1336.17,271.066 1323.38,271.066 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1336.17 297.735 L1336.17 1455.9 L1348.97 1455.9 L1348.97 297.735 L1336.17 297.735 L1336.17 297.735 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1336.17,297.735 1336.17,1455.9 1348.97,1455.9 1348.97,297.735 1336.17,297.735 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1348.97 348.894 L1348.97 1455.9 L1361.76 1455.9 L1361.76 348.894 L1348.97 348.894 L1348.97 348.894 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1348.97,348.894 1348.97,1455.9 1361.76,1455.9 1361.76,348.894 1348.97,348.894 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1361.76 366.855 L1361.76 1455.9 L1374.55 1455.9 L1374.55 366.855 L1361.76 366.855 L1361.76 366.855 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1361.76,366.855 1361.76,1455.9 1374.55,1455.9 1374.55,366.855 1361.76,366.855 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1374.55 404.408 L1374.55 1455.9 L1387.35 1455.9 L1387.35 404.408 L1374.55 404.408 L1374.55 404.408 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1374.55,404.408 1374.55,1455.9 1387.35,1455.9 1387.35,404.408 1374.55,404.408 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1387.35 461.554 L1387.35 1455.9 L1400.14 1455.9 L1400.14 461.554 L1387.35 461.554 L1387.35 461.554 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1387.35,461.554 1387.35,1455.9 1400.14,1455.9 1400.14,461.554 1387.35,461.554 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1400.14 537.205 L1400.14 1455.9 L1412.94 1455.9 L1412.94 537.205 L1400.14 537.205 L1400.14 537.205 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1400.14,537.205 1400.14,1455.9 1412.94,1455.9 1412.94,537.205 1400.14,537.205 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1412.94 561.152 L1412.94 1455.9 L1425.73 1455.9 L1425.73 561.152 L1412.94 561.152 L1412.94 561.152 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1412.94,561.152 1412.94,1455.9 1425.73,1455.9 1425.73,561.152 1412.94,561.152 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1425.73 579.113 L1425.73 1455.9 L1438.53 1455.9 L1438.53 579.113 L1425.73 579.113 L1425.73 579.113 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1425.73,579.113 1425.73,1455.9 1438.53,1455.9 1438.53,579.113 1425.73,579.113 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1438.53 662.383 L1438.53 1455.9 L1451.32 1455.9 L1451.32 662.383 L1438.53 662.383 L1438.53 662.383 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1438.53,662.383 1438.53,1455.9 1451.32,1455.9 1451.32,662.383 1438.53,662.383 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1451.32 700.481 L1451.32 1455.9 L1464.12 1455.9 L1464.12 700.481 L1451.32 700.481 L1451.32 700.481 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1451.32,700.481 1451.32,1455.9 1464.12,1455.9 1464.12,700.481 1451.32,700.481 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1464.12 746.742 L1464.12 1455.9 L1476.91 1455.9 L1476.91 746.742 L1464.12 746.742 L1464.12 746.742 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1464.12,746.742 1464.12,1455.9 1476.91,1455.9 1476.91,746.742 1464.12,746.742 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1476.91 764.702 L1476.91 1455.9 L1489.7 1455.9 L1489.7 764.702 L1476.91 764.702 L1476.91 764.702 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1476.91,764.702 1476.91,1455.9 1489.7,1455.9 1489.7,764.702 1476.91,764.702 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1489.7 848.517 L1489.7 1455.9 L1502.5 1455.9 L1502.5 848.517 L1489.7 848.517 L1489.7 848.517 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1489.7,848.517 1489.7,1455.9 1502.5,1455.9 1502.5,848.517 1489.7,848.517 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1502.5 850.694 L1502.5 1455.9 L1515.29 1455.9 L1515.29 850.694 L1502.5 850.694 L1502.5 850.694 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1502.5,850.694 1502.5,1455.9 1515.29,1455.9 1515.29,850.694 1502.5,850.694 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1515.29 932.332 L1515.29 1455.9 L1528.09 1455.9 L1528.09 932.332 L1515.29 932.332 L1515.29 932.332 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1515.29,932.332 1515.29,1455.9 1528.09,1455.9 1528.09,932.332 1515.29,932.332 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1528.09 937.774 L1528.09 1455.9 L1540.88 1455.9 L1540.88 937.774 L1528.09 937.774 L1528.09 937.774 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1528.09,937.774 1528.09,1455.9 1540.88,1455.9 1540.88,937.774 1528.09,937.774 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1540.88 979.682 L1540.88 1455.9 L1553.68 1455.9 L1553.68 979.682 L1540.88 979.682 L1540.88 979.682 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1540.88,979.682 1540.88,1455.9 1553.68,1455.9 1553.68,979.682 1540.88,979.682 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1553.68 1016.69 L1553.68 1455.9 L1566.47 1455.9 L1566.47 1016.69 L1553.68 1016.69 L1553.68 1016.69 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1553.68,1016.69 1553.68,1455.9 1566.47,1455.9 1566.47,1016.69 1553.68,1016.69 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1566.47 1049.35 L1566.47 1455.9 L1579.26 1455.9 L1579.26 1049.35 L1566.47 1049.35 L1566.47 1049.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1566.47,1049.35 1566.47,1455.9 1579.26,1455.9 1579.26,1049.35 1566.47,1049.35 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1579.26 1091.25 L1579.26 1455.9 L1592.06 1455.9 L1592.06 1091.25 L1579.26 1091.25 L1579.26 1091.25 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1579.26,1091.25 1579.26,1455.9 1592.06,1455.9 1592.06,1091.25 1579.26,1091.25 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1592.06 1108.13 L1592.06 1455.9 L1604.85 1455.9 L1604.85 1108.13 L1592.06 1108.13 L1592.06 1108.13 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1592.06,1108.13 1592.06,1455.9 1604.85,1455.9 1604.85,1108.13 1592.06,1108.13 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1604.85 1140.24 L1604.85 1455.9 L1617.65 1455.9 L1617.65 1140.24 L1604.85 1140.24 L1604.85 1140.24 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1604.85,1140.24 1604.85,1455.9 1617.65,1455.9 1617.65,1140.24 1604.85,1140.24 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1617.65 1197.93 L1617.65 1455.9 L1630.44 1455.9 L1630.44 1197.93 L1617.65 1197.93 L1617.65 1197.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1617.65,1197.93 1617.65,1455.9 1630.44,1455.9 1630.44,1197.93 1617.65,1197.93 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1630.44 1236.57 L1630.44 1455.9 L1643.24 1455.9 L1643.24 1236.57 L1630.44 1236.57 L1630.44 1236.57 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1630.44,1236.57 1630.44,1455.9 1643.24,1455.9 1643.24,1236.57 1630.44,1236.57 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1643.24 1228.4 L1643.24 1455.9 L1656.03 1455.9 L1656.03 1228.4 L1643.24 1228.4 L1643.24 1228.4 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1643.24,1228.4 1643.24,1455.9 1656.03,1455.9 1656.03,1228.4 1643.24,1228.4 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1656.03 1261.06 L1656.03 1455.9 L1668.83 1455.9 L1668.83 1261.06 L1656.03 1261.06 L1656.03 1261.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1656.03,1261.06 1656.03,1455.9 1668.83,1455.9 1668.83,1261.06 1656.03,1261.06 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1668.83 1262.15 L1668.83 1455.9 L1681.62 1455.9 L1681.62 1262.15 L1668.83 1262.15 L1668.83 1262.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1668.83,1262.15 1668.83,1455.9 1681.62,1455.9 1681.62,1262.15 1668.83,1262.15 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1681.62 1296.44 L1681.62 1455.9 L1694.41 1455.9 L1694.41 1296.44 L1681.62 1296.44 L1681.62 1296.44 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1681.62,1296.44 1681.62,1455.9 1694.41,1455.9 1694.41,1296.44 1681.62,1296.44 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1694.41 1305.69 L1694.41 1455.9 L1707.21 1455.9 L1707.21 1305.69 L1694.41 1305.69 L1694.41 1305.69 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1694.41,1305.69 1694.41,1455.9 1707.21,1455.9 1707.21,1305.69 1694.41,1305.69 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1707.21 1336.71 L1707.21 1455.9 L1720 1455.9 L1720 1336.71 L1707.21 1336.71 L1707.21 1336.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1707.21,1336.71 1707.21,1455.9 1720,1455.9 1720,1336.71 1707.21,1336.71 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1720 1356.3 L1720 1455.9 L1732.8 1455.9 L1732.8 1356.3 L1720 1356.3 L1720 1356.3 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1720,1356.3 1720,1455.9 1732.8,1455.9 1732.8,1356.3 1720,1356.3 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1732.8 1353.04 L1732.8 1455.9 L1745.59 1455.9 L1745.59 1353.04 L1732.8 1353.04 L1732.8 1353.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1732.8,1353.04 1732.8,1455.9 1745.59,1455.9 1745.59,1353.04 1732.8,1353.04 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1745.59 1367.73 L1745.59 1455.9 L1758.39 1455.9 L1758.39 1367.73 L1745.59 1367.73 L1745.59 1367.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1745.59,1367.73 1745.59,1455.9 1758.39,1455.9 1758.39,1367.73 1745.59,1367.73 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1758.39 1382.43 L1758.39 1455.9 L1771.18 1455.9 L1771.18 1382.43 L1758.39 1382.43 L1758.39 1382.43 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1758.39,1382.43 1758.39,1455.9 1771.18,1455.9 1771.18,1382.43 1758.39,1382.43 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1771.18 1390.05 L1771.18 1455.9 L1783.98 1455.9 L1783.98 1390.05 L1771.18 1390.05 L1771.18 1390.05 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1771.18,1390.05 1771.18,1455.9 1783.98,1455.9 1783.98,1390.05 1771.18,1390.05 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1783.98 1400.93 L1783.98 1455.9 L1796.77 1455.9 L1796.77 1400.93 L1783.98 1400.93 L1783.98 1400.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1783.98,1400.93 1783.98,1455.9 1796.77,1455.9 1796.77,1400.93 1783.98,1400.93 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1796.77 1404.2 L1796.77 1455.9 L1809.56 1455.9 L1809.56 1404.2 L1796.77 1404.2 L1796.77 1404.2 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1796.77,1404.2 1796.77,1455.9 1809.56,1455.9 1809.56,1404.2 1796.77,1404.2 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1809.56 1417.8 L1809.56 1455.9 L1822.36 1455.9 L1822.36 1417.8 L1809.56 1417.8 L1809.56 1417.8 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1809.56,1417.8 1809.56,1455.9 1822.36,1455.9 1822.36,1417.8 1809.56,1417.8 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1822.36 1419.98 L1822.36 1455.9 L1835.15 1455.9 L1835.15 1419.98 L1822.36 1419.98 L1822.36 1419.98 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1822.36,1419.98 1822.36,1455.9 1835.15,1455.9 1835.15,1419.98 1822.36,1419.98 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1835.15 1416.72 L1835.15 1455.9 L1847.95 1455.9 L1847.95 1416.72 L1835.15 1416.72 L1835.15 1416.72 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1835.15,1416.72 1835.15,1455.9 1847.95,1455.9 1847.95,1416.72 1835.15,1416.72 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1847.95 1430.87 L1847.95 1455.9 L1860.74 1455.9 L1860.74 1430.87 L1847.95 1430.87 L1847.95 1430.87 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1847.95,1430.87 1847.95,1455.9 1860.74,1455.9 1860.74,1430.87 1847.95,1430.87 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1860.74 1433.59 L1860.74 1455.9 L1873.54 1455.9 L1873.54 1433.59 L1860.74 1433.59 L1860.74 1433.59 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1860.74,1433.59 1860.74,1455.9 1873.54,1455.9 1873.54,1433.59 1860.74,1433.59 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1873.54 1437.4 L1873.54 1455.9 L1886.33 1455.9 L1886.33 1437.4 L1873.54 1437.4 L1873.54 1437.4 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1873.54,1437.4 1873.54,1455.9 1886.33,1455.9 1886.33,1437.4 1873.54,1437.4 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1886.33 1439.03 L1886.33 1455.9 L1899.13 1455.9 L1899.13 1439.03 L1886.33 1439.03 L1886.33 1439.03 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1886.33,1439.03 1886.33,1455.9 1899.13,1455.9 1899.13,1439.03 1886.33,1439.03 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1899.13 1438.49 L1899.13 1455.9 L1911.92 1455.9 L1911.92 1438.49 L1899.13 1438.49 L1899.13 1438.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1899.13,1438.49 1899.13,1455.9 1911.92,1455.9 1911.92,1438.49 1899.13,1438.49 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1911.92 1443.93 L1911.92 1455.9 L1924.71 1455.9 L1924.71 1443.93 L1911.92 1443.93 L1911.92 1443.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1911.92,1443.93 1911.92,1455.9 1924.71,1455.9 1924.71,1443.93 1911.92,1443.93 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1924.71 1448.83 L1924.71 1455.9 L1937.51 1455.9 L1937.51 1448.83 L1924.71 1448.83 L1924.71 1448.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1924.71,1448.83 1924.71,1455.9 1937.51,1455.9 1937.51,1448.83 1924.71,1448.83 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1937.51 1443.93 L1937.51 1455.9 L1950.3 1455.9 L1950.3 1443.93 L1937.51 1443.93 L1937.51 1443.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1937.51,1443.93 1937.51,1455.9 1950.3,1455.9 1950.3,1443.93 1937.51,1443.93 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1950.3 1449.92 L1950.3 1455.9 L1963.1 1455.9 L1963.1 1449.92 L1950.3 1449.92 L1950.3 1449.92 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1950.3,1449.92 1950.3,1455.9 1963.1,1455.9 1963.1,1449.92 1950.3,1449.92 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1963.1 1448.83 L1963.1 1455.9 L1975.89 1455.9 L1975.89 1448.83 L1963.1 1448.83 L1963.1 1448.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1963.1,1448.83 1963.1,1455.9 1975.89,1455.9 1975.89,1448.83 1963.1,1448.83 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1975.89 1451 L1975.89 1455.9 L1988.69 1455.9 L1988.69 1451 L1975.89 1451 L1975.89 1451 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1975.89,1451 1975.89,1455.9 1988.69,1455.9 1988.69,1451 1975.89,1451 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM1988.69 1454.81 L1988.69 1455.9 L2001.48 1455.9 L2001.48 1454.81 L1988.69 1454.81 L1988.69 1454.81 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1988.69,1454.81 1988.69,1455.9 2001.48,1455.9 2001.48,1454.81 1988.69,1454.81 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2001.48 1453.18 L2001.48 1455.9 L2014.27 1455.9 L2014.27 1453.18 L2001.48 1453.18 L2001.48 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2001.48,1453.18 2001.48,1455.9 2014.27,1455.9 2014.27,1453.18 2001.48,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2014.27 1453.18 L2014.27 1455.9 L2027.07 1455.9 L2027.07 1453.18 L2014.27 1453.18 L2014.27 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2014.27,1453.18 2014.27,1455.9 2027.07,1455.9 2027.07,1453.18 2014.27,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2027.07 1452.09 L2027.07 1455.9 L2039.86 1455.9 L2039.86 1452.09 L2027.07 1452.09 L2027.07 1452.09 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2027.07,1452.09 2027.07,1455.9 2039.86,1455.9 2039.86,1452.09 2027.07,1452.09 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2039.86 1453.18 L2039.86 1455.9 L2052.66 1455.9 L2052.66 1453.18 L2039.86 1453.18 L2039.86 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2039.86,1453.18 2039.86,1455.9 2052.66,1455.9 2052.66,1453.18 2039.86,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2052.66 1453.18 L2052.66 1455.9 L2065.45 1455.9 L2065.45 1453.18 L2052.66 1453.18 L2052.66 1453.18 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2052.66,1453.18 2052.66,1455.9 2065.45,1455.9 2065.45,1453.18 2052.66,1453.18 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2065.45 1454.27 L2065.45 1455.9 L2078.25 1455.9 L2078.25 1454.27 L2065.45 1454.27 L2065.45 1454.27 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2065.45,1454.27 2065.45,1455.9 2078.25,1455.9 2078.25,1454.27 2065.45,1454.27 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2078.25 1455.36 L2078.25 1455.9 L2091.04 1455.9 L2091.04 1455.36 L2078.25 1455.36 L2078.25 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2078.25,1455.36 2078.25,1455.9 2091.04,1455.9 2091.04,1455.36 2078.25,1455.36 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2091.04 1454.81 L2091.04 1455.9 L2103.84 1455.9 L2103.84 1454.81 L2091.04 1454.81 L2091.04 1454.81 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2091.04,1454.81 2091.04,1455.9 2103.84,1455.9 2103.84,1454.81 2091.04,1454.81 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2103.84 1455.36 L2103.84 1455.9 L2116.63 1455.9 L2116.63 1455.36 L2103.84 1455.36 L2103.84 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2103.84,1455.36 2103.84,1455.9 2116.63,1455.9 2116.63,1455.36 2103.84,1455.36 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2116.63 1454.27 L2116.63 1455.9 L2129.42 1455.9 L2129.42 1454.27 L2116.63 1454.27 L2116.63 1454.27 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2116.63,1454.27 2116.63,1455.9 2129.42,1455.9 2129.42,1454.27 2116.63,1454.27 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2129.42 1455.9 L2129.42 1455.9 L2142.22 1455.9 L2142.22 1455.9 L2129.42 1455.9 L2129.42 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2129.42,1455.9 2129.42,1455.9 2142.22,1455.9 2129.42,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2142.22 1455.9 L2142.22 1455.9 L2155.01 1455.9 L2155.01 1455.9 L2142.22 1455.9 L2142.22 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2142.22,1455.9 2142.22,1455.9 2155.01,1455.9 2142.22,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2155.01 1455.9 L2155.01 1455.9 L2167.81 1455.9 L2167.81 1455.9 L2155.01 1455.9 L2155.01 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2155.01,1455.9 2155.01,1455.9 2167.81,1455.9 2155.01,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2167.81 1455.9 L2167.81 1455.9 L2180.6 1455.9 L2180.6 1455.9 L2167.81 1455.9 L2167.81 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2167.81,1455.9 2167.81,1455.9 2180.6,1455.9 2167.81,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2180.6 1455.9 L2180.6 1455.9 L2193.4 1455.9 L2193.4 1455.9 L2180.6 1455.9 L2180.6 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2180.6,1455.9 2180.6,1455.9 2193.4,1455.9 2180.6,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2193.4 1454.81 L2193.4 1455.9 L2206.19 1455.9 L2206.19 1454.81 L2193.4 1454.81 L2193.4 1454.81 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2193.4,1454.81 2193.4,1455.9 2206.19,1455.9 2206.19,1454.81 2193.4,1454.81 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2206.19 1455.9 L2206.19 1455.9 L2218.99 1455.9 L2218.99 1455.9 L2206.19 1455.9 L2206.19 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2206.19,1455.9 2206.19,1455.9 2218.99,1455.9 2206.19,1455.9 \n \"/>\n<path clip-path=\"url(#clip082)\" d=\"\nM2218.99 1455.36 L2218.99 1455.9 L2231.78 1455.9 L2231.78 1455.36 L2218.99 1455.36 L2218.99 1455.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 2218.99,1455.36 2218.99,1455.9 2231.78,1455.9 2231.78,1455.36 2218.99,1455.36 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 810.324,2879.66 810.324,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1243.12,2879.66 1243.12,-1274.06 \n \"/>\n<polyline clip-path=\"url(#clip082)\" style=\"stroke:#e26f46; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1675.91,2879.66 1675.91,-1274.06 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"\nM1891.16 338.105 L2279.44 338.105 L2279.44 156.665 L1891.16 156.665 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1891.16,338.105 2279.44,338.105 2279.44,156.665 1891.16,156.665 1891.16,338.105 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"\nM1915.6 241.337 L2062.23 241.337 L2062.23 192.953 L1915.6 192.953 L1915.6 241.337 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip080)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:1; fill:none\" points=\"\n 1915.6,241.337 2062.23,241.337 2062.23,192.953 1915.6,192.953 1915.6,241.337 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"M 0 0 M2086.67 198.406 L2090.93 198.406 L2090.93 234.425 L2086.67 234.425 L2086.67 198.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2105.45 211.485 Q2102.02 211.485 2100.03 214.17 Q2098.04 216.832 2098.04 221.485 Q2098.04 226.138 2100.01 228.823 Q2102 231.485 2105.45 231.485 Q2108.85 231.485 2110.84 228.8 Q2112.83 226.115 2112.83 221.485 Q2112.83 216.878 2110.84 214.193 Q2108.85 211.485 2105.45 211.485 M2105.45 207.874 Q2111 207.874 2114.17 211.485 Q2117.34 215.096 2117.34 221.485 Q2117.34 227.851 2114.17 231.485 Q2111 235.096 2105.45 235.096 Q2099.87 235.096 2096.7 231.485 Q2093.55 227.851 2093.55 221.485 Q2093.55 215.096 2096.7 211.485 Q2099.87 207.874 2105.45 207.874 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2138.34 209.263 L2138.34 213.291 Q2136.53 212.365 2134.59 211.902 Q2132.65 211.439 2130.56 211.439 Q2127.39 211.439 2125.79 212.411 Q2124.22 213.383 2124.22 215.328 Q2124.22 216.809 2125.35 217.665 Q2126.49 218.499 2129.91 219.263 L2131.37 219.587 Q2135.91 220.559 2137.81 222.341 Q2139.73 224.101 2139.73 227.272 Q2139.73 230.883 2136.86 232.989 Q2134.01 235.096 2129.01 235.096 Q2126.93 235.096 2124.66 234.679 Q2122.41 234.286 2119.91 233.476 L2119.91 229.077 Q2122.28 230.304 2124.57 230.929 Q2126.86 231.531 2129.1 231.531 Q2132.11 231.531 2133.73 230.513 Q2135.35 229.471 2135.35 227.596 Q2135.35 225.86 2134.17 224.934 Q2133.02 224.008 2129.06 223.152 L2127.58 222.804 Q2123.62 221.971 2121.86 220.258 Q2120.1 218.522 2120.1 215.513 Q2120.1 211.855 2122.69 209.865 Q2125.28 207.874 2130.05 207.874 Q2132.41 207.874 2134.5 208.221 Q2136.58 208.568 2138.34 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2160.72 209.263 L2160.72 213.291 Q2158.92 212.365 2156.97 211.902 Q2155.03 211.439 2152.95 211.439 Q2149.78 211.439 2148.18 212.411 Q2146.6 213.383 2146.6 215.328 Q2146.6 216.809 2147.74 217.665 Q2148.87 218.499 2152.3 219.263 L2153.76 219.587 Q2158.29 220.559 2160.19 222.341 Q2162.11 224.101 2162.11 227.272 Q2162.11 230.883 2159.24 232.989 Q2156.4 235.096 2151.4 235.096 Q2149.31 235.096 2147.04 234.679 Q2144.8 234.286 2142.3 233.476 L2142.3 229.077 Q2144.66 230.304 2146.95 230.929 Q2149.24 231.531 2151.49 231.531 Q2154.5 231.531 2156.12 230.513 Q2157.74 229.471 2157.74 227.596 Q2157.74 225.86 2156.56 224.934 Q2155.4 224.008 2151.44 223.152 L2149.96 222.804 Q2146 221.971 2144.24 220.258 Q2142.48 218.522 2142.48 215.513 Q2142.48 211.855 2145.08 209.865 Q2147.67 207.874 2152.44 207.874 Q2154.8 207.874 2156.88 208.221 Q2158.96 208.568 2160.72 209.263 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip080)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1915.6,277.625 2062.23,277.625 \n \"/>\n<path clip-path=\"url(#clip080)\" d=\"M 0 0 M2086.67 304.766 L2086.67 268.979 L2090.93 268.979 L2090.93 285.09 Q2090.93 288.446 2092.53 290.159 Q2094.13 291.872 2097.25 291.872 Q2100.68 291.872 2102.39 289.928 Q2104.13 287.983 2104.13 284.095 L2104.13 268.979 L2108.39 268.979 L2108.39 288.932 Q2108.39 290.321 2108.78 290.993 Q2109.2 291.641 2110.05 291.641 Q2110.26 291.641 2110.63 291.525 Q2111 291.386 2111.65 291.108 L2111.65 294.534 Q2110.7 295.067 2109.84 295.321 Q2109.01 295.576 2108.2 295.576 Q2106.6 295.576 2105.65 294.673 Q2104.71 293.77 2104.36 291.919 Q2103.2 293.747 2101.51 294.673 Q2099.84 295.576 2097.58 295.576 Q2095.22 295.576 2093.55 294.673 Q2091.9 293.77 2090.93 291.965 L2090.93 304.766 L2086.67 304.766 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2148.53 265.183 L2148.53 274.141 L2161.42 274.141 L2161.42 278.076 L2148.53 278.076 L2148.53 287.034 L2144.64 287.034 L2144.64 278.076 L2131.74 278.076 L2131.74 274.141 L2144.64 274.141 L2144.64 265.183 L2148.53 265.183 M2131.74 290.969 L2161.42 290.969 L2161.42 294.905 L2131.74 294.905 L2131.74 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2185.59 290.969 L2201.9 290.969 L2201.9 294.905 L2179.96 294.905 L2179.96 290.969 Q2182.62 288.215 2187.21 283.585 Q2191.81 278.933 2192.99 277.59 Q2195.24 275.067 2196.12 273.331 Q2197.02 271.571 2197.02 269.882 Q2197.02 267.127 2195.08 265.391 Q2193.15 263.655 2190.05 263.655 Q2187.85 263.655 2185.4 264.419 Q2182.97 265.183 2180.19 266.734 L2180.19 262.011 Q2183.02 260.877 2185.47 260.298 Q2187.92 259.72 2189.96 259.72 Q2195.33 259.72 2198.52 262.405 Q2201.72 265.09 2201.72 269.581 Q2201.72 271.71 2200.91 273.632 Q2200.12 275.53 2198.02 278.122 Q2197.44 278.794 2194.33 282.011 Q2191.23 285.206 2185.59 290.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip080)\" d=\"M 0 0 M2216.42 272.358 Q2212.9 272.358 2211 274.905 Q2209.01 277.567 2209.01 281.965 Q2209.01 286.618 2210.98 289.303 Q2212.97 291.965 2216.42 291.965 Q2219.82 291.965 2221.81 289.28 Q2223.8 286.595 2223.8 281.965 Q2223.8 277.729 2221.81 274.905 Q2219.98 272.358 2216.42 272.358 M2216.42 268.979 L2230.56 268.979 L2230.56 273.238 L2225.79 273.238 Q2228.32 276.849 2228.32 281.965 Q2228.32 288.331 2225.15 291.942 Q2221.97 295.576 2216.42 295.576 Q2210.84 295.576 2207.69 291.942 Q2204.52 288.331 2204.52 281.965 Q2204.52 275.553 2207.69 271.965 Q2210.31 268.979 2216.42 268.979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "@time simulate_loss(; estfunc=est_optimal)",
"execution_count": 15,
"outputs": [
{
"output_type": "stream",
"text": "(μ = 43.45063130106135, σ = 1.6880304292528594)\n 2.928236 seconds (195.31 k allocations: 10.304 MiB, 1.10% gc time, 3.60% compilation time)\n",
"name": "stdout"
},
{
"output_type": "execute_result",
"execution_count": 15,
"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=\"clip120\">\n <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip120)\" d=\"\nM0 1600 L2400 1600 L2400 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip121\">\n <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip120)\" d=\"\nM153.259 1495.09 L2352.76 1495.09 L2352.76 110.512 L153.259 110.512 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip122\">\n <rect x=\"153\" y=\"110\" width=\"2200\" height=\"1386\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 222.721,1495.09 222.721,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 351.507,1495.09 351.507,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 480.293,1495.09 480.293,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 609.078,1495.09 609.078,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 737.864,1495.09 737.864,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 866.65,1495.09 866.65,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 995.436,1495.09 995.436,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1124.22,1495.09 1124.22,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1253.01,1495.09 1253.01,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1381.79,1495.09 1381.79,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1510.58,1495.09 1510.58,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1639.36,1495.09 1639.36,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1768.15,1495.09 1768.15,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1896.94,1495.09 1896.94,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2025.72,1495.09 2025.72,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2154.51,1495.09 2154.51,110.512 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 2283.29,1495.09 2283.29,110.512 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 2352.76,1495.09 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 222.721,1495.09 222.721,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 351.507,1495.09 351.507,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 480.293,1495.09 480.293,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 609.078,1495.09 609.078,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 737.864,1495.09 737.864,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 866.65,1495.09 866.65,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 995.436,1495.09 995.436,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1124.22,1495.09 1124.22,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1253.01,1495.09 1253.01,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1381.79,1495.09 1381.79,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1510.58,1495.09 1510.58,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1639.36,1495.09 1639.36,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1768.15,1495.09 1768.15,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1896.94,1495.09 1896.94,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2025.72,1495.09 2025.72,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2154.51,1495.09 2154.51,1478.47 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 2283.29,1495.09 2283.29,1478.47 \n \"/>\n<path clip-path=\"url(#clip120)\" d=\"M 0 0 M215.716 1531.42 Q218.233 1531.95 219.639 1533.66 Q221.063 1535.36 221.063 1537.86 Q221.063 1541.69 218.424 1543.79 Q215.785 1545.9 210.924 1545.9 Q209.292 1545.9 207.556 1545.57 Q205.837 1545.25 203.997 1544.61 L203.997 1541.23 Q205.456 1542.08 207.192 1542.51 Q208.928 1542.94 210.82 1542.94 Q214.119 1542.94 215.837 1541.64 Q217.574 1540.34 217.574 1537.86 Q217.574 1535.57 215.959 1534.28 Q214.362 1532.98 211.497 1532.98 L208.476 1532.98 L208.476 1530.1 L211.636 1530.1 Q214.223 1530.1 215.594 1529.07 Q216.966 1528.03 216.966 1526.09 Q216.966 1524.09 215.542 1523.03 Q214.136 1521.95 211.497 1521.95 Q210.056 1521.95 208.407 1522.27 Q206.758 1522.58 204.778 1523.24 L204.778 1520.11 Q206.775 1519.56 208.511 1519.28 Q210.265 1519 211.81 1519 Q215.803 1519 218.129 1520.83 Q220.455 1522.63 220.455 1525.72 Q220.455 1527.87 219.223 1529.37 Q217.99 1530.84 215.716 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M232.799 1531.03 Q230.438 1531.03 229.049 1532.65 Q227.678 1534.26 227.678 1537.08 Q227.678 1539.87 229.049 1541.5 Q230.438 1543.12 232.799 1543.12 Q235.16 1543.12 236.532 1541.5 Q237.921 1539.87 237.921 1537.08 Q237.921 1534.26 236.532 1532.65 Q235.16 1531.03 232.799 1531.03 M239.761 1520.04 L239.761 1523.24 Q238.441 1522.61 237.087 1522.28 Q235.75 1521.95 234.431 1521.95 Q230.959 1521.95 229.119 1524.3 Q227.296 1526.64 227.035 1531.38 Q228.06 1529.87 229.605 1529.07 Q231.15 1528.26 233.007 1528.26 Q236.914 1528.26 239.171 1530.64 Q241.445 1533 241.445 1537.08 Q241.445 1541.07 239.084 1543.48 Q236.723 1545.9 232.799 1545.9 Q228.303 1545.9 225.924 1542.46 Q223.546 1539 223.546 1532.46 Q223.546 1526.31 226.462 1522.67 Q229.379 1519 234.292 1519 Q235.612 1519 236.948 1519.26 Q238.303 1519.52 239.761 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M344.901 1531.42 Q347.418 1531.95 348.825 1533.66 Q350.248 1535.36 350.248 1537.86 Q350.248 1541.69 347.609 1543.79 Q344.97 1545.9 340.109 1545.9 Q338.477 1545.9 336.741 1545.57 Q335.023 1545.25 333.182 1544.61 L333.182 1541.23 Q334.641 1542.08 336.377 1542.51 Q338.113 1542.94 340.005 1542.94 Q343.304 1542.94 345.023 1541.64 Q346.759 1540.34 346.759 1537.86 Q346.759 1535.57 345.144 1534.28 Q343.547 1532.98 340.682 1532.98 L337.661 1532.98 L337.661 1530.1 L340.821 1530.1 Q343.408 1530.1 344.779 1529.07 Q346.151 1528.03 346.151 1526.09 Q346.151 1524.09 344.727 1523.03 Q343.321 1521.95 340.682 1521.95 Q339.241 1521.95 337.592 1522.27 Q335.943 1522.58 333.964 1523.24 L333.964 1520.11 Q335.96 1519.56 337.696 1519.28 Q339.45 1519 340.995 1519 Q344.988 1519 347.314 1520.83 Q349.641 1522.63 349.641 1525.72 Q349.641 1527.87 348.408 1529.37 Q347.175 1530.84 344.901 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M353.165 1519.47 L369.831 1519.47 L369.831 1520.96 L360.422 1545.39 L356.759 1545.39 L365.613 1522.42 L353.165 1522.42 L353.165 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M473.383 1531.42 Q475.9 1531.95 477.307 1533.66 Q478.73 1535.36 478.73 1537.86 Q478.73 1541.69 476.091 1543.79 Q473.452 1545.9 468.591 1545.9 Q466.959 1545.9 465.223 1545.57 Q463.505 1545.25 461.664 1544.61 L461.664 1541.23 Q463.123 1542.08 464.859 1542.51 Q466.595 1542.94 468.487 1542.94 Q471.786 1542.94 473.505 1541.64 Q475.241 1540.34 475.241 1537.86 Q475.241 1535.57 473.626 1534.28 Q472.029 1532.98 469.164 1532.98 L466.143 1532.98 L466.143 1530.1 L469.303 1530.1 Q471.89 1530.1 473.261 1529.07 Q474.633 1528.03 474.633 1526.09 Q474.633 1524.09 473.209 1523.03 Q471.803 1521.95 469.164 1521.95 Q467.723 1521.95 466.074 1522.27 Q464.425 1522.58 462.446 1523.24 L462.446 1520.11 Q464.442 1519.56 466.178 1519.28 Q467.932 1519 469.477 1519 Q473.47 1519 475.796 1520.83 Q478.123 1522.63 478.123 1525.72 Q478.123 1527.87 476.89 1529.37 Q475.657 1530.84 473.383 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M490.032 1533.08 Q487.532 1533.08 486.091 1534.42 Q484.668 1535.76 484.668 1538.1 Q484.668 1540.44 486.091 1541.78 Q487.532 1543.12 490.032 1543.12 Q492.532 1543.12 493.973 1541.78 Q495.414 1540.43 495.414 1538.1 Q495.414 1535.76 493.973 1534.42 Q492.55 1533.08 490.032 1533.08 M486.525 1531.59 Q484.268 1531.03 483.001 1529.49 Q481.751 1527.94 481.751 1525.72 Q481.751 1522.61 483.956 1520.81 Q486.178 1519 490.032 1519 Q493.904 1519 496.109 1520.81 Q498.313 1522.61 498.313 1525.72 Q498.313 1527.94 497.046 1529.49 Q495.796 1531.03 493.556 1531.59 Q496.091 1532.18 497.497 1533.9 Q498.921 1535.62 498.921 1538.1 Q498.921 1541.87 496.612 1543.88 Q494.32 1545.9 490.032 1545.9 Q485.744 1545.9 483.435 1543.88 Q481.143 1541.87 481.143 1538.1 Q481.143 1535.62 482.567 1533.9 Q483.991 1532.18 486.525 1531.59 M485.241 1526.05 Q485.241 1528.07 486.491 1529.19 Q487.758 1530.32 490.032 1530.32 Q492.289 1530.32 493.556 1529.19 Q494.841 1528.07 494.841 1526.05 Q494.841 1524.04 493.556 1522.91 Q492.289 1521.78 490.032 1521.78 Q487.758 1521.78 486.491 1522.91 Q485.241 1524.04 485.241 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M602.204 1531.42 Q604.721 1531.95 606.127 1533.66 Q607.551 1535.36 607.551 1537.86 Q607.551 1541.69 604.912 1543.79 Q602.273 1545.9 597.412 1545.9 Q595.78 1545.9 594.044 1545.57 Q592.325 1545.25 590.485 1544.61 L590.485 1541.23 Q591.943 1542.08 593.679 1542.51 Q595.415 1542.94 597.308 1542.94 Q600.606 1542.94 602.325 1541.64 Q604.061 1540.34 604.061 1537.86 Q604.061 1535.57 602.447 1534.28 Q600.849 1532.98 597.985 1532.98 L594.964 1532.98 L594.964 1530.1 L598.124 1530.1 Q600.71 1530.1 602.082 1529.07 Q603.454 1528.03 603.454 1526.09 Q603.454 1524.09 602.03 1523.03 Q600.624 1521.95 597.985 1521.95 Q596.544 1521.95 594.895 1522.27 Q593.245 1522.58 591.266 1523.24 L591.266 1520.11 Q593.263 1519.56 594.999 1519.28 Q596.752 1519 598.297 1519 Q602.29 1519 604.617 1520.83 Q606.943 1522.63 606.943 1525.72 Q606.943 1527.87 605.71 1529.37 Q604.478 1530.84 602.204 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M611.457 1544.85 L611.457 1541.66 Q612.776 1542.28 614.131 1542.61 Q615.485 1542.94 616.787 1542.94 Q620.259 1542.94 622.082 1540.62 Q623.922 1538.27 624.183 1533.52 Q623.176 1535.01 621.63 1535.81 Q620.085 1536.61 618.21 1536.61 Q614.322 1536.61 612.047 1534.26 Q609.79 1531.9 609.79 1527.82 Q609.79 1523.83 612.151 1521.42 Q614.512 1519 618.436 1519 Q622.933 1519 625.294 1522.46 Q627.672 1525.9 627.672 1532.46 Q627.672 1538.59 624.755 1542.25 Q621.856 1545.9 616.943 1545.9 Q615.624 1545.9 614.269 1545.63 Q612.915 1545.37 611.457 1544.85 M618.436 1533.86 Q620.797 1533.86 622.169 1532.25 Q623.558 1530.64 623.558 1527.82 Q623.558 1525.03 622.169 1523.41 Q620.797 1521.78 618.436 1521.78 Q616.075 1521.78 614.686 1523.41 Q613.315 1525.03 613.315 1527.82 Q613.315 1530.64 614.686 1532.25 Q616.075 1533.86 618.436 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M729.991 1522.53 L721.137 1536.36 L729.991 1536.36 L729.991 1522.53 M729.071 1519.47 L733.481 1519.47 L733.481 1536.36 L737.179 1536.36 L737.179 1539.28 L733.481 1539.28 L733.481 1545.39 L729.991 1545.39 L729.991 1539.28 L718.29 1539.28 L718.29 1535.9 L729.071 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M748.481 1521.78 Q745.772 1521.78 744.401 1524.45 Q743.047 1527.11 743.047 1532.46 Q743.047 1537.79 744.401 1540.46 Q745.772 1543.12 748.481 1543.12 Q751.206 1543.12 752.56 1540.46 Q753.932 1537.79 753.932 1532.46 Q753.932 1527.11 752.56 1524.45 Q751.206 1521.78 748.481 1521.78 M748.481 1519 Q752.838 1519 755.13 1522.46 Q757.439 1525.9 757.439 1532.46 Q757.439 1539 755.13 1542.46 Q752.838 1545.9 748.481 1545.9 Q744.123 1545.9 741.814 1542.46 Q739.522 1539 739.522 1532.46 Q739.522 1525.9 741.814 1522.46 Q744.123 1519 748.481 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M859.237 1522.53 L850.383 1536.36 L859.237 1536.36 L859.237 1522.53 M858.317 1519.47 L862.727 1519.47 L862.727 1536.36 L866.424 1536.36 L866.424 1539.28 L862.727 1539.28 L862.727 1545.39 L859.237 1545.39 L859.237 1539.28 L847.536 1539.28 L847.536 1535.9 L858.317 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M870.834 1542.44 L876.563 1542.44 L876.563 1522.67 L870.331 1523.92 L870.331 1520.72 L876.529 1519.47 L880.035 1519.47 L880.035 1542.44 L885.765 1542.44 L885.765 1545.39 L870.834 1545.39 L870.834 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M988.162 1522.53 L979.308 1536.36 L988.162 1536.36 L988.162 1522.53 M987.242 1519.47 L991.651 1519.47 L991.651 1536.36 L995.349 1536.36 L995.349 1539.28 L991.651 1539.28 L991.651 1545.39 L988.162 1545.39 L988.162 1539.28 L976.46 1539.28 L976.46 1535.9 L987.242 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1002.17 1542.44 L1014.41 1542.44 L1014.41 1545.39 L997.953 1545.39 L997.953 1542.44 Q999.95 1540.37 1003.39 1536.9 Q1006.84 1533.41 1007.73 1532.41 Q1009.41 1530.51 1010.07 1529.21 Q1010.75 1527.89 1010.75 1526.62 Q1010.75 1524.56 1009.29 1523.26 Q1007.85 1521.95 1005.52 1521.95 Q1003.87 1521.95 1002.03 1522.53 Q1000.21 1523.1 998.127 1524.26 L998.127 1520.72 Q1000.24 1519.87 1002.09 1519.44 Q1003.93 1519 1005.45 1519 Q1009.48 1519 1011.88 1521.02 Q1014.27 1523.03 1014.27 1526.4 Q1014.27 1528 1013.66 1529.44 Q1013.07 1530.86 1011.49 1532.81 Q1011.06 1533.31 1008.73 1535.72 Q1006.41 1538.12 1002.17 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1116.59 1522.53 L1107.74 1536.36 L1116.59 1536.36 L1116.59 1522.53 M1115.67 1519.47 L1120.08 1519.47 L1120.08 1536.36 L1123.78 1536.36 L1123.78 1539.28 L1120.08 1539.28 L1120.08 1545.39 L1116.59 1545.39 L1116.59 1539.28 L1104.89 1539.28 L1104.89 1535.9 L1115.67 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1138.21 1531.42 Q1140.72 1531.95 1142.13 1533.66 Q1143.55 1535.36 1143.55 1537.86 Q1143.55 1541.69 1140.91 1543.79 Q1138.28 1545.9 1133.41 1545.9 Q1131.78 1545.9 1130.05 1545.57 Q1128.33 1545.25 1126.49 1544.61 L1126.49 1541.23 Q1127.95 1542.08 1129.68 1542.51 Q1131.42 1542.94 1133.31 1542.94 Q1136.61 1542.94 1138.33 1541.64 Q1140.06 1540.34 1140.06 1537.86 Q1140.06 1535.57 1138.45 1534.28 Q1136.85 1532.98 1133.99 1532.98 L1130.97 1532.98 L1130.97 1530.1 L1134.13 1530.1 Q1136.71 1530.1 1138.08 1529.07 Q1139.46 1528.03 1139.46 1526.09 Q1139.46 1524.09 1138.03 1523.03 Q1136.63 1521.95 1133.99 1521.95 Q1132.55 1521.95 1130.9 1522.27 Q1129.25 1522.58 1127.27 1523.24 L1127.27 1520.11 Q1129.27 1519.56 1131 1519.28 Q1132.75 1519 1134.3 1519 Q1138.29 1519 1140.62 1520.83 Q1142.95 1522.63 1142.95 1525.72 Q1142.95 1527.87 1141.71 1529.37 Q1140.48 1530.84 1138.21 1531.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1244.95 1522.53 L1236.1 1536.36 L1244.95 1536.36 L1244.95 1522.53 M1244.03 1519.47 L1248.44 1519.47 L1248.44 1536.36 L1252.14 1536.36 L1252.14 1539.28 L1248.44 1539.28 L1248.44 1545.39 L1244.95 1545.39 L1244.95 1539.28 L1233.25 1539.28 L1233.25 1535.9 L1244.03 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1265.58 1522.53 L1256.72 1536.36 L1265.58 1536.36 L1265.58 1522.53 M1264.66 1519.47 L1269.07 1519.47 L1269.07 1536.36 L1272.76 1536.36 L1272.76 1539.28 L1269.07 1539.28 L1269.07 1545.39 L1265.58 1545.39 L1265.58 1539.28 L1253.88 1539.28 L1253.88 1535.9 L1264.66 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1374.29 1522.53 L1365.44 1536.36 L1374.29 1536.36 L1374.29 1522.53 M1373.37 1519.47 L1377.78 1519.47 L1377.78 1536.36 L1381.48 1536.36 L1381.48 1539.28 L1377.78 1539.28 L1377.78 1545.39 L1374.29 1545.39 L1374.29 1539.28 L1362.59 1539.28 L1362.59 1535.9 L1373.37 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1385.32 1519.47 L1399.08 1519.47 L1399.08 1522.42 L1388.53 1522.42 L1388.53 1528.78 Q1389.29 1528.52 1390.06 1528.4 Q1390.82 1528.26 1391.58 1528.26 Q1395.93 1528.26 1398.46 1530.64 Q1400.99 1533.01 1400.99 1537.08 Q1400.99 1541.26 1398.39 1543.59 Q1395.79 1545.9 1391.05 1545.9 Q1389.41 1545.9 1387.71 1545.62 Q1386.03 1545.34 1384.22 1544.78 L1384.22 1541.26 Q1385.79 1542.11 1387.45 1542.53 Q1389.12 1542.94 1390.98 1542.94 Q1393.98 1542.94 1395.73 1541.36 Q1397.49 1539.78 1397.49 1537.08 Q1397.49 1534.37 1395.73 1532.79 Q1393.98 1531.21 1390.98 1531.21 Q1389.57 1531.21 1388.16 1531.52 Q1386.78 1531.83 1385.32 1532.49 L1385.32 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1502.65 1522.53 L1493.79 1536.36 L1502.65 1536.36 L1502.65 1522.53 M1501.73 1519.47 L1506.13 1519.47 L1506.13 1536.36 L1509.83 1536.36 L1509.83 1539.28 L1506.13 1539.28 L1506.13 1545.39 L1502.65 1545.39 L1502.65 1539.28 L1490.94 1539.28 L1490.94 1535.9 L1501.73 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1521.57 1531.03 Q1519.21 1531.03 1517.82 1532.65 Q1516.45 1534.26 1516.45 1537.08 Q1516.45 1539.87 1517.82 1541.5 Q1519.21 1543.12 1521.57 1543.12 Q1523.93 1543.12 1525.3 1541.5 Q1526.69 1539.87 1526.69 1537.08 Q1526.69 1534.26 1525.3 1532.65 Q1523.93 1531.03 1521.57 1531.03 M1528.53 1520.04 L1528.53 1523.24 Q1527.21 1522.61 1525.86 1522.28 Q1524.52 1521.95 1523.2 1521.95 Q1519.73 1521.95 1517.89 1524.3 Q1516.07 1526.64 1515.8 1531.38 Q1516.83 1529.87 1518.37 1529.07 Q1519.92 1528.26 1521.78 1528.26 Q1525.68 1528.26 1527.94 1530.64 Q1530.21 1533 1530.21 1537.08 Q1530.21 1541.07 1527.85 1543.48 Q1525.49 1545.9 1521.57 1545.9 Q1517.07 1545.9 1514.69 1542.46 Q1512.32 1539 1512.32 1532.46 Q1512.32 1526.31 1515.23 1522.67 Q1518.15 1519 1523.06 1519 Q1524.38 1519 1525.72 1519.26 Q1527.07 1519.52 1528.53 1520.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1631.83 1522.53 L1622.98 1536.36 L1631.83 1536.36 L1631.83 1522.53 M1630.91 1519.47 L1635.32 1519.47 L1635.32 1536.36 L1639.02 1536.36 L1639.02 1539.28 L1635.32 1539.28 L1635.32 1545.39 L1631.83 1545.39 L1631.83 1539.28 L1620.13 1539.28 L1620.13 1535.9 L1630.91 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1641.93 1519.47 L1658.6 1519.47 L1658.6 1520.96 L1649.19 1545.39 L1645.53 1545.39 L1654.38 1522.42 L1641.93 1522.42 L1641.93 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1760.31 1522.53 L1751.46 1536.36 L1760.31 1536.36 L1760.31 1522.53 M1759.39 1519.47 L1763.8 1519.47 L1763.8 1536.36 L1767.5 1536.36 L1767.5 1539.28 L1763.8 1539.28 L1763.8 1545.39 L1760.31 1545.39 L1760.31 1539.28 L1748.61 1539.28 L1748.61 1535.9 L1759.39 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1778.8 1533.08 Q1776.3 1533.08 1774.86 1534.42 Q1773.44 1535.76 1773.44 1538.1 Q1773.44 1540.44 1774.86 1541.78 Q1776.3 1543.12 1778.8 1543.12 Q1781.3 1543.12 1782.74 1541.78 Q1784.18 1540.43 1784.18 1538.1 Q1784.18 1535.76 1782.74 1534.42 Q1781.32 1533.08 1778.8 1533.08 M1775.29 1531.59 Q1773.04 1531.03 1771.77 1529.49 Q1770.52 1527.94 1770.52 1525.72 Q1770.52 1522.61 1772.73 1520.81 Q1774.95 1519 1778.8 1519 Q1782.67 1519 1784.88 1520.81 Q1787.08 1522.61 1787.08 1525.72 Q1787.08 1527.94 1785.82 1529.49 Q1784.57 1531.03 1782.33 1531.59 Q1784.86 1532.18 1786.27 1533.9 Q1787.69 1535.62 1787.69 1538.1 Q1787.69 1541.87 1785.38 1543.88 Q1783.09 1545.9 1778.8 1545.9 Q1774.51 1545.9 1772.2 1543.88 Q1769.91 1541.87 1769.91 1538.1 Q1769.91 1535.62 1771.34 1533.9 Q1772.76 1532.18 1775.29 1531.59 M1774.01 1526.05 Q1774.01 1528.07 1775.26 1529.19 Q1776.53 1530.32 1778.8 1530.32 Q1781.06 1530.32 1782.33 1529.19 Q1783.61 1528.07 1783.61 1526.05 Q1783.61 1524.04 1782.33 1522.91 Q1781.06 1521.78 1778.8 1521.78 Q1776.53 1521.78 1775.26 1522.91 Q1774.01 1524.04 1774.01 1526.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1889.13 1522.53 L1880.28 1536.36 L1889.13 1536.36 L1889.13 1522.53 M1888.21 1519.47 L1892.62 1519.47 L1892.62 1536.36 L1896.32 1536.36 L1896.32 1539.28 L1892.62 1539.28 L1892.62 1545.39 L1889.13 1545.39 L1889.13 1539.28 L1877.43 1539.28 L1877.43 1535.9 L1888.21 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1900.23 1544.85 L1900.23 1541.66 Q1901.55 1542.28 1902.9 1542.61 Q1904.25 1542.94 1905.56 1542.94 Q1909.03 1542.94 1910.85 1540.62 Q1912.69 1538.27 1912.95 1533.52 Q1911.95 1535.01 1910.4 1535.81 Q1908.85 1536.61 1906.98 1536.61 Q1903.09 1536.61 1900.82 1534.26 Q1898.56 1531.9 1898.56 1527.82 Q1898.56 1523.83 1900.92 1521.42 Q1903.28 1519 1907.21 1519 Q1911.7 1519 1914.06 1522.46 Q1916.44 1525.9 1916.44 1532.46 Q1916.44 1538.59 1913.53 1542.25 Q1910.63 1545.9 1905.71 1545.9 Q1904.39 1545.9 1903.04 1545.63 Q1901.68 1545.37 1900.23 1544.85 M1907.21 1533.86 Q1909.57 1533.86 1910.94 1532.25 Q1912.33 1530.64 1912.33 1527.82 Q1912.33 1525.03 1910.94 1523.41 Q1909.57 1521.78 1907.21 1521.78 Q1904.84 1521.78 1903.46 1523.41 Q1902.08 1525.03 1902.08 1527.82 Q1902.08 1530.64 1903.46 1532.25 Q1904.84 1533.86 1907.21 1533.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2008.3 1519.47 L2022.07 1519.47 L2022.07 1522.42 L2011.51 1522.42 L2011.51 1528.78 Q2012.28 1528.52 2013.04 1528.4 Q2013.8 1528.26 2014.57 1528.26 Q2018.91 1528.26 2021.44 1530.64 Q2023.98 1533.01 2023.98 1537.08 Q2023.98 1541.26 2021.37 1543.59 Q2018.77 1545.9 2014.03 1545.9 Q2012.4 1545.9 2010.7 1545.62 Q2009.01 1545.34 2007.21 1544.78 L2007.21 1541.26 Q2008.77 1542.11 2010.44 1542.53 Q2012.1 1542.94 2013.96 1542.94 Q2016.96 1542.94 2018.72 1541.36 Q2020.47 1539.78 2020.47 1537.08 Q2020.47 1534.37 2018.72 1532.79 Q2016.96 1531.21 2013.96 1531.21 Q2012.55 1531.21 2011.15 1531.52 Q2009.76 1531.83 2008.3 1532.49 L2008.3 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2035.28 1521.78 Q2032.57 1521.78 2031.2 1524.45 Q2029.85 1527.11 2029.85 1532.46 Q2029.85 1537.79 2031.2 1540.46 Q2032.57 1543.12 2035.28 1543.12 Q2038.01 1543.12 2039.36 1540.46 Q2040.73 1537.79 2040.73 1532.46 Q2040.73 1527.11 2039.36 1524.45 Q2038.01 1521.78 2035.28 1521.78 M2035.28 1519 Q2039.64 1519 2041.93 1522.46 Q2044.24 1525.9 2044.24 1532.46 Q2044.24 1539 2041.93 1542.46 Q2039.64 1545.9 2035.28 1545.9 Q2030.92 1545.9 2028.61 1542.46 Q2026.32 1539 2026.32 1532.46 Q2026.32 1525.9 2028.61 1522.46 Q2030.92 1519 2035.28 1519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2137.55 1519.47 L2151.31 1519.47 L2151.31 1522.42 L2140.76 1522.42 L2140.76 1528.78 Q2141.52 1528.52 2142.29 1528.4 Q2143.05 1528.26 2143.81 1528.26 Q2148.15 1528.26 2150.69 1530.64 Q2153.22 1533.01 2153.22 1537.08 Q2153.22 1541.26 2150.62 1543.59 Q2148.02 1545.9 2143.28 1545.9 Q2141.64 1545.9 2139.94 1545.62 Q2138.26 1545.34 2136.45 1544.78 L2136.45 1541.26 Q2138.02 1542.11 2139.68 1542.53 Q2141.35 1542.94 2143.21 1542.94 Q2146.21 1542.94 2147.96 1541.36 Q2149.72 1539.78 2149.72 1537.08 Q2149.72 1534.37 2147.96 1532.79 Q2146.21 1531.21 2143.21 1531.21 Q2141.8 1531.21 2140.39 1531.52 Q2139 1531.83 2137.55 1532.49 L2137.55 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2157.63 1542.44 L2163.36 1542.44 L2163.36 1522.67 L2157.13 1523.92 L2157.13 1520.72 L2163.33 1519.47 L2166.83 1519.47 L2166.83 1542.44 L2172.56 1542.44 L2172.56 1545.39 L2157.63 1545.39 L2157.63 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2266.47 1519.47 L2280.24 1519.47 L2280.24 1522.42 L2269.68 1522.42 L2269.68 1528.78 Q2270.45 1528.52 2271.21 1528.4 Q2271.97 1528.26 2272.74 1528.26 Q2277.08 1528.26 2279.61 1530.64 Q2282.15 1533.01 2282.15 1537.08 Q2282.15 1541.26 2279.54 1543.59 Q2276.94 1545.9 2272.2 1545.9 Q2270.57 1545.9 2268.87 1545.62 Q2267.18 1545.34 2265.38 1544.78 L2265.38 1541.26 Q2266.94 1542.11 2268.61 1542.53 Q2270.27 1542.94 2272.13 1542.94 Q2275.13 1542.94 2276.89 1541.36 Q2278.64 1539.78 2278.64 1537.08 Q2278.64 1534.37 2276.89 1532.79 Q2275.13 1531.21 2272.13 1531.21 Q2270.72 1531.21 2269.32 1531.52 Q2267.93 1531.83 2266.47 1532.49 L2266.47 1519.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M2288.97 1542.44 L2301.21 1542.44 L2301.21 1545.39 L2284.75 1545.39 L2284.75 1542.44 Q2286.75 1540.37 2290.19 1536.9 Q2293.64 1533.41 2294.53 1532.41 Q2296.21 1530.51 2296.87 1529.21 Q2297.55 1527.89 2297.55 1526.62 Q2297.55 1524.56 2296.09 1523.26 Q2294.65 1521.95 2292.32 1521.95 Q2290.67 1521.95 2288.83 1522.53 Q2287.01 1523.1 2284.93 1524.26 L2284.93 1520.72 Q2287.04 1519.87 2288.88 1519.44 Q2290.72 1519 2292.25 1519 Q2296.28 1519 2298.68 1521.02 Q2301.07 1523.03 2301.07 1526.4 Q2301.07 1528 2300.46 1529.44 Q2299.87 1530.86 2298.29 1532.81 Q2297.86 1533.31 2295.53 1535.72 Q2293.21 1538.12 2288.97 1542.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1455.9 2352.76,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1402.28 2352.76,1402.28 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1348.66 2352.76,1348.66 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1295.04 2352.76,1295.04 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1241.42 2352.76,1241.42 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1187.8 2352.76,1187.8 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1134.18 2352.76,1134.18 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1080.56 2352.76,1080.56 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,1026.94 2352.76,1026.94 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,973.314 2352.76,973.314 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,919.693 2352.76,919.693 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,866.073 2352.76,866.073 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,812.452 2352.76,812.452 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,758.831 2352.76,758.831 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,705.21 2352.76,705.21 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,651.589 2352.76,651.589 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,597.968 2352.76,597.968 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,544.348 2352.76,544.348 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,490.727 2352.76,490.727 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,437.106 2352.76,437.106 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,383.485 2352.76,383.485 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,329.864 2352.76,329.864 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,276.243 2352.76,276.243 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,222.623 2352.76,222.623 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,169.002 2352.76,169.002 \n \"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 153.259,115.381 2352.76,115.381 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1495.09 153.259,110.512 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1455.9 179.653,1455.9 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1402.28 179.653,1402.28 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1348.66 179.653,1348.66 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1295.04 179.653,1295.04 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1241.42 179.653,1241.42 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1187.8 179.653,1187.8 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1134.18 179.653,1134.18 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1080.56 179.653,1080.56 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,1026.94 179.653,1026.94 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,973.314 179.653,973.314 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,919.693 179.653,919.693 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,866.073 179.653,866.073 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,812.452 179.653,812.452 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,758.831 179.653,758.831 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,705.21 179.653,705.21 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,651.589 179.653,651.589 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,597.968 179.653,597.968 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,544.348 179.653,544.348 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,490.727 179.653,490.727 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,437.106 179.653,437.106 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,383.485 179.653,383.485 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,329.864 179.653,329.864 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,276.243 179.653,276.243 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,222.623 179.653,222.623 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,169.002 179.653,169.002 \n \"/>\n<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 153.259,115.381 179.653,115.381 \n \"/>\n<path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.315 1445.25 Q57.6067 1445.25 56.2352 1447.92 Q54.881 1450.58 54.881 1455.93 Q54.881 1461.26 56.2352 1463.93 Q57.6067 1466.59 60.315 1466.59 Q63.0407 1466.59 64.3948 1463.93 Q65.7664 1461.26 65.7664 1455.93 Q65.7664 1450.58 64.3948 1447.92 Q63.0407 1445.25 60.315 1445.25 M60.315 1442.47 Q64.6726 1442.47 66.9643 1445.93 Q69.2733 1449.37 69.2733 1455.93 Q69.2733 1462.47 66.9643 1465.93 Q64.6726 1469.37 60.315 1469.37 Q55.9574 1469.37 53.6484 1465.93 Q51.3567 1462.47 51.3567 1455.93 Q51.3567 1449.37 53.6484 1445.93 Q55.9574 1442.47 60.315 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.0753 1464.45 L76.7385 1464.45 L76.7385 1468.86 L73.0753 1468.86 L73.0753 1464.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.0405 1445.25 Q85.3322 1445.25 83.9607 1447.92 Q82.6065 1450.58 82.6065 1455.93 Q82.6065 1461.26 83.9607 1463.93 Q85.3322 1466.59 88.0405 1466.59 Q90.7662 1466.59 92.1204 1463.93 Q93.4919 1461.26 93.4919 1455.93 Q93.4919 1450.58 92.1204 1447.92 Q90.7662 1445.25 88.0405 1445.25 M88.0405 1442.47 Q92.3982 1442.47 94.6898 1445.93 Q96.9988 1449.37 96.9988 1455.93 Q96.9988 1462.47 94.6898 1465.93 Q92.3982 1469.37 88.0405 1469.37 Q83.6829 1469.37 81.3739 1465.93 Q79.0823 1462.47 79.0823 1455.93 Q79.0823 1449.37 81.3739 1445.93 Q83.6829 1442.47 88.0405 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.301 1445.25 Q105.593 1445.25 104.221 1447.92 Q102.867 1450.58 102.867 1455.93 Q102.867 1461.26 104.221 1463.93 Q105.593 1466.59 108.301 1466.59 Q111.027 1466.59 112.381 1463.93 Q113.752 1461.26 113.752 1455.93 Q113.752 1450.58 112.381 1447.92 Q111.027 1445.25 108.301 1445.25 M108.301 1442.47 Q112.658 1442.47 114.95 1445.93 Q117.259 1449.37 117.259 1455.93 Q117.259 1462.47 114.95 1465.93 Q112.658 1469.37 108.301 1469.37 Q103.943 1469.37 101.634 1465.93 Q99.3426 1462.47 99.3426 1455.93 Q99.3426 1449.37 101.634 1445.93 Q103.943 1442.47 108.301 1442.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.2351 1391.63 Q58.5268 1391.63 57.1553 1394.3 Q55.8011 1396.96 55.8011 1402.31 Q55.8011 1407.64 57.1553 1410.31 Q58.5268 1412.97 61.2351 1412.97 Q63.9608 1412.97 65.315 1410.31 Q66.6865 1407.64 66.6865 1402.31 Q66.6865 1396.96 65.315 1394.3 Q63.9608 1391.63 61.2351 1391.63 M61.2351 1388.85 Q65.5927 1388.85 67.8844 1392.31 Q70.1934 1395.74 70.1934 1402.31 Q70.1934 1408.85 67.8844 1412.31 Q65.5927 1415.74 61.2351 1415.74 Q56.8775 1415.74 54.5685 1412.31 Q52.2768 1408.85 52.2768 1402.31 Q52.2768 1395.74 54.5685 1392.31 Q56.8775 1388.85 61.2351 1388.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.9955 1410.83 L77.6586 1410.83 L77.6586 1415.24 L73.9955 1415.24 L73.9955 1410.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.9607 1391.63 Q86.2524 1391.63 84.8808 1394.3 Q83.5267 1396.96 83.5267 1402.31 Q83.5267 1407.64 84.8808 1410.31 Q86.2524 1412.97 88.9607 1412.97 Q91.6864 1412.97 93.0405 1410.31 Q94.412 1407.64 94.412 1402.31 Q94.412 1396.96 93.0405 1394.3 Q91.6864 1391.63 88.9607 1391.63 M88.9607 1388.85 Q93.3183 1388.85 95.6099 1392.31 Q97.919 1395.74 97.919 1402.31 Q97.919 1408.85 95.6099 1412.31 Q93.3183 1415.74 88.9607 1415.74 Q84.6031 1415.74 82.294 1412.31 Q80.0024 1408.85 80.0024 1402.31 Q80.0024 1395.74 82.294 1392.31 Q84.6031 1388.85 88.9607 1388.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M102.329 1412.29 L108.058 1412.29 L108.058 1392.52 L101.825 1393.77 L101.825 1390.57 L108.023 1389.32 L111.53 1389.32 L111.53 1412.29 L117.259 1412.29 L117.259 1415.24 L102.329 1415.24 L102.329 1412.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.5129 1338.01 Q58.8046 1338.01 57.4331 1340.68 Q56.0789 1343.34 56.0789 1348.69 Q56.0789 1354.02 57.4331 1356.69 Q58.8046 1359.35 61.5129 1359.35 Q64.2386 1359.35 65.5927 1356.69 Q66.9643 1354.02 66.9643 1348.69 Q66.9643 1343.34 65.5927 1340.68 Q64.2386 1338.01 61.5129 1338.01 M61.5129 1335.23 Q65.8705 1335.23 68.1622 1338.69 Q70.4712 1342.12 70.4712 1348.69 Q70.4712 1355.23 68.1622 1358.69 Q65.8705 1362.12 61.5129 1362.12 Q57.1553 1362.12 54.8463 1358.69 Q52.5546 1355.23 52.5546 1348.69 Q52.5546 1342.12 54.8463 1338.69 Q57.1553 1335.23 61.5129 1335.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.2733 1357.21 L77.9364 1357.21 L77.9364 1361.62 L74.2733 1361.62 L74.2733 1357.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M89.2384 1338.01 Q86.5301 1338.01 85.1586 1340.68 Q83.8045 1343.34 83.8045 1348.69 Q83.8045 1354.02 85.1586 1356.69 Q86.5301 1359.35 89.2384 1359.35 Q91.9641 1359.35 93.3183 1356.69 Q94.6898 1354.02 94.6898 1348.69 Q94.6898 1343.34 93.3183 1340.68 Q91.9641 1338.01 89.2384 1338.01 M89.2384 1335.23 Q93.5961 1335.23 95.8877 1338.69 Q98.1967 1342.12 98.1967 1348.69 Q98.1967 1355.23 95.8877 1358.69 Q93.5961 1362.12 89.2384 1362.12 Q84.8808 1362.12 82.5718 1358.69 Q80.2802 1355.23 80.2802 1348.69 Q80.2802 1342.12 82.5718 1338.69 Q84.8808 1335.23 89.2384 1335.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M105.02 1358.67 L117.259 1358.67 L117.259 1361.62 L100.801 1361.62 L100.801 1358.67 Q102.797 1356.6 106.235 1353.13 Q109.69 1349.64 110.575 1348.63 Q112.259 1346.74 112.919 1345.44 Q113.596 1344.12 113.596 1342.85 Q113.596 1340.79 112.138 1339.48 Q110.697 1338.18 108.37 1338.18 Q106.721 1338.18 104.881 1338.76 Q103.058 1339.33 100.974 1340.49 L100.974 1336.95 Q103.093 1336.1 104.933 1335.67 Q106.773 1335.23 108.301 1335.23 Q112.329 1335.23 114.724 1337.25 Q117.12 1339.26 117.12 1342.63 Q117.12 1344.22 116.513 1345.67 Q115.922 1347.09 114.342 1349.03 Q113.908 1349.54 111.582 1351.95 Q109.256 1354.35 105.02 1358.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.8011 1284.39 Q58.0928 1284.39 56.7213 1287.06 Q55.3671 1289.72 55.3671 1295.07 Q55.3671 1300.4 56.7213 1303.07 Q58.0928 1305.72 60.8011 1305.72 Q63.5268 1305.72 64.8809 1303.07 Q66.2525 1300.4 66.2525 1295.07 Q66.2525 1289.72 64.8809 1287.06 Q63.5268 1284.39 60.8011 1284.39 M60.8011 1281.61 Q65.1587 1281.61 67.4504 1285.07 Q69.7594 1288.5 69.7594 1295.07 Q69.7594 1301.61 67.4504 1305.07 Q65.1587 1308.5 60.8011 1308.5 Q56.4435 1308.5 54.1345 1305.07 Q51.8428 1301.61 51.8428 1295.07 Q51.8428 1288.5 54.1345 1285.07 Q56.4435 1281.61 60.8011 1281.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.5614 1303.59 L77.2246 1303.59 L77.2246 1308 L73.5614 1308 L73.5614 1303.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.5266 1284.39 Q85.8183 1284.39 84.4468 1287.06 Q83.0926 1289.72 83.0926 1295.07 Q83.0926 1300.4 84.4468 1303.07 Q85.8183 1305.72 88.5266 1305.72 Q91.2523 1305.72 92.6065 1303.07 Q93.978 1300.4 93.978 1295.07 Q93.978 1289.72 92.6065 1287.06 Q91.2523 1284.39 88.5266 1284.39 M88.5266 1281.61 Q92.8843 1281.61 95.1759 1285.07 Q97.4849 1288.5 97.4849 1295.07 Q97.4849 1301.61 95.1759 1305.07 Q92.8843 1308.5 88.5266 1308.5 Q84.169 1308.5 81.86 1305.07 Q79.5684 1301.61 79.5684 1295.07 Q79.5684 1288.5 81.86 1285.07 Q84.169 1281.61 88.5266 1281.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M111.912 1294.02 Q114.429 1294.56 115.836 1296.26 Q117.259 1297.96 117.259 1300.46 Q117.259 1304.3 114.62 1306.4 Q111.981 1308.5 107.12 1308.5 Q105.488 1308.5 103.752 1308.17 Q102.034 1307.86 100.193 1307.22 L100.193 1303.83 Q101.652 1304.68 103.388 1305.12 Q105.124 1305.55 107.016 1305.55 Q110.315 1305.55 112.033 1304.25 Q113.77 1302.95 113.77 1300.46 Q113.77 1298.17 112.155 1296.89 Q110.558 1295.59 107.693 1295.59 L104.672 1295.59 L104.672 1292.7 L107.832 1292.7 Q110.419 1292.7 111.79 1291.68 Q113.162 1290.64 113.162 1288.69 Q113.162 1286.7 111.738 1285.64 Q110.332 1284.56 107.693 1284.56 Q106.252 1284.56 104.603 1284.87 Q102.954 1285.19 100.974 1285.85 L100.974 1282.72 Q102.971 1282.17 104.707 1281.89 Q106.461 1281.61 108.006 1281.61 Q111.999 1281.61 114.325 1283.43 Q116.651 1285.24 116.651 1288.33 Q116.651 1290.48 115.419 1291.98 Q114.186 1293.45 111.912 1294.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M59.9504 1230.77 Q57.2421 1230.77 55.8706 1233.44 Q54.5164 1236.1 54.5164 1241.44 Q54.5164 1246.77 55.8706 1249.45 Q57.2421 1252.1 59.9504 1252.1 Q62.6761 1252.1 64.0303 1249.45 Q65.4018 1246.77 65.4018 1241.44 Q65.4018 1236.1 64.0303 1233.44 Q62.6761 1230.77 59.9504 1230.77 M59.9504 1227.99 Q64.308 1227.99 66.5997 1231.44 Q68.9087 1234.88 68.9087 1241.44 Q68.9087 1247.99 66.5997 1251.44 Q64.308 1254.88 59.9504 1254.88 Q55.5928 1254.88 53.2838 1251.44 Q50.9921 1247.99 50.9921 1241.44 Q50.9921 1234.88 53.2838 1231.44 Q55.5928 1227.99 59.9504 1227.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M72.7108 1249.97 L76.3739 1249.97 L76.3739 1254.38 L72.7108 1254.38 L72.7108 1249.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M87.676 1230.77 Q84.9676 1230.77 83.5961 1233.44 Q82.242 1236.1 82.242 1241.44 Q82.242 1246.77 83.5961 1249.45 Q84.9676 1252.1 87.676 1252.1 Q90.4016 1252.1 91.7558 1249.45 Q93.1273 1246.77 93.1273 1241.44 Q93.1273 1236.1 91.7558 1233.44 Q90.4016 1230.77 87.676 1230.77 M87.676 1227.99 Q92.0336 1227.99 94.3252 1231.44 Q96.6342 1234.88 96.6342 1241.44 Q96.6342 1247.99 94.3252 1251.44 Q92.0336 1254.88 87.676 1254.88 Q83.3183 1254.88 81.0093 1251.44 Q78.7177 1247.99 78.7177 1241.44 Q78.7177 1234.88 81.0093 1231.44 Q83.3183 1227.99 87.676 1227.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M110.072 1231.51 L101.218 1245.35 L110.072 1245.35 L110.072 1231.51 M109.152 1228.46 L113.561 1228.46 L113.561 1245.35 L117.259 1245.35 L117.259 1248.27 L113.561 1248.27 L113.561 1254.38 L110.072 1254.38 L110.072 1248.27 L98.3703 1248.27 L98.3703 1244.88 L109.152 1228.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.0615 1177.15 Q58.3532 1177.15 56.9817 1179.82 Q55.6275 1182.48 55.6275 1187.82 Q55.6275 1193.15 56.9817 1195.83 Q58.3532 1198.48 61.0615 1198.48 Q63.7872 1198.48 65.1414 1195.83 Q66.5129 1193.15 66.5129 1187.82 Q66.5129 1182.48 65.1414 1179.82 Q63.7872 1177.15 61.0615 1177.15 M61.0615 1174.37 Q65.4191 1174.37 67.7108 1177.82 Q70.0198 1181.26 70.0198 1187.82 Q70.0198 1194.37 67.7108 1197.82 Q65.4191 1201.26 61.0615 1201.26 Q56.7039 1201.26 54.3949 1197.82 Q52.1032 1194.37 52.1032 1187.82 Q52.1032 1181.26 54.3949 1177.82 Q56.7039 1174.37 61.0615 1174.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.8219 1196.35 L77.485 1196.35 L77.485 1200.76 L73.8219 1200.76 L73.8219 1196.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.7871 1177.15 Q86.0787 1177.15 84.7072 1179.82 Q83.3531 1182.48 83.3531 1187.82 Q83.3531 1193.15 84.7072 1195.83 Q86.0787 1198.48 88.7871 1198.48 Q91.5127 1198.48 92.8669 1195.83 Q94.2384 1193.15 94.2384 1187.82 Q94.2384 1182.48 92.8669 1179.82 Q91.5127 1177.15 88.7871 1177.15 M88.7871 1174.37 Q93.1447 1174.37 95.4363 1177.82 Q97.7453 1181.26 97.7453 1187.82 Q97.7453 1194.37 95.4363 1197.82 Q93.1447 1201.26 88.7871 1201.26 Q84.4294 1201.26 82.1204 1197.82 Q79.8288 1194.37 79.8288 1187.82 Q79.8288 1181.26 82.1204 1177.82 Q84.4294 1174.37 88.7871 1174.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M101.582 1174.84 L115.349 1174.84 L115.349 1177.79 L104.794 1177.79 L104.794 1184.14 Q105.558 1183.88 106.322 1183.76 Q107.086 1183.62 107.849 1183.62 Q112.19 1183.62 114.724 1186 Q117.259 1188.38 117.259 1192.44 Q117.259 1196.63 114.655 1198.95 Q112.051 1201.26 107.311 1201.26 Q105.679 1201.26 103.978 1200.98 Q102.294 1200.71 100.488 1200.15 L100.488 1196.63 Q102.051 1197.48 103.718 1197.89 Q105.384 1198.31 107.242 1198.31 Q110.245 1198.31 111.999 1196.73 Q113.752 1195.15 113.752 1192.44 Q113.752 1189.73 111.999 1188.15 Q110.245 1186.57 107.242 1186.57 Q105.836 1186.57 104.429 1186.89 Q103.04 1187.2 101.582 1187.86 L101.582 1174.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.1935 1123.53 Q57.4851 1123.53 56.1136 1126.2 Q54.7595 1128.86 54.7595 1134.2 Q54.7595 1139.53 56.1136 1142.21 Q57.4851 1144.86 60.1935 1144.86 Q62.9191 1144.86 64.2733 1142.21 Q65.6448 1139.53 65.6448 1134.2 Q65.6448 1128.86 64.2733 1126.2 Q62.9191 1123.53 60.1935 1123.53 M60.1935 1120.75 Q64.5511 1120.75 66.8427 1124.2 Q69.1518 1127.64 69.1518 1134.2 Q69.1518 1140.75 66.8427 1144.2 Q64.5511 1147.64 60.1935 1147.64 Q55.8359 1147.64 53.5268 1144.2 Q51.2352 1140.75 51.2352 1134.2 Q51.2352 1127.64 53.5268 1124.2 Q55.8359 1120.75 60.1935 1120.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M72.9538 1142.73 L76.617 1142.73 L76.617 1147.14 L72.9538 1147.14 L72.9538 1142.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M87.919 1123.53 Q85.2107 1123.53 83.8392 1126.2 Q82.485 1128.86 82.485 1134.2 Q82.485 1139.53 83.8392 1142.21 Q85.2107 1144.86 87.919 1144.86 Q90.6447 1144.86 91.9989 1142.21 Q93.3704 1139.53 93.3704 1134.2 Q93.3704 1128.86 91.9989 1126.2 Q90.6447 1123.53 87.919 1123.53 M87.919 1120.75 Q92.2766 1120.75 94.5683 1124.2 Q96.8773 1127.64 96.8773 1134.2 Q96.8773 1140.75 94.5683 1144.2 Q92.2766 1147.64 87.919 1147.64 Q83.5614 1147.64 81.2524 1144.2 Q78.9607 1140.75 78.9607 1134.2 Q78.9607 1127.64 81.2524 1124.2 Q83.5614 1120.75 87.919 1120.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.613 1132.78 Q106.252 1132.78 104.863 1134.39 Q103.492 1136.01 103.492 1138.82 Q103.492 1141.62 104.863 1143.25 Q106.252 1144.86 108.613 1144.86 Q110.974 1144.86 112.346 1143.25 Q113.735 1141.62 113.735 1138.82 Q113.735 1136.01 112.346 1134.39 Q110.974 1132.78 108.613 1132.78 M115.575 1121.79 L115.575 1124.98 Q114.256 1124.36 112.902 1124.03 Q111.565 1123.7 110.245 1123.7 Q106.773 1123.7 104.933 1126.04 Q103.11 1128.39 102.849 1133.13 Q103.874 1131.62 105.419 1130.82 Q106.964 1130 108.822 1130 Q112.728 1130 114.985 1132.38 Q117.259 1134.74 117.259 1138.82 Q117.259 1142.81 114.898 1145.23 Q112.537 1147.64 108.613 1147.64 Q104.117 1147.64 101.738 1144.2 Q99.3599 1140.75 99.3599 1134.2 Q99.3599 1128.06 102.277 1124.41 Q105.193 1120.75 110.106 1120.75 Q111.426 1120.75 112.763 1121.01 Q114.117 1121.27 115.575 1121.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.9921 1069.9 Q58.2838 1069.9 56.9122 1072.58 Q55.5581 1075.23 55.5581 1080.58 Q55.5581 1085.91 56.9122 1088.59 Q58.2838 1091.24 60.9921 1091.24 Q63.7178 1091.24 65.0719 1088.59 Q66.4434 1085.91 66.4434 1080.58 Q66.4434 1075.23 65.0719 1072.58 Q63.7178 1069.9 60.9921 1069.9 M60.9921 1067.13 Q65.3497 1067.13 67.6413 1070.58 Q69.9504 1074.02 69.9504 1080.58 Q69.9504 1087.13 67.6413 1090.58 Q65.3497 1094.02 60.9921 1094.02 Q56.6345 1094.02 54.3254 1090.58 Q52.0338 1087.13 52.0338 1080.58 Q52.0338 1074.02 54.3254 1070.58 Q56.6345 1067.13 60.9921 1067.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.7524 1089.11 L77.4156 1089.11 L77.4156 1093.52 L73.7524 1093.52 L73.7524 1089.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.7176 1069.9 Q86.0093 1069.9 84.6378 1072.58 Q83.2836 1075.23 83.2836 1080.58 Q83.2836 1085.91 84.6378 1088.59 Q86.0093 1091.24 88.7176 1091.24 Q91.4433 1091.24 92.7975 1088.59 Q94.169 1085.91 94.169 1080.58 Q94.169 1075.23 92.7975 1072.58 Q91.4433 1069.9 88.7176 1069.9 M88.7176 1067.13 Q93.0752 1067.13 95.3669 1070.58 Q97.6759 1074.02 97.6759 1080.58 Q97.6759 1087.13 95.3669 1090.58 Q93.0752 1094.02 88.7176 1094.02 Q84.36 1094.02 82.051 1090.58 Q79.7593 1087.13 79.7593 1080.58 Q79.7593 1074.02 82.051 1070.58 Q84.36 1067.13 88.7176 1067.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M100.593 1067.6 L117.259 1067.6 L117.259 1069.09 L107.849 1093.52 L104.186 1093.52 L113.04 1070.55 L100.593 1070.55 L100.593 1067.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.3844 1016.28 Q57.6761 1016.28 56.3046 1018.96 Q54.9504 1021.61 54.9504 1026.96 Q54.9504 1032.29 56.3046 1034.96 Q57.6761 1037.62 60.3844 1037.62 Q63.1101 1037.62 64.4643 1034.96 Q65.8358 1032.29 65.8358 1026.96 Q65.8358 1021.61 64.4643 1018.96 Q63.1101 1016.28 60.3844 1016.28 M60.3844 1013.51 Q64.7421 1013.51 67.0337 1016.96 Q69.3427 1020.4 69.3427 1026.96 Q69.3427 1033.51 67.0337 1036.96 Q64.7421 1040.4 60.3844 1040.4 Q56.0268 1040.4 53.7178 1036.96 Q51.4262 1033.51 51.4262 1026.96 Q51.4262 1020.4 53.7178 1016.96 Q56.0268 1013.51 60.3844 1013.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.1448 1035.49 L76.808 1035.49 L76.808 1039.9 L73.1448 1039.9 L73.1448 1035.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.11 1016.28 Q85.4017 1016.28 84.0301 1018.96 Q82.676 1021.61 82.676 1026.96 Q82.676 1032.29 84.0301 1034.96 Q85.4017 1037.62 88.11 1037.62 Q90.8357 1037.62 92.1898 1034.96 Q93.5613 1032.29 93.5613 1026.96 Q93.5613 1021.61 92.1898 1018.96 Q90.8357 1016.28 88.11 1016.28 M88.11 1013.51 Q92.4676 1013.51 94.7593 1016.96 Q97.0683 1020.4 97.0683 1026.96 Q97.0683 1033.51 94.7593 1036.96 Q92.4676 1040.4 88.11 1040.4 Q83.7524 1040.4 81.4434 1036.96 Q79.1517 1033.51 79.1517 1026.96 Q79.1517 1020.4 81.4434 1016.96 Q83.7524 1013.51 88.11 1013.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.37 1027.59 Q105.87 1027.59 104.429 1028.92 Q103.006 1030.26 103.006 1032.6 Q103.006 1034.95 104.429 1036.28 Q105.87 1037.62 108.37 1037.62 Q110.87 1037.62 112.311 1036.28 Q113.752 1034.93 113.752 1032.6 Q113.752 1030.26 112.311 1028.92 Q110.888 1027.59 108.37 1027.59 M104.863 1026.09 Q102.606 1025.54 101.339 1023.99 Q100.089 1022.45 100.089 1020.23 Q100.089 1017.12 102.294 1015.31 Q104.516 1013.51 108.37 1013.51 Q112.242 1013.51 114.447 1015.31 Q116.651 1017.12 116.651 1020.23 Q116.651 1022.45 115.384 1023.99 Q114.134 1025.54 111.895 1026.09 Q114.429 1026.68 115.836 1028.4 Q117.259 1030.12 117.259 1032.6 Q117.259 1036.37 114.95 1038.38 Q112.658 1040.4 108.37 1040.4 Q104.082 1040.4 101.773 1038.38 Q99.4814 1036.37 99.4814 1032.6 Q99.4814 1030.12 100.905 1028.4 Q102.329 1026.68 104.863 1026.09 M103.579 1020.55 Q103.579 1022.57 104.829 1023.7 Q106.096 1024.83 108.37 1024.83 Q110.627 1024.83 111.895 1023.7 Q113.179 1022.57 113.179 1020.55 Q113.179 1018.54 111.895 1017.41 Q110.627 1016.28 108.37 1016.28 Q106.096 1016.28 104.829 1017.41 Q103.579 1018.54 103.579 1020.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.4539 962.663 Q57.7456 962.663 56.374 965.337 Q55.0199 967.993 55.0199 973.34 Q55.0199 978.67 56.374 981.344 Q57.7456 984 60.4539 984 Q63.1796 984 64.5337 981.344 Q65.9052 978.67 65.9052 973.34 Q65.9052 967.993 64.5337 965.337 Q63.1796 962.663 60.4539 962.663 M60.4539 959.886 Q64.8115 959.886 67.1032 963.34 Q69.4122 966.778 69.4122 973.34 Q69.4122 979.885 67.1032 983.34 Q64.8115 986.778 60.4539 986.778 Q56.0963 986.778 53.7872 983.34 Q51.4956 979.885 51.4956 973.34 Q51.4956 966.778 53.7872 963.34 Q56.0963 959.886 60.4539 959.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.2142 981.865 L76.8774 981.865 L76.8774 986.274 L73.2142 986.274 L73.2142 981.865 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M88.1794 962.663 Q85.4711 962.663 84.0996 965.337 Q82.7454 967.993 82.7454 973.34 Q82.7454 978.67 84.0996 981.344 Q85.4711 984 88.1794 984 Q90.9051 984 92.2593 981.344 Q93.6308 978.67 93.6308 973.34 Q93.6308 967.993 92.2593 965.337 Q90.9051 962.663 88.1794 962.663 M88.1794 959.886 Q92.537 959.886 94.8287 963.34 Q97.1377 966.778 97.1377 973.34 Q97.1377 979.885 94.8287 983.34 Q92.537 986.778 88.1794 986.778 Q83.8218 986.778 81.5128 983.34 Q79.2211 979.885 79.2211 973.34 Q79.2211 966.778 81.5128 963.34 Q83.8218 959.886 88.1794 959.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M101.044 985.736 L101.044 982.542 Q102.363 983.167 103.718 983.496 Q105.072 983.826 106.374 983.826 Q109.846 983.826 111.669 981.5 Q113.509 979.156 113.77 974.399 Q112.763 975.892 111.217 976.691 Q109.672 977.49 107.797 977.49 Q103.909 977.49 101.634 975.146 Q99.3773 972.785 99.3773 968.705 Q99.3773 964.712 101.738 962.299 Q104.099 959.886 108.023 959.886 Q112.52 959.886 114.881 963.34 Q117.259 966.778 117.259 973.34 Q117.259 979.469 114.342 983.132 Q111.443 986.778 106.53 986.778 Q105.211 986.778 103.856 986.517 Q102.502 986.257 101.044 985.736 M108.023 974.747 Q110.384 974.747 111.756 973.132 Q113.145 971.517 113.145 968.705 Q113.145 965.91 111.756 964.295 Q110.384 962.663 108.023 962.663 Q105.662 962.663 104.273 964.295 Q102.902 965.91 102.902 968.705 Q102.902 971.517 104.273 973.132 Q105.662 974.747 108.023 974.747 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.2351 909.042 Q58.5268 909.042 57.1553 911.716 Q55.8011 914.372 55.8011 919.719 Q55.8011 925.049 57.1553 927.723 Q58.5268 930.379 61.2351 930.379 Q63.9608 930.379 65.315 927.723 Q66.6865 925.049 66.6865 919.719 Q66.6865 914.372 65.315 911.716 Q63.9608 909.042 61.2351 909.042 M61.2351 906.265 Q65.5927 906.265 67.8844 909.72 Q70.1934 913.157 70.1934 919.719 Q70.1934 926.265 67.8844 929.719 Q65.5927 933.157 61.2351 933.157 Q56.8775 933.157 54.5685 929.719 Q52.2768 926.265 52.2768 919.719 Q52.2768 913.157 54.5685 909.72 Q56.8775 906.265 61.2351 906.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.9955 928.244 L77.6586 928.244 L77.6586 932.653 L73.9955 932.653 L73.9955 928.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.0683 929.702 L87.7975 929.702 L87.7975 909.928 L81.5649 911.178 L81.5649 907.983 L87.7628 906.733 L91.2697 906.733 L91.2697 929.702 L96.9988 929.702 L96.9988 932.653 L82.0683 932.653 L82.0683 929.702 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.301 909.042 Q105.593 909.042 104.221 911.716 Q102.867 914.372 102.867 919.719 Q102.867 925.049 104.221 927.723 Q105.593 930.379 108.301 930.379 Q111.027 930.379 112.381 927.723 Q113.752 925.049 113.752 919.719 Q113.752 914.372 112.381 911.716 Q111.027 909.042 108.301 909.042 M108.301 906.265 Q112.658 906.265 114.95 909.72 Q117.259 913.157 117.259 919.719 Q117.259 926.265 114.95 929.719 Q112.658 933.157 108.301 933.157 Q103.943 933.157 101.634 929.719 Q99.3426 926.265 99.3426 919.719 Q99.3426 913.157 101.634 909.72 Q103.943 906.265 108.301 906.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M62.1553 855.422 Q59.4469 855.422 58.0754 858.095 Q56.7213 860.751 56.7213 866.099 Q56.7213 871.428 58.0754 874.102 Q59.4469 876.758 62.1553 876.758 Q64.8809 876.758 66.2351 874.102 Q67.6066 871.428 67.6066 866.099 Q67.6066 860.751 66.2351 858.095 Q64.8809 855.422 62.1553 855.422 M62.1553 852.644 Q66.5129 852.644 68.8045 856.099 Q71.1135 859.536 71.1135 866.099 Q71.1135 872.644 68.8045 876.099 Q66.5129 879.536 62.1553 879.536 Q57.7976 879.536 55.4886 876.099 Q53.197 872.644 53.197 866.099 Q53.197 859.536 55.4886 856.099 Q57.7976 852.644 62.1553 852.644 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.9156 874.623 L78.5788 874.623 L78.5788 879.033 L74.9156 879.033 L74.9156 874.623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.9885 876.081 L88.7176 876.081 L88.7176 856.307 L82.485 857.557 L82.485 854.363 L88.6829 853.113 L92.1898 853.113 L92.1898 876.081 L97.919 876.081 L97.919 879.033 L82.9885 879.033 L82.9885 876.081 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M102.329 876.081 L108.058 876.081 L108.058 856.307 L101.825 857.557 L101.825 854.363 L108.023 853.113 L111.53 853.113 L111.53 876.081 L117.259 876.081 L117.259 879.033 L102.329 879.033 L102.329 876.081 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M62.433 801.801 Q59.7247 801.801 58.3532 804.474 Q56.999 807.131 56.999 812.478 Q56.999 817.808 58.3532 820.481 Q59.7247 823.137 62.433 823.137 Q65.1587 823.137 66.5129 820.481 Q67.8844 817.808 67.8844 812.478 Q67.8844 807.131 66.5129 804.474 Q65.1587 801.801 62.433 801.801 M62.433 799.023 Q66.7907 799.023 69.0823 802.478 Q71.3913 805.915 71.3913 812.478 Q71.3913 819.023 69.0823 822.478 Q66.7907 825.915 62.433 825.915 Q58.0754 825.915 55.7664 822.478 Q53.4748 819.023 53.4748 812.478 Q53.4748 805.915 55.7664 802.478 Q58.0754 799.023 62.433 799.023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M75.1934 821.002 L78.8566 821.002 L78.8566 825.412 L75.1934 825.412 L75.1934 821.002 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M83.2663 822.46 L88.9954 822.46 L88.9954 802.686 L82.7628 803.936 L82.7628 800.742 L88.9607 799.492 L92.4676 799.492 L92.4676 822.46 L98.1967 822.46 L98.1967 825.412 L83.2663 825.412 L83.2663 822.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M105.02 822.46 L117.259 822.46 L117.259 825.412 L100.801 825.412 L100.801 822.46 Q102.797 820.394 106.235 816.922 Q109.69 813.433 110.575 812.426 Q112.259 810.533 112.919 809.231 Q113.596 807.912 113.596 806.644 Q113.596 804.579 112.138 803.276 Q110.697 801.974 108.37 801.974 Q106.721 801.974 104.881 802.547 Q103.058 803.12 100.974 804.283 L100.974 800.742 Q103.093 799.891 104.933 799.457 Q106.773 799.023 108.301 799.023 Q112.329 799.023 114.724 801.037 Q117.12 803.051 117.12 806.419 Q117.12 808.016 116.513 809.457 Q115.922 810.881 114.342 812.825 Q113.908 813.328 111.582 815.742 Q109.256 818.137 105.02 822.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.7212 748.18 Q59.0129 748.18 57.6414 750.854 Q56.2872 753.51 56.2872 758.857 Q56.2872 764.187 57.6414 766.86 Q59.0129 769.517 61.7212 769.517 Q64.4469 769.517 65.8011 766.86 Q67.1726 764.187 67.1726 758.857 Q67.1726 753.51 65.8011 750.854 Q64.4469 748.18 61.7212 748.18 M61.7212 745.402 Q66.0789 745.402 68.3705 748.857 Q70.6795 752.294 70.6795 758.857 Q70.6795 765.402 68.3705 768.857 Q66.0789 772.294 61.7212 772.294 Q57.3636 772.294 55.0546 768.857 Q52.7629 765.402 52.7629 758.857 Q52.7629 752.294 55.0546 748.857 Q57.3636 745.402 61.7212 745.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.4816 767.381 L78.1448 767.381 L78.1448 771.791 L74.4816 771.791 L74.4816 767.381 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.5545 768.84 L88.2836 768.84 L88.2836 749.065 L82.051 750.315 L82.051 747.121 L88.2489 745.871 L91.7558 745.871 L91.7558 768.84 L97.4849 768.84 L97.4849 771.791 L82.5545 771.791 L82.5545 768.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M111.912 757.815 Q114.429 758.353 115.836 760.055 Q117.259 761.756 117.259 764.256 Q117.259 768.093 114.62 770.194 Q111.981 772.294 107.12 772.294 Q105.488 772.294 103.752 771.965 Q102.034 771.652 100.193 771.01 L100.193 767.624 Q101.652 768.475 103.388 768.909 Q105.124 769.343 107.016 769.343 Q110.315 769.343 112.033 768.041 Q113.77 766.739 113.77 764.256 Q113.77 761.965 112.155 760.68 Q110.558 759.378 107.693 759.378 L104.672 759.378 L104.672 756.496 L107.832 756.496 Q110.419 756.496 111.79 755.472 Q113.162 754.43 113.162 752.485 Q113.162 750.489 111.738 749.43 Q110.332 748.354 107.693 748.354 Q106.252 748.354 104.603 748.666 Q102.954 748.979 100.974 749.638 L100.974 746.513 Q102.971 745.958 104.707 745.68 Q106.461 745.402 108.006 745.402 Q111.999 745.402 114.325 747.225 Q116.651 749.031 116.651 752.121 Q116.651 754.274 115.419 755.767 Q114.186 757.242 111.912 757.815 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M60.8705 694.559 Q58.1622 694.559 56.7907 697.233 Q55.4365 699.889 55.4365 705.236 Q55.4365 710.566 56.7907 713.24 Q58.1622 715.896 60.8705 715.896 Q63.5962 715.896 64.9504 713.24 Q66.3219 710.566 66.3219 705.236 Q66.3219 699.889 64.9504 697.233 Q63.5962 694.559 60.8705 694.559 M60.8705 691.781 Q65.2282 691.781 67.5198 695.236 Q69.8288 698.674 69.8288 705.236 Q69.8288 711.781 67.5198 715.236 Q65.2282 718.674 60.8705 718.674 Q56.5129 718.674 54.2039 715.236 Q51.9123 711.781 51.9123 705.236 Q51.9123 698.674 54.2039 695.236 Q56.5129 691.781 60.8705 691.781 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.6309 713.76 L77.2941 713.76 L77.2941 718.17 L73.6309 718.17 L73.6309 713.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M81.7038 715.219 L87.4329 715.219 L87.4329 695.445 L81.2003 696.695 L81.2003 693.5 L87.3982 692.25 L90.9051 692.25 L90.9051 715.219 L96.6342 715.219 L96.6342 718.17 L81.7038 718.17 L81.7038 715.219 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M110.072 695.306 L101.218 709.142 L110.072 709.142 L110.072 695.306 M109.152 692.25 L113.561 692.25 L113.561 709.142 L117.259 709.142 L117.259 712.059 L113.561 712.059 L113.561 718.17 L110.072 718.17 L110.072 712.059 L98.3703 712.059 L98.3703 708.674 L109.152 692.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.9817 640.938 Q59.2733 640.938 57.9018 643.612 Q56.5477 646.268 56.5477 651.615 Q56.5477 656.945 57.9018 659.619 Q59.2733 662.275 61.9817 662.275 Q64.7073 662.275 66.0615 659.619 Q67.433 656.945 67.433 651.615 Q67.433 646.268 66.0615 643.612 Q64.7073 640.938 61.9817 640.938 M61.9817 638.16 Q66.3393 638.16 68.6309 641.615 Q70.9399 645.053 70.9399 651.615 Q70.9399 658.16 68.6309 661.615 Q66.3393 665.053 61.9817 665.053 Q57.624 665.053 55.315 661.615 Q53.0234 658.16 53.0234 651.615 Q53.0234 645.053 55.315 641.615 Q57.624 638.16 61.9817 638.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.742 660.14 L78.4052 660.14 L78.4052 664.549 L74.742 664.549 L74.742 660.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.8149 661.598 L88.544 661.598 L88.544 641.824 L82.3114 643.074 L82.3114 639.879 L88.5093 638.629 L92.0162 638.629 L92.0162 661.598 L97.7453 661.598 L97.7453 664.549 L82.8149 664.549 L82.8149 661.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M101.582 638.629 L115.349 638.629 L115.349 641.581 L104.794 641.581 L104.794 647.935 Q105.558 647.674 106.322 647.553 Q107.086 647.414 107.849 647.414 Q112.19 647.414 114.724 649.792 Q117.259 652.171 117.259 656.233 Q117.259 660.417 114.655 662.744 Q112.051 665.053 107.311 665.053 Q105.679 665.053 103.978 664.775 Q102.294 664.497 100.488 663.942 L100.488 660.417 Q102.051 661.268 103.718 661.685 Q105.384 662.101 107.242 662.101 Q110.245 662.101 111.999 660.521 Q113.752 658.942 113.752 656.233 Q113.752 653.525 111.999 651.945 Q110.245 650.365 107.242 650.365 Q105.836 650.365 104.429 650.678 Q103.04 650.99 101.582 651.65 L101.582 638.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.1136 587.317 Q58.4053 587.317 57.0338 589.991 Q55.6796 592.647 55.6796 597.994 Q55.6796 603.324 57.0338 605.998 Q58.4053 608.654 61.1136 608.654 Q63.8393 608.654 65.1934 605.998 Q66.565 603.324 66.565 597.994 Q66.565 592.647 65.1934 589.991 Q63.8393 587.317 61.1136 587.317 M61.1136 584.54 Q65.4712 584.54 67.7629 587.995 Q70.0719 591.432 70.0719 597.994 Q70.0719 604.54 67.7629 607.994 Q65.4712 611.432 61.1136 611.432 Q56.756 611.432 54.447 607.994 Q52.1553 604.54 52.1553 597.994 Q52.1553 591.432 54.447 587.995 Q56.756 584.54 61.1136 584.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.8739 606.519 L77.5371 606.519 L77.5371 610.928 L73.8739 610.928 L73.8739 606.519 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M81.9468 607.977 L87.676 607.977 L87.676 588.203 L81.4434 589.453 L81.4434 586.258 L87.6412 585.008 L91.1482 585.008 L91.1482 607.977 L96.8773 607.977 L96.8773 610.928 L81.9468 610.928 L81.9468 607.977 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.613 596.571 Q106.252 596.571 104.863 598.185 Q103.492 599.8 103.492 602.612 Q103.492 605.408 104.863 607.04 Q106.252 608.654 108.613 608.654 Q110.974 608.654 112.346 607.04 Q113.735 605.408 113.735 602.612 Q113.735 599.8 112.346 598.185 Q110.974 596.571 108.613 596.571 M115.575 585.581 L115.575 588.776 Q114.256 588.151 112.902 587.821 Q111.565 587.491 110.245 587.491 Q106.773 587.491 104.933 589.835 Q103.11 592.179 102.849 596.918 Q103.874 595.408 105.419 594.609 Q106.964 593.793 108.822 593.793 Q112.728 593.793 114.985 596.172 Q117.259 598.533 117.259 602.612 Q117.259 606.606 114.898 609.019 Q112.537 611.432 108.613 611.432 Q104.117 611.432 101.738 607.994 Q99.3599 604.54 99.3599 597.994 Q99.3599 591.849 102.277 588.203 Q105.193 584.54 110.106 584.54 Q111.426 584.54 112.763 584.8 Q114.117 585.06 115.575 585.581 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.9122 533.697 Q59.2039 533.697 57.8324 536.37 Q56.4782 539.026 56.4782 544.374 Q56.4782 549.703 57.8324 552.377 Q59.2039 555.033 61.9122 555.033 Q64.6379 555.033 65.992 552.377 Q67.3636 549.703 67.3636 544.374 Q67.3636 539.026 65.992 536.37 Q64.6379 533.697 61.9122 533.697 M61.9122 530.919 Q66.2698 530.919 68.5615 534.374 Q70.8705 537.811 70.8705 544.374 Q70.8705 550.919 68.5615 554.374 Q66.2698 557.811 61.9122 557.811 Q57.5546 557.811 55.2456 554.374 Q52.9539 550.919 52.9539 544.374 Q52.9539 537.811 55.2456 534.374 Q57.5546 530.919 61.9122 530.919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.6726 552.898 L78.3357 552.898 L78.3357 557.308 L74.6726 557.308 L74.6726 552.898 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.7454 554.356 L88.4746 554.356 L88.4746 534.582 L82.242 535.832 L82.242 532.638 L88.4398 531.388 L91.9468 531.388 L91.9468 554.356 L97.6759 554.356 L97.6759 557.308 L82.7454 557.308 L82.7454 554.356 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M100.593 531.388 L117.259 531.388 L117.259 532.881 L107.849 557.308 L104.186 557.308 L113.04 534.339 L100.593 534.339 L100.593 531.388 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.3046 480.076 Q58.5963 480.076 57.2247 482.749 Q55.8706 485.406 55.8706 490.753 Q55.8706 496.083 57.2247 498.756 Q58.5963 501.412 61.3046 501.412 Q64.0303 501.412 65.3844 498.756 Q66.7559 496.083 66.7559 490.753 Q66.7559 485.406 65.3844 482.749 Q64.0303 480.076 61.3046 480.076 M61.3046 477.298 Q65.6622 477.298 67.9538 480.753 Q70.2629 484.19 70.2629 490.753 Q70.2629 497.298 67.9538 500.753 Q65.6622 504.19 61.3046 504.19 Q56.947 504.19 54.6379 500.753 Q52.3463 497.298 52.3463 490.753 Q52.3463 484.19 54.6379 480.753 Q56.947 477.298 61.3046 477.298 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.0649 499.277 L77.7281 499.277 L77.7281 503.687 L74.0649 503.687 L74.0649 499.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.1378 500.735 L87.8669 500.735 L87.8669 480.961 L81.6343 482.211 L81.6343 479.017 L87.8322 477.767 L91.3391 477.767 L91.3391 500.735 L97.0683 500.735 L97.0683 503.687 L82.1378 503.687 L82.1378 500.735 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.37 491.378 Q105.87 491.378 104.429 492.715 Q103.006 494.051 103.006 496.395 Q103.006 498.739 104.429 500.076 Q105.87 501.412 108.37 501.412 Q110.87 501.412 112.311 500.076 Q113.752 498.721 113.752 496.395 Q113.752 494.051 112.311 492.715 Q110.888 491.378 108.37 491.378 M104.863 489.885 Q102.606 489.329 101.339 487.784 Q100.089 486.239 100.089 484.017 Q100.089 480.909 102.294 479.104 Q104.516 477.298 108.37 477.298 Q112.242 477.298 114.447 479.104 Q116.651 480.909 116.651 484.017 Q116.651 486.239 115.384 487.784 Q114.134 489.329 111.895 489.885 Q114.429 490.475 115.836 492.194 Q117.259 493.912 117.259 496.395 Q117.259 500.162 114.95 502.176 Q112.658 504.19 108.37 504.19 Q104.082 504.19 101.773 502.176 Q99.4814 500.162 99.4814 496.395 Q99.4814 493.912 100.905 492.194 Q102.329 490.475 104.863 489.885 M103.579 484.347 Q103.579 486.36 104.829 487.489 Q106.096 488.617 108.37 488.617 Q110.627 488.617 111.895 487.489 Q113.179 486.36 113.179 484.347 Q113.179 482.333 111.895 481.204 Q110.627 480.076 108.37 480.076 Q106.096 480.076 104.829 481.204 Q103.579 482.333 103.579 484.347 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.374 426.455 Q58.6657 426.455 57.2942 429.129 Q55.94 431.785 55.94 437.132 Q55.94 442.462 57.2942 445.135 Q58.6657 447.792 61.374 447.792 Q64.0997 447.792 65.4539 445.135 Q66.8254 442.462 66.8254 437.132 Q66.8254 431.785 65.4539 429.129 Q64.0997 426.455 61.374 426.455 M61.374 423.677 Q65.7316 423.677 68.0233 427.132 Q70.3323 430.569 70.3323 437.132 Q70.3323 443.677 68.0233 447.132 Q65.7316 450.569 61.374 450.569 Q57.0164 450.569 54.7074 447.132 Q52.4157 443.677 52.4157 437.132 Q52.4157 430.569 54.7074 427.132 Q57.0164 423.677 61.374 423.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.1344 445.656 L77.7975 445.656 L77.7975 450.066 L74.1344 450.066 L74.1344 445.656 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M82.2072 447.115 L87.9364 447.115 L87.9364 427.34 L81.7038 428.59 L81.7038 425.396 L87.9017 424.146 L91.4086 424.146 L91.4086 447.115 L97.1377 447.115 L97.1377 450.066 L82.2072 450.066 L82.2072 447.115 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M101.044 449.528 L101.044 446.333 Q102.363 446.958 103.718 447.288 Q105.072 447.618 106.374 447.618 Q109.846 447.618 111.669 445.292 Q113.509 442.948 113.77 438.191 Q112.763 439.684 111.217 440.483 Q109.672 441.281 107.797 441.281 Q103.909 441.281 101.634 438.937 Q99.3773 436.576 99.3773 432.497 Q99.3773 428.504 101.738 426.09 Q104.099 423.677 108.023 423.677 Q112.52 423.677 114.881 427.132 Q117.259 430.569 117.259 437.132 Q117.259 443.26 114.342 446.924 Q111.443 450.569 106.53 450.569 Q105.211 450.569 103.856 450.309 Q102.502 450.049 101.044 449.528 M108.023 438.538 Q110.384 438.538 111.756 436.924 Q113.145 435.309 113.145 432.497 Q113.145 429.701 111.756 428.087 Q110.384 426.455 108.023 426.455 Q105.662 426.455 104.273 428.087 Q102.902 429.701 102.902 432.497 Q102.902 435.309 104.273 436.924 Q105.662 438.538 108.023 438.538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.5129 372.834 Q58.8046 372.834 57.4331 375.508 Q56.0789 378.164 56.0789 383.511 Q56.0789 388.841 57.4331 391.515 Q58.8046 394.171 61.5129 394.171 Q64.2386 394.171 65.5927 391.515 Q66.9643 388.841 66.9643 383.511 Q66.9643 378.164 65.5927 375.508 Q64.2386 372.834 61.5129 372.834 M61.5129 370.056 Q65.8705 370.056 68.1622 373.511 Q70.4712 376.949 70.4712 383.511 Q70.4712 390.056 68.1622 393.511 Q65.8705 396.949 61.5129 396.949 Q57.1553 396.949 54.8463 393.511 Q52.5546 390.056 52.5546 383.511 Q52.5546 376.949 54.8463 373.511 Q57.1553 370.056 61.5129 370.056 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.2733 392.035 L77.9364 392.035 L77.9364 396.445 L74.2733 396.445 L74.2733 392.035 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M84.7593 393.494 L96.9988 393.494 L96.9988 396.445 L80.5406 396.445 L80.5406 393.494 Q82.5371 391.428 85.9746 387.956 Q89.4294 384.466 90.3148 383.459 Q91.9989 381.567 92.6586 380.265 Q93.3356 378.945 93.3356 377.678 Q93.3356 375.612 91.8773 374.31 Q90.4364 373.008 88.11 373.008 Q86.4607 373.008 84.6204 373.581 Q82.7975 374.154 80.7142 375.317 L80.7142 371.775 Q82.8322 370.924 84.6725 370.49 Q86.5128 370.056 88.0405 370.056 Q92.0683 370.056 94.4641 372.07 Q96.8599 374.084 96.8599 377.452 Q96.8599 379.049 96.2523 380.49 Q95.662 381.914 94.0822 383.858 Q93.6481 384.362 91.3218 386.775 Q88.9954 389.171 84.7593 393.494 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M108.301 372.834 Q105.593 372.834 104.221 375.508 Q102.867 378.164 102.867 383.511 Q102.867 388.841 104.221 391.515 Q105.593 394.171 108.301 394.171 Q111.027 394.171 112.381 391.515 Q113.752 388.841 113.752 383.511 Q113.752 378.164 112.381 375.508 Q111.027 372.834 108.301 372.834 M108.301 370.056 Q112.658 370.056 114.95 373.511 Q117.259 376.949 117.259 383.511 Q117.259 390.056 114.95 393.511 Q112.658 396.949 108.301 396.949 Q103.943 396.949 101.634 393.511 Q99.3426 390.056 99.3426 383.511 Q99.3426 376.949 101.634 373.511 Q103.943 370.056 108.301 370.056 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M62.433 319.213 Q59.7247 319.213 58.3532 321.887 Q56.999 324.543 56.999 329.89 Q56.999 335.22 58.3532 337.894 Q59.7247 340.55 62.433 340.55 Q65.1587 340.55 66.5129 337.894 Q67.8844 335.22 67.8844 329.89 Q67.8844 324.543 66.5129 321.887 Q65.1587 319.213 62.433 319.213 M62.433 316.435 Q66.7907 316.435 69.0823 319.89 Q71.3913 323.328 71.3913 329.89 Q71.3913 336.435 69.0823 339.89 Q66.7907 343.328 62.433 343.328 Q58.0754 343.328 55.7664 339.89 Q53.4748 336.435 53.4748 329.89 Q53.4748 323.328 55.7664 319.89 Q58.0754 316.435 62.433 316.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M75.1934 338.415 L78.8566 338.415 L78.8566 342.824 L75.1934 342.824 L75.1934 338.415 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M85.6794 339.873 L97.919 339.873 L97.919 342.824 L81.4607 342.824 L81.4607 339.873 Q83.4572 337.807 86.8947 334.335 Q90.3496 330.845 91.235 329.838 Q92.919 327.946 93.5787 326.644 Q94.2558 325.324 94.2558 324.057 Q94.2558 321.991 92.7975 320.689 Q91.3565 319.387 89.0301 319.387 Q87.3808 319.387 85.5406 319.96 Q83.7176 320.533 81.6343 321.696 L81.6343 318.154 Q83.7524 317.304 85.5926 316.87 Q87.4329 316.435 88.9607 316.435 Q92.9884 316.435 95.3842 318.449 Q97.7801 320.463 97.7801 323.831 Q97.7801 325.428 97.1724 326.869 Q96.5822 328.293 95.0023 330.237 Q94.5683 330.741 92.2419 333.154 Q89.9155 335.55 85.6794 339.873 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M102.329 339.873 L108.058 339.873 L108.058 320.099 L101.825 321.349 L101.825 318.154 L108.023 316.904 L111.53 316.904 L111.53 339.873 L117.259 339.873 L117.259 342.824 L102.329 342.824 L102.329 339.873 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M62.7108 265.592 Q60.0025 265.592 58.631 268.266 Q57.2768 270.922 57.2768 276.269 Q57.2768 281.599 58.631 284.273 Q60.0025 286.929 62.7108 286.929 Q65.4365 286.929 66.7907 284.273 Q68.1622 281.599 68.1622 276.269 Q68.1622 270.922 66.7907 268.266 Q65.4365 265.592 62.7108 265.592 M62.7108 262.815 Q67.0684 262.815 69.3601 266.269 Q71.6691 269.707 71.6691 276.269 Q71.6691 282.815 69.3601 286.269 Q67.0684 289.707 62.7108 289.707 Q58.3532 289.707 56.0442 286.269 Q53.7525 282.815 53.7525 276.269 Q53.7525 269.707 56.0442 266.269 Q58.3532 262.815 62.7108 262.815 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M75.4712 284.794 L79.1343 284.794 L79.1343 289.203 L75.4712 289.203 L75.4712 284.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M85.9572 286.252 L98.1967 286.252 L98.1967 289.203 L81.7385 289.203 L81.7385 286.252 Q83.735 284.186 87.1725 280.714 Q90.6273 277.224 91.5127 276.217 Q93.1968 274.325 93.8565 273.023 Q94.5336 271.703 94.5336 270.436 Q94.5336 268.37 93.0752 267.068 Q91.6343 265.766 89.3079 265.766 Q87.6586 265.766 85.8183 266.339 Q83.9954 266.912 81.9121 268.075 L81.9121 264.533 Q84.0301 263.683 85.8704 263.249 Q87.7107 262.815 89.2384 262.815 Q93.2662 262.815 95.662 264.829 Q98.0578 266.842 98.0578 270.21 Q98.0578 271.808 97.4502 273.249 Q96.8599 274.672 95.2801 276.617 Q94.8461 277.12 92.5197 279.533 Q90.1933 281.929 85.9572 286.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M105.02 286.252 L117.259 286.252 L117.259 289.203 L100.801 289.203 L100.801 286.252 Q102.797 284.186 106.235 280.714 Q109.69 277.224 110.575 276.217 Q112.259 274.325 112.919 273.023 Q113.596 271.703 113.596 270.436 Q113.596 268.37 112.138 267.068 Q110.697 265.766 108.37 265.766 Q106.721 265.766 104.881 266.339 Q103.058 266.912 100.974 268.075 L100.974 264.533 Q103.093 263.683 104.933 263.249 Q106.773 262.815 108.301 262.815 Q112.329 262.815 114.724 264.829 Q117.12 266.842 117.12 270.21 Q117.12 271.808 116.513 273.249 Q115.922 274.672 114.342 276.617 Q113.908 277.12 111.582 279.533 Q109.256 281.929 105.02 286.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.999 211.972 Q59.2907 211.972 57.9192 214.645 Q56.565 217.301 56.565 222.649 Q56.565 227.978 57.9192 230.652 Q59.2907 233.308 61.999 233.308 Q64.7247 233.308 66.0789 230.652 Q67.4504 227.978 67.4504 222.649 Q67.4504 217.301 66.0789 214.645 Q64.7247 211.972 61.999 211.972 M61.999 209.194 Q66.3566 209.194 68.6483 212.649 Q70.9573 216.086 70.9573 222.649 Q70.9573 229.194 68.6483 232.649 Q66.3566 236.086 61.999 236.086 Q57.6414 236.086 55.3324 232.649 Q53.0407 229.194 53.0407 222.649 Q53.0407 216.086 55.3324 212.649 Q57.6414 209.194 61.999 209.194 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M74.7594 231.173 L78.4225 231.173 L78.4225 235.583 L74.7594 235.583 L74.7594 231.173 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M85.2454 232.631 L97.4849 232.631 L97.4849 235.583 L81.0267 235.583 L81.0267 232.631 Q83.0232 230.565 86.4607 227.093 Q89.9155 223.603 90.8009 222.597 Q92.485 220.704 93.1447 219.402 Q93.8218 218.083 93.8218 216.815 Q93.8218 214.749 92.3634 213.447 Q90.9225 212.145 88.5961 212.145 Q86.9468 212.145 85.1065 212.718 Q83.2836 213.291 81.2003 214.454 L81.2003 210.913 Q83.3183 210.062 85.1586 209.628 Q86.9989 209.194 88.5266 209.194 Q92.5544 209.194 94.9502 211.208 Q97.346 213.222 97.346 216.59 Q97.346 218.187 96.7384 219.628 Q96.1481 221.051 94.5683 222.996 Q94.1343 223.499 91.8079 225.912 Q89.4815 228.308 85.2454 232.631 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M111.912 221.607 Q114.429 222.145 115.836 223.847 Q117.259 225.548 117.259 228.048 Q117.259 231.885 114.62 233.985 Q111.981 236.086 107.12 236.086 Q105.488 236.086 103.752 235.756 Q102.034 235.444 100.193 234.801 L100.193 231.416 Q101.652 232.267 103.388 232.701 Q105.124 233.135 107.016 233.135 Q110.315 233.135 112.033 231.833 Q113.77 230.531 113.77 228.048 Q113.77 225.756 112.155 224.472 Q110.558 223.169 107.693 223.169 L104.672 223.169 L104.672 220.288 L107.832 220.288 Q110.419 220.288 111.79 219.263 Q113.162 218.222 113.162 216.277 Q113.162 214.281 111.738 213.222 Q110.332 212.145 107.693 212.145 Q106.252 212.145 104.603 212.458 Q102.954 212.77 100.974 213.43 L100.974 210.305 Q102.971 209.749 104.707 209.472 Q106.461 209.194 108.006 209.194 Q111.999 209.194 114.325 211.017 Q116.651 212.822 116.651 215.913 Q116.651 218.065 115.419 219.558 Q114.186 221.034 111.912 221.607 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M61.1483 158.351 Q58.44 158.351 57.0685 161.024 Q55.7143 163.681 55.7143 169.028 Q55.7143 174.358 57.0685 177.031 Q58.44 179.687 61.1483 179.687 Q63.874 179.687 65.2282 177.031 Q66.5997 174.358 66.5997 169.028 Q66.5997 163.681 65.2282 161.024 Q63.874 158.351 61.1483 158.351 M61.1483 155.573 Q65.5059 155.573 67.7976 159.028 Q70.1066 162.465 70.1066 169.028 Q70.1066 175.573 67.7976 179.028 Q65.5059 182.465 61.1483 182.465 Q56.7907 182.465 54.4817 179.028 Q52.19 175.573 52.19 169.028 Q52.19 162.465 54.4817 159.028 Q56.7907 155.573 61.1483 155.573 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M73.9087 177.552 L77.5718 177.552 L77.5718 181.962 L73.9087 181.962 L73.9087 177.552 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M84.3947 179.01 L96.6342 179.01 L96.6342 181.962 L80.176 181.962 L80.176 179.01 Q82.1725 176.944 85.61 173.472 Q89.0648 169.983 89.9503 168.976 Q91.6343 167.083 92.294 165.781 Q92.9711 164.462 92.9711 163.194 Q92.9711 161.129 91.5127 159.826 Q90.0718 158.524 87.7454 158.524 Q86.0961 158.524 84.2558 159.097 Q82.4329 159.67 80.3496 160.833 L80.3496 157.292 Q82.4677 156.441 84.3079 156.007 Q86.1482 155.573 87.676 155.573 Q91.7037 155.573 94.0995 157.587 Q96.4954 159.601 96.4954 162.969 Q96.4954 164.566 95.8877 166.007 Q95.2974 167.431 93.7176 169.375 Q93.2836 169.878 90.9572 172.292 Q88.6308 174.687 84.3947 179.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M110.072 159.097 L101.218 172.934 L110.072 172.934 L110.072 159.097 M109.152 156.042 L113.561 156.042 L113.561 172.934 L117.259 172.934 L117.259 175.851 L113.561 175.851 L113.561 181.962 L110.072 181.962 L110.072 175.851 L98.3703 175.851 L98.3703 172.465 L109.152 156.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M62.2594 104.73 Q59.5511 104.73 58.1796 107.404 Q56.8254 110.06 56.8254 115.407 Q56.8254 120.737 58.1796 123.41 Q59.5511 126.067 62.2594 126.067 Q64.9851 126.067 66.3393 123.41 Q67.7108 120.737 67.7108 115.407 Q67.7108 110.06 66.3393 107.404 Q64.9851 104.73 62.2594 104.73 M62.2594 101.952 Q66.617 101.952 68.9087 105.407 Q71.2177 108.844 71.2177 115.407 Q71.2177 121.952 68.9087 125.407 Q66.617 128.844 62.2594 128.844 Q57.9018 128.844 55.5928 125.407 Q53.3011 121.952 53.3011 115.407 Q53.3011 108.844 55.5928 105.407 Q57.9018 101.952 62.2594 101.952 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M75.0198 123.931 L78.6829 123.931 L78.6829 128.341 L75.0198 128.341 L75.0198 123.931 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M85.5058 125.39 L97.7453 125.39 L97.7453 128.341 L81.2871 128.341 L81.2871 125.39 Q83.2836 123.324 86.7211 119.851 Q90.1759 116.362 91.0614 115.355 Q92.7454 113.463 93.4051 112.16 Q94.0822 110.841 94.0822 109.574 Q94.0822 107.508 92.6238 106.206 Q91.1829 104.904 88.8565 104.904 Q87.2072 104.904 85.3669 105.476 Q83.544 106.049 81.4607 107.213 L81.4607 103.671 Q83.5788 102.82 85.419 102.386 Q87.2593 101.952 88.7871 101.952 Q92.8148 101.952 95.2106 103.966 Q97.6065 105.98 97.6065 109.348 Q97.6065 110.945 96.9988 112.386 Q96.4085 113.81 94.8287 115.754 Q94.3947 116.258 92.0683 118.671 Q89.7419 121.067 85.5058 125.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M101.582 102.421 L115.349 102.421 L115.349 105.372 L104.794 105.372 L104.794 111.726 Q105.558 111.466 106.322 111.344 Q107.086 111.206 107.849 111.206 Q112.19 111.206 114.724 113.584 Q117.259 115.962 117.259 120.025 Q117.259 124.209 114.655 126.535 Q112.051 128.844 107.311 128.844 Q105.679 128.844 103.978 128.567 Q102.294 128.289 100.488 127.733 L100.488 124.209 Q102.051 125.06 103.718 125.476 Q105.384 125.893 107.242 125.893 Q110.245 125.893 111.999 124.313 Q113.752 122.733 113.752 120.025 Q113.752 117.317 111.999 115.737 Q110.245 114.157 107.242 114.157 Q105.836 114.157 104.429 114.469 Q103.04 114.782 101.582 115.442 L101.582 102.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M981.653 14.7875 L981.653 32.6433 L989.738 32.6433 Q994.226 32.6433 996.676 30.3199 Q999.127 27.9964 999.127 23.6995 Q999.127 19.4345 996.676 17.111 Q994.226 14.7875 989.738 14.7875 L981.653 14.7875 M975.224 9.504 L989.738 9.504 Q997.727 9.504 1001.8 13.1325 Q1005.91 16.7291 1005.91 23.6995 Q1005.91 30.7336 1001.8 34.3303 Q997.727 37.9269 989.738 37.9269 L981.653 37.9269 L981.653 57.024 L975.224 57.024 L975.224 9.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1012.05 7.4988 L1017.91 7.4988 L1017.91 57.024 L1012.05 57.024 L1012.05 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1040.25 39.1045 Q1033.15 39.1045 1030.41 40.7278 Q1027.68 42.351 1027.68 46.266 Q1027.68 49.3852 1029.71 51.2312 Q1031.78 53.0454 1035.32 53.0454 Q1040.19 53.0454 1043.11 49.608 Q1046.07 46.1386 1046.07 40.4095 L1046.07 39.1045 L1040.25 39.1045 M1051.93 36.6856 L1051.93 57.024 L1046.07 57.024 L1046.07 51.6131 Q1044.07 54.8597 1041.08 56.4193 Q1038.09 57.947 1033.76 57.947 Q1028.28 57.947 1025.04 54.8915 Q1021.82 51.8041 1021.82 46.6479 Q1021.82 40.6323 1025.83 37.5768 Q1029.87 34.5212 1037.86 34.5212 L1046.07 34.5212 L1046.07 33.9483 Q1046.07 29.9061 1043.4 27.7099 Q1040.76 25.4819 1035.95 25.4819 Q1032.9 25.4819 1030 26.214 Q1027.1 26.946 1024.43 28.4101 L1024.43 22.9993 Q1027.65 21.758 1030.67 21.1532 Q1033.69 20.5167 1036.56 20.5167 Q1044.29 20.5167 1048.11 24.5271 Q1051.93 28.5375 1051.93 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1072.91 60.3342 Q1070.42 66.6999 1068.07 68.6414 Q1065.71 70.583 1061.77 70.583 L1057.09 70.583 L1057.09 65.6814 L1060.52 65.6814 Q1062.94 65.6814 1064.28 64.5355 Q1065.62 63.3897 1067.24 59.1247 L1068.29 56.4511 L1053.87 21.376 L1060.08 21.376 L1071.22 49.2578 L1082.36 21.376 L1088.57 21.376 L1072.91 60.3342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1125.2 37.7359 L1125.2 40.6005 L1098.27 40.6005 Q1098.66 46.6479 1101.9 49.8308 Q1105.18 52.9818 1111 52.9818 Q1114.38 52.9818 1117.53 52.1542 Q1120.71 51.3267 1123.83 49.6716 L1123.83 55.2098 Q1120.68 56.5466 1117.37 57.2468 Q1114.06 57.947 1110.65 57.947 Q1102.12 57.947 1097.13 52.9818 Q1092.16 48.0165 1092.16 39.5501 Q1092.16 30.7973 1096.87 25.6729 Q1101.62 20.5167 1109.64 20.5167 Q1116.83 20.5167 1121 25.1636 Q1125.2 29.7788 1125.2 37.7359 M1119.34 36.0172 Q1119.28 31.2111 1116.64 28.3465 Q1114.03 25.4819 1109.7 25.4819 Q1104.8 25.4819 1101.84 28.251 Q1098.91 31.0201 1098.46 36.049 L1119.34 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1152 26.8506 Q1151.01 26.2776 1149.84 26.023 Q1148.69 25.7366 1147.29 25.7366 Q1142.32 25.7366 1139.65 28.9831 Q1137.01 32.1977 1137.01 38.2452 L1137.01 57.024 L1131.12 57.024 L1131.12 21.376 L1137.01 21.376 L1137.01 26.9142 Q1138.85 23.6677 1141.81 22.1081 Q1144.77 20.5167 1149.01 20.5167 Q1149.61 20.5167 1150.34 20.6122 Q1151.08 20.6758 1151.97 20.835 L1152 26.8506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1172.21 7.56246 Q1167.95 14.883 1165.88 22.0444 Q1163.81 29.2059 1163.81 36.5583 Q1163.81 43.9106 1165.88 51.1357 Q1167.98 58.329 1172.21 65.6177 L1167.12 65.6177 Q1162.34 58.138 1159.96 50.9129 Q1157.6 43.6878 1157.6 36.5583 Q1157.6 29.4605 1159.96 22.2672 Q1162.31 15.074 1167.12 7.56246 L1172.21 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1208.85 37.7359 L1208.85 40.6005 L1181.92 40.6005 Q1182.3 46.6479 1185.55 49.8308 Q1188.83 52.9818 1194.65 52.9818 Q1198.02 52.9818 1201.17 52.1542 Q1204.36 51.3267 1207.48 49.6716 L1207.48 55.2098 Q1204.33 56.5466 1201.02 57.2468 Q1197.71 57.947 1194.3 57.947 Q1185.77 57.947 1180.77 52.9818 Q1175.81 48.0165 1175.81 39.5501 Q1175.81 30.7973 1180.52 25.6729 Q1185.26 20.5167 1193.28 20.5167 Q1200.47 20.5167 1204.64 25.1636 Q1208.85 29.7788 1208.85 37.7359 M1202.99 36.0172 Q1202.93 31.2111 1200.28 28.3465 Q1197.67 25.4819 1193.34 25.4819 Q1188.44 25.4819 1185.48 28.251 Q1182.56 31.0201 1182.11 36.049 L1202.99 36.0172 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1237.71 22.4264 L1237.71 27.9645 Q1235.23 26.6914 1232.56 26.0548 Q1229.88 25.4183 1227.02 25.4183 Q1222.66 25.4183 1220.46 26.7551 Q1218.3 28.0919 1218.3 30.7655 Q1218.3 32.8025 1219.86 33.9801 Q1221.42 35.126 1226.13 36.1763 L1228.13 36.6219 Q1234.37 37.9587 1236.98 40.4095 Q1239.62 42.8285 1239.62 47.189 Q1239.62 52.1542 1235.68 55.0506 Q1231.76 57.947 1224.89 57.947 Q1222.02 57.947 1218.9 57.3741 Q1215.82 56.833 1212.38 55.719 L1212.38 49.6716 Q1215.62 51.3585 1218.78 52.2179 Q1221.93 53.0454 1225.01 53.0454 Q1229.15 53.0454 1231.38 51.645 Q1233.61 50.2127 1233.61 47.6346 Q1233.61 45.2474 1231.98 43.9743 Q1230.39 42.7012 1224.95 41.5235 L1222.91 41.0461 Q1217.47 39.9002 1215.05 37.5449 Q1212.63 35.1578 1212.63 31.0201 Q1212.63 25.9912 1216.2 23.2539 Q1219.76 20.5167 1226.32 20.5167 Q1229.57 20.5167 1232.43 20.9941 Q1235.29 21.4715 1237.71 22.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1251.56 11.2546 L1251.56 21.376 L1263.62 21.376 L1263.62 25.9275 L1251.56 25.9275 L1251.56 45.2793 Q1251.56 49.6398 1252.74 50.8811 Q1253.95 52.1224 1257.61 52.1224 L1263.62 52.1224 L1263.62 57.024 L1257.61 57.024 Q1250.83 57.024 1248.25 54.5095 Q1245.67 51.9633 1245.67 45.2793 L1245.67 25.9275 L1241.37 25.9275 L1241.37 21.376 L1245.67 21.376 L1245.67 11.2546 L1251.56 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1296.85 67.8457 L1296.85 72.3972 L1262.99 72.3972 L1262.99 67.8457 L1296.85 67.8457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1316.81 25.4819 Q1312.1 25.4819 1309.36 29.174 Q1306.62 32.8343 1306.62 39.2318 Q1306.62 45.6294 1309.33 49.3215 Q1312.07 52.9818 1316.81 52.9818 Q1321.49 52.9818 1324.22 49.2897 Q1326.96 45.5976 1326.96 39.2318 Q1326.96 32.898 1324.22 29.2059 Q1321.49 25.4819 1316.81 25.4819 M1316.81 20.5167 Q1324.45 20.5167 1328.81 25.4819 Q1333.17 30.4472 1333.17 39.2318 Q1333.17 47.9847 1328.81 52.9818 Q1324.45 57.947 1316.81 57.947 Q1309.14 57.947 1304.78 52.9818 Q1300.45 47.9847 1300.45 39.2318 Q1300.45 30.4472 1304.78 25.4819 Q1309.14 20.5167 1316.81 20.5167 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1344.98 51.6768 L1344.98 70.583 L1339.09 70.583 L1339.09 21.376 L1344.98 21.376 L1344.98 26.7869 Q1346.82 23.604 1349.62 22.0763 Q1352.46 20.5167 1356.37 20.5167 Q1362.86 20.5167 1366.91 25.6729 Q1370.98 30.8291 1370.98 39.2318 Q1370.98 47.6346 1366.91 52.7908 Q1362.86 57.947 1356.37 57.947 Q1352.46 57.947 1349.62 56.4193 Q1346.82 54.8597 1344.98 51.6768 M1364.9 39.2318 Q1364.9 32.7707 1362.23 29.1104 Q1359.59 25.4183 1354.94 25.4183 Q1350.29 25.4183 1347.62 29.1104 Q1344.98 32.7707 1344.98 39.2318 Q1344.98 45.693 1347.62 49.3852 Q1350.29 53.0454 1354.94 53.0454 Q1359.59 53.0454 1362.23 49.3852 Q1364.9 45.693 1364.9 39.2318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1382.92 11.2546 L1382.92 21.376 L1394.98 21.376 L1394.98 25.9275 L1382.92 25.9275 L1382.92 45.2793 Q1382.92 49.6398 1384.09 50.8811 Q1385.3 52.1224 1388.96 52.1224 L1394.98 52.1224 L1394.98 57.024 L1388.96 57.024 Q1382.18 57.024 1379.61 54.5095 Q1377.03 51.9633 1377.03 45.2793 L1377.03 25.9275 L1372.73 25.9275 L1372.73 21.376 L1377.03 21.376 L1377.03 11.2546 L1382.92 11.2546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1401.12 21.376 L1406.98 21.376 L1406.98 57.024 L1401.12 57.024 L1401.12 21.376 M1401.12 7.4988 L1406.98 7.4988 L1406.98 14.9149 L1401.12 14.9149 L1401.12 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1440.88 28.2192 Q1443.07 24.2724 1446.13 22.3946 Q1449.18 20.5167 1453.32 20.5167 Q1458.89 20.5167 1461.91 24.4316 Q1464.94 28.3147 1464.94 35.5079 L1464.94 57.024 L1459.05 57.024 L1459.05 35.6989 Q1459.05 30.5745 1457.24 28.0919 Q1455.42 25.6092 1451.7 25.6092 Q1447.15 25.6092 1444.5 28.6329 Q1441.86 31.6567 1441.86 36.8765 L1441.86 57.024 L1435.97 57.024 L1435.97 35.6989 Q1435.97 30.5427 1434.16 28.0919 Q1432.35 25.6092 1428.56 25.6092 Q1424.07 25.6092 1421.43 28.6648 Q1418.79 31.6885 1418.79 36.8765 L1418.79 57.024 L1412.9 57.024 L1412.9 21.376 L1418.79 21.376 L1418.79 26.9142 Q1420.79 23.6359 1423.59 22.0763 Q1426.39 20.5167 1430.24 20.5167 Q1434.13 20.5167 1436.83 22.49 Q1439.57 24.4634 1440.88 28.2192 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1487.28 39.1045 Q1480.18 39.1045 1477.45 40.7278 Q1474.71 42.351 1474.71 46.266 Q1474.71 49.3852 1476.75 51.2312 Q1478.82 53.0454 1482.35 53.0454 Q1487.22 53.0454 1490.15 49.608 Q1493.11 46.1386 1493.11 40.4095 L1493.11 39.1045 L1487.28 39.1045 M1498.96 36.6856 L1498.96 57.024 L1493.11 57.024 L1493.11 51.6131 Q1491.1 54.8597 1488.11 56.4193 Q1485.12 57.947 1480.79 57.947 Q1475.31 57.947 1472.07 54.8915 Q1468.85 51.8041 1468.85 46.6479 Q1468.85 40.6323 1472.86 37.5768 Q1476.91 34.5212 1484.89 34.5212 L1493.11 34.5212 L1493.11 33.9483 Q1493.11 29.9061 1490.43 27.7099 Q1487.79 25.4819 1482.98 25.4819 Q1479.93 25.4819 1477.03 26.214 Q1474.14 26.946 1471.46 28.4101 L1471.46 22.9993 Q1474.68 21.758 1477.7 21.1532 Q1480.72 20.5167 1483.59 20.5167 Q1491.32 20.5167 1495.14 24.5271 Q1498.96 28.5375 1498.96 36.6856 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1505.11 7.4988 L1510.96 7.4988 L1510.96 57.024 L1505.11 57.024 L1505.11 7.4988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M 0 0 M1516.18 7.56246 L1521.27 7.56246 Q1526.05 15.074 1528.4 22.2672 Q1530.79 29.4605 1530.79 36.5583 Q1530.79 43.6878 1528.4 50.9129 Q1526.05 58.138 1521.27 65.6177 L1516.18 65.6177 Q1520.41 58.329 1522.48 51.1357 Q1524.58 43.9106 1524.58 36.5583 Q1524.58 29.2059 1522.48 22.0444 Q1520.41 14.883 1516.18 7.56246 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip122)\" d=\"\nM274.235 1455.37 L274.235 1455.9 L287.114 1455.9 L287.114 1455.37 L274.235 1455.37 L274.235 1455.37 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 274.235,1455.37 274.235,1455.9 287.114,1455.9 287.114,1455.37 274.235,1455.37 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM287.114 1455.9 L287.114 1455.9 L299.993 1455.9 L299.993 1455.9 L287.114 1455.9 L287.114 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 287.114,1455.9 287.114,1455.9 299.993,1455.9 287.114,1455.9 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM299.993 1455.9 L299.993 1455.9 L312.871 1455.9 L312.871 1455.9 L299.993 1455.9 L299.993 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 299.993,1455.9 299.993,1455.9 312.871,1455.9 299.993,1455.9 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM312.871 1455.37 L312.871 1455.9 L325.75 1455.9 L325.75 1455.37 L312.871 1455.37 L312.871 1455.37 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 312.871,1455.37 312.871,1455.9 325.75,1455.9 325.75,1455.37 312.871,1455.37 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM325.75 1454.83 L325.75 1455.9 L338.628 1455.9 L338.628 1454.83 L325.75 1454.83 L325.75 1454.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 325.75,1454.83 325.75,1455.9 338.628,1455.9 338.628,1454.83 325.75,1454.83 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM338.628 1455.37 L338.628 1455.9 L351.507 1455.9 L351.507 1455.37 L338.628 1455.37 L338.628 1455.37 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 338.628,1455.37 338.628,1455.9 351.507,1455.9 351.507,1455.37 338.628,1455.37 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM351.507 1455.9 L351.507 1455.9 L364.385 1455.9 L364.385 1455.9 L351.507 1455.9 L351.507 1455.9 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 351.507,1455.9 351.507,1455.9 364.385,1455.9 351.507,1455.9 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM364.385 1453.76 L364.385 1455.9 L377.264 1455.9 L377.264 1453.76 L364.385 1453.76 L364.385 1453.76 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 364.385,1453.76 364.385,1455.9 377.264,1455.9 377.264,1453.76 364.385,1453.76 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM377.264 1455.37 L377.264 1455.9 L390.143 1455.9 L390.143 1455.37 L377.264 1455.37 L377.264 1455.37 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 377.264,1455.37 377.264,1455.9 390.143,1455.9 390.143,1455.37 377.264,1455.37 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM390.143 1454.29 L390.143 1455.9 L403.021 1455.9 L403.021 1454.29 L390.143 1454.29 L390.143 1454.29 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 390.143,1454.29 390.143,1455.9 403.021,1455.9 403.021,1454.29 390.143,1454.29 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM403.021 1454.83 L403.021 1455.9 L415.9 1455.9 L415.9 1454.83 L403.021 1454.83 L403.021 1454.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 403.021,1454.83 403.021,1455.9 415.9,1455.9 415.9,1454.83 403.021,1454.83 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM415.9 1452.68 L415.9 1455.9 L428.778 1455.9 L428.778 1452.68 L415.9 1452.68 L415.9 1452.68 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 415.9,1452.68 415.9,1455.9 428.778,1455.9 428.778,1452.68 415.9,1452.68 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM428.778 1452.68 L428.778 1455.9 L441.657 1455.9 L441.657 1452.68 L428.778 1452.68 L428.778 1452.68 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 428.778,1452.68 428.778,1455.9 441.657,1455.9 441.657,1452.68 428.778,1452.68 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM441.657 1454.29 L441.657 1455.9 L454.536 1455.9 L454.536 1454.29 L441.657 1454.29 L441.657 1454.29 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 441.657,1454.29 441.657,1455.9 454.536,1455.9 454.536,1454.29 441.657,1454.29 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM454.536 1451.61 L454.536 1455.9 L467.414 1455.9 L467.414 1451.61 L454.536 1451.61 L454.536 1451.61 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 454.536,1451.61 454.536,1455.9 467.414,1455.9 467.414,1451.61 454.536,1451.61 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM467.414 1452.68 L467.414 1455.9 L480.293 1455.9 L480.293 1452.68 L467.414 1452.68 L467.414 1452.68 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 467.414,1452.68 467.414,1455.9 480.293,1455.9 480.293,1452.68 467.414,1452.68 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM480.293 1450.54 L480.293 1455.9 L493.171 1455.9 L493.171 1450.54 L480.293 1450.54 L480.293 1450.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 480.293,1450.54 480.293,1455.9 493.171,1455.9 493.171,1450.54 480.293,1450.54 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM493.171 1448.39 L493.171 1455.9 L506.05 1455.9 L506.05 1448.39 L493.171 1448.39 L493.171 1448.39 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 493.171,1448.39 493.171,1455.9 506.05,1455.9 506.05,1448.39 493.171,1448.39 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM506.05 1445.71 L506.05 1455.9 L518.928 1455.9 L518.928 1445.71 L506.05 1445.71 L506.05 1445.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 506.05,1445.71 506.05,1455.9 518.928,1455.9 518.928,1445.71 506.05,1445.71 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM518.928 1438.21 L518.928 1455.9 L531.807 1455.9 L531.807 1438.21 L518.928 1438.21 L518.928 1438.21 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 518.928,1438.21 518.928,1455.9 531.807,1455.9 531.807,1438.21 518.928,1438.21 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM531.807 1443.03 L531.807 1455.9 L544.686 1455.9 L544.686 1443.03 L531.807 1443.03 L531.807 1443.03 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 531.807,1443.03 531.807,1455.9 544.686,1455.9 544.686,1443.03 531.807,1443.03 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM544.686 1444.64 L544.686 1455.9 L557.564 1455.9 L557.564 1444.64 L544.686 1444.64 L544.686 1444.64 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 544.686,1444.64 544.686,1455.9 557.564,1455.9 557.564,1444.64 544.686,1444.64 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM557.564 1437.67 L557.564 1455.9 L570.443 1455.9 L570.443 1437.67 L557.564 1437.67 L557.564 1437.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 557.564,1437.67 557.564,1455.9 570.443,1455.9 570.443,1437.67 557.564,1437.67 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM570.443 1436.06 L570.443 1455.9 L583.321 1455.9 L583.321 1436.06 L570.443 1436.06 L570.443 1436.06 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 570.443,1436.06 570.443,1455.9 583.321,1455.9 583.321,1436.06 570.443,1436.06 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM583.321 1430.16 L583.321 1455.9 L596.2 1455.9 L596.2 1430.16 L583.321 1430.16 L583.321 1430.16 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 583.321,1430.16 583.321,1455.9 596.2,1455.9 596.2,1430.16 583.321,1430.16 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM596.2 1417.83 L596.2 1455.9 L609.078 1455.9 L609.078 1417.83 L596.2 1417.83 L596.2 1417.83 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 596.2,1417.83 596.2,1455.9 609.078,1455.9 609.078,1417.83 596.2,1417.83 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM609.078 1419.98 L609.078 1455.9 L621.957 1455.9 L621.957 1419.98 L609.078 1419.98 L609.078 1419.98 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 609.078,1419.98 609.078,1455.9 621.957,1455.9 621.957,1419.98 609.078,1419.98 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM621.957 1409.79 L621.957 1455.9 L634.836 1455.9 L634.836 1409.79 L621.957 1409.79 L621.957 1409.79 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 621.957,1409.79 621.957,1455.9 634.836,1455.9 634.836,1409.79 621.957,1409.79 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM634.836 1396.92 L634.836 1455.9 L647.714 1455.9 L647.714 1396.92 L634.836 1396.92 L634.836 1396.92 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 634.836,1396.92 634.836,1455.9 647.714,1455.9 647.714,1396.92 634.836,1396.92 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM647.714 1400.14 L647.714 1455.9 L660.593 1455.9 L660.593 1400.14 L647.714 1400.14 L647.714 1400.14 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 647.714,1400.14 647.714,1455.9 660.593,1455.9 660.593,1400.14 647.714,1400.14 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM660.593 1385.12 L660.593 1455.9 L673.471 1455.9 L673.471 1385.12 L660.593 1385.12 L660.593 1385.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 660.593,1385.12 660.593,1455.9 673.471,1455.9 673.471,1385.12 660.593,1385.12 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM673.471 1385.12 L673.471 1455.9 L686.35 1455.9 L686.35 1385.12 L673.471 1385.12 L673.471 1385.12 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 673.471,1385.12 673.471,1455.9 686.35,1455.9 686.35,1385.12 673.471,1385.12 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM686.35 1369.04 L686.35 1455.9 L699.229 1455.9 L699.229 1369.04 L686.35 1369.04 L686.35 1369.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 686.35,1369.04 686.35,1455.9 699.229,1455.9 699.229,1369.04 686.35,1369.04 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM699.229 1339.01 L699.229 1455.9 L712.107 1455.9 L712.107 1339.01 L699.229 1339.01 L699.229 1339.01 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 699.229,1339.01 699.229,1455.9 712.107,1455.9 712.107,1339.01 699.229,1339.01 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM712.107 1321.85 L712.107 1455.9 L724.986 1455.9 L724.986 1321.85 L712.107 1321.85 L712.107 1321.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 712.107,1321.85 712.107,1455.9 724.986,1455.9 724.986,1321.85 712.107,1321.85 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM724.986 1300.4 L724.986 1455.9 L737.864 1455.9 L737.864 1300.4 L724.986 1300.4 L724.986 1300.4 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 724.986,1300.4 724.986,1455.9 737.864,1455.9 737.864,1300.4 724.986,1300.4 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM737.864 1305.23 L737.864 1455.9 L750.743 1455.9 L750.743 1305.23 L737.864 1305.23 L737.864 1305.23 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 737.864,1305.23 737.864,1455.9 750.743,1455.9 750.743,1305.23 737.864,1305.23 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM750.743 1282.71 L750.743 1455.9 L763.621 1455.9 L763.621 1282.71 L750.743 1282.71 L750.743 1282.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 750.743,1282.71 750.743,1455.9 763.621,1455.9 763.621,1282.71 750.743,1282.71 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM763.621 1248.93 L763.621 1455.9 L776.5 1455.9 L776.5 1248.93 L763.621 1248.93 L763.621 1248.93 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 763.621,1248.93 763.621,1455.9 776.5,1455.9 776.5,1248.93 763.621,1248.93 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM776.5 1216.75 L776.5 1455.9 L789.379 1455.9 L789.379 1216.75 L776.5 1216.75 L776.5 1216.75 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 776.5,1216.75 776.5,1455.9 789.379,1455.9 789.379,1216.75 776.5,1216.75 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM789.379 1182.97 L789.379 1455.9 L802.257 1455.9 L802.257 1182.97 L789.379 1182.97 L789.379 1182.97 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 789.379,1182.97 789.379,1455.9 802.257,1455.9 802.257,1182.97 789.379,1182.97 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM802.257 1176 L802.257 1455.9 L815.136 1455.9 L815.136 1176 L802.257 1176 L802.257 1176 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 802.257,1176 802.257,1455.9 815.136,1455.9 815.136,1176 802.257,1176 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM815.136 1121.84 L815.136 1455.9 L828.014 1455.9 L828.014 1121.84 L815.136 1121.84 L815.136 1121.84 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 815.136,1121.84 815.136,1455.9 828.014,1455.9 828.014,1121.84 815.136,1121.84 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM828.014 1111.66 L828.014 1455.9 L840.893 1455.9 L840.893 1111.66 L828.014 1111.66 L828.014 1111.66 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 828.014,1111.66 828.014,1455.9 840.893,1455.9 840.893,1111.66 828.014,1111.66 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM840.893 1059.11 L840.893 1455.9 L853.772 1455.9 L853.772 1059.11 L840.893 1059.11 L840.893 1059.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 840.893,1059.11 840.893,1455.9 853.772,1455.9 853.772,1059.11 840.893,1059.11 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM853.772 1047.85 L853.772 1455.9 L866.65 1455.9 L866.65 1047.85 L853.772 1047.85 L853.772 1047.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 853.772,1047.85 853.772,1455.9 866.65,1455.9 866.65,1047.85 853.772,1047.85 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM866.65 966.344 L866.65 1455.9 L879.529 1455.9 L879.529 966.344 L866.65 966.344 L866.65 966.344 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 866.65,966.344 866.65,1455.9 879.529,1455.9 879.529,966.344 866.65,966.344 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM879.529 956.156 L879.529 1455.9 L892.407 1455.9 L892.407 956.156 L879.529 956.156 L879.529 956.156 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 879.529,956.156 879.529,1455.9 892.407,1455.9 892.407,956.156 879.529,956.156 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM892.407 908.433 L892.407 1455.9 L905.286 1455.9 L905.286 908.433 L892.407 908.433 L892.407 908.433 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 892.407,908.433 892.407,1455.9 905.286,1455.9 905.286,908.433 892.407,908.433 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM905.286 879.478 L905.286 1455.9 L918.164 1455.9 L918.164 879.478 L905.286 879.478 L905.286 879.478 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 905.286,879.478 905.286,1455.9 918.164,1455.9 918.164,879.478 905.286,879.478 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM918.164 811.379 L918.164 1455.9 L931.043 1455.9 L931.043 811.379 L918.164 811.379 L918.164 811.379 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 918.164,811.379 918.164,1455.9 931.043,1455.9 931.043,811.379 918.164,811.379 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM931.043 761.512 L931.043 1455.9 L943.922 1455.9 L943.922 761.512 L931.043 761.512 L931.043 761.512 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 931.043,761.512 931.043,1455.9 943.922,1455.9 943.922,761.512 931.043,761.512 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM943.922 735.238 L943.922 1455.9 L956.8 1455.9 L956.8 735.238 L943.922 735.238 L943.922 735.238 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 943.922,735.238 943.922,1455.9 956.8,1455.9 956.8,735.238 943.922,735.238 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM956.8 669.284 L956.8 1455.9 L969.679 1455.9 L969.679 669.284 L956.8 669.284 L956.8 669.284 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 956.8,669.284 956.8,1455.9 969.679,1455.9 969.679,669.284 956.8,669.284 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM969.679 617.272 L969.679 1455.9 L982.557 1455.9 L982.557 617.272 L969.679 617.272 L969.679 617.272 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 969.679,617.272 969.679,1455.9 982.557,1455.9 982.557,617.272 969.679,617.272 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM982.557 599.577 L982.557 1455.9 L995.436 1455.9 L995.436 599.577 L982.557 599.577 L982.557 599.577 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 982.557,599.577 982.557,1455.9 995.436,1455.9 995.436,599.577 982.557,599.577 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM995.436 573.303 L995.436 1455.9 L1008.31 1455.9 L1008.31 573.303 L995.436 573.303 L995.436 573.303 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 995.436,573.303 995.436,1455.9 1008.31,1455.9 1008.31,573.303 995.436,573.303 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1008.31 455.873 L1008.31 1455.9 L1021.19 1455.9 L1021.19 455.873 L1008.31 455.873 L1008.31 455.873 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1008.31,455.873 1008.31,1455.9 1021.19,1455.9 1021.19,455.873 1008.31,455.873 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1021.19 431.208 L1021.19 1455.9 L1034.07 1455.9 L1034.07 431.208 L1021.19 431.208 L1021.19 431.208 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1021.19,431.208 1021.19,1455.9 1034.07,1455.9 1034.07,431.208 1021.19,431.208 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1034.07 439.251 L1034.07 1455.9 L1046.95 1455.9 L1046.95 439.251 L1034.07 439.251 L1034.07 439.251 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1034.07,439.251 1034.07,1455.9 1046.95,1455.9 1046.95,439.251 1034.07,439.251 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1046.95 366.326 L1046.95 1455.9 L1059.83 1455.9 L1059.83 366.326 L1046.95 366.326 L1046.95 366.326 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1046.95,366.326 1046.95,1455.9 1059.83,1455.9 1059.83,366.326 1046.95,366.326 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1059.83 305.735 L1059.83 1455.9 L1072.71 1455.9 L1072.71 305.735 L1059.83 305.735 L1059.83 305.735 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1059.83,305.735 1059.83,1455.9 1072.71,1455.9 1072.71,305.735 1059.83,305.735 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1072.71 263.911 L1072.71 1455.9 L1085.59 1455.9 L1085.59 263.911 L1072.71 263.911 L1072.71 263.911 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1072.71,263.911 1072.71,1455.9 1085.59,1455.9 1085.59,263.911 1072.71,263.911 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1085.59 299.837 L1085.59 1455.9 L1098.46 1455.9 L1098.46 299.837 L1085.59 299.837 L1085.59 299.837 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1085.59,299.837 1085.59,1455.9 1098.46,1455.9 1098.46,299.837 1085.59,299.837 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1098.46 236.564 L1098.46 1455.9 L1111.34 1455.9 L1111.34 236.564 L1098.46 236.564 L1098.46 236.564 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1098.46,236.564 1098.46,1455.9 1111.34,1455.9 1111.34,236.564 1098.46,236.564 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1111.34 254.795 L1111.34 1455.9 L1124.22 1455.9 L1124.22 254.795 L1111.34 254.795 L1111.34 254.795 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1111.34,254.795 1111.34,1455.9 1124.22,1455.9 1124.22,254.795 1111.34,254.795 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1124.22 249.433 L1124.22 1455.9 L1137.1 1455.9 L1137.1 249.433 L1124.22 249.433 L1124.22 249.433 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1124.22,249.433 1124.22,1455.9 1137.1,1455.9 1137.1,249.433 1124.22,249.433 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1137.1 206 L1137.1 1455.9 L1149.98 1455.9 L1149.98 206 L1137.1 206 L1137.1 206 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1137.1,206 1137.1,1455.9 1149.98,1455.9 1149.98,206 1137.1,206 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1149.98 270.881 L1149.98 1455.9 L1162.86 1455.9 L1162.86 270.881 L1149.98 270.881 L1149.98 270.881 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1149.98,270.881 1149.98,1455.9 1162.86,1455.9 1162.86,270.881 1149.98,270.881 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1162.86 159.886 L1162.86 1455.9 L1175.74 1455.9 L1175.74 159.886 L1162.86 159.886 L1162.86 159.886 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1162.86,159.886 1162.86,1455.9 1175.74,1455.9 1175.74,159.886 1162.86,159.886 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1175.74 149.698 L1175.74 1455.9 L1188.61 1455.9 L1188.61 149.698 L1175.74 149.698 L1175.74 149.698 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1175.74,149.698 1175.74,1455.9 1188.61,1455.9 1188.61,149.698 1175.74,149.698 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1188.61 152.915 L1188.61 1455.9 L1201.49 1455.9 L1201.49 152.915 L1188.61 152.915 L1188.61 152.915 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1188.61,152.915 1188.61,1455.9 1201.49,1455.9 1201.49,152.915 1188.61,152.915 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1201.49 214.043 L1201.49 1455.9 L1214.37 1455.9 L1214.37 214.043 L1201.49 214.043 L1201.49 214.043 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1201.49,214.043 1201.49,1455.9 1214.37,1455.9 1214.37,214.043 1201.49,214.043 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1214.37 217.26 L1214.37 1455.9 L1227.25 1455.9 L1227.25 217.26 L1214.37 217.26 L1214.37 217.26 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1214.37,217.26 1214.37,1455.9 1227.25,1455.9 1227.25,217.26 1214.37,217.26 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1227.25 227.448 L1227.25 1455.9 L1240.13 1455.9 L1240.13 227.448 L1227.25 227.448 L1227.25 227.448 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1227.25,227.448 1227.25,1455.9 1240.13,1455.9 1240.13,227.448 1227.25,227.448 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1240.13 286.431 L1240.13 1455.9 L1253.01 1455.9 L1253.01 286.431 L1240.13 286.431 L1240.13 286.431 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1240.13,286.431 1240.13,1455.9 1253.01,1455.9 1253.01,286.431 1240.13,286.431 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1253.01 285.359 L1253.01 1455.9 L1265.89 1455.9 L1265.89 285.359 L1253.01 285.359 L1253.01 285.359 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1253.01,285.359 1253.01,1455.9 1265.89,1455.9 1265.89,285.359 1253.01,285.359 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1265.89 277.852 L1265.89 1455.9 L1278.76 1455.9 L1278.76 277.852 L1265.89 277.852 L1265.89 277.852 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1265.89,277.852 1265.89,1455.9 1278.76,1455.9 1278.76,277.852 1265.89,277.852 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1278.76 349.168 L1278.76 1455.9 L1291.64 1455.9 L1291.64 349.168 L1278.76 349.168 L1278.76 349.168 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1278.76,349.168 1278.76,1455.9 1291.64,1455.9 1291.64,349.168 1278.76,349.168 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1291.64 436.57 L1291.64 1455.9 L1304.52 1455.9 L1304.52 436.57 L1291.64 436.57 L1291.64 436.57 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1291.64,436.57 1291.64,1455.9 1304.52,1455.9 1304.52,436.57 1291.64,436.57 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1304.52 394.209 L1304.52 1455.9 L1317.4 1455.9 L1317.4 394.209 L1304.52 394.209 L1304.52 394.209 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1304.52,394.209 1304.52,1455.9 1317.4,1455.9 1317.4,394.209 1304.52,394.209 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1317.4 414.585 L1317.4 1455.9 L1330.28 1455.9 L1330.28 414.585 L1317.4 414.585 L1317.4 414.585 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"0.3\"/>\n<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-width:4.8; stroke-opacity:0.3; fill:none\" points=\"\n 1317.4,414.585 1317.4,1455.9 1330.28,1455.9 1330.28,414.585 1317.4,414.585 \n \"/>\n<path clip-path=\"url(#clip122)\" d=\"\nM1330.28 517.537 L1330.28 1455.9 L1343.16 1455.9 L1343.16 517.537 L1330.28 517.537 L1330.28 517.537 Z\n \" f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment