Skip to content

Instantly share code, notes, and snippets.

@takahashi-r
Created October 29, 2021 00:09
Show Gist options
  • Save takahashi-r/cc5df7c8dca2390e47331a28909358f8 to your computer and use it in GitHub Desktop.
Save takahashi-r/cc5df7c8dca2390e47331a28909358f8 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 44,
"id": "94e6b206",
"metadata": {},
"outputs": [],
"source": [
"using CSV\n",
"using DataFrames\n",
"\n",
"using Plots\n",
"using Plots.PlotMeasures\n",
"using StatsPlots\n",
"\n",
"using Distributions\n",
"using LinearAlgebra\n",
"\n",
"using HypothesisTests"
]
},
{
"cell_type": "code",
"execution_count": 45,
"id": "b354b0c4",
"metadata": {},
"outputs": [],
"source": [
"using Revise\n",
"\n",
"using TimeSeriesAnalisis"
]
},
{
"cell_type": "markdown",
"id": "59370b9e",
"metadata": {},
"source": [
"# 新日本科学"
]
},
{
"cell_type": "code",
"execution_count": 46,
"id": "f5594393",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"df = CSV.read(\"../stock price/2395-20191001-2021001.csv\", DataFrame);"
]
},
{
"cell_type": "code",
"execution_count": 47,
"id": "1dbe1361",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<table class=\"data-frame\"><thead><tr><th></th><th>variable</th><th>mean</th><th>min</th><th>median</th><th>max</th><th>nmissing</th><th>eltype</th></tr><tr><th></th><th>Symbol</th><th>Union…</th><th>Any</th><th>Union…</th><th>Any</th><th>Int64</th><th>DataType</th></tr></thead><tbody><p>7 rows × 7 columns</p><tr><th>1</th><td>Date</td><td></td><td>2019-10-01</td><td></td><td>2021-10-01</td><td>0</td><td>Date</td></tr><tr><th>2</th><td>High</td><td>723.71</td><td>445.0</td><td>699.0</td><td>1122.0</td><td>0</td><td>Float64</td></tr><tr><th>3</th><td>Low</td><td>700.183</td><td>411.0</td><td>678.0</td><td>1071.0</td><td>0</td><td>Float64</td></tr><tr><th>4</th><td>Open</td><td>711.951</td><td>423.0</td><td>690.0</td><td>1116.0</td><td>0</td><td>Float64</td></tr><tr><th>5</th><td>Close</td><td>712.117</td><td>430.0</td><td>687.0</td><td>1106.0</td><td>0</td><td>Float64</td></tr><tr><th>6</th><td>Volume</td><td>6.40198e5</td><td>79400.0</td><td>354500.0</td><td>1.56871e7</td><td>0</td><td>Float64</td></tr><tr><th>7</th><td>Adj Close</td><td>703.658</td><td>419.938</td><td>677.241</td><td>1106.0</td><td>0</td><td>Float64</td></tr></tbody></table>"
],
"text/latex": [
"\\begin{tabular}{r|ccccccc}\n",
"\t& variable & mean & min & median & max & nmissing & eltype\\\\\n",
"\t\\hline\n",
"\t& Symbol & Union… & Any & Union… & Any & Int64 & DataType\\\\\n",
"\t\\hline\n",
"\t1 & Date & & 2019-10-01 & & 2021-10-01 & 0 & Date \\\\\n",
"\t2 & High & 723.71 & 445.0 & 699.0 & 1122.0 & 0 & Float64 \\\\\n",
"\t3 & Low & 700.183 & 411.0 & 678.0 & 1071.0 & 0 & Float64 \\\\\n",
"\t4 & Open & 711.951 & 423.0 & 690.0 & 1116.0 & 0 & Float64 \\\\\n",
"\t5 & Close & 712.117 & 430.0 & 687.0 & 1106.0 & 0 & Float64 \\\\\n",
"\t6 & Volume & 6.40198e5 & 79400.0 & 354500.0 & 1.56871e7 & 0 & Float64 \\\\\n",
"\t7 & Adj Close & 703.658 & 419.938 & 677.241 & 1106.0 & 0 & Float64 \\\\\n",
"\\end{tabular}\n"
],
"text/plain": [
"\u001b[1m7×7 DataFrame\u001b[0m\n",
"\u001b[1m Row \u001b[0m│\u001b[1m variable \u001b[0m\u001b[1m mean \u001b[0m\u001b[1m min \u001b[0m\u001b[1m median \u001b[0m\u001b[1m max \u001b[0m\u001b[1m nmissing \u001b[0m\u001b[1m eltyp\u001b[0m ⋯\n",
"\u001b[1m \u001b[0m│\u001b[90m Symbol \u001b[0m\u001b[90m Union… \u001b[0m\u001b[90m Any \u001b[0m\u001b[90m Union… \u001b[0m\u001b[90m Any \u001b[0m\u001b[90m Int64 \u001b[0m\u001b[90m DataT\u001b[0m ⋯\n",
"─────┼──────────────────────────────────────────────────────────────────────────\n",
" 1 │ Date \u001b[90m \u001b[0m 2019-10-01 \u001b[90m \u001b[0m 2021-10-01 0 Date ⋯\n",
" 2 │ High 723.71 445.0 699.0 1122.0 0 Float\n",
" 3 │ Low 700.183 411.0 678.0 1071.0 0 Float\n",
" 4 │ Open 711.951 423.0 690.0 1116.0 0 Float\n",
" 5 │ Close 712.117 430.0 687.0 1106.0 0 Float ⋯\n",
" 6 │ Volume 6.40198e5 79400.0 354500.0 1.56871e7 0 Float\n",
" 7 │ Adj Close 703.658 419.938 677.241 1106.0 0 Float\n",
"\u001b[36m 1 column omitted\u001b[0m"
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"describe(df)"
]
},
{
"cell_type": "code",
"execution_count": 48,
"id": "0ef55c4b",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(487, 7)"
]
},
"execution_count": 48,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"size(df)"
]
},
{
"cell_type": "code",
"execution_count": 49,
"id": "b2d544c5",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip830\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip830)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip831\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip830)\" d=\"\n",
"M199.283 1486.45 L2352.76 1486.45 L2352.76 47.2441 L199.283 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip832\">\n",
" <rect x=\"199\" y=\"47\" width=\"2154\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 515.915,1486.45 515.915,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1533.09,1486.45 1533.09,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 515.915,1486.45 515.915,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1533.09,1486.45 1533.09,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip830)\" d=\"M387.709 1543.18 L404.029 1543.18 L404.029 1547.12 L382.084 1547.12 L382.084 1543.18 Q384.746 1540.43 389.33 1535.8 Q393.936 1531.15 395.117 1529.81 Q397.362 1527.28 398.242 1525.55 Q399.145 1523.79 399.145 1522.1 Q399.145 1519.34 397.2 1517.61 Q395.279 1515.87 392.177 1515.87 Q389.978 1515.87 387.524 1516.63 Q385.094 1517.4 382.316 1518.95 L382.316 1514.23 Q385.14 1513.09 387.594 1512.51 Q390.047 1511.93 392.084 1511.93 Q397.455 1511.93 400.649 1514.62 Q403.844 1517.31 403.844 1521.8 Q403.844 1523.93 403.033 1525.85 Q402.246 1527.74 400.14 1530.34 Q399.561 1531.01 396.459 1534.23 Q393.358 1537.42 387.709 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M423.844 1515.64 Q420.232 1515.64 418.404 1519.2 Q416.598 1522.75 416.598 1529.87 Q416.598 1536.98 418.404 1540.55 Q420.232 1544.09 423.844 1544.09 Q427.478 1544.09 429.283 1540.55 Q431.112 1536.98 431.112 1529.87 Q431.112 1522.75 429.283 1519.2 Q427.478 1515.64 423.844 1515.64 M423.844 1511.93 Q429.654 1511.93 432.709 1516.54 Q435.788 1521.12 435.788 1529.87 Q435.788 1538.6 432.709 1543.21 Q429.654 1547.79 423.844 1547.79 Q418.033 1547.79 414.955 1543.21 Q411.899 1538.6 411.899 1529.87 Q411.899 1521.12 414.955 1516.54 Q418.033 1511.93 423.844 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M448.033 1543.18 L464.353 1543.18 L464.353 1547.12 L442.408 1547.12 L442.408 1543.18 Q445.07 1540.43 449.654 1535.8 Q454.26 1531.15 455.441 1529.81 Q457.686 1527.28 458.566 1525.55 Q459.468 1523.79 459.468 1522.1 Q459.468 1519.34 457.524 1517.61 Q455.603 1515.87 452.501 1515.87 Q450.302 1515.87 447.848 1516.63 Q445.417 1517.4 442.64 1518.95 L442.64 1514.23 Q445.464 1513.09 447.917 1512.51 Q450.371 1511.93 452.408 1511.93 Q457.779 1511.93 460.973 1514.62 Q464.167 1517.31 464.167 1521.8 Q464.167 1523.93 463.357 1525.85 Q462.57 1527.74 460.464 1530.34 Q459.885 1531.01 456.783 1534.23 Q453.681 1537.42 448.033 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M484.167 1515.64 Q480.556 1515.64 478.727 1519.2 Q476.922 1522.75 476.922 1529.87 Q476.922 1536.98 478.727 1540.55 Q480.556 1544.09 484.167 1544.09 Q487.801 1544.09 489.607 1540.55 Q491.436 1536.98 491.436 1529.87 Q491.436 1522.75 489.607 1519.2 Q487.801 1515.64 484.167 1515.64 M484.167 1511.93 Q489.977 1511.93 493.033 1516.54 Q496.112 1521.12 496.112 1529.87 Q496.112 1538.6 493.033 1543.21 Q489.977 1547.79 484.167 1547.79 Q478.357 1547.79 475.278 1543.21 Q472.223 1538.6 472.223 1529.87 Q472.223 1521.12 475.278 1516.54 Q478.357 1511.93 484.167 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M501.575 1532.24 L514.051 1532.24 L514.051 1536.03 L501.575 1536.03 L501.575 1532.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M531.436 1515.64 Q527.824 1515.64 525.996 1519.2 Q524.19 1522.75 524.19 1529.87 Q524.19 1536.98 525.996 1540.55 Q527.824 1544.09 531.436 1544.09 Q535.07 1544.09 536.875 1540.55 Q538.704 1536.98 538.704 1529.87 Q538.704 1522.75 536.875 1519.2 Q535.07 1515.64 531.436 1515.64 M531.436 1511.93 Q537.246 1511.93 540.301 1516.54 Q543.38 1521.12 543.38 1529.87 Q543.38 1538.6 540.301 1543.21 Q537.246 1547.79 531.436 1547.79 Q525.625 1547.79 522.547 1543.21 Q519.491 1538.6 519.491 1529.87 Q519.491 1521.12 522.547 1516.54 Q525.625 1511.93 531.436 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M552.408 1543.18 L560.046 1543.18 L560.046 1516.82 L551.736 1518.49 L551.736 1514.23 L560 1512.56 L564.676 1512.56 L564.676 1543.18 L572.315 1543.18 L572.315 1547.12 L552.408 1547.12 L552.408 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M579.005 1532.24 L591.481 1532.24 L591.481 1536.03 L579.005 1536.03 L579.005 1532.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M608.866 1515.64 Q605.255 1515.64 603.426 1519.2 Q601.62 1522.75 601.62 1529.87 Q601.62 1536.98 603.426 1540.55 Q605.255 1544.09 608.866 1544.09 Q612.5 1544.09 614.305 1540.55 Q616.134 1536.98 616.134 1529.87 Q616.134 1522.75 614.305 1519.2 Q612.5 1515.64 608.866 1515.64 M608.866 1511.93 Q614.676 1511.93 617.731 1516.54 Q620.81 1521.12 620.81 1529.87 Q620.81 1538.6 617.731 1543.21 Q614.676 1547.79 608.866 1547.79 Q603.056 1547.79 599.977 1543.21 Q596.921 1538.6 596.921 1529.87 Q596.921 1521.12 599.977 1516.54 Q603.056 1511.93 608.866 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M629.838 1543.18 L637.477 1543.18 L637.477 1516.82 L629.166 1518.49 L629.166 1514.23 L637.43 1512.56 L642.106 1512.56 L642.106 1543.18 L649.745 1543.18 L649.745 1547.12 L629.838 1547.12 L629.838 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1404.89 1543.18 L1421.21 1543.18 L1421.21 1547.12 L1399.26 1547.12 L1399.26 1543.18 Q1401.93 1540.43 1406.51 1535.8 Q1411.11 1531.15 1412.3 1529.81 Q1414.54 1527.28 1415.42 1525.55 Q1416.32 1523.79 1416.32 1522.1 Q1416.32 1519.34 1414.38 1517.61 Q1412.46 1515.87 1409.36 1515.87 Q1407.16 1515.87 1404.7 1516.63 Q1402.27 1517.4 1399.49 1518.95 L1399.49 1514.23 Q1402.32 1513.09 1404.77 1512.51 Q1407.23 1511.93 1409.26 1511.93 Q1414.63 1511.93 1417.83 1514.62 Q1421.02 1517.31 1421.02 1521.8 Q1421.02 1523.93 1420.21 1525.85 Q1419.43 1527.74 1417.32 1530.34 Q1416.74 1531.01 1413.64 1534.23 Q1410.54 1537.42 1404.89 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1441.02 1515.64 Q1437.41 1515.64 1435.58 1519.2 Q1433.78 1522.75 1433.78 1529.87 Q1433.78 1536.98 1435.58 1540.55 Q1437.41 1544.09 1441.02 1544.09 Q1444.66 1544.09 1446.46 1540.55 Q1448.29 1536.98 1448.29 1529.87 Q1448.29 1522.75 1446.46 1519.2 Q1444.66 1515.64 1441.02 1515.64 M1441.02 1511.93 Q1446.83 1511.93 1449.89 1516.54 Q1452.97 1521.12 1452.97 1529.87 Q1452.97 1538.6 1449.89 1543.21 Q1446.83 1547.79 1441.02 1547.79 Q1435.21 1547.79 1432.13 1543.21 Q1429.08 1538.6 1429.08 1529.87 Q1429.08 1521.12 1432.13 1516.54 Q1435.21 1511.93 1441.02 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1465.21 1543.18 L1481.53 1543.18 L1481.53 1547.12 L1459.59 1547.12 L1459.59 1543.18 Q1462.25 1540.43 1466.83 1535.8 Q1471.44 1531.15 1472.62 1529.81 Q1474.86 1527.28 1475.74 1525.55 Q1476.65 1523.79 1476.65 1522.1 Q1476.65 1519.34 1474.7 1517.61 Q1472.78 1515.87 1469.68 1515.87 Q1467.48 1515.87 1465.03 1516.63 Q1462.6 1517.4 1459.82 1518.95 L1459.82 1514.23 Q1462.64 1513.09 1465.1 1512.51 Q1467.55 1511.93 1469.59 1511.93 Q1474.96 1511.93 1478.15 1514.62 Q1481.35 1517.31 1481.35 1521.8 Q1481.35 1523.93 1480.54 1525.85 Q1479.75 1527.74 1477.64 1530.34 Q1477.06 1531.01 1473.96 1534.23 Q1470.86 1537.42 1465.21 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1492.16 1543.18 L1499.79 1543.18 L1499.79 1516.82 L1491.48 1518.49 L1491.48 1514.23 L1499.75 1512.56 L1504.42 1512.56 L1504.42 1543.18 L1512.06 1543.18 L1512.06 1547.12 L1492.16 1547.12 L1492.16 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1518.75 1532.24 L1531.23 1532.24 L1531.23 1536.03 L1518.75 1536.03 L1518.75 1532.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1548.61 1515.64 Q1545 1515.64 1543.17 1519.2 Q1541.37 1522.75 1541.37 1529.87 Q1541.37 1536.98 1543.17 1540.55 Q1545 1544.09 1548.61 1544.09 Q1552.25 1544.09 1554.05 1540.55 Q1555.88 1536.98 1555.88 1529.87 Q1555.88 1522.75 1554.05 1519.2 Q1552.25 1515.64 1548.61 1515.64 M1548.61 1511.93 Q1554.42 1511.93 1557.48 1516.54 Q1560.56 1521.12 1560.56 1529.87 Q1560.56 1538.6 1557.48 1543.21 Q1554.42 1547.79 1548.61 1547.79 Q1542.8 1547.79 1539.73 1543.21 Q1536.67 1538.6 1536.67 1529.87 Q1536.67 1521.12 1539.73 1516.54 Q1542.8 1511.93 1548.61 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1569.59 1543.18 L1577.23 1543.18 L1577.23 1516.82 L1568.91 1518.49 L1568.91 1514.23 L1577.18 1512.56 L1581.85 1512.56 L1581.85 1543.18 L1589.49 1543.18 L1589.49 1547.12 L1569.59 1547.12 L1569.59 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1596.18 1532.24 L1608.66 1532.24 L1608.66 1536.03 L1596.18 1536.03 L1596.18 1532.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1626.04 1515.64 Q1622.43 1515.64 1620.6 1519.2 Q1618.8 1522.75 1618.8 1529.87 Q1618.8 1536.98 1620.6 1540.55 Q1622.43 1544.09 1626.04 1544.09 Q1629.68 1544.09 1631.48 1540.55 Q1633.31 1536.98 1633.31 1529.87 Q1633.31 1522.75 1631.48 1519.2 Q1629.68 1515.64 1626.04 1515.64 M1626.04 1511.93 Q1631.85 1511.93 1634.91 1516.54 Q1637.99 1521.12 1637.99 1529.87 Q1637.99 1538.6 1634.91 1543.21 Q1631.85 1547.79 1626.04 1547.79 Q1620.23 1547.79 1617.16 1543.21 Q1614.1 1538.6 1614.1 1529.87 Q1614.1 1521.12 1617.16 1516.54 Q1620.23 1511.93 1626.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M1647.02 1543.18 L1654.66 1543.18 L1654.66 1516.82 L1646.35 1518.49 L1646.35 1514.23 L1654.61 1512.56 L1659.28 1512.56 L1659.28 1543.18 L1666.92 1543.18 L1666.92 1547.12 L1647.02 1547.12 L1647.02 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 199.283,1485.17 2352.76,1485.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 199.283,1089.37 2352.76,1089.37 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 199.283,693.56 2352.76,693.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip832)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 199.283,297.754 2352.76,297.754 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,1486.45 199.283,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,1485.17 225.125,1485.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,1089.37 225.125,1089.37 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,693.56 225.125,693.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 199.283,297.754 225.125,297.754 \n",
" \"/>\n",
"<path clip-path=\"url(#clip830)\" d=\"M93.8623 1471.97 L82.0568 1490.42 L93.8623 1490.42 L93.8623 1471.97 M92.6354 1467.89 L98.515 1467.89 L98.515 1490.42 L103.446 1490.42 L103.446 1494.31 L98.515 1494.31 L98.515 1502.45 L93.8623 1502.45 L93.8623 1494.31 L78.2605 1494.31 L78.2605 1489.79 L92.6354 1467.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M121.177 1470.97 Q117.566 1470.97 115.737 1474.54 Q113.932 1478.08 113.932 1485.21 Q113.932 1492.31 115.737 1495.88 Q117.566 1499.42 121.177 1499.42 Q124.811 1499.42 126.617 1495.88 Q128.445 1492.31 128.445 1485.21 Q128.445 1478.08 126.617 1474.54 Q124.811 1470.97 121.177 1470.97 M121.177 1467.27 Q126.987 1467.27 130.043 1471.87 Q133.121 1476.46 133.121 1485.21 Q133.121 1493.93 130.043 1498.54 Q126.987 1503.12 121.177 1503.12 Q115.367 1503.12 112.288 1498.54 Q109.233 1493.93 109.233 1485.21 Q109.233 1476.46 112.288 1471.87 Q115.367 1467.27 121.177 1467.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M151.339 1470.97 Q147.728 1470.97 145.899 1474.54 Q144.093 1478.08 144.093 1485.21 Q144.093 1492.31 145.899 1495.88 Q147.728 1499.42 151.339 1499.42 Q154.973 1499.42 156.779 1495.88 Q158.607 1492.31 158.607 1485.21 Q158.607 1478.08 156.779 1474.54 Q154.973 1470.97 151.339 1470.97 M151.339 1467.27 Q157.149 1467.27 160.205 1471.87 Q163.283 1476.46 163.283 1485.21 Q163.283 1493.93 160.205 1498.54 Q157.149 1503.12 151.339 1503.12 Q145.529 1503.12 142.45 1498.54 Q139.394 1493.93 139.394 1485.21 Q139.394 1476.46 142.45 1471.87 Q145.529 1467.27 151.339 1467.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M91.5938 1087.5 Q88.4456 1087.5 86.5938 1089.66 Q84.7651 1091.81 84.7651 1095.56 Q84.7651 1099.29 86.5938 1101.46 Q88.4456 1103.61 91.5938 1103.61 Q94.7419 1103.61 96.5706 1101.46 Q98.4224 1099.29 98.4224 1095.56 Q98.4224 1091.81 96.5706 1089.66 Q94.7419 1087.5 91.5938 1087.5 M100.876 1072.85 L100.876 1077.11 Q99.1169 1076.28 97.3113 1075.84 Q95.5289 1075.4 93.7697 1075.4 Q89.1401 1075.4 86.6864 1078.52 Q84.2558 1081.65 83.9086 1087.97 Q85.2743 1085.95 87.3345 1084.89 Q89.3947 1083.8 91.8715 1083.8 Q97.0798 1083.8 100.089 1086.97 Q103.121 1090.12 103.121 1095.56 Q103.121 1100.88 99.9733 1104.1 Q96.8252 1107.32 91.5938 1107.32 Q85.5984 1107.32 82.4271 1102.73 Q79.2559 1098.13 79.2559 1089.4 Q79.2559 1081.21 83.1447 1076.35 Q87.0336 1071.46 93.5845 1071.46 Q95.3437 1071.46 97.1261 1071.81 Q98.9317 1072.16 100.876 1072.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M121.177 1075.17 Q117.566 1075.17 115.737 1078.73 Q113.932 1082.27 113.932 1089.4 Q113.932 1096.51 115.737 1100.07 Q117.566 1103.61 121.177 1103.61 Q124.811 1103.61 126.617 1100.07 Q128.445 1096.51 128.445 1089.4 Q128.445 1082.27 126.617 1078.73 Q124.811 1075.17 121.177 1075.17 M121.177 1071.46 Q126.987 1071.46 130.043 1076.07 Q133.121 1080.65 133.121 1089.4 Q133.121 1098.13 130.043 1102.73 Q126.987 1107.32 121.177 1107.32 Q115.367 1107.32 112.288 1102.73 Q109.233 1098.13 109.233 1089.4 Q109.233 1080.65 112.288 1076.07 Q115.367 1071.46 121.177 1071.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M151.339 1075.17 Q147.728 1075.17 145.899 1078.73 Q144.093 1082.27 144.093 1089.4 Q144.093 1096.51 145.899 1100.07 Q147.728 1103.61 151.339 1103.61 Q154.973 1103.61 156.779 1100.07 Q158.607 1096.51 158.607 1089.4 Q158.607 1082.27 156.779 1078.73 Q154.973 1075.17 151.339 1075.17 M151.339 1071.46 Q157.149 1071.46 160.205 1076.07 Q163.283 1080.65 163.283 1089.4 Q163.283 1098.13 160.205 1102.73 Q157.149 1107.32 151.339 1107.32 Q145.529 1107.32 142.45 1102.73 Q139.394 1098.13 139.394 1089.4 Q139.394 1080.65 142.45 1076.07 Q145.529 1071.46 151.339 1071.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M91.0151 694.428 Q87.6817 694.428 85.7605 696.211 Q83.8623 697.993 83.8623 701.118 Q83.8623 704.243 85.7605 706.025 Q87.6817 707.808 91.0151 707.808 Q94.3484 707.808 96.2697 706.025 Q98.1909 704.22 98.1909 701.118 Q98.1909 697.993 96.2697 696.211 Q94.3715 694.428 91.0151 694.428 M86.3392 692.438 Q83.3299 691.697 81.6401 689.637 Q79.9735 687.576 79.9735 684.614 Q79.9735 680.47 82.9133 678.063 Q85.8762 675.655 91.0151 675.655 Q96.1771 675.655 99.1169 678.063 Q102.057 680.47 102.057 684.614 Q102.057 687.576 100.367 689.637 Q98.7002 691.697 95.7141 692.438 Q99.0937 693.225 100.969 695.516 Q102.867 697.808 102.867 701.118 Q102.867 706.141 99.7882 708.826 Q96.7326 711.512 91.0151 711.512 Q85.2975 711.512 82.2188 708.826 Q79.1633 706.141 79.1633 701.118 Q79.1633 697.808 81.0614 695.516 Q82.9595 693.225 86.3392 692.438 M84.6262 685.053 Q84.6262 687.739 86.2929 689.243 Q87.9827 690.748 91.0151 690.748 Q94.0243 690.748 95.7141 689.243 Q97.4271 687.739 97.4271 685.053 Q97.4271 682.368 95.7141 680.864 Q94.0243 679.359 91.0151 679.359 Q87.9827 679.359 86.2929 680.864 Q84.6262 682.368 84.6262 685.053 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M121.177 679.359 Q117.566 679.359 115.737 682.924 Q113.932 686.465 113.932 693.595 Q113.932 700.701 115.737 704.266 Q117.566 707.808 121.177 707.808 Q124.811 707.808 126.617 704.266 Q128.445 700.701 128.445 693.595 Q128.445 686.465 126.617 682.924 Q124.811 679.359 121.177 679.359 M121.177 675.655 Q126.987 675.655 130.043 680.262 Q133.121 684.845 133.121 693.595 Q133.121 702.322 130.043 706.928 Q126.987 711.512 121.177 711.512 Q115.367 711.512 112.288 706.928 Q109.233 702.322 109.233 693.595 Q109.233 684.845 112.288 680.262 Q115.367 675.655 121.177 675.655 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M151.339 679.359 Q147.728 679.359 145.899 682.924 Q144.093 686.465 144.093 693.595 Q144.093 700.701 145.899 704.266 Q147.728 707.808 151.339 707.808 Q154.973 707.808 156.779 704.266 Q158.607 700.701 158.607 693.595 Q158.607 686.465 156.779 682.924 Q154.973 679.359 151.339 679.359 M151.339 675.655 Q157.149 675.655 160.205 680.262 Q163.283 684.845 163.283 693.595 Q163.283 702.322 160.205 706.928 Q157.149 711.512 151.339 711.512 Q145.529 711.512 142.45 706.928 Q139.394 702.322 139.394 693.595 Q139.394 684.845 142.45 680.262 Q145.529 675.655 151.339 675.655 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M51.6634 311.099 L59.3023 311.099 L59.3023 284.733 L50.9921 286.4 L50.9921 282.14 L59.256 280.474 L63.9319 280.474 L63.9319 311.099 L71.5707 311.099 L71.5707 315.034 L51.6634 315.034 L51.6634 311.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M91.0151 283.552 Q87.404 283.552 85.5753 287.117 Q83.7697 290.659 83.7697 297.788 Q83.7697 304.895 85.5753 308.46 Q87.404 312.001 91.0151 312.001 Q94.6493 312.001 96.4548 308.46 Q98.2835 304.895 98.2835 297.788 Q98.2835 290.659 96.4548 287.117 Q94.6493 283.552 91.0151 283.552 M91.0151 279.849 Q96.8252 279.849 99.8808 284.455 Q102.959 289.038 102.959 297.788 Q102.959 306.515 99.8808 311.122 Q96.8252 315.705 91.0151 315.705 Q85.2049 315.705 82.1262 311.122 Q79.0707 306.515 79.0707 297.788 Q79.0707 289.038 82.1262 284.455 Q85.2049 279.849 91.0151 279.849 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M121.177 283.552 Q117.566 283.552 115.737 287.117 Q113.932 290.659 113.932 297.788 Q113.932 304.895 115.737 308.46 Q117.566 312.001 121.177 312.001 Q124.811 312.001 126.617 308.46 Q128.445 304.895 128.445 297.788 Q128.445 290.659 126.617 287.117 Q124.811 283.552 121.177 283.552 M121.177 279.849 Q126.987 279.849 130.043 284.455 Q133.121 289.038 133.121 297.788 Q133.121 306.515 130.043 311.122 Q126.987 315.705 121.177 315.705 Q115.367 315.705 112.288 311.122 Q109.233 306.515 109.233 297.788 Q109.233 289.038 112.288 284.455 Q115.367 279.849 121.177 279.849 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M151.339 283.552 Q147.728 283.552 145.899 287.117 Q144.093 290.659 144.093 297.788 Q144.093 304.895 145.899 308.46 Q147.728 312.001 151.339 312.001 Q154.973 312.001 156.779 308.46 Q158.607 304.895 158.607 297.788 Q158.607 290.659 156.779 287.117 Q154.973 283.552 151.339 283.552 M151.339 279.849 Q157.149 279.849 160.205 284.455 Q163.283 289.038 163.283 297.788 Q163.283 306.515 160.205 311.122 Q157.149 315.705 151.339 315.705 Q145.529 315.705 142.45 311.122 Q139.394 306.515 139.394 297.788 Q139.394 289.038 142.45 284.455 Q145.529 279.849 151.339 279.849 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip832)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 260.231,949.006 263.01,952.871 265.789,983.795 268.568,1003.12 276.906,1012.79 279.685,1020.52 282.464,1032.11 285.243,1057.24 288.022,1088.16 299.139,1055.31 \n",
" 301.918,1049.51 304.697,1074.63 307.477,1084.3 315.814,1068.83 321.372,1064.97 324.152,1064.97 326.931,1063.04 335.268,1064.97 338.047,1041.78 340.827,1016.65 \n",
" 343.606,1014.72 346.385,1045.64 357.502,1045.64 360.281,1061.1 363.06,1076.57 365.839,1068.83 374.177,875.563 376.956,800.186 379.735,790.523 382.514,815.648 \n",
" 385.293,775.061 393.631,711.281 396.41,676.492 399.189,641.703 401.969,678.425 404.748,724.81 413.085,720.945 415.864,740.272 418.644,728.676 421.423,742.205 \n",
" 424.202,749.936 432.539,757.667 435.319,763.465 438.098,811.783 440.877,811.783 443.656,771.196 451.994,749.936 454.773,726.743 457.552,749.936 460.331,761.532 \n",
" 463.11,757.667 471.448,780.859 474.227,1008.92 477.006,1034.05 479.785,1045.64 482.565,1045.64 490.902,1063.04 493.681,1047.57 496.461,1070.77 499.24,1041.78 \n",
" 502.019,1012.79 510.356,1057.24 529.811,1107.49 532.59,1063.04 535.369,1086.23 538.148,1061.1 540.927,1064.97 552.044,1053.37 554.823,1053.37 557.602,1068.83 \n",
" 560.382,1053.37 568.719,1059.17 571.498,1068.83 574.277,972.199 577.057,1034.05 579.836,1051.44 588.173,1026.31 590.953,1049.51 593.732,1061.1 596.511,1107.49 \n",
" 599.29,1088.16 607.628,1097.83 610.407,1070.77 613.186,1059.17 615.965,1059.17 618.744,1063.04 627.082,916.15 632.64,947.073 635.419,991.526 638.199,976.064 \n",
" 646.536,1005.06 649.315,995.391 652.094,952.871 654.874,972.199 657.653,964.468 668.769,987.66 671.549,1055.31 674.328,1090.09 677.107,1215.72 685.445,1167.4 \n",
" 688.224,1175.13 691.003,1161.61 693.782,1157.74 696.561,1200.26 704.899,1308.49 707.678,1289.17 710.457,1323.95 713.236,1376.14 716.015,1445.72 724.353,1428.32 \n",
" 727.132,1329.75 729.911,1325.89 732.691,1341.35 743.807,1318.16 746.586,1310.43 749.366,1250.51 752.145,1275.64 754.924,1240.85 763.261,1252.55 766.041,1246.7 \n",
" 768.82,1256.45 771.599,1260.36 774.378,1283.77 782.716,1250.6 785.495,1240.85 788.274,1209.63 791.053,1201.83 793.832,1184.27 802.17,1168.66 804.949,1145.25 \n",
" 807.728,1149.15 810.507,1147.2 813.287,1149.15 821.624,1164.76 824.403,1217.44 827.183,1036 829.962,1143.3 832.741,1065.26 841.078,1024.29 843.858,1037.95 \n",
" 849.416,1045.75 852.195,1055.51 868.87,860.417 871.649,963.816 879.987,905.289 882.766,969.669 885.545,987.227 888.324,1026.25 891.104,1034.05 899.441,1002.83 \n",
" 902.22,1006.74 904.999,1032.1 907.779,1022.34 910.558,1051.61 918.895,1020.39 921.675,1004.79 924.454,998.933 927.233,1020.39 930.012,1010.64 938.35,991.129 \n",
" 941.129,942.356 943.908,961.865 946.687,991.129 949.466,991.129 957.804,946.258 960.583,918.945 963.362,872.123 966.141,920.896 968.921,959.914 977.258,981.375 \n",
" 980.037,938.454 982.816,916.994 985.596,926.749 988.375,938.454 996.712,897.485 999.491,924.798 1002.27,959.914 1005.05,965.767 1007.83,993.08 1016.17,1018.44 \n",
" 1018.95,1012.59 1021.72,1045.75 1024.5,1073.07 1027.28,1043.8 1035.62,1039.9 1038.4,1047.71 1041.18,1043.8 1043.96,1088.68 1046.74,1108.18 1055.08,1069.17 \n",
" 1057.85,1053.56 1060.63,1039.9 1063.41,1049.66 1066.19,1051.61 1074.53,1020.39 1077.31,1018.44 1080.09,995.031 1093.98,993.08 1096.76,1022.34 1099.54,1002.83 \n",
" 1102.32,1020.39 1105.1,1055.51 1113.44,1010.64 1116.22,1000.88 1119,998.933 1121.78,987.227 1124.55,913.092 1135.67,940.405 1138.45,944.307 1141.23,957.964 \n",
" 1144.01,956.013 1152.35,928.7 1155.13,936.503 1157.9,899.436 1160.68,942.356 1163.46,913.092 1171.8,911.141 1174.58,922.847 1177.36,903.338 1180.14,922.847 \n",
" 1182.92,938.454 1191.25,881.878 1194.03,866.27 1196.81,918.945 1199.59,916.994 1202.37,926.749 1210.71,946.258 1213.49,897.485 1216.27,899.436 1219.05,899.436 \n",
" 1221.83,924.798 1230.16,903.338 1232.94,901.387 1235.72,620.454 1238.5,733.608 1241.28,719.951 1255.18,735.559 1257.95,825.301 1260.73,840.908 1269.07,856.516 \n",
" 1271.85,825.301 1274.63,838.957 1280.19,895.534 1288.53,885.779 1291.31,879.927 1294.08,876.025 1296.86,895.534 1299.64,876.025 1307.98,811.644 1310.76,846.761 \n",
" 1313.54,868.221 1316.32,891.632 1319.1,922.847 1327.43,893.583 1330.21,901.387 1332.99,879.927 1335.77,905.289 1338.55,899.436 1346.89,909.19 1349.67,913.092 \n",
" 1352.45,940.405 1355.23,934.553 1358.01,977.473 1366.34,957.964 1371.9,928.7 1374.68,913.092 1377.46,928.7 1385.8,957.964 1388.58,936.503 1391.36,930.651 \n",
" 1394.13,928.7 1396.91,909.19 1405.25,915.043 1408.03,942.356 1410.81,944.307 1413.59,948.209 1416.37,936.503 1427.48,934.553 1430.26,940.405 1433.04,930.651 \n",
" 1435.82,913.092 1444.16,956.013 1446.94,971.62 1449.72,956.013 1452.5,950.16 1455.28,965.767 1463.61,985.276 1466.39,971.62 1469.17,971.62 1471.95,977.473 \n",
" 1474.73,996.982 1483.07,977.473 1485.85,981.375 1488.63,977.473 1491.41,987.227 1494.18,983.325 1502.52,985.276 1505.3,1016.49 1508.08,1016.49 1510.86,1012.59 \n",
" 1513.64,1016.49 1521.98,995.031 1524.76,957.964 1527.54,959.914 1541.43,961.865 1544.21,934.553 1546.99,940.405 1549.77,930.651 1552.55,897.485 1563.66,874.074 \n",
" 1566.44,885.779 1569.22,895.534 1572,876.025 1580.34,879.927 1583.12,881.878 1585.9,877.976 1588.68,874.074 1591.46,856.516 1599.79,835.056 1602.57,856.516 \n",
" 1605.35,858.467 1608.13,881.878 1610.91,897.485 1619.25,887.73 1622.03,881.878 1624.81,868.221 1627.59,831.154 1630.36,819.448 1638.7,932.601 1641.48,961.865 \n",
" 1644.26,946.258 1649.82,946.258 1658.16,950.16 1660.94,969.669 1663.71,965.767 1666.49,987.227 1669.27,1006.74 1677.61,1008.69 1683.17,1026.25 1685.95,1022.34 \n",
" 1688.73,1053.56 1697.06,1034.05 1699.84,1051.61 1702.62,1057.46 1705.4,1065.26 1708.18,1059.41 1716.52,1043.8 1719.3,1008.69 1722.08,1016.49 1724.86,1008.69 \n",
" 1727.64,1008.69 1735.97,989.178 1738.75,998.933 1741.53,993.08 1744.31,998.933 1747.09,985.276 1755.43,987.227 1758.21,1006.74 1760.99,1028.2 1763.77,1014.54 \n",
" 1766.54,909.19 1774.88,903.338 1777.66,867.715 1780.44,893.443 1783.22,907.296 1786,875.631 1794.34,895.422 1797.12,927.086 1799.89,901.359 1802.67,887.505 \n",
" 1805.45,869.694 1813.79,826.155 1816.57,834.072 1819.35,843.967 1822.13,832.093 1824.91,849.904 1833.24,840.009 1836.02,822.197 1838.8,841.988 1841.58,851.883 \n",
" 1844.36,863.757 1852.7,847.925 1855.48,845.946 1858.26,857.82 1863.82,843.967 1880.49,838.03 1883.27,849.904 1891.61,826.155 1894.39,715.33 1897.17,745.015 \n",
" 1899.94,739.078 1902.72,715.33 1911.06,748.973 1913.84,719.288 1916.62,711.372 1919.4,624.294 1922.18,628.252 1930.52,618.357 1933.29,661.896 1936.07,685.644 \n",
" 1938.85,717.309 1941.63,725.225 1949.97,737.099 1952.75,701.476 1955.53,701.476 1958.31,715.33 1961.09,729.183 1969.42,750.952 1972.2,754.91 1974.98,762.826 \n",
" 1977.76,750.952 1980.54,715.33 1988.88,659.917 1991.66,634.189 1994.44,612.42 1997.22,574.818 2000,574.818 2008.33,612.42 2011.11,612.42 2013.89,610.441 \n",
" 2016.67,640.126 2019.45,630.231 2027.79,659.917 2030.57,632.21 2033.35,655.959 2036.12,570.86 2038.9,517.426 2047.24,454.097 2050.02,337.334 2052.8,256.194 \n",
" 2055.58,323.481 2058.36,252.236 2066.7,236.404 2069.47,87.9763 2072.25,224.53 2075.03,200.781 2077.81,121.62 2086.15,135.473 2088.93,202.76 2091.71,175.054 \n",
" 2105.6,113.704 2108.38,169.117 2111.16,206.718 2113.94,167.138 2116.72,226.509 2125.06,238.383 2127.84,230.467 2130.62,268.068 2133.4,543.154 2136.17,578.776 \n",
" 2147.29,519.405 2150.07,529.301 2152.85,549.091 2155.63,566.902 2163.97,602.525 2166.75,630.231 2169.52,604.504 2172.3,644.084 2175.08,646.063 2183.42,634.189 \n",
" 2186.2,588.672 2188.98,555.028 2191.76,558.986 2194.54,604.504 2202.87,574.818 2205.65,594.609 2208.43,555.028 2211.21,533.259 2213.99,558.986 2222.33,566.902 \n",
" 2225.11,549.091 2227.89,551.07 2230.67,493.678 2233.45,434.307 2241.78,416.496 2244.56,414.517 2247.34,408.58 2250.12,452.118 2252.9,428.37 2264.02,456.076 \n",
" 2266.8,503.573 2272.35,436.286 2280.69,452.118 2283.47,440.244 2286.25,446.181 2289.03,406.601 2291.81,452.118 \n",
" \"/>\n",
"<path clip-path=\"url(#clip830)\" d=\"\n",
"M1825.52 216.178 L2280.97 216.178 L2280.97 95.2176 L1825.52 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1825.52,216.178 2280.97,216.178 2280.97,95.2176 1825.52,95.2176 1825.52,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip830)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1849.45,155.698 1993.01,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip830)\" d=\"M2032.77 143.024 L2026.43 160.223 L2039.14 160.223 L2032.77 143.024 M2030.13 138.418 L2035.43 138.418 L2048.61 172.978 L2043.74 172.978 L2040.6 164.112 L2025.02 164.112 L2021.87 172.978 L2016.94 172.978 L2030.13 138.418 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2069.69 150.987 L2069.69 136.959 L2073.95 136.959 L2073.95 172.978 L2069.69 172.978 L2069.69 169.089 Q2068.35 171.403 2066.29 172.538 Q2064.25 173.649 2061.38 173.649 Q2056.68 173.649 2053.72 169.899 Q2050.78 166.149 2050.78 160.038 Q2050.78 153.927 2053.72 150.177 Q2056.68 146.427 2061.38 146.427 Q2064.25 146.427 2066.29 147.561 Q2068.35 148.672 2069.69 150.987 M2055.18 160.038 Q2055.18 164.737 2057.1 167.422 Q2059.05 170.084 2062.43 170.084 Q2065.8 170.084 2067.75 167.422 Q2069.69 164.737 2069.69 160.038 Q2069.69 155.339 2067.75 152.677 Q2065.8 149.992 2062.43 149.992 Q2059.05 149.992 2057.1 152.677 Q2055.18 155.339 2055.18 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2082.73 147.052 L2086.99 147.052 L2086.99 173.441 Q2086.99 178.394 2085.09 180.616 Q2083.21 182.839 2079.02 182.839 L2077.4 182.839 L2077.4 179.228 L2078.54 179.228 Q2080.97 179.228 2081.85 178.093 Q2082.73 176.982 2082.73 173.441 L2082.73 147.052 M2082.73 136.959 L2086.99 136.959 L2086.99 142.353 L2082.73 142.353 L2082.73 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2137.03 141.08 L2137.03 146.01 Q2134.67 143.811 2131.98 142.723 Q2129.32 141.635 2126.31 141.635 Q2120.39 141.635 2117.24 145.269 Q2114.09 148.88 2114.09 155.732 Q2114.09 162.561 2117.24 166.195 Q2120.39 169.806 2126.31 169.806 Q2129.32 169.806 2131.98 168.718 Q2134.67 167.63 2137.03 165.431 L2137.03 170.316 Q2134.58 171.982 2131.82 172.816 Q2129.09 173.649 2126.04 173.649 Q2118.19 173.649 2113.67 168.857 Q2109.16 164.042 2109.16 155.732 Q2109.16 147.399 2113.67 142.607 Q2118.19 137.793 2126.04 137.793 Q2129.14 137.793 2131.87 138.626 Q2134.62 139.436 2137.03 141.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2144.07 136.959 L2148.33 136.959 L2148.33 172.978 L2144.07 172.978 L2144.07 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2167.29 150.038 Q2163.86 150.038 2161.87 152.723 Q2159.88 155.385 2159.88 160.038 Q2159.88 164.691 2161.85 167.376 Q2163.84 170.038 2167.29 170.038 Q2170.69 170.038 2172.68 167.353 Q2174.67 164.667 2174.67 160.038 Q2174.67 155.431 2172.68 152.746 Q2170.69 150.038 2167.29 150.038 M2167.29 146.427 Q2172.84 146.427 2176.01 150.038 Q2179.18 153.649 2179.18 160.038 Q2179.18 166.404 2176.01 170.038 Q2172.84 173.649 2167.29 173.649 Q2161.71 173.649 2158.54 170.038 Q2155.39 166.404 2155.39 160.038 Q2155.39 153.649 2158.54 150.038 Q2161.71 146.427 2167.29 146.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2202.77 147.816 L2202.77 151.843 Q2200.97 150.917 2199.02 150.455 Q2197.08 149.992 2194.99 149.992 Q2191.82 149.992 2190.23 150.964 Q2188.65 151.936 2188.65 153.88 Q2188.65 155.362 2189.79 156.218 Q2190.92 157.052 2194.35 157.816 L2195.8 158.14 Q2200.34 159.112 2202.24 160.894 Q2204.16 162.654 2204.16 165.825 Q2204.16 169.436 2201.29 171.542 Q2198.44 173.649 2193.44 173.649 Q2191.36 173.649 2189.09 173.232 Q2186.85 172.839 2184.35 172.028 L2184.35 167.63 Q2186.71 168.857 2189 169.482 Q2191.29 170.084 2193.54 170.084 Q2196.54 170.084 2198.17 169.066 Q2199.79 168.024 2199.79 166.149 Q2199.79 164.413 2198.6 163.487 Q2197.45 162.561 2193.49 161.704 L2192.01 161.357 Q2188.05 160.524 2186.29 158.811 Q2184.53 157.075 2184.53 154.066 Q2184.53 150.408 2187.12 148.418 Q2189.72 146.427 2194.48 146.427 Q2196.85 146.427 2198.93 146.774 Q2201.01 147.121 2202.77 147.816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M2233.12 158.95 L2233.12 161.033 L2213.54 161.033 Q2213.81 165.431 2216.17 167.746 Q2218.56 170.038 2222.79 170.038 Q2225.25 170.038 2227.54 169.436 Q2229.85 168.834 2232.12 167.63 L2232.12 171.658 Q2229.83 172.63 2227.42 173.14 Q2225.02 173.649 2222.54 173.649 Q2216.34 173.649 2212.7 170.038 Q2209.09 166.427 2209.09 160.269 Q2209.09 153.904 2212.52 150.177 Q2215.97 146.427 2221.8 146.427 Q2227.03 146.427 2230.06 149.806 Q2233.12 153.163 2233.12 158.95 M2228.86 157.7 Q2228.81 154.205 2226.89 152.121 Q2224.99 150.038 2221.85 150.038 Q2218.28 150.038 2216.13 152.052 Q2214 154.066 2213.67 157.723 L2228.86 157.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 49,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot( df.Date, df.\"Adj Close\", label=\"Adj Close\")"
]
},
{
"cell_type": "code",
"execution_count": 50,
"id": "3dc77f4e",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip870\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip870)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip871\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip870)\" d=\"\n",
"M224.098 1486.45 L2352.76 1486.45 L2352.76 47.2441 L224.098 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip872\">\n",
" <rect x=\"224\" y=\"47\" width=\"2130\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 280.202,1486.45 280.202,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 694.258,1486.45 694.258,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1108.31,1486.45 1108.31,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1522.37,1486.45 1522.37,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1936.42,1486.45 1936.42,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2350.48,1486.45 2350.48,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 280.202,1486.45 280.202,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 694.258,1486.45 694.258,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1108.31,1486.45 1108.31,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1522.37,1486.45 1522.37,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1936.42,1486.45 1936.42,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2350.48,1486.45 2350.48,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"M280.202 1515.64 Q276.591 1515.64 274.763 1519.2 Q272.957 1522.75 272.957 1529.87 Q272.957 1536.98 274.763 1540.55 Q276.591 1544.09 280.202 1544.09 Q283.837 1544.09 285.642 1540.55 Q287.471 1536.98 287.471 1529.87 Q287.471 1522.75 285.642 1519.2 Q283.837 1515.64 280.202 1515.64 M280.202 1511.93 Q286.013 1511.93 289.068 1516.54 Q292.147 1521.12 292.147 1529.87 Q292.147 1538.6 289.068 1543.21 Q286.013 1547.79 280.202 1547.79 Q274.392 1547.79 271.314 1543.21 Q268.258 1538.6 268.258 1529.87 Q268.258 1521.12 271.314 1516.54 Q274.392 1511.93 280.202 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M653.864 1543.18 L661.503 1543.18 L661.503 1516.82 L653.193 1518.49 L653.193 1514.23 L661.457 1512.56 L666.133 1512.56 L666.133 1543.18 L673.772 1543.18 L673.772 1547.12 L653.864 1547.12 L653.864 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M693.216 1515.64 Q689.605 1515.64 687.776 1519.2 Q685.971 1522.75 685.971 1529.87 Q685.971 1536.98 687.776 1540.55 Q689.605 1544.09 693.216 1544.09 Q696.85 1544.09 698.656 1540.55 Q700.484 1536.98 700.484 1529.87 Q700.484 1522.75 698.656 1519.2 Q696.85 1515.64 693.216 1515.64 M693.216 1511.93 Q699.026 1511.93 702.082 1516.54 Q705.16 1521.12 705.16 1529.87 Q705.16 1538.6 702.082 1543.21 Q699.026 1547.79 693.216 1547.79 Q687.406 1547.79 684.327 1543.21 Q681.272 1538.6 681.272 1529.87 Q681.272 1521.12 684.327 1516.54 Q687.406 1511.93 693.216 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M723.378 1515.64 Q719.767 1515.64 717.938 1519.2 Q716.132 1522.75 716.132 1529.87 Q716.132 1536.98 717.938 1540.55 Q719.767 1544.09 723.378 1544.09 Q727.012 1544.09 728.818 1540.55 Q730.646 1536.98 730.646 1529.87 Q730.646 1522.75 728.818 1519.2 Q727.012 1515.64 723.378 1515.64 M723.378 1511.93 Q729.188 1511.93 732.244 1516.54 Q735.322 1521.12 735.322 1529.87 Q735.322 1538.6 732.244 1543.21 Q729.188 1547.79 723.378 1547.79 Q717.568 1547.79 714.489 1543.21 Q711.433 1538.6 711.433 1529.87 Q711.433 1521.12 714.489 1516.54 Q717.568 1511.93 723.378 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1072.01 1543.18 L1088.32 1543.18 L1088.32 1547.12 L1066.38 1547.12 L1066.38 1543.18 Q1069.04 1540.43 1073.63 1535.8 Q1078.23 1531.15 1079.41 1529.81 Q1081.66 1527.28 1082.54 1525.55 Q1083.44 1523.79 1083.44 1522.1 Q1083.44 1519.34 1081.5 1517.61 Q1079.57 1515.87 1076.47 1515.87 Q1074.27 1515.87 1071.82 1516.63 Q1069.39 1517.4 1066.61 1518.95 L1066.61 1514.23 Q1069.44 1513.09 1071.89 1512.51 Q1074.34 1511.93 1076.38 1511.93 Q1081.75 1511.93 1084.94 1514.62 Q1088.14 1517.31 1088.14 1521.8 Q1088.14 1523.93 1087.33 1525.85 Q1086.54 1527.74 1084.44 1530.34 Q1083.86 1531.01 1080.76 1534.23 Q1077.65 1537.42 1072.01 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1108.14 1515.64 Q1104.53 1515.64 1102.7 1519.2 Q1100.89 1522.75 1100.89 1529.87 Q1100.89 1536.98 1102.7 1540.55 Q1104.53 1544.09 1108.14 1544.09 Q1111.77 1544.09 1113.58 1540.55 Q1115.41 1536.98 1115.41 1529.87 Q1115.41 1522.75 1113.58 1519.2 Q1111.77 1515.64 1108.14 1515.64 M1108.14 1511.93 Q1113.95 1511.93 1117 1516.54 Q1120.08 1521.12 1120.08 1529.87 Q1120.08 1538.6 1117 1543.21 Q1113.95 1547.79 1108.14 1547.79 Q1102.33 1547.79 1099.25 1543.21 Q1096.19 1538.6 1096.19 1529.87 Q1096.19 1521.12 1099.25 1516.54 Q1102.33 1511.93 1108.14 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1138.3 1515.64 Q1134.69 1515.64 1132.86 1519.2 Q1131.06 1522.75 1131.06 1529.87 Q1131.06 1536.98 1132.86 1540.55 Q1134.69 1544.09 1138.3 1544.09 Q1141.94 1544.09 1143.74 1540.55 Q1145.57 1536.98 1145.57 1529.87 Q1145.57 1522.75 1143.74 1519.2 Q1141.94 1515.64 1138.3 1515.64 M1138.3 1511.93 Q1144.11 1511.93 1147.17 1516.54 Q1150.25 1521.12 1150.25 1529.87 Q1150.25 1538.6 1147.17 1543.21 Q1144.11 1547.79 1138.3 1547.79 Q1132.49 1547.79 1129.41 1543.21 Q1126.36 1538.6 1126.36 1529.87 Q1126.36 1521.12 1129.41 1516.54 Q1132.49 1511.93 1138.3 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1496.13 1528.49 Q1499.49 1529.2 1501.36 1531.47 Q1503.26 1533.74 1503.26 1537.07 Q1503.26 1542.19 1499.74 1544.99 Q1496.22 1547.79 1489.74 1547.79 Q1487.57 1547.79 1485.25 1547.35 Q1482.96 1546.93 1480.5 1546.08 L1480.5 1541.56 Q1482.45 1542.7 1484.76 1543.28 Q1487.08 1543.86 1489.6 1543.86 Q1494 1543.86 1496.29 1542.12 Q1498.61 1540.38 1498.61 1537.07 Q1498.61 1534.02 1496.45 1532.31 Q1494.32 1530.57 1490.5 1530.57 L1486.48 1530.57 L1486.48 1526.73 L1490.69 1526.73 Q1494.14 1526.73 1495.97 1525.36 Q1497.8 1523.97 1497.8 1521.38 Q1497.8 1518.72 1495.9 1517.31 Q1494.02 1515.87 1490.5 1515.87 Q1488.58 1515.87 1486.38 1516.29 Q1484.19 1516.7 1481.55 1517.58 L1481.55 1513.42 Q1484.21 1512.68 1486.52 1512.31 Q1488.86 1511.93 1490.92 1511.93 Q1496.25 1511.93 1499.35 1514.37 Q1502.45 1516.77 1502.45 1520.89 Q1502.45 1523.76 1500.81 1525.75 Q1499.16 1527.72 1496.13 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1522.13 1515.64 Q1518.51 1515.64 1516.69 1519.2 Q1514.88 1522.75 1514.88 1529.87 Q1514.88 1536.98 1516.69 1540.55 Q1518.51 1544.09 1522.13 1544.09 Q1525.76 1544.09 1527.56 1540.55 Q1529.39 1536.98 1529.39 1529.87 Q1529.39 1522.75 1527.56 1519.2 Q1525.76 1515.64 1522.13 1515.64 M1522.13 1511.93 Q1527.94 1511.93 1530.99 1516.54 Q1534.07 1521.12 1534.07 1529.87 Q1534.07 1538.6 1530.99 1543.21 Q1527.94 1547.79 1522.13 1547.79 Q1516.31 1547.79 1513.24 1543.21 Q1510.18 1538.6 1510.18 1529.87 Q1510.18 1521.12 1513.24 1516.54 Q1516.31 1511.93 1522.13 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1552.29 1515.64 Q1548.68 1515.64 1546.85 1519.2 Q1545.04 1522.75 1545.04 1529.87 Q1545.04 1536.98 1546.85 1540.55 Q1548.68 1544.09 1552.29 1544.09 Q1555.92 1544.09 1557.73 1540.55 Q1559.56 1536.98 1559.56 1529.87 Q1559.56 1522.75 1557.73 1519.2 Q1555.92 1515.64 1552.29 1515.64 M1552.29 1511.93 Q1558.1 1511.93 1561.15 1516.54 Q1564.23 1521.12 1564.23 1529.87 Q1564.23 1538.6 1561.15 1543.21 Q1558.1 1547.79 1552.29 1547.79 Q1546.48 1547.79 1543.4 1543.21 Q1540.34 1538.6 1540.34 1529.87 Q1540.34 1521.12 1543.4 1516.54 Q1546.48 1511.93 1552.29 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1909.51 1516.63 L1897.71 1535.08 L1909.51 1535.08 L1909.51 1516.63 M1908.29 1512.56 L1914.17 1512.56 L1914.17 1535.08 L1919.1 1535.08 L1919.1 1538.97 L1914.17 1538.97 L1914.17 1547.12 L1909.51 1547.12 L1909.51 1538.97 L1893.91 1538.97 L1893.91 1534.46 L1908.29 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1936.83 1515.64 Q1933.22 1515.64 1931.39 1519.2 Q1929.58 1522.75 1929.58 1529.87 Q1929.58 1536.98 1931.39 1540.55 Q1933.22 1544.09 1936.83 1544.09 Q1940.46 1544.09 1942.27 1540.55 Q1944.1 1536.98 1944.1 1529.87 Q1944.1 1522.75 1942.27 1519.2 Q1940.46 1515.64 1936.83 1515.64 M1936.83 1511.93 Q1942.64 1511.93 1945.69 1516.54 Q1948.77 1521.12 1948.77 1529.87 Q1948.77 1538.6 1945.69 1543.21 Q1942.64 1547.79 1936.83 1547.79 Q1931.02 1547.79 1927.94 1543.21 Q1924.88 1538.6 1924.88 1529.87 Q1924.88 1521.12 1927.94 1516.54 Q1931.02 1511.93 1936.83 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1966.99 1515.64 Q1963.38 1515.64 1961.55 1519.2 Q1959.74 1522.75 1959.74 1529.87 Q1959.74 1536.98 1961.55 1540.55 Q1963.38 1544.09 1966.99 1544.09 Q1970.62 1544.09 1972.43 1540.55 Q1974.26 1536.98 1974.26 1529.87 Q1974.26 1522.75 1972.43 1519.2 Q1970.62 1515.64 1966.99 1515.64 M1966.99 1511.93 Q1972.8 1511.93 1975.86 1516.54 Q1978.93 1521.12 1978.93 1529.87 Q1978.93 1538.6 1975.86 1543.21 Q1972.8 1547.79 1966.99 1547.79 Q1961.18 1547.79 1958.1 1543.21 Q1955.05 1538.6 1955.05 1529.87 Q1955.05 1521.12 1958.1 1516.54 Q1961.18 1511.93 1966.99 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2310.1 1512.56 L2328.45 1512.56 L2328.45 1516.5 L2314.38 1516.5 L2314.38 1524.97 Q2315.4 1524.62 2316.42 1524.46 Q2317.43 1524.27 2318.45 1524.27 Q2324.24 1524.27 2327.62 1527.44 Q2331 1530.62 2331 1536.03 Q2331 1541.61 2327.53 1544.71 Q2324.06 1547.79 2317.74 1547.79 Q2315.56 1547.79 2313.29 1547.42 Q2311.05 1547.05 2308.64 1546.31 L2308.64 1541.61 Q2310.72 1542.74 2312.94 1543.3 Q2315.17 1543.86 2317.64 1543.86 Q2321.65 1543.86 2323.99 1541.75 Q2326.32 1539.64 2326.32 1536.03 Q2326.32 1532.42 2323.99 1530.31 Q2321.65 1528.21 2317.64 1528.21 Q2315.77 1528.21 2313.89 1528.62 Q2312.04 1529.04 2310.1 1529.92 L2310.1 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2350.21 1515.64 Q2346.6 1515.64 2344.77 1519.2 Q2342.97 1522.75 2342.97 1529.87 Q2342.97 1536.98 2344.77 1540.55 Q2346.6 1544.09 2350.21 1544.09 Q2353.85 1544.09 2355.65 1540.55 Q2357.48 1536.98 2357.48 1529.87 Q2357.48 1522.75 2355.65 1519.2 Q2353.85 1515.64 2350.21 1515.64 M2350.21 1511.93 Q2356.02 1511.93 2359.08 1516.54 Q2362.16 1521.12 2362.16 1529.87 Q2362.16 1538.6 2359.08 1543.21 Q2356.02 1547.79 2350.21 1547.79 Q2344.4 1547.79 2341.32 1543.21 Q2338.27 1538.6 2338.27 1529.87 Q2338.27 1521.12 2341.32 1516.54 Q2344.4 1511.93 2350.21 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2380.37 1515.64 Q2376.76 1515.64 2374.93 1519.2 Q2373.13 1522.75 2373.13 1529.87 Q2373.13 1536.98 2374.93 1540.55 Q2376.76 1544.09 2380.37 1544.09 Q2384.01 1544.09 2385.81 1540.55 Q2387.64 1536.98 2387.64 1529.87 Q2387.64 1522.75 2385.81 1519.2 Q2384.01 1515.64 2380.37 1515.64 M2380.37 1511.93 Q2386.18 1511.93 2389.24 1516.54 Q2392.32 1521.12 2392.32 1529.87 Q2392.32 1538.6 2389.24 1543.21 Q2386.18 1547.79 2380.37 1547.79 Q2374.56 1547.79 2371.49 1543.21 Q2368.43 1538.6 2368.43 1529.87 Q2368.43 1521.12 2371.49 1516.54 Q2374.56 1511.93 2380.37 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,1386.15 2352.76,1386.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,1192.89 2352.76,1192.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,999.629 2352.76,999.629 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,806.368 2352.76,806.368 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,613.108 2352.76,613.108 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,419.848 2352.76,419.848 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,226.588 2352.76,226.588 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1486.45 224.098,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1386.15 249.642,1386.15 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1192.89 249.642,1192.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,999.629 249.642,999.629 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,806.368 249.642,806.368 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,613.108 249.642,613.108 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,419.848 249.642,419.848 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,226.588 249.642,226.588 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"M51.9875 1386.6 L81.6633 1386.6 L81.6633 1390.54 L51.9875 1390.54 L51.9875 1386.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M101.756 1371.95 Q98.1447 1371.95 96.316 1375.51 Q94.5104 1379.05 94.5104 1386.18 Q94.5104 1393.29 96.316 1396.85 Q98.1447 1400.4 101.756 1400.4 Q105.39 1400.4 107.196 1396.85 Q109.024 1393.29 109.024 1386.18 Q109.024 1379.05 107.196 1375.51 Q105.39 1371.95 101.756 1371.95 M101.756 1368.24 Q107.566 1368.24 110.621 1372.85 Q113.7 1377.43 113.7 1386.18 Q113.7 1394.91 110.621 1399.52 Q107.566 1404.1 101.756 1404.1 Q95.9456 1404.1 92.8669 1399.52 Q89.8114 1394.91 89.8114 1386.18 Q89.8114 1377.43 92.8669 1372.85 Q95.9456 1368.24 101.756 1368.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M121.918 1397.55 L126.802 1397.55 L126.802 1403.43 L121.918 1403.43 L121.918 1397.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M137.797 1399.49 L145.436 1399.49 L145.436 1373.13 L137.126 1374.79 L137.126 1370.54 L145.39 1368.87 L150.066 1368.87 L150.066 1399.49 L157.705 1399.49 L157.705 1403.43 L137.797 1403.43 L137.797 1399.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M167.195 1368.87 L185.552 1368.87 L185.552 1372.8 L171.478 1372.8 L171.478 1381.28 Q172.496 1380.93 173.515 1380.77 Q174.533 1380.58 175.552 1380.58 Q181.339 1380.58 184.718 1383.75 Q188.098 1386.92 188.098 1392.34 Q188.098 1397.92 184.626 1401.02 Q181.153 1404.1 174.834 1404.1 Q172.658 1404.1 170.39 1403.73 Q168.144 1403.36 165.737 1402.62 L165.737 1397.92 Q167.82 1399.05 170.042 1399.61 Q172.265 1400.17 174.741 1400.17 Q178.746 1400.17 181.084 1398.06 Q183.422 1395.95 183.422 1392.34 Q183.422 1388.73 181.084 1386.62 Q178.746 1384.52 174.741 1384.52 Q172.866 1384.52 170.991 1384.93 Q169.14 1385.35 167.195 1386.23 L167.195 1368.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M50.9921 1193.34 L80.6679 1193.34 L80.6679 1197.28 L50.9921 1197.28 L50.9921 1193.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M100.76 1178.69 Q97.1493 1178.69 95.3206 1182.25 Q93.515 1185.79 93.515 1192.92 Q93.515 1200.03 95.3206 1203.59 Q97.1493 1207.14 100.76 1207.14 Q104.395 1207.14 106.2 1203.59 Q108.029 1200.03 108.029 1192.92 Q108.029 1185.79 106.2 1182.25 Q104.395 1178.69 100.76 1178.69 M100.76 1174.98 Q106.571 1174.98 109.626 1179.59 Q112.705 1184.17 112.705 1192.92 Q112.705 1201.65 109.626 1206.26 Q106.571 1210.84 100.76 1210.84 Q94.9502 1210.84 91.8715 1206.26 Q88.816 1201.65 88.816 1192.92 Q88.816 1184.17 91.8715 1179.59 Q94.9502 1174.98 100.76 1174.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M120.922 1204.29 L125.807 1204.29 L125.807 1210.17 L120.922 1210.17 L120.922 1204.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M136.802 1206.23 L144.441 1206.23 L144.441 1179.87 L136.131 1181.53 L136.131 1177.28 L144.394 1175.61 L149.07 1175.61 L149.07 1206.23 L156.709 1206.23 L156.709 1210.17 L136.802 1210.17 L136.802 1206.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M176.153 1178.69 Q172.542 1178.69 170.714 1182.25 Q168.908 1185.79 168.908 1192.92 Q168.908 1200.03 170.714 1203.59 Q172.542 1207.14 176.153 1207.14 Q179.788 1207.14 181.593 1203.59 Q183.422 1200.03 183.422 1192.92 Q183.422 1185.79 181.593 1182.25 Q179.788 1178.69 176.153 1178.69 M176.153 1174.98 Q181.964 1174.98 185.019 1179.59 Q188.098 1184.17 188.098 1192.92 Q188.098 1201.65 185.019 1206.26 Q181.964 1210.84 176.153 1210.84 Q170.343 1210.84 167.265 1206.26 Q164.209 1201.65 164.209 1192.92 Q164.209 1184.17 167.265 1179.59 Q170.343 1174.98 176.153 1174.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M51.9875 1000.08 L81.6633 1000.08 L81.6633 1004.02 L51.9875 1004.02 L51.9875 1000.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M101.756 985.427 Q98.1447 985.427 96.316 988.992 Q94.5104 992.534 94.5104 999.663 Q94.5104 1006.77 96.316 1010.33 Q98.1447 1013.88 101.756 1013.88 Q105.39 1013.88 107.196 1010.33 Q109.024 1006.77 109.024 999.663 Q109.024 992.534 107.196 988.992 Q105.39 985.427 101.756 985.427 M101.756 981.724 Q107.566 981.724 110.621 986.33 Q113.7 990.913 113.7 999.663 Q113.7 1008.39 110.621 1013 Q107.566 1017.58 101.756 1017.58 Q95.9456 1017.58 92.8669 1013 Q89.8114 1008.39 89.8114 999.663 Q89.8114 990.913 92.8669 986.33 Q95.9456 981.724 101.756 981.724 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M121.918 1011.03 L126.802 1011.03 L126.802 1016.91 L121.918 1016.91 L121.918 1011.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M146.987 985.427 Q143.376 985.427 141.547 988.992 Q139.742 992.534 139.742 999.663 Q139.742 1006.77 141.547 1010.33 Q143.376 1013.88 146.987 1013.88 Q150.621 1013.88 152.427 1010.33 Q154.255 1006.77 154.255 999.663 Q154.255 992.534 152.427 988.992 Q150.621 985.427 146.987 985.427 M146.987 981.724 Q152.797 981.724 155.853 986.33 Q158.931 990.913 158.931 999.663 Q158.931 1008.39 155.853 1013 Q152.797 1017.58 146.987 1017.58 Q141.177 1017.58 138.098 1013 Q135.043 1008.39 135.043 999.663 Q135.043 990.913 138.098 986.33 Q141.177 981.724 146.987 981.724 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M167.195 982.349 L185.552 982.349 L185.552 986.284 L171.478 986.284 L171.478 994.756 Q172.496 994.409 173.515 994.247 Q174.533 994.061 175.552 994.061 Q181.339 994.061 184.718 997.233 Q188.098 1000.4 188.098 1005.82 Q188.098 1011.4 184.626 1014.5 Q181.153 1017.58 174.834 1017.58 Q172.658 1017.58 170.39 1017.21 Q168.144 1016.84 165.737 1016.1 L165.737 1011.4 Q167.82 1012.53 170.042 1013.09 Q172.265 1013.64 174.741 1013.64 Q178.746 1013.64 181.084 1011.54 Q183.422 1009.43 183.422 1005.82 Q183.422 1002.21 181.084 1000.1 Q178.746 997.997 174.741 997.997 Q172.866 997.997 170.991 998.413 Q169.14 998.83 167.195 999.71 L167.195 982.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M100.76 792.167 Q97.1493 792.167 95.3206 795.732 Q93.515 799.273 93.515 806.403 Q93.515 813.51 95.3206 817.074 Q97.1493 820.616 100.76 820.616 Q104.395 820.616 106.2 817.074 Q108.029 813.51 108.029 806.403 Q108.029 799.273 106.2 795.732 Q104.395 792.167 100.76 792.167 M100.76 788.463 Q106.571 788.463 109.626 793.07 Q112.705 797.653 112.705 806.403 Q112.705 815.13 109.626 819.736 Q106.571 824.32 100.76 824.32 Q94.9502 824.32 91.8715 819.736 Q88.816 815.13 88.816 806.403 Q88.816 797.653 91.8715 793.07 Q94.9502 788.463 100.76 788.463 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M120.922 817.769 L125.807 817.769 L125.807 823.648 L120.922 823.648 L120.922 817.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M145.992 792.167 Q142.381 792.167 140.552 795.732 Q138.746 799.273 138.746 806.403 Q138.746 813.51 140.552 817.074 Q142.381 820.616 145.992 820.616 Q149.626 820.616 151.431 817.074 Q153.26 813.51 153.26 806.403 Q153.26 799.273 151.431 795.732 Q149.626 792.167 145.992 792.167 M145.992 788.463 Q151.802 788.463 154.857 793.07 Q157.936 797.653 157.936 806.403 Q157.936 815.13 154.857 819.736 Q151.802 824.32 145.992 824.32 Q140.181 824.32 137.103 819.736 Q134.047 815.13 134.047 806.403 Q134.047 797.653 137.103 793.07 Q140.181 788.463 145.992 788.463 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M176.153 792.167 Q172.542 792.167 170.714 795.732 Q168.908 799.273 168.908 806.403 Q168.908 813.51 170.714 817.074 Q172.542 820.616 176.153 820.616 Q179.788 820.616 181.593 817.074 Q183.422 813.51 183.422 806.403 Q183.422 799.273 181.593 795.732 Q179.788 792.167 176.153 792.167 M176.153 788.463 Q181.964 788.463 185.019 793.07 Q188.098 797.653 188.098 806.403 Q188.098 815.13 185.019 819.736 Q181.964 824.32 176.153 824.32 Q170.343 824.32 167.265 819.736 Q164.209 815.13 164.209 806.403 Q164.209 797.653 167.265 793.07 Q170.343 788.463 176.153 788.463 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M101.756 598.907 Q98.1447 598.907 96.316 602.472 Q94.5104 606.013 94.5104 613.143 Q94.5104 620.249 96.316 623.814 Q98.1447 627.356 101.756 627.356 Q105.39 627.356 107.196 623.814 Q109.024 620.249 109.024 613.143 Q109.024 606.013 107.196 602.472 Q105.39 598.907 101.756 598.907 M101.756 595.203 Q107.566 595.203 110.621 599.81 Q113.7 604.393 113.7 613.143 Q113.7 621.87 110.621 626.476 Q107.566 631.059 101.756 631.059 Q95.9456 631.059 92.8669 626.476 Q89.8114 621.87 89.8114 613.143 Q89.8114 604.393 92.8669 599.81 Q95.9456 595.203 101.756 595.203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M121.918 624.509 L126.802 624.509 L126.802 630.388 L121.918 630.388 L121.918 624.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M146.987 598.907 Q143.376 598.907 141.547 602.472 Q139.742 606.013 139.742 613.143 Q139.742 620.249 141.547 623.814 Q143.376 627.356 146.987 627.356 Q150.621 627.356 152.427 623.814 Q154.255 620.249 154.255 613.143 Q154.255 606.013 152.427 602.472 Q150.621 598.907 146.987 598.907 M146.987 595.203 Q152.797 595.203 155.853 599.81 Q158.931 604.393 158.931 613.143 Q158.931 621.87 155.853 626.476 Q152.797 631.059 146.987 631.059 Q141.177 631.059 138.098 626.476 Q135.043 621.87 135.043 613.143 Q135.043 604.393 138.098 599.81 Q141.177 595.203 146.987 595.203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M167.195 595.828 L185.552 595.828 L185.552 599.763 L171.478 599.763 L171.478 608.236 Q172.496 607.888 173.515 607.726 Q174.533 607.541 175.552 607.541 Q181.339 607.541 184.718 610.712 Q188.098 613.884 188.098 619.3 Q188.098 624.879 184.626 627.981 Q181.153 631.059 174.834 631.059 Q172.658 631.059 170.39 630.689 Q168.144 630.319 165.737 629.578 L165.737 624.879 Q167.82 626.013 170.042 626.569 Q172.265 627.124 174.741 627.124 Q178.746 627.124 181.084 625.018 Q183.422 622.911 183.422 619.3 Q183.422 615.689 181.084 613.583 Q178.746 611.476 174.741 611.476 Q172.866 611.476 170.991 611.893 Q169.14 612.31 167.195 613.189 L167.195 595.828 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M100.76 405.647 Q97.1493 405.647 95.3206 409.211 Q93.515 412.753 93.515 419.883 Q93.515 426.989 95.3206 430.554 Q97.1493 434.096 100.76 434.096 Q104.395 434.096 106.2 430.554 Q108.029 426.989 108.029 419.883 Q108.029 412.753 106.2 409.211 Q104.395 405.647 100.76 405.647 M100.76 401.943 Q106.571 401.943 109.626 406.549 Q112.705 411.133 112.705 419.883 Q112.705 428.609 109.626 433.216 Q106.571 437.799 100.76 437.799 Q94.9502 437.799 91.8715 433.216 Q88.816 428.609 88.816 419.883 Q88.816 411.133 91.8715 406.549 Q94.9502 401.943 100.76 401.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M120.922 431.248 L125.807 431.248 L125.807 437.128 L120.922 437.128 L120.922 431.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M136.802 433.193 L144.441 433.193 L144.441 406.827 L136.131 408.494 L136.131 404.235 L144.394 402.568 L149.07 402.568 L149.07 433.193 L156.709 433.193 L156.709 437.128 L136.802 437.128 L136.802 433.193 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M176.153 405.647 Q172.542 405.647 170.714 409.211 Q168.908 412.753 168.908 419.883 Q168.908 426.989 170.714 430.554 Q172.542 434.096 176.153 434.096 Q179.788 434.096 181.593 430.554 Q183.422 426.989 183.422 419.883 Q183.422 412.753 181.593 409.211 Q179.788 405.647 176.153 405.647 M176.153 401.943 Q181.964 401.943 185.019 406.549 Q188.098 411.133 188.098 419.883 Q188.098 428.609 185.019 433.216 Q181.964 437.799 176.153 437.799 Q170.343 437.799 167.265 433.216 Q164.209 428.609 164.209 419.883 Q164.209 411.133 167.265 406.549 Q170.343 401.943 176.153 401.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M101.756 212.386 Q98.1447 212.386 96.316 215.951 Q94.5104 219.493 94.5104 226.622 Q94.5104 233.729 96.316 237.294 Q98.1447 240.835 101.756 240.835 Q105.39 240.835 107.196 237.294 Q109.024 233.729 109.024 226.622 Q109.024 219.493 107.196 215.951 Q105.39 212.386 101.756 212.386 M101.756 208.683 Q107.566 208.683 110.621 213.289 Q113.7 217.873 113.7 226.622 Q113.7 235.349 110.621 239.956 Q107.566 244.539 101.756 244.539 Q95.9456 244.539 92.8669 239.956 Q89.8114 235.349 89.8114 226.622 Q89.8114 217.873 92.8669 213.289 Q95.9456 208.683 101.756 208.683 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M121.918 237.988 L126.802 237.988 L126.802 243.868 L121.918 243.868 L121.918 237.988 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M137.797 239.933 L145.436 239.933 L145.436 213.567 L137.126 215.234 L137.126 210.974 L145.39 209.308 L150.066 209.308 L150.066 239.933 L157.705 239.933 L157.705 243.868 L137.797 243.868 L137.797 239.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M167.195 209.308 L185.552 209.308 L185.552 213.243 L171.478 213.243 L171.478 221.715 Q172.496 221.368 173.515 221.206 Q174.533 221.021 175.552 221.021 Q181.339 221.021 184.718 224.192 Q188.098 227.363 188.098 232.78 Q188.098 238.359 184.626 241.46 Q181.153 244.539 174.834 244.539 Q172.658 244.539 170.39 244.169 Q168.144 243.798 165.737 243.058 L165.737 238.359 Q167.82 239.493 170.042 240.048 Q172.265 240.604 174.741 240.604 Q178.746 240.604 181.084 238.497 Q183.422 236.391 183.422 232.78 Q183.422 229.169 181.084 227.062 Q178.746 224.956 174.741 224.956 Q172.866 224.956 170.991 225.373 Q169.14 225.789 167.195 226.669 L167.195 209.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip872)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.343,817.637 288.483,897.722 292.624,864.58 296.765,835.807 300.905,830.081 305.046,842.213 309.186,885.191 313.327,905.64 317.467,700.975 321.608,788.064 \n",
" 325.748,886.32 329.889,837.564 334.03,756.575 338.17,794.019 342.311,806.368 346.451,800.209 350.592,812.528 354.732,733.092 358.873,728.523 363.013,800.445 \n",
" 367.154,902.254 371.295,806.368 375.435,855.218 379.576,855.844 383.716,781.552 387.857,232.694 391.997,603.847 396.138,781.155 400.278,872.269 404.419,700.466 \n",
" 408.559,645.599 412.7,721.415 416.841,723.242 420.981,894.165 425.122,920.198 429.262,796.753 433.403,854.684 437.543,777.307 441.684,840.295 445.824,825.89 \n",
" 449.965,825.989 454.106,821.149 458.246,931.791 462.387,806.368 466.527,700.742 470.668,752.171 474.808,748.098 478.949,864.639 483.089,835.836 487.23,796.521 \n",
" 491.371,865.834 495.511,1445.72 499.652,883.735 503.792,842.605 507.933,806.368 512.073,861.368 516.214,757.441 520.354,879.993 524.495,714.554 528.636,716.684 \n",
" 532.776,944.748 536.917,969.006 541.057,662.151 545.198,880.94 549.338,725.646 553.479,818.678 557.619,769.557 561.76,806.368 565.9,855.529 570.041,757.208 \n",
" 574.182,824.73 578.322,837.167 582.463,508.898 586.603,994.094 590.744,860.851 594.884,727.915 599.025,878.73 603.165,843.064 607.306,956.735 611.447,743.003 \n",
" 615.587,837.922 619.728,718.661 623.868,769.38 628.009,806.368 632.149,818.659 636.29,364.814 640.43,895.228 644.571,937.792 648.712,760.147 652.852,893.492 \n",
" 656.993,777.108 661.133,680.193 665.274,863.211 669.414,783.531 673.555,875.289 677.695,1014.71 681.836,918.051 685.977,1238.87 690.117,634.248 694.258,833.398 \n",
" 698.398,759.19 702.539,792.994 706.679,956.096 710.82,1215.92 714.96,729.979 719.101,944.976 723.241,1024.07 727.382,1117.13 731.523,726.304 735.663,381.559 \n",
" 739.804,790.624 743.944,869.734 748.085,711.706 752.225,775.322 756.366,573.861 760.506,902.175 764.647,674.337 768.788,850.292 772.928,784.344 777.069,843.145 \n",
" 781.209,821.177 785.35,896.436 789.49,679.384 793.631,769.8 797.771,691.623 801.912,778.206 806.053,743.744 810.193,751.542 814.334,725.56 818.474,819.72 \n",
" 822.615,799.687 826.755,813.05 830.896,860.24 835.036,993.935 839.177,195.321 843.317,1155.97 847.458,549.022 851.599,677.822 855.739,848.744 859.88,830.793 \n",
" 864.02,837.118 868.161,233.547 872.301,1099.37 876.442,637.8 880.582,992.204 884.723,858.641 888.864,925.124 893.004,830.564 897.145,710.483 901.285,818.225 \n",
" 905.426,884.335 909.566,776.195 913.707,897.605 917.847,709.126 921.988,758.649 926.129,788.625 930.269,871.831 934.41,776.475 938.55,747.266 942.691,662.45 \n",
" 946.831,863.294 950.972,893.361 955.112,806.368 959.253,673.768 963.394,727.827 967.534,675.332 971.675,942.962 975.815,919.229 979.956,869.876 984.096,680.38 \n",
" 988.237,744.882 992.377,834.196 996.518,840.028 1000.66,689.821 1004.8,883.675 1008.94,908.09 1013.08,823.585 1017.22,887.744 1021.36,883.497 1025.5,788.432 \n",
" 1029.64,909.124 1033.78,893.091 1037.92,713.525 1042.06,794.156 1046.2,830.832 1050.35,794.118 1054.49,949.656 1058.63,870.363 1062.77,679.421 1066.91,756.734 \n",
" 1071.05,763.455 1075.19,836.972 1079.33,812.518 1083.47,709.126 1087.61,800.371 1091.75,735.118 1095.89,800.49 1100.03,895.501 1104.17,746.719 1108.31,860.011 \n",
" 1112.45,915.94 1116.59,666.903 1120.73,776.704 1124.88,800.463 1129.02,771.123 1133.16,590.316 1137.3,884.569 1141.44,817.67 1145.58,846.187 1149.72,800.655 \n",
" 1153.86,727.253 1158,828.808 1162.14,700.922 1166.28,928.73 1170.42,722.521 1174.56,800.842 1178.7,839.642 1182.84,751.071 1186.98,861.666 1191.12,851.183 \n",
" 1195.26,646.33 1199.41,763.362 1203.55,953.476 1207.69,800.819 1211.83,834.196 1215.97,862.632 1220.11,667.217 1224.25,811.84 1228.39,806.368 1232.53,878.204 \n",
" 1236.67,745.498 1240.81,800.882 1244.95,87.9763 1249.09,1079.87 1253.23,772.314 1257.37,845.313 1261.51,1038.25 1265.65,848.155 1269.79,848.612 1273.93,722.339 \n",
" 1278.08,842.907 1282.22,961.532 1286.36,779.168 1290.5,790.139 1294.64,795.587 1298.78,860.58 1302.92,752.157 1307.06,632.681 1311.2,900.138 1315.34,864.812 \n",
" 1319.48,871.15 1323.62,894.468 1327.76,723.717 1331.9,828.237 1336.04,746.526 1340.18,877.191 1344.32,789.909 1348.46,833.84 1352.61,817.412 1356.75,884.569 \n",
" 1360.89,789.478 1365.03,931.984 1369.17,748.764 1373.31,721.54 1377.45,761.876 1381.59,850.86 1385.73,891.197 1389.87,743.979 1394.01,789.526 1398.15,800.771 \n",
" 1402.29,750.833 1406.43,822.945 1410.57,884.682 1414.71,812.023 1418.85,817.703 1422.99,772.463 1427.14,800.746 1431.28,823.259 1435.42,778.258 1439.56,756.279 \n",
" 1443.7,929.976 1447.84,852.315 1451.98,760.422 1456.12,789.278 1460.26,852.111 1464.4,864.319 1468.54,765.712 1472.68,806.368 1476.82,823.74 1480.96,864.844 \n",
" 1485.1,747.892 1489.24,817.993 1493.38,794.744 1497.52,835.496 1501.67,794.691 1505.81,812.203 1509.95,900.935 1514.09,806.368 1518.23,794.42 1522.37,818.317 \n",
" 1526.51,741.106 1530.65,696.175 1534.79,812.09 1538.93,812.099 1543.07,726.905 1547.21,823.259 1551.35,778.258 1555.49,712.293 1559.63,741.314 1563.77,838.759 \n",
" 1567.91,833.569 1572.05,752.157 1576.2,817.15 1580.34,811.77 1584.48,795.572 1588.62,795.602 1592.76,758.287 1596.9,748.402 1601.04,864.334 1605.18,811.681 \n",
" 1609.32,870.7 1613.46,849.859 1617.6,779.129 1621.74,790.117 1625.88,768.711 1630.02,705.968 1634.16,775.197 1638.3,1118.77 1642.44,891.446 1646.58,760.761 \n",
" 1650.73,806.368 1654.87,817.72 1659.01,863.631 1663.15,794.848 1667.29,870.162 1671.43,865.29 1675.57,812.31 1679.71,860.26 1683.85,794.327 1687.99,903.764 \n",
" 1692.13,745.209 1696.27,861.368 1700.41,824.877 1704.55,831.185 1708.69,787.741 1712.83,757.129 1716.97,697.822 1721.11,830.228 1725.26,782.509 1729.4,806.368 \n",
" 1733.54,747.356 1737.68,835.762 1741.82,788.705 1745.96,824.031 1750.1,765.28 1754.24,812.211 1758.38,865.29 1762.52,872.237 1766.66,764.322 1770.8,496.527 \n",
" 1774.94,789.862 1779.08,707.396 1783.22,877.593 1787.36,845.271 1791.5,718.017 1795.64,861.351 1799.79,896 1803.93,733.385 1808.07,767.633 1812.21,757.129 \n",
" 1816.35,688.583 1820.49,827.519 1824.63,832.97 1828.77,774.468 1832.91,854.318 1837.05,779.656 1841.19,758.747 1845.33,859.317 1849.47,833.117 1853.61,838.713 \n",
" 1857.75,763.302 1861.89,801.019 1866.03,838.579 1870.17,768.816 1874.32,790.385 1878.46,838.401 1882.6,742.567 1886.74,521.81 1890.88,880.559 1895.02,791.416 \n",
" 1899.16,747.13 1903.3,890.559 1907.44,731.988 1911.58,786.773 1915.72,597.13 1919.86,815.637 1924,783.237 1928.14,909.197 1932.28,863.632 1936.42,884.064 \n",
" 1940.56,826.039 1944.7,836.063 1948.85,717.961 1952.99,806.368 1957.13,840.509 1961.27,840.813 1965.41,861.124 1969.55,816.408 1973.69,826.526 1977.83,776.171 \n",
" 1981.97,717.167 1986.11,671.578 1990.25,745.35 1994.39,755.479 1998.53,720.017 2002.67,806.368 2006.81,892.72 2010.95,806.368 2015.09,801.775 2019.23,875.847 \n",
" 2023.37,783.07 2027.52,876.689 2031.66,740.696 2035.8,862.591 2039.94,608.581 2044.08,687.158 2048.22,669.684 2052.36,566.368 2056.5,647.952 2060.64,937.274 \n",
" 2064.78,667.898 2068.92,776.26 2073.06,534.951 2077.2,1055.36 2081.34,761.898 2085.48,661.723 2089.62,831.294 2093.76,929.775 2097.9,755.076 2102.05,695.158 \n",
" 2106.19,906.676 2110.33,875.948 2114.47,733.162 2118.61,916.705 2122.75,828.819 2126.89,791.387 2131.03,878.053 2135.17,1375.63 2139.31,886.618 2143.45,673.53 \n",
" 2147.59,828.193 2151.73,850.392 2155.87,846.423 2160.01,887.744 2164.15,870.867 2168.29,746.442 2172.43,898.953 2176.58,811.056 2180.72,778.326 2184.86,700.717 \n",
" 2189,730.094 2193.14,815.264 2197.28,910.169 2201.42,738.357 2205.56,851.576 2209.7,716.476 2213.84,757.804 2217.98,863.828 2222.12,824.222 2226.26,766.314 \n",
" 2230.4,810.798 2234.54,679.915 2238.68,679.767 2242.82,769.183 2246.96,802.259 2251.11,794.065 2255.25,897.514 2259.39,756.387 2263.53,864.744 2267.67,908.538 \n",
" 2271.81,662.412 2275.95,839.761 2280.09,781.297 2284.23,818.884 2288.37,723.687 2292.51,901.606 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"\n",
"M1884.87 216.178 L2281.8 216.178 L2281.8 95.2176 L1884.87 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1884.87,216.178 2281.8,216.178 2281.8,95.2176 1884.87,95.2176 1884.87,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1908.52,155.698 2050.43,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"M2074.08 136.959 L2078.34 136.959 L2078.34 172.978 L2074.08 172.978 L2074.08 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2097.3 150.038 Q2093.87 150.038 2091.88 152.723 Q2089.89 155.385 2089.89 160.038 Q2089.89 164.691 2091.86 167.376 Q2093.85 170.038 2097.3 170.038 Q2100.7 170.038 2102.69 167.353 Q2104.68 164.667 2104.68 160.038 Q2104.68 155.431 2102.69 152.746 Q2100.7 150.038 2097.3 150.038 M2097.3 146.427 Q2102.85 146.427 2106.03 150.038 Q2109.2 153.649 2109.2 160.038 Q2109.2 166.404 2106.03 170.038 Q2102.85 173.649 2097.3 173.649 Q2091.72 173.649 2088.55 170.038 Q2085.4 166.404 2085.4 160.038 Q2085.4 153.649 2088.55 150.038 Q2091.72 146.427 2097.3 146.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2133.32 159.714 Q2133.32 155.084 2131.4 152.538 Q2129.5 149.992 2126.05 149.992 Q2122.62 149.992 2120.7 152.538 Q2118.8 155.084 2118.8 159.714 Q2118.8 164.32 2120.7 166.866 Q2122.62 169.413 2126.05 169.413 Q2129.5 169.413 2131.4 166.866 Q2133.32 164.32 2133.32 159.714 M2137.58 169.76 Q2137.58 176.38 2134.64 179.598 Q2131.7 182.839 2125.63 182.839 Q2123.39 182.839 2121.4 182.491 Q2119.41 182.167 2117.53 181.473 L2117.53 177.329 Q2119.41 178.348 2121.23 178.834 Q2123.06 179.32 2124.96 179.32 Q2129.15 179.32 2131.23 177.121 Q2133.32 174.945 2133.32 170.524 L2133.32 168.417 Q2132 170.709 2129.94 171.843 Q2127.88 172.978 2125.01 172.978 Q2120.24 172.978 2117.32 169.343 Q2114.41 165.709 2114.41 159.714 Q2114.41 153.695 2117.32 150.061 Q2120.24 146.427 2125.01 146.427 Q2127.88 146.427 2129.94 147.561 Q2132 148.695 2133.32 150.987 L2133.32 147.052 L2137.58 147.052 L2137.58 169.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2178.48 150.987 L2178.48 136.959 L2182.74 136.959 L2182.74 172.978 L2178.48 172.978 L2178.48 169.089 Q2177.14 171.403 2175.08 172.538 Q2173.04 173.649 2170.17 173.649 Q2165.47 173.649 2162.51 169.899 Q2159.57 166.149 2159.57 160.038 Q2159.57 153.927 2162.51 150.177 Q2165.47 146.427 2170.17 146.427 Q2173.04 146.427 2175.08 147.561 Q2177.14 148.672 2178.48 150.987 M2163.97 160.038 Q2163.97 164.737 2165.89 167.422 Q2167.83 170.084 2171.21 170.084 Q2174.59 170.084 2176.53 167.422 Q2178.48 164.737 2178.48 160.038 Q2178.48 155.339 2176.53 152.677 Q2174.59 149.992 2171.21 149.992 Q2167.83 149.992 2165.89 152.677 Q2163.97 155.339 2163.97 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2191.51 147.052 L2195.77 147.052 L2195.77 172.978 L2191.51 172.978 L2191.51 147.052 M2191.51 136.959 L2195.77 136.959 L2195.77 142.353 L2191.51 142.353 L2191.51 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2217.81 136.959 L2217.81 140.501 L2213.73 140.501 Q2211.44 140.501 2210.54 141.427 Q2209.66 142.353 2209.66 144.76 L2209.66 147.052 L2216.67 147.052 L2216.67 150.362 L2209.66 150.362 L2209.66 172.978 L2205.38 172.978 L2205.38 150.362 L2201.3 150.362 L2201.3 147.052 L2205.38 147.052 L2205.38 145.246 Q2205.38 140.918 2207.39 138.95 Q2209.4 136.959 2213.78 136.959 L2217.81 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2234.5 136.959 L2234.5 140.501 L2230.42 140.501 Q2228.13 140.501 2227.23 141.427 Q2226.35 142.353 2226.35 144.76 L2226.35 147.052 L2233.36 147.052 L2233.36 150.362 L2226.35 150.362 L2226.35 172.978 L2222.07 172.978 L2222.07 150.362 L2217.99 150.362 L2217.99 147.052 L2222.07 147.052 L2222.07 145.246 Q2222.07 140.918 2224.08 138.95 Q2226.09 136.959 2230.47 136.959 L2234.5 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 50,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"X = diff( log.( df.\"Adj Close\" ) )\n",
"plot(X, label=\"log diff\")"
]
},
{
"cell_type": "code",
"execution_count": 51,
"id": "e0d9983f",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"ar(1, [0.0007199738693385518, -0.08286116352482356], 0.0009092091815783917)"
]
},
"execution_count": 51,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"lags = 1\n",
"p = rand(2)\n",
"σ = rand()\n",
"m = ar(lags, p, σ )\n",
"fit!(m, X)\n",
"m"
]
},
{
"cell_type": "code",
"execution_count": 52,
"id": "c038711b",
"metadata": {},
"outputs": [],
"source": [
"# 条件付き期待値で各予測値を計算\n",
"pre = [ conditional_expectation( m, X[1:i], length_pre=1 ) for i in 1:length(X)-1 ];"
]
},
{
"cell_type": "code",
"execution_count": 53,
"id": "c0cc5688",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip910\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip910)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip911\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip910)\" d=\"\n",
"M254.26 1486.45 L2352.76 1486.45 L2352.76 47.2441 L254.26 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip912\">\n",
" <rect x=\"254\" y=\"47\" width=\"2099\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 309.561,1486.45 309.561,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 718.593,1486.45 718.593,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1127.62,1486.45 1127.62,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1536.66,1486.45 1536.66,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1945.69,1486.45 1945.69,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 309.561,1486.45 309.561,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 718.593,1486.45 718.593,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1127.62,1486.45 1127.62,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1536.66,1486.45 1536.66,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1945.69,1486.45 1945.69,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"M309.561 1515.64 Q305.95 1515.64 304.121 1519.2 Q302.316 1522.75 302.316 1529.87 Q302.316 1536.98 304.121 1540.55 Q305.95 1544.09 309.561 1544.09 Q313.195 1544.09 315.001 1540.55 Q316.829 1536.98 316.829 1529.87 Q316.829 1522.75 315.001 1519.2 Q313.195 1515.64 309.561 1515.64 M309.561 1511.93 Q315.371 1511.93 318.427 1516.54 Q321.505 1521.12 321.505 1529.87 Q321.505 1538.6 318.427 1543.21 Q315.371 1547.79 309.561 1547.79 Q303.751 1547.79 300.672 1543.21 Q297.616 1538.6 297.616 1529.87 Q297.616 1521.12 300.672 1516.54 Q303.751 1511.93 309.561 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M678.199 1543.18 L685.838 1543.18 L685.838 1516.82 L677.528 1518.49 L677.528 1514.23 L685.792 1512.56 L690.468 1512.56 L690.468 1543.18 L698.107 1543.18 L698.107 1547.12 L678.199 1547.12 L678.199 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M717.551 1515.64 Q713.94 1515.64 712.111 1519.2 Q710.306 1522.75 710.306 1529.87 Q710.306 1536.98 712.111 1540.55 Q713.94 1544.09 717.551 1544.09 Q721.185 1544.09 722.991 1540.55 Q724.819 1536.98 724.819 1529.87 Q724.819 1522.75 722.991 1519.2 Q721.185 1515.64 717.551 1515.64 M717.551 1511.93 Q723.361 1511.93 726.417 1516.54 Q729.495 1521.12 729.495 1529.87 Q729.495 1538.6 726.417 1543.21 Q723.361 1547.79 717.551 1547.79 Q711.741 1547.79 708.662 1543.21 Q705.606 1538.6 705.606 1529.87 Q705.606 1521.12 708.662 1516.54 Q711.741 1511.93 717.551 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M747.713 1515.64 Q744.102 1515.64 742.273 1519.2 Q740.467 1522.75 740.467 1529.87 Q740.467 1536.98 742.273 1540.55 Q744.102 1544.09 747.713 1544.09 Q751.347 1544.09 753.153 1540.55 Q754.981 1536.98 754.981 1529.87 Q754.981 1522.75 753.153 1519.2 Q751.347 1515.64 747.713 1515.64 M747.713 1511.93 Q753.523 1511.93 756.578 1516.54 Q759.657 1521.12 759.657 1529.87 Q759.657 1538.6 756.578 1543.21 Q753.523 1547.79 747.713 1547.79 Q741.903 1547.79 738.824 1543.21 Q735.768 1538.6 735.768 1529.87 Q735.768 1521.12 738.824 1516.54 Q741.903 1511.93 747.713 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1091.32 1543.18 L1107.64 1543.18 L1107.64 1547.12 L1085.69 1547.12 L1085.69 1543.18 Q1088.35 1540.43 1092.94 1535.8 Q1097.54 1531.15 1098.72 1529.81 Q1100.97 1527.28 1101.85 1525.55 Q1102.75 1523.79 1102.75 1522.1 Q1102.75 1519.34 1100.81 1517.61 Q1098.89 1515.87 1095.78 1515.87 Q1093.59 1515.87 1091.13 1516.63 Q1088.7 1517.4 1085.92 1518.95 L1085.92 1514.23 Q1088.75 1513.09 1091.2 1512.51 Q1093.65 1511.93 1095.69 1511.93 Q1101.06 1511.93 1104.26 1514.62 Q1107.45 1517.31 1107.45 1521.8 Q1107.45 1523.93 1106.64 1525.85 Q1105.85 1527.74 1103.75 1530.34 Q1103.17 1531.01 1100.07 1534.23 Q1096.96 1537.42 1091.32 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1127.45 1515.64 Q1123.84 1515.64 1122.01 1519.2 Q1120.21 1522.75 1120.21 1529.87 Q1120.21 1536.98 1122.01 1540.55 Q1123.84 1544.09 1127.45 1544.09 Q1131.08 1544.09 1132.89 1540.55 Q1134.72 1536.98 1134.72 1529.87 Q1134.72 1522.75 1132.89 1519.2 Q1131.08 1515.64 1127.45 1515.64 M1127.45 1511.93 Q1133.26 1511.93 1136.32 1516.54 Q1139.39 1521.12 1139.39 1529.87 Q1139.39 1538.6 1136.32 1543.21 Q1133.26 1547.79 1127.45 1547.79 Q1121.64 1547.79 1118.56 1543.21 Q1115.51 1538.6 1115.51 1529.87 Q1115.51 1521.12 1118.56 1516.54 Q1121.64 1511.93 1127.45 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1157.61 1515.64 Q1154 1515.64 1152.17 1519.2 Q1150.37 1522.75 1150.37 1529.87 Q1150.37 1536.98 1152.17 1540.55 Q1154 1544.09 1157.61 1544.09 Q1161.25 1544.09 1163.05 1540.55 Q1164.88 1536.98 1164.88 1529.87 Q1164.88 1522.75 1163.05 1519.2 Q1161.25 1515.64 1157.61 1515.64 M1157.61 1511.93 Q1163.42 1511.93 1166.48 1516.54 Q1169.56 1521.12 1169.56 1529.87 Q1169.56 1538.6 1166.48 1543.21 Q1163.42 1547.79 1157.61 1547.79 Q1151.8 1547.79 1148.72 1543.21 Q1145.67 1538.6 1145.67 1529.87 Q1145.67 1521.12 1148.72 1516.54 Q1151.8 1511.93 1157.61 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1510.42 1528.49 Q1513.77 1529.2 1515.65 1531.47 Q1517.55 1533.74 1517.55 1537.07 Q1517.55 1542.19 1514.03 1544.99 Q1510.51 1547.79 1504.03 1547.79 Q1501.85 1547.79 1499.54 1547.35 Q1497.25 1546.93 1494.79 1546.08 L1494.79 1541.56 Q1496.74 1542.7 1499.05 1543.28 Q1501.37 1543.86 1503.89 1543.86 Q1508.29 1543.86 1510.58 1542.12 Q1512.89 1540.38 1512.89 1537.07 Q1512.89 1534.02 1510.74 1532.31 Q1508.61 1530.57 1504.79 1530.57 L1500.76 1530.57 L1500.76 1526.73 L1504.98 1526.73 Q1508.43 1526.73 1510.26 1525.36 Q1512.08 1523.97 1512.08 1521.38 Q1512.08 1518.72 1510.19 1517.31 Q1508.31 1515.87 1504.79 1515.87 Q1502.87 1515.87 1500.67 1516.29 Q1498.47 1516.7 1495.83 1517.58 L1495.83 1513.42 Q1498.5 1512.68 1500.81 1512.31 Q1503.15 1511.93 1505.21 1511.93 Q1510.53 1511.93 1513.64 1514.37 Q1516.74 1516.77 1516.74 1520.89 Q1516.74 1523.76 1515.09 1525.75 Q1513.45 1527.72 1510.42 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1536.41 1515.64 Q1532.8 1515.64 1530.97 1519.2 Q1529.17 1522.75 1529.17 1529.87 Q1529.17 1536.98 1530.97 1540.55 Q1532.8 1544.09 1536.41 1544.09 Q1540.05 1544.09 1541.85 1540.55 Q1543.68 1536.98 1543.68 1529.87 Q1543.68 1522.75 1541.85 1519.2 Q1540.05 1515.64 1536.41 1515.64 M1536.41 1511.93 Q1542.22 1511.93 1545.28 1516.54 Q1548.36 1521.12 1548.36 1529.87 Q1548.36 1538.6 1545.28 1543.21 Q1542.22 1547.79 1536.41 1547.79 Q1530.6 1547.79 1527.52 1543.21 Q1524.47 1538.6 1524.47 1529.87 Q1524.47 1521.12 1527.52 1516.54 Q1530.6 1511.93 1536.41 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1566.57 1515.64 Q1562.96 1515.64 1561.13 1519.2 Q1559.33 1522.75 1559.33 1529.87 Q1559.33 1536.98 1561.13 1540.55 Q1562.96 1544.09 1566.57 1544.09 Q1570.21 1544.09 1572.01 1540.55 Q1573.84 1536.98 1573.84 1529.87 Q1573.84 1522.75 1572.01 1519.2 Q1570.21 1515.64 1566.57 1515.64 M1566.57 1511.93 Q1572.38 1511.93 1575.44 1516.54 Q1578.52 1521.12 1578.52 1529.87 Q1578.52 1538.6 1575.44 1543.21 Q1572.38 1547.79 1566.57 1547.79 Q1560.76 1547.79 1557.69 1543.21 Q1554.63 1538.6 1554.63 1529.87 Q1554.63 1521.12 1557.69 1516.54 Q1560.76 1511.93 1566.57 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1918.78 1516.63 L1906.97 1535.08 L1918.78 1535.08 L1918.78 1516.63 M1917.55 1512.56 L1923.43 1512.56 L1923.43 1535.08 L1928.36 1535.08 L1928.36 1538.97 L1923.43 1538.97 L1923.43 1547.12 L1918.78 1547.12 L1918.78 1538.97 L1903.18 1538.97 L1903.18 1534.46 L1917.55 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1946.09 1515.64 Q1942.48 1515.64 1940.65 1519.2 Q1938.85 1522.75 1938.85 1529.87 Q1938.85 1536.98 1940.65 1540.55 Q1942.48 1544.09 1946.09 1544.09 Q1949.73 1544.09 1951.53 1540.55 Q1953.36 1536.98 1953.36 1529.87 Q1953.36 1522.75 1951.53 1519.2 Q1949.73 1515.64 1946.09 1515.64 M1946.09 1511.93 Q1951.9 1511.93 1954.96 1516.54 Q1958.04 1521.12 1958.04 1529.87 Q1958.04 1538.6 1954.96 1543.21 Q1951.9 1547.79 1946.09 1547.79 Q1940.28 1547.79 1937.2 1543.21 Q1934.15 1538.6 1934.15 1529.87 Q1934.15 1521.12 1937.2 1516.54 Q1940.28 1511.93 1946.09 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1976.25 1515.64 Q1972.64 1515.64 1970.81 1519.2 Q1969.01 1522.75 1969.01 1529.87 Q1969.01 1536.98 1970.81 1540.55 Q1972.64 1544.09 1976.25 1544.09 Q1979.89 1544.09 1981.69 1540.55 Q1983.52 1536.98 1983.52 1529.87 Q1983.52 1522.75 1981.69 1519.2 Q1979.89 1515.64 1976.25 1515.64 M1976.25 1511.93 Q1982.06 1511.93 1985.12 1516.54 Q1988.2 1521.12 1988.2 1529.87 Q1988.2 1538.6 1985.12 1543.21 Q1982.06 1547.79 1976.25 1547.79 Q1970.44 1547.79 1967.37 1543.21 Q1964.31 1538.6 1964.31 1529.87 Q1964.31 1521.12 1967.37 1516.54 Q1970.44 1511.93 1976.25 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,1460.61 2352.76,1460.61 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,1227.38 2352.76,1227.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,994.142 2352.76,994.142 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,760.908 2352.76,760.908 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,527.674 2352.76,527.674 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,294.441 2352.76,294.441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,61.2068 2352.76,61.2068 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1486.45 254.26,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1460.61 279.442,1460.61 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1227.38 279.442,1227.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,994.142 279.442,994.142 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,760.908 279.442,760.908 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,527.674 279.442,527.674 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,294.441 279.442,294.441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,61.2068 279.442,61.2068 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"M51.9875 1461.06 L81.6633 1461.06 L81.6633 1465 L51.9875 1465 L51.9875 1461.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M101.756 1446.41 Q98.1447 1446.41 96.316 1449.97 Q94.5104 1453.51 94.5104 1460.64 Q94.5104 1467.75 96.316 1471.32 Q98.1447 1474.86 101.756 1474.86 Q105.39 1474.86 107.196 1471.32 Q109.024 1467.75 109.024 1460.64 Q109.024 1453.51 107.196 1449.97 Q105.39 1446.41 101.756 1446.41 M101.756 1442.7 Q107.566 1442.7 110.621 1447.31 Q113.7 1451.89 113.7 1460.64 Q113.7 1469.37 110.621 1473.98 Q107.566 1478.56 101.756 1478.56 Q95.9456 1478.56 92.8669 1473.98 Q89.8114 1469.37 89.8114 1460.64 Q89.8114 1451.89 92.8669 1447.31 Q95.9456 1442.7 101.756 1442.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M121.918 1472.01 L126.802 1472.01 L126.802 1477.89 L121.918 1477.89 L121.918 1472.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M146.987 1446.41 Q143.376 1446.41 141.547 1449.97 Q139.742 1453.51 139.742 1460.64 Q139.742 1467.75 141.547 1471.32 Q143.376 1474.86 146.987 1474.86 Q150.621 1474.86 152.427 1471.32 Q154.255 1467.75 154.255 1460.64 Q154.255 1453.51 152.427 1449.97 Q150.621 1446.41 146.987 1446.41 M146.987 1442.7 Q152.797 1442.7 155.853 1447.31 Q158.931 1451.89 158.931 1460.64 Q158.931 1469.37 155.853 1473.98 Q152.797 1478.56 146.987 1478.56 Q141.177 1478.56 138.098 1473.98 Q135.043 1469.37 135.043 1460.64 Q135.043 1451.89 138.098 1447.31 Q141.177 1442.7 146.987 1442.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M167.959 1473.95 L175.598 1473.95 L175.598 1447.59 L167.288 1449.26 L167.288 1445 L175.552 1443.33 L180.228 1443.33 L180.228 1473.95 L187.866 1473.95 L187.866 1477.89 L167.959 1477.89 L167.959 1473.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M197.357 1443.33 L215.713 1443.33 L215.713 1447.26 L201.639 1447.26 L201.639 1455.74 Q202.658 1455.39 203.676 1455.23 Q204.695 1455.04 205.714 1455.04 Q211.501 1455.04 214.88 1458.21 Q218.26 1461.38 218.26 1466.8 Q218.26 1472.38 214.788 1475.48 Q211.315 1478.56 204.996 1478.56 Q202.82 1478.56 200.552 1478.19 Q198.306 1477.82 195.899 1477.08 L195.899 1472.38 Q197.982 1473.51 200.204 1474.07 Q202.426 1474.63 204.903 1474.63 Q208.908 1474.63 211.246 1472.52 Q213.584 1470.41 213.584 1466.8 Q213.584 1463.19 211.246 1461.08 Q208.908 1458.98 204.903 1458.98 Q203.028 1458.98 201.153 1459.39 Q199.302 1459.81 197.357 1460.69 L197.357 1443.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M50.9921 1227.83 L80.6679 1227.83 L80.6679 1231.76 L50.9921 1231.76 L50.9921 1227.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M100.76 1213.17 Q97.1493 1213.17 95.3206 1216.74 Q93.515 1220.28 93.515 1227.41 Q93.515 1234.52 95.3206 1238.08 Q97.1493 1241.62 100.76 1241.62 Q104.395 1241.62 106.2 1238.08 Q108.029 1234.52 108.029 1227.41 Q108.029 1220.28 106.2 1216.74 Q104.395 1213.17 100.76 1213.17 M100.76 1209.47 Q106.571 1209.47 109.626 1214.08 Q112.705 1218.66 112.705 1227.41 Q112.705 1236.14 109.626 1240.74 Q106.571 1245.33 100.76 1245.33 Q94.9502 1245.33 91.8715 1240.74 Q88.816 1236.14 88.816 1227.41 Q88.816 1218.66 91.8715 1214.08 Q94.9502 1209.47 100.76 1209.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M120.922 1238.78 L125.807 1238.78 L125.807 1244.66 L120.922 1244.66 L120.922 1238.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M145.992 1213.17 Q142.381 1213.17 140.552 1216.74 Q138.746 1220.28 138.746 1227.41 Q138.746 1234.52 140.552 1238.08 Q142.381 1241.62 145.992 1241.62 Q149.626 1241.62 151.431 1238.08 Q153.26 1234.52 153.26 1227.41 Q153.26 1220.28 151.431 1216.74 Q149.626 1213.17 145.992 1213.17 M145.992 1209.47 Q151.802 1209.47 154.857 1214.08 Q157.936 1218.66 157.936 1227.41 Q157.936 1236.14 154.857 1240.74 Q151.802 1245.33 145.992 1245.33 Q140.181 1245.33 137.103 1240.74 Q134.047 1236.14 134.047 1227.41 Q134.047 1218.66 137.103 1214.08 Q140.181 1209.47 145.992 1209.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M166.964 1240.72 L174.603 1240.72 L174.603 1214.35 L166.292 1216.02 L166.292 1211.76 L174.556 1210.1 L179.232 1210.1 L179.232 1240.72 L186.871 1240.72 L186.871 1244.66 L166.964 1244.66 L166.964 1240.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M206.315 1213.17 Q202.704 1213.17 200.876 1216.74 Q199.07 1220.28 199.07 1227.41 Q199.07 1234.52 200.876 1238.08 Q202.704 1241.62 206.315 1241.62 Q209.95 1241.62 211.755 1238.08 Q213.584 1234.52 213.584 1227.41 Q213.584 1220.28 211.755 1216.74 Q209.95 1213.17 206.315 1213.17 M206.315 1209.47 Q212.126 1209.47 215.181 1214.08 Q218.26 1218.66 218.26 1227.41 Q218.26 1236.14 215.181 1240.74 Q212.126 1245.33 206.315 1245.33 Q200.505 1245.33 197.427 1240.74 Q194.371 1236.14 194.371 1227.41 Q194.371 1218.66 197.427 1214.08 Q200.505 1209.47 206.315 1209.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M51.9875 994.593 L81.6633 994.593 L81.6633 998.528 L51.9875 998.528 L51.9875 994.593 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M101.756 979.94 Q98.1447 979.94 96.316 983.505 Q94.5104 987.047 94.5104 994.177 Q94.5104 1001.28 96.316 1004.85 Q98.1447 1008.39 101.756 1008.39 Q105.39 1008.39 107.196 1004.85 Q109.024 1001.28 109.024 994.177 Q109.024 987.047 107.196 983.505 Q105.39 979.94 101.756 979.94 M101.756 976.237 Q107.566 976.237 110.621 980.843 Q113.7 985.427 113.7 994.177 Q113.7 1002.9 110.621 1007.51 Q107.566 1012.09 101.756 1012.09 Q95.9456 1012.09 92.8669 1007.51 Q89.8114 1002.9 89.8114 994.177 Q89.8114 985.427 92.8669 980.843 Q95.9456 976.237 101.756 976.237 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M121.918 1005.54 L126.802 1005.54 L126.802 1011.42 L121.918 1011.42 L121.918 1005.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M146.987 979.94 Q143.376 979.94 141.547 983.505 Q139.742 987.047 139.742 994.177 Q139.742 1001.28 141.547 1004.85 Q143.376 1008.39 146.987 1008.39 Q150.621 1008.39 152.427 1004.85 Q154.255 1001.28 154.255 994.177 Q154.255 987.047 152.427 983.505 Q150.621 979.94 146.987 979.94 M146.987 976.237 Q152.797 976.237 155.853 980.843 Q158.931 985.427 158.931 994.177 Q158.931 1002.9 155.853 1007.51 Q152.797 1012.09 146.987 1012.09 Q141.177 1012.09 138.098 1007.51 Q135.043 1002.9 135.043 994.177 Q135.043 985.427 138.098 980.843 Q141.177 976.237 146.987 976.237 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M177.149 979.94 Q173.538 979.94 171.709 983.505 Q169.904 987.047 169.904 994.177 Q169.904 1001.28 171.709 1004.85 Q173.538 1008.39 177.149 1008.39 Q180.783 1008.39 182.589 1004.85 Q184.417 1001.28 184.417 994.177 Q184.417 987.047 182.589 983.505 Q180.783 979.94 177.149 979.94 M177.149 976.237 Q182.959 976.237 186.015 980.843 Q189.093 985.427 189.093 994.177 Q189.093 1002.9 186.015 1007.51 Q182.959 1012.09 177.149 1012.09 Q171.339 1012.09 168.26 1007.51 Q165.204 1002.9 165.204 994.177 Q165.204 985.427 168.26 980.843 Q171.339 976.237 177.149 976.237 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M197.357 976.862 L215.713 976.862 L215.713 980.797 L201.639 980.797 L201.639 989.269 Q202.658 988.922 203.676 988.76 Q204.695 988.575 205.714 988.575 Q211.501 988.575 214.88 991.746 Q218.26 994.917 218.26 1000.33 Q218.26 1005.91 214.788 1009.01 Q211.315 1012.09 204.996 1012.09 Q202.82 1012.09 200.552 1011.72 Q198.306 1011.35 195.899 1010.61 L195.899 1005.91 Q197.982 1007.05 200.204 1007.6 Q202.426 1008.16 204.903 1008.16 Q208.908 1008.16 211.246 1006.05 Q213.584 1003.94 213.584 1000.33 Q213.584 996.723 211.246 994.616 Q208.908 992.51 204.903 992.51 Q203.028 992.51 201.153 992.927 Q199.302 993.343 197.357 994.223 L197.357 976.862 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M100.76 746.707 Q97.1493 746.707 95.3206 750.272 Q93.515 753.813 93.515 760.943 Q93.515 768.049 95.3206 771.614 Q97.1493 775.156 100.76 775.156 Q104.395 775.156 106.2 771.614 Q108.029 768.049 108.029 760.943 Q108.029 753.813 106.2 750.272 Q104.395 746.707 100.76 746.707 M100.76 743.003 Q106.571 743.003 109.626 747.61 Q112.705 752.193 112.705 760.943 Q112.705 769.67 109.626 774.276 Q106.571 778.859 100.76 778.859 Q94.9502 778.859 91.8715 774.276 Q88.816 769.67 88.816 760.943 Q88.816 752.193 91.8715 747.61 Q94.9502 743.003 100.76 743.003 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M120.922 772.308 L125.807 772.308 L125.807 778.188 L120.922 778.188 L120.922 772.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M145.992 746.707 Q142.381 746.707 140.552 750.272 Q138.746 753.813 138.746 760.943 Q138.746 768.049 140.552 771.614 Q142.381 775.156 145.992 775.156 Q149.626 775.156 151.431 771.614 Q153.26 768.049 153.26 760.943 Q153.26 753.813 151.431 750.272 Q149.626 746.707 145.992 746.707 M145.992 743.003 Q151.802 743.003 154.857 747.61 Q157.936 752.193 157.936 760.943 Q157.936 769.67 154.857 774.276 Q151.802 778.859 145.992 778.859 Q140.181 778.859 137.103 774.276 Q134.047 769.67 134.047 760.943 Q134.047 752.193 137.103 747.61 Q140.181 743.003 145.992 743.003 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M176.153 746.707 Q172.542 746.707 170.714 750.272 Q168.908 753.813 168.908 760.943 Q168.908 768.049 170.714 771.614 Q172.542 775.156 176.153 775.156 Q179.788 775.156 181.593 771.614 Q183.422 768.049 183.422 760.943 Q183.422 753.813 181.593 750.272 Q179.788 746.707 176.153 746.707 M176.153 743.003 Q181.964 743.003 185.019 747.61 Q188.098 752.193 188.098 760.943 Q188.098 769.67 185.019 774.276 Q181.964 778.859 176.153 778.859 Q170.343 778.859 167.265 774.276 Q164.209 769.67 164.209 760.943 Q164.209 752.193 167.265 747.61 Q170.343 743.003 176.153 743.003 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M206.315 746.707 Q202.704 746.707 200.876 750.272 Q199.07 753.813 199.07 760.943 Q199.07 768.049 200.876 771.614 Q202.704 775.156 206.315 775.156 Q209.95 775.156 211.755 771.614 Q213.584 768.049 213.584 760.943 Q213.584 753.813 211.755 750.272 Q209.95 746.707 206.315 746.707 M206.315 743.003 Q212.126 743.003 215.181 747.61 Q218.26 752.193 218.26 760.943 Q218.26 769.67 215.181 774.276 Q212.126 778.859 206.315 778.859 Q200.505 778.859 197.427 774.276 Q194.371 769.67 194.371 760.943 Q194.371 752.193 197.427 747.61 Q200.505 743.003 206.315 743.003 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M101.756 513.473 Q98.1447 513.473 96.316 517.038 Q94.5104 520.579 94.5104 527.709 Q94.5104 534.815 96.316 538.38 Q98.1447 541.922 101.756 541.922 Q105.39 541.922 107.196 538.38 Q109.024 534.815 109.024 527.709 Q109.024 520.579 107.196 517.038 Q105.39 513.473 101.756 513.473 M101.756 509.769 Q107.566 509.769 110.621 514.376 Q113.7 518.959 113.7 527.709 Q113.7 536.436 110.621 541.042 Q107.566 545.626 101.756 545.626 Q95.9456 545.626 92.8669 541.042 Q89.8114 536.436 89.8114 527.709 Q89.8114 518.959 92.8669 514.376 Q95.9456 509.769 101.756 509.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M121.918 539.075 L126.802 539.075 L126.802 544.954 L121.918 544.954 L121.918 539.075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M146.987 513.473 Q143.376 513.473 141.547 517.038 Q139.742 520.579 139.742 527.709 Q139.742 534.815 141.547 538.38 Q143.376 541.922 146.987 541.922 Q150.621 541.922 152.427 538.38 Q154.255 534.815 154.255 527.709 Q154.255 520.579 152.427 517.038 Q150.621 513.473 146.987 513.473 M146.987 509.769 Q152.797 509.769 155.853 514.376 Q158.931 518.959 158.931 527.709 Q158.931 536.436 155.853 541.042 Q152.797 545.626 146.987 545.626 Q141.177 545.626 138.098 541.042 Q135.043 536.436 135.043 527.709 Q135.043 518.959 138.098 514.376 Q141.177 509.769 146.987 509.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M177.149 513.473 Q173.538 513.473 171.709 517.038 Q169.904 520.579 169.904 527.709 Q169.904 534.815 171.709 538.38 Q173.538 541.922 177.149 541.922 Q180.783 541.922 182.589 538.38 Q184.417 534.815 184.417 527.709 Q184.417 520.579 182.589 517.038 Q180.783 513.473 177.149 513.473 M177.149 509.769 Q182.959 509.769 186.015 514.376 Q189.093 518.959 189.093 527.709 Q189.093 536.436 186.015 541.042 Q182.959 545.626 177.149 545.626 Q171.339 545.626 168.26 541.042 Q165.204 536.436 165.204 527.709 Q165.204 518.959 168.26 514.376 Q171.339 509.769 177.149 509.769 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M197.357 510.394 L215.713 510.394 L215.713 514.329 L201.639 514.329 L201.639 522.802 Q202.658 522.454 203.676 522.292 Q204.695 522.107 205.714 522.107 Q211.501 522.107 214.88 525.278 Q218.26 528.45 218.26 533.866 Q218.26 539.445 214.788 542.547 Q211.315 545.626 204.996 545.626 Q202.82 545.626 200.552 545.255 Q198.306 544.885 195.899 544.144 L195.899 539.445 Q197.982 540.579 200.204 541.135 Q202.426 541.69 204.903 541.69 Q208.908 541.69 211.246 539.584 Q213.584 537.477 213.584 533.866 Q213.584 530.255 211.246 528.149 Q208.908 526.042 204.903 526.042 Q203.028 526.042 201.153 526.459 Q199.302 526.876 197.357 527.755 L197.357 510.394 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M100.76 280.239 Q97.1493 280.239 95.3206 283.804 Q93.515 287.346 93.515 294.475 Q93.515 301.582 95.3206 305.147 Q97.1493 308.688 100.76 308.688 Q104.395 308.688 106.2 305.147 Q108.029 301.582 108.029 294.475 Q108.029 287.346 106.2 283.804 Q104.395 280.239 100.76 280.239 M100.76 276.536 Q106.571 276.536 109.626 281.142 Q112.705 285.725 112.705 294.475 Q112.705 303.202 109.626 307.809 Q106.571 312.392 100.76 312.392 Q94.9502 312.392 91.8715 307.809 Q88.816 303.202 88.816 294.475 Q88.816 285.725 91.8715 281.142 Q94.9502 276.536 100.76 276.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M120.922 305.841 L125.807 305.841 L125.807 311.721 L120.922 311.721 L120.922 305.841 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M145.992 280.239 Q142.381 280.239 140.552 283.804 Q138.746 287.346 138.746 294.475 Q138.746 301.582 140.552 305.147 Q142.381 308.688 145.992 308.688 Q149.626 308.688 151.431 305.147 Q153.26 301.582 153.26 294.475 Q153.26 287.346 151.431 283.804 Q149.626 280.239 145.992 280.239 M145.992 276.536 Q151.802 276.536 154.857 281.142 Q157.936 285.725 157.936 294.475 Q157.936 303.202 154.857 307.809 Q151.802 312.392 145.992 312.392 Q140.181 312.392 137.103 307.809 Q134.047 303.202 134.047 294.475 Q134.047 285.725 137.103 281.142 Q140.181 276.536 145.992 276.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M166.964 307.785 L174.603 307.785 L174.603 281.42 L166.292 283.086 L166.292 278.827 L174.556 277.161 L179.232 277.161 L179.232 307.785 L186.871 307.785 L186.871 311.721 L166.964 311.721 L166.964 307.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M206.315 280.239 Q202.704 280.239 200.876 283.804 Q199.07 287.346 199.07 294.475 Q199.07 301.582 200.876 305.147 Q202.704 308.688 206.315 308.688 Q209.95 308.688 211.755 305.147 Q213.584 301.582 213.584 294.475 Q213.584 287.346 211.755 283.804 Q209.95 280.239 206.315 280.239 M206.315 276.536 Q212.126 276.536 215.181 281.142 Q218.26 285.725 218.26 294.475 Q218.26 303.202 215.181 307.809 Q212.126 312.392 206.315 312.392 Q200.505 312.392 197.427 307.809 Q194.371 303.202 194.371 294.475 Q194.371 285.725 197.427 281.142 Q200.505 276.536 206.315 276.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M101.756 47.0055 Q98.1447 47.0055 96.316 50.5703 Q94.5104 54.1119 94.5104 61.2415 Q94.5104 68.348 96.316 71.9128 Q98.1447 75.4544 101.756 75.4544 Q105.39 75.4544 107.196 71.9128 Q109.024 68.348 109.024 61.2415 Q109.024 54.1119 107.196 50.5703 Q105.39 47.0055 101.756 47.0055 M101.756 43.3018 Q107.566 43.3018 110.621 47.9083 Q113.7 52.4916 113.7 61.2415 Q113.7 69.9683 110.621 74.5748 Q107.566 79.1581 101.756 79.1581 Q95.9456 79.1581 92.8669 74.5748 Q89.8114 69.9683 89.8114 61.2415 Q89.8114 52.4916 92.8669 47.9083 Q95.9456 43.3018 101.756 43.3018 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M121.918 72.6072 L126.802 72.6072 L126.802 78.4868 L121.918 78.4868 L121.918 72.6072 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M146.987 47.0055 Q143.376 47.0055 141.547 50.5703 Q139.742 54.1119 139.742 61.2415 Q139.742 68.348 141.547 71.9128 Q143.376 75.4544 146.987 75.4544 Q150.621 75.4544 152.427 71.9128 Q154.255 68.348 154.255 61.2415 Q154.255 54.1119 152.427 50.5703 Q150.621 47.0055 146.987 47.0055 M146.987 43.3018 Q152.797 43.3018 155.853 47.9083 Q158.931 52.4916 158.931 61.2415 Q158.931 69.9683 155.853 74.5748 Q152.797 79.1581 146.987 79.1581 Q141.177 79.1581 138.098 74.5748 Q135.043 69.9683 135.043 61.2415 Q135.043 52.4916 138.098 47.9083 Q141.177 43.3018 146.987 43.3018 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M167.959 74.5516 L175.598 74.5516 L175.598 48.186 L167.288 49.8527 L167.288 45.5935 L175.552 43.9268 L180.228 43.9268 L180.228 74.5516 L187.866 74.5516 L187.866 78.4868 L167.959 78.4868 L167.959 74.5516 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M197.357 43.9268 L215.713 43.9268 L215.713 47.862 L201.639 47.862 L201.639 56.3342 Q202.658 55.9869 203.676 55.8249 Q204.695 55.6397 205.714 55.6397 Q211.501 55.6397 214.88 58.811 Q218.26 61.9823 218.26 67.3989 Q218.26 72.9776 214.788 76.0794 Q211.315 79.1581 204.996 79.1581 Q202.82 79.1581 200.552 78.7877 Q198.306 78.4174 195.899 77.6766 L195.899 72.9776 Q197.982 74.1118 200.204 74.6674 Q202.426 75.2229 204.903 75.2229 Q208.908 75.2229 211.246 73.1165 Q213.584 71.01 213.584 67.3989 Q213.584 63.7878 211.246 61.6813 Q208.908 59.5749 204.903 59.5749 Q203.028 59.5749 201.153 59.9915 Q199.302 60.4082 197.357 61.2878 L197.357 43.9268 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip912)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 313.651,716.055 317.741,635.97 321.832,669.112 325.922,697.885 330.012,703.611 334.103,691.479 338.193,648.501 342.283,628.052 346.374,832.716 350.464,745.628 \n",
" 354.554,647.372 358.645,696.128 362.735,777.117 366.825,739.673 370.916,727.324 375.006,733.483 379.096,721.164 383.187,800.6 387.277,805.169 391.367,733.247 \n",
" 395.457,631.438 399.548,727.324 403.638,678.474 407.728,677.848 411.819,752.14 415.909,1301 419.999,929.845 424.09,752.537 428.18,661.423 432.27,833.226 \n",
" 436.361,888.092 440.451,812.277 444.541,810.449 448.632,639.527 452.722,613.494 456.812,736.938 460.903,679.008 464.993,756.385 469.083,693.397 473.174,707.802 \n",
" 477.264,707.703 481.354,712.543 485.444,601.901 489.535,727.324 493.625,832.95 497.715,781.521 501.806,785.594 505.896,669.053 509.986,697.856 514.077,737.171 \n",
" 518.167,667.858 522.257,87.9763 526.348,649.957 530.438,691.087 534.528,727.324 538.619,672.324 542.709,776.251 546.799,653.699 550.89,819.138 554.98,817.007 \n",
" 559.07,588.944 563.16,564.686 567.251,871.541 571.341,652.752 575.431,808.046 579.522,715.014 583.612,764.135 587.702,727.324 591.793,678.163 595.883,776.484 \n",
" 599.973,708.962 604.064,696.525 608.154,1024.79 612.244,539.598 616.335,672.841 620.425,805.777 624.515,654.962 628.606,690.628 632.696,576.957 636.786,790.689 \n",
" 640.876,695.77 644.967,815.031 649.057,764.312 653.147,727.324 657.238,715.033 661.328,1168.88 665.418,638.464 669.509,595.9 673.599,773.545 677.689,640.2 \n",
" 681.78,756.584 685.87,853.499 689.96,670.481 694.051,750.161 698.141,658.403 702.231,518.987 706.322,615.641 710.412,294.821 714.502,899.444 718.593,700.294 \n",
" 722.683,774.502 726.773,740.698 730.863,577.596 734.954,317.77 739.044,803.713 743.134,588.716 747.225,509.622 751.315,416.559 755.405,807.388 759.496,1152.13 \n",
" 763.586,743.068 767.676,663.958 771.767,821.986 775.857,758.37 779.947,959.831 784.038,631.517 788.128,859.355 792.218,683.4 796.309,749.348 800.399,690.547 \n",
" 804.489,712.515 808.579,637.256 812.67,854.308 816.76,763.892 820.85,842.069 824.941,755.485 829.031,789.948 833.121,782.15 837.212,808.132 841.302,713.972 \n",
" 845.392,734.005 849.483,720.642 853.573,673.452 857.663,539.757 861.754,1338.37 865.844,377.724 869.934,984.67 874.025,855.87 878.115,684.948 882.205,702.899 \n",
" 886.296,696.574 890.386,1300.15 894.476,434.323 898.566,895.891 902.657,541.488 906.747,675.051 910.837,608.568 914.928,703.128 919.018,823.209 923.108,715.467 \n",
" 927.199,649.357 931.289,757.497 935.379,636.087 939.47,824.566 943.56,775.043 947.65,745.067 951.741,661.861 955.831,757.217 959.921,786.426 964.012,871.242 \n",
" 968.102,670.398 972.192,640.331 976.282,727.324 980.373,859.924 984.463,805.865 988.553,858.36 992.644,590.73 996.734,614.463 1000.82,663.816 1004.91,853.312 \n",
" 1009.01,788.81 1013.1,699.496 1017.19,693.664 1021.28,843.871 1025.37,650.017 1029.46,625.602 1033.55,710.107 1037.64,645.948 1041.73,650.195 1045.82,745.26 \n",
" 1049.91,624.568 1054,640.601 1058.09,820.167 1062.18,739.536 1066.27,702.86 1070.36,739.574 1074.45,584.036 1078.54,663.329 1082.63,854.271 1086.72,776.958 \n",
" 1090.81,770.237 1094.9,696.72 1098.99,721.174 1103.08,824.566 1107.17,733.321 1111.26,798.574 1115.35,733.202 1119.44,638.191 1123.53,786.973 1127.62,673.681 \n",
" 1131.71,617.752 1135.8,866.789 1139.9,756.988 1143.99,733.229 1148.08,762.569 1152.17,943.376 1156.26,649.123 1160.35,716.022 1164.44,687.505 1168.53,733.037 \n",
" 1172.62,806.439 1176.71,704.884 1180.8,832.77 1184.89,604.962 1188.98,811.171 1193.07,732.85 1197.16,694.05 1201.25,782.621 1205.34,672.026 1209.43,682.509 \n",
" 1213.52,887.362 1217.61,770.33 1221.7,580.216 1225.79,732.873 1229.88,699.496 1233.97,671.06 1238.06,866.475 1242.15,721.852 1246.24,727.324 1250.33,655.488 \n",
" 1254.42,788.194 1258.51,732.81 1262.6,1445.72 1266.69,453.817 1270.79,761.378 1274.88,688.379 1278.97,495.443 1283.06,685.537 1287.15,685.08 1291.24,811.353 \n",
" 1295.33,690.785 1299.42,572.16 1303.51,754.524 1307.6,743.553 1311.69,738.105 1315.78,673.112 1319.87,781.535 1323.96,901.011 1328.05,633.554 1332.14,668.88 \n",
" 1336.23,662.542 1340.32,639.224 1344.41,809.975 1348.5,705.455 1352.59,787.166 1356.68,656.501 1360.77,743.783 1364.86,699.852 1368.95,716.28 1373.04,649.123 \n",
" 1377.13,744.214 1381.22,601.708 1385.31,784.928 1389.4,812.152 1393.49,771.816 1397.59,682.832 1401.68,642.495 1405.77,789.713 1409.86,744.166 1413.95,732.921 \n",
" 1418.04,782.859 1422.13,710.747 1426.22,649.01 1430.31,721.669 1434.4,715.989 1438.49,761.229 1442.58,732.946 1446.67,710.433 1450.76,755.434 1454.85,777.413 \n",
" 1458.94,603.716 1463.03,681.377 1467.12,773.27 1471.21,744.414 1475.3,681.581 1479.39,669.373 1483.48,767.98 1487.57,727.324 1491.66,709.952 1495.75,668.848 \n",
" 1499.84,785.8 1503.93,715.699 1508.02,738.948 1512.11,698.196 1516.2,739.001 1520.29,721.489 1524.38,632.757 1528.48,727.324 1532.57,739.272 1536.66,715.375 \n",
" 1540.75,792.586 1544.84,837.517 1548.93,721.602 1553.02,721.593 1557.11,806.787 1561.2,710.433 1565.29,755.434 1569.38,821.399 1573.47,792.378 1577.56,694.933 \n",
" 1581.65,700.123 1585.74,781.535 1589.83,716.542 1593.92,721.922 1598.01,738.12 1602.1,738.09 1606.19,775.405 1610.28,785.29 1614.37,669.358 1618.46,722.011 \n",
" 1622.55,662.991 1626.64,683.833 1630.73,754.563 1634.82,743.575 1638.91,764.981 1643,827.724 1647.09,758.495 1651.18,414.923 1655.28,642.246 1659.37,772.931 \n",
" 1663.46,727.324 1667.55,715.972 1671.64,670.061 1675.73,738.844 1679.82,663.53 1683.91,668.402 1688,721.382 1692.09,673.432 1696.18,739.365 1700.27,629.928 \n",
" 1704.36,788.483 1708.45,672.324 1712.54,708.815 1716.63,702.507 1720.72,745.951 1724.81,776.562 1728.9,835.87 1732.99,703.464 1737.08,751.183 1741.17,727.324 \n",
" 1745.26,786.336 1749.35,697.93 1753.44,744.986 1757.53,709.661 1761.62,768.412 1765.71,721.481 1769.8,668.402 1773.89,661.455 1777.98,769.37 1782.07,1037.16 \n",
" 1786.17,743.83 1790.26,826.296 1794.35,656.099 1798.44,688.421 1802.53,815.675 1806.62,672.341 1810.71,637.692 1814.8,800.307 1818.89,766.059 1822.98,776.563 \n",
" 1827.07,845.109 1831.16,706.173 1835.25,700.722 1839.34,759.224 1843.43,679.374 1847.52,754.036 1851.61,774.945 1855.7,674.375 1859.79,700.575 1863.88,694.979 \n",
" 1867.97,770.39 1872.06,732.673 1876.15,695.113 1880.24,764.876 1884.33,743.307 1888.42,695.291 1892.51,791.125 1896.6,1011.88 1900.69,653.133 1904.78,742.276 \n",
" 1908.87,786.562 1912.97,643.133 1917.06,801.704 1921.15,746.919 1925.24,936.562 1929.33,718.055 1933.42,750.455 1937.51,624.495 1941.6,670.06 1945.69,649.628 \n",
" 1949.78,707.653 1953.87,697.629 1957.96,815.731 1962.05,727.324 1966.14,693.183 1970.23,692.879 1974.32,672.568 1978.41,717.284 1982.5,707.166 1986.59,757.521 \n",
" 1990.68,816.525 1994.77,862.114 1998.86,788.342 2002.95,778.213 2007.04,813.675 2011.13,727.324 2015.22,640.972 2019.31,727.324 2023.4,731.917 2027.49,657.845 \n",
" 2031.58,750.622 2035.67,657.003 2039.76,792.996 2043.86,671.101 2047.95,925.111 2052.04,846.534 2056.13,864.008 2060.22,967.324 2064.31,885.74 2068.4,596.418 \n",
" 2072.49,865.793 2076.58,757.432 2080.67,998.741 2084.76,478.335 2088.85,771.794 2092.94,871.969 2097.03,702.398 2101.12,603.917 2105.21,778.616 2109.3,838.534 \n",
" 2113.39,627.016 2117.48,657.744 2121.57,800.53 2125.66,616.987 2129.75,704.873 2133.84,742.305 2137.93,655.639 2142.02,158.065 2146.11,647.074 2150.2,860.162 \n",
" 2154.29,705.499 2158.38,683.3 2162.47,687.269 2166.56,645.948 2170.65,662.825 2174.75,787.25 2178.84,634.739 2182.93,722.636 2187.02,755.366 2191.11,832.974 \n",
" 2195.2,803.598 2199.29,718.428 2203.38,623.523 2207.47,795.335 2211.56,682.116 2215.65,817.216 2219.74,775.888 2223.83,669.864 2227.92,709.47 2232.01,767.378 \n",
" 2236.1,722.894 2240.19,853.777 2244.28,853.925 2248.37,764.509 2252.46,731.433 2256.55,739.627 2260.64,636.178 2264.73,777.305 2268.82,668.948 2272.91,625.154 \n",
" 2277,871.28 2281.09,693.931 2285.18,752.395 2289.27,714.808 2293.36,810.005 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"\n",
"M1997.21 216.178 L2282.81 216.178 L2282.81 95.2176 L1997.21 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1997.21,216.178 2282.81,216.178 2282.81,95.2176 1997.21,95.2176 1997.21,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2020.53,155.698 2160.43,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"M2197.59 175.385 Q2195.78 180.015 2194.07 181.427 Q2192.35 182.839 2189.48 182.839 L2186.08 182.839 L2186.08 179.274 L2188.58 179.274 Q2190.34 179.274 2191.31 178.44 Q2192.28 177.607 2193.46 174.505 L2194.23 172.561 L2183.74 147.052 L2188.26 147.052 L2196.36 167.329 L2204.46 147.052 L2208.97 147.052 L2197.59 175.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M2216.27 169.042 L2223.9 169.042 L2223.9 142.677 L2215.59 144.343 L2215.59 140.084 L2223.86 138.418 L2228.53 138.418 L2228.53 169.042 L2236.17 169.042 L2236.17 172.978 L2216.27 172.978 L2216.27 169.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 53,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(pre)"
]
},
{
"cell_type": "markdown",
"id": "d2bd0fb3",
"metadata": {},
"source": [
"# テイクアンドギヴ・ニーズ"
]
},
{
"cell_type": "code",
"execution_count": 54,
"id": "4ab07520",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"df = CSV.read(\"../4331_takeandgiveneed.csv\", DataFrame);"
]
},
{
"cell_type": "code",
"execution_count": 55,
"id": "24805817",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip950\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip950)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip951\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip950)\" d=\"\n",
"M262.551 1423.18 L2053.54 1423.18 L2053.54 123.472 L262.551 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip952\">\n",
" <rect x=\"262\" y=\"123\" width=\"1792\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 306.258,1423.18 306.258,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1155.72,1423.18 1155.72,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2007.51,1423.18 2007.51,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,1423.18 2053.54,1423.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 306.258,1423.18 306.258,1407.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1155.72,1423.18 1155.72,1407.58 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2007.51,1423.18 2007.51,1407.58 \n",
" \"/>\n",
"<path clip-path=\"url(#clip950)\" d=\"M178.052 1479.92 L194.372 1479.92 L194.372 1483.85 L172.427 1483.85 L172.427 1479.92 Q175.09 1477.16 179.673 1472.53 Q184.279 1467.88 185.46 1466.54 Q187.705 1464.01 188.585 1462.28 Q189.488 1460.52 189.488 1458.83 Q189.488 1456.07 187.543 1454.34 Q185.622 1452.6 182.52 1452.6 Q180.321 1452.6 177.867 1453.37 Q175.437 1454.13 172.659 1455.68 L172.659 1450.96 Q175.483 1449.82 177.937 1449.25 Q180.39 1448.67 182.427 1448.67 Q187.798 1448.67 190.992 1451.35 Q194.187 1454.04 194.187 1458.53 Q194.187 1460.66 193.376 1462.58 Q192.589 1464.48 190.483 1467.07 Q189.904 1467.74 186.802 1470.96 Q183.701 1474.15 178.052 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.187 1452.37 Q210.575 1452.37 208.747 1455.94 Q206.941 1459.48 206.941 1466.61 Q206.941 1473.71 208.747 1477.28 Q210.575 1480.82 214.187 1480.82 Q217.821 1480.82 219.626 1477.28 Q221.455 1473.71 221.455 1466.61 Q221.455 1459.48 219.626 1455.94 Q217.821 1452.37 214.187 1452.37 M214.187 1448.67 Q219.997 1448.67 223.052 1453.27 Q226.131 1457.86 226.131 1466.61 Q226.131 1475.33 223.052 1479.94 Q219.997 1484.52 214.187 1484.52 Q208.376 1484.52 205.298 1479.94 Q202.242 1475.33 202.242 1466.61 Q202.242 1457.86 205.298 1453.27 Q208.376 1448.67 214.187 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M235.159 1479.92 L242.797 1479.92 L242.797 1453.55 L234.487 1455.22 L234.487 1450.96 L242.751 1449.29 L247.427 1449.29 L247.427 1479.92 L255.066 1479.92 L255.066 1483.85 L235.159 1483.85 L235.159 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M264.649 1483.13 L264.649 1478.88 Q266.408 1479.71 268.214 1480.15 Q270.02 1480.59 271.756 1480.59 Q276.385 1480.59 278.816 1477.49 Q281.27 1474.36 281.617 1468.02 Q280.274 1470.01 278.214 1471.07 Q276.154 1472.14 273.654 1472.14 Q268.469 1472.14 265.436 1469.01 Q262.427 1465.87 262.427 1460.43 Q262.427 1455.1 265.575 1451.88 Q268.723 1448.67 273.955 1448.67 Q279.95 1448.67 283.098 1453.27 Q286.269 1457.86 286.269 1466.61 Q286.269 1474.78 282.381 1479.66 Q278.515 1484.52 271.964 1484.52 Q270.205 1484.52 268.399 1484.18 Q266.594 1483.83 264.649 1483.13 M273.955 1468.48 Q277.103 1468.48 278.932 1466.33 Q280.783 1464.18 280.783 1460.43 Q280.783 1456.7 278.932 1454.55 Q277.103 1452.37 273.955 1452.37 Q270.807 1452.37 268.955 1454.55 Q267.126 1456.7 267.126 1460.43 Q267.126 1464.18 268.955 1466.33 Q270.807 1468.48 273.955 1468.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M291.918 1468.97 L304.394 1468.97 L304.394 1472.76 L291.918 1472.76 L291.918 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M321.779 1452.37 Q318.167 1452.37 316.339 1455.94 Q314.533 1459.48 314.533 1466.61 Q314.533 1473.71 316.339 1477.28 Q318.167 1480.82 321.779 1480.82 Q325.413 1480.82 327.218 1477.28 Q329.047 1473.71 329.047 1466.61 Q329.047 1459.48 327.218 1455.94 Q325.413 1452.37 321.779 1452.37 M321.779 1448.67 Q327.589 1448.67 330.644 1453.27 Q333.723 1457.86 333.723 1466.61 Q333.723 1475.33 330.644 1479.94 Q327.589 1484.52 321.779 1484.52 Q315.968 1484.52 312.89 1479.94 Q309.834 1475.33 309.834 1466.61 Q309.834 1457.86 312.89 1453.27 Q315.968 1448.67 321.779 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M342.751 1479.92 L350.39 1479.92 L350.39 1453.55 L342.079 1455.22 L342.079 1450.96 L350.343 1449.29 L355.019 1449.29 L355.019 1479.92 L362.658 1479.92 L362.658 1483.85 L342.751 1483.85 L342.751 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M369.348 1468.97 L381.825 1468.97 L381.825 1472.76 L369.348 1472.76 L369.348 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M399.209 1452.37 Q395.598 1452.37 393.769 1455.94 Q391.963 1459.48 391.963 1466.61 Q391.963 1473.71 393.769 1477.28 Q395.598 1480.82 399.209 1480.82 Q402.843 1480.82 404.648 1477.28 Q406.477 1473.71 406.477 1466.61 Q406.477 1459.48 404.648 1455.94 Q402.843 1452.37 399.209 1452.37 M399.209 1448.67 Q405.019 1448.67 408.074 1453.27 Q411.153 1457.86 411.153 1466.61 Q411.153 1475.33 408.074 1479.94 Q405.019 1484.52 399.209 1484.52 Q393.399 1484.52 390.32 1479.94 Q387.264 1475.33 387.264 1466.61 Q387.264 1457.86 390.32 1453.27 Q393.399 1448.67 399.209 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M420.181 1479.92 L427.82 1479.92 L427.82 1453.55 L419.51 1455.22 L419.51 1450.96 L427.773 1449.29 L432.449 1449.29 L432.449 1479.92 L440.088 1479.92 L440.088 1483.85 L420.181 1483.85 L420.181 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1027.51 1479.92 L1043.83 1479.92 L1043.83 1483.85 L1021.89 1483.85 L1021.89 1479.92 Q1024.55 1477.16 1029.14 1472.53 Q1033.74 1467.88 1034.92 1466.54 Q1037.17 1464.01 1038.05 1462.28 Q1038.95 1460.52 1038.95 1458.83 Q1038.95 1456.07 1037.01 1454.34 Q1035.08 1452.6 1031.98 1452.6 Q1029.78 1452.6 1027.33 1453.37 Q1024.9 1454.13 1022.12 1455.68 L1022.12 1450.96 Q1024.95 1449.82 1027.4 1449.25 Q1029.85 1448.67 1031.89 1448.67 Q1037.26 1448.67 1040.45 1451.35 Q1043.65 1454.04 1043.65 1458.53 Q1043.65 1460.66 1042.84 1462.58 Q1042.05 1464.48 1039.95 1467.07 Q1039.37 1467.74 1036.26 1470.96 Q1033.16 1474.15 1027.51 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1063.65 1452.37 Q1060.04 1452.37 1058.21 1455.94 Q1056.4 1459.48 1056.4 1466.61 Q1056.4 1473.71 1058.21 1477.28 Q1060.04 1480.82 1063.65 1480.82 Q1067.28 1480.82 1069.09 1477.28 Q1070.92 1473.71 1070.92 1466.61 Q1070.92 1459.48 1069.09 1455.94 Q1067.28 1452.37 1063.65 1452.37 M1063.65 1448.67 Q1069.46 1448.67 1072.51 1453.27 Q1075.59 1457.86 1075.59 1466.61 Q1075.59 1475.33 1072.51 1479.94 Q1069.46 1484.52 1063.65 1484.52 Q1057.84 1484.52 1054.76 1479.94 Q1051.7 1475.33 1051.7 1466.61 Q1051.7 1457.86 1054.76 1453.27 Q1057.84 1448.67 1063.65 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1087.84 1479.92 L1104.16 1479.92 L1104.16 1483.85 L1082.21 1483.85 L1082.21 1479.92 Q1084.88 1477.16 1089.46 1472.53 Q1094.07 1467.88 1095.25 1466.54 Q1097.49 1464.01 1098.37 1462.28 Q1099.27 1460.52 1099.27 1458.83 Q1099.27 1456.07 1097.33 1454.34 Q1095.41 1452.6 1092.31 1452.6 Q1090.11 1452.6 1087.65 1453.37 Q1085.22 1454.13 1082.44 1455.68 L1082.44 1450.96 Q1085.27 1449.82 1087.72 1449.25 Q1090.18 1448.67 1092.21 1448.67 Q1097.58 1448.67 1100.78 1451.35 Q1103.97 1454.04 1103.97 1458.53 Q1103.97 1460.66 1103.16 1462.58 Q1102.38 1464.48 1100.27 1467.07 Q1099.69 1467.74 1096.59 1470.96 Q1093.49 1474.15 1087.84 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1123.97 1452.37 Q1120.36 1452.37 1118.53 1455.94 Q1116.73 1459.48 1116.73 1466.61 Q1116.73 1473.71 1118.53 1477.28 Q1120.36 1480.82 1123.97 1480.82 Q1127.61 1480.82 1129.41 1477.28 Q1131.24 1473.71 1131.24 1466.61 Q1131.24 1459.48 1129.41 1455.94 Q1127.61 1452.37 1123.97 1452.37 M1123.97 1448.67 Q1129.78 1448.67 1132.84 1453.27 Q1135.92 1457.86 1135.92 1466.61 Q1135.92 1475.33 1132.84 1479.94 Q1129.78 1484.52 1123.97 1484.52 Q1118.16 1484.52 1115.08 1479.94 Q1112.03 1475.33 1112.03 1466.61 Q1112.03 1457.86 1115.08 1453.27 Q1118.16 1448.67 1123.97 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1141.38 1468.97 L1153.86 1468.97 L1153.86 1472.76 L1141.38 1472.76 L1141.38 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1171.24 1452.37 Q1167.63 1452.37 1165.8 1455.94 Q1164 1459.48 1164 1466.61 Q1164 1473.71 1165.8 1477.28 Q1167.63 1480.82 1171.24 1480.82 Q1174.87 1480.82 1176.68 1477.28 Q1178.51 1473.71 1178.51 1466.61 Q1178.51 1459.48 1176.68 1455.94 Q1174.87 1452.37 1171.24 1452.37 M1171.24 1448.67 Q1177.05 1448.67 1180.11 1453.27 Q1183.19 1457.86 1183.19 1466.61 Q1183.19 1475.33 1180.11 1479.94 Q1177.05 1484.52 1171.24 1484.52 Q1165.43 1484.52 1162.35 1479.94 Q1159.3 1475.33 1159.3 1466.61 Q1159.3 1457.86 1162.35 1453.27 Q1165.43 1448.67 1171.24 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1192.21 1479.92 L1199.85 1479.92 L1199.85 1453.55 L1191.54 1455.22 L1191.54 1450.96 L1199.81 1449.29 L1204.48 1449.29 L1204.48 1479.92 L1212.12 1479.92 L1212.12 1483.85 L1192.21 1483.85 L1192.21 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1218.81 1468.97 L1231.29 1468.97 L1231.29 1472.76 L1218.81 1472.76 L1218.81 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1248.67 1452.37 Q1245.06 1452.37 1243.23 1455.94 Q1241.43 1459.48 1241.43 1466.61 Q1241.43 1473.71 1243.23 1477.28 Q1245.06 1480.82 1248.67 1480.82 Q1252.31 1480.82 1254.11 1477.28 Q1255.94 1473.71 1255.94 1466.61 Q1255.94 1459.48 1254.11 1455.94 Q1252.31 1452.37 1248.67 1452.37 M1248.67 1448.67 Q1254.48 1448.67 1257.54 1453.27 Q1260.62 1457.86 1260.62 1466.61 Q1260.62 1475.33 1257.54 1479.94 Q1254.48 1484.52 1248.67 1484.52 Q1242.86 1484.52 1239.78 1479.94 Q1236.73 1475.33 1236.73 1466.61 Q1236.73 1457.86 1239.78 1453.27 Q1242.86 1448.67 1248.67 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1269.64 1479.92 L1277.28 1479.92 L1277.28 1453.55 L1268.97 1455.22 L1268.97 1450.96 L1277.24 1449.29 L1281.91 1449.29 L1281.91 1479.92 L1289.55 1479.92 L1289.55 1483.85 L1269.64 1483.85 L1269.64 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1879.3 1479.92 L1895.62 1479.92 L1895.62 1483.85 L1873.68 1483.85 L1873.68 1479.92 Q1876.34 1477.16 1880.92 1472.53 Q1885.53 1467.88 1886.71 1466.54 Q1888.96 1464.01 1889.84 1462.28 Q1890.74 1460.52 1890.74 1458.83 Q1890.74 1456.07 1888.79 1454.34 Q1886.87 1452.6 1883.77 1452.6 Q1881.57 1452.6 1879.12 1453.37 Q1876.69 1454.13 1873.91 1455.68 L1873.91 1450.96 Q1876.73 1449.82 1879.19 1449.25 Q1881.64 1448.67 1883.68 1448.67 Q1889.05 1448.67 1892.24 1451.35 Q1895.44 1454.04 1895.44 1458.53 Q1895.44 1460.66 1894.63 1462.58 Q1893.84 1464.48 1891.73 1467.07 Q1891.16 1467.74 1888.05 1470.96 Q1884.95 1474.15 1879.3 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1915.44 1452.37 Q1911.83 1452.37 1910 1455.94 Q1908.19 1459.48 1908.19 1466.61 Q1908.19 1473.71 1910 1477.28 Q1911.83 1480.82 1915.44 1480.82 Q1919.07 1480.82 1920.88 1477.28 Q1922.71 1473.71 1922.71 1466.61 Q1922.71 1459.48 1920.88 1455.94 Q1919.07 1452.37 1915.44 1452.37 M1915.44 1448.67 Q1921.25 1448.67 1924.3 1453.27 Q1927.38 1457.86 1927.38 1466.61 Q1927.38 1475.33 1924.3 1479.94 Q1921.25 1484.52 1915.44 1484.52 Q1909.63 1484.52 1906.55 1479.94 Q1903.49 1475.33 1903.49 1466.61 Q1903.49 1457.86 1906.55 1453.27 Q1909.63 1448.67 1915.44 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1939.63 1479.92 L1955.95 1479.92 L1955.95 1483.85 L1934 1483.85 L1934 1479.92 Q1936.66 1477.16 1941.25 1472.53 Q1945.85 1467.88 1947.04 1466.54 Q1949.28 1464.01 1950.16 1462.28 Q1951.06 1460.52 1951.06 1458.83 Q1951.06 1456.07 1949.12 1454.34 Q1947.2 1452.6 1944.1 1452.6 Q1941.9 1452.6 1939.44 1453.37 Q1937.01 1454.13 1934.23 1455.68 L1934.23 1450.96 Q1937.06 1449.82 1939.51 1449.25 Q1941.97 1448.67 1944 1448.67 Q1949.37 1448.67 1952.57 1451.35 Q1955.76 1454.04 1955.76 1458.53 Q1955.76 1460.66 1954.95 1462.58 Q1954.16 1464.48 1952.06 1467.07 Q1951.48 1467.74 1948.38 1470.96 Q1945.28 1474.15 1939.63 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1966.57 1479.92 L1974.21 1479.92 L1974.21 1453.55 L1965.9 1455.22 L1965.9 1450.96 L1974.16 1449.29 L1978.84 1449.29 L1978.84 1479.92 L1986.48 1479.92 L1986.48 1483.85 L1966.57 1483.85 L1966.57 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1993.17 1468.97 L2005.65 1468.97 L2005.65 1472.76 L1993.17 1472.76 L1993.17 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2023.03 1452.37 Q2019.42 1452.37 2017.59 1455.94 Q2015.78 1459.48 2015.78 1466.61 Q2015.78 1473.71 2017.59 1477.28 Q2019.42 1480.82 2023.03 1480.82 Q2026.66 1480.82 2028.47 1477.28 Q2030.3 1473.71 2030.3 1466.61 Q2030.3 1459.48 2028.47 1455.94 Q2026.66 1452.37 2023.03 1452.37 M2023.03 1448.67 Q2028.84 1448.67 2031.9 1453.27 Q2034.97 1457.86 2034.97 1466.61 Q2034.97 1475.33 2031.9 1479.94 Q2028.84 1484.52 2023.03 1484.52 Q2017.22 1484.52 2014.14 1479.94 Q2011.09 1475.33 2011.09 1466.61 Q2011.09 1457.86 2014.14 1453.27 Q2017.22 1448.67 2023.03 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2044 1479.92 L2051.64 1479.92 L2051.64 1453.55 L2043.33 1455.22 L2043.33 1450.96 L2051.59 1449.29 L2056.27 1449.29 L2056.27 1479.92 L2063.91 1479.92 L2063.91 1483.85 L2044 1483.85 L2044 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2070.6 1468.97 L2083.08 1468.97 L2083.08 1472.76 L2070.6 1472.76 L2070.6 1468.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2100.46 1452.37 Q2096.85 1452.37 2095.02 1455.94 Q2093.21 1459.48 2093.21 1466.61 Q2093.21 1473.71 2095.02 1477.28 Q2096.85 1480.82 2100.46 1480.82 Q2104.09 1480.82 2105.9 1477.28 Q2107.73 1473.71 2107.73 1466.61 Q2107.73 1459.48 2105.9 1455.94 Q2104.09 1452.37 2100.46 1452.37 M2100.46 1448.67 Q2106.27 1448.67 2109.33 1453.27 Q2112.4 1457.86 2112.4 1466.61 Q2112.4 1475.33 2109.33 1479.94 Q2106.27 1484.52 2100.46 1484.52 Q2094.65 1484.52 2091.57 1479.94 Q2088.52 1475.33 2088.52 1466.61 Q2088.52 1457.86 2091.57 1453.27 Q2094.65 1448.67 2100.46 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2121.43 1479.92 L2129.07 1479.92 L2129.07 1453.55 L2120.76 1455.22 L2120.76 1450.96 L2129.02 1449.29 L2133.7 1449.29 L2133.7 1479.92 L2141.34 1479.92 L2141.34 1483.85 L2121.43 1483.85 L2121.43 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1114.09 1537.81 L1114.09 1518.52 L1119.95 1518.52 L1119.95 1568.04 L1114.09 1568.04 L1114.09 1562.7 Q1112.25 1565.88 1109.41 1567.44 Q1106.61 1568.97 1102.67 1568.97 Q1096.2 1568.97 1092.13 1563.81 Q1088.09 1558.65 1088.09 1550.25 Q1088.09 1541.85 1092.13 1536.69 Q1096.2 1531.54 1102.67 1531.54 Q1106.61 1531.54 1109.41 1533.1 Q1112.25 1534.62 1114.09 1537.81 M1094.14 1550.25 Q1094.14 1556.71 1096.78 1560.4 Q1099.45 1564.07 1104.1 1564.07 Q1108.74 1564.07 1111.42 1560.4 Q1114.09 1556.71 1114.09 1550.25 Q1114.09 1543.79 1111.42 1540.13 Q1108.74 1536.44 1104.1 1536.44 Q1099.45 1536.44 1096.78 1540.13 Q1094.14 1543.79 1094.14 1550.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1148.21 1550.12 Q1141.11 1550.12 1138.38 1551.75 Q1135.64 1553.37 1135.64 1557.29 Q1135.64 1560.4 1137.68 1562.25 Q1139.75 1564.07 1143.28 1564.07 Q1148.15 1564.07 1151.08 1560.63 Q1154.04 1557.16 1154.04 1551.43 L1154.04 1550.12 L1148.21 1550.12 M1159.89 1547.71 L1159.89 1568.04 L1154.04 1568.04 L1154.04 1562.63 Q1152.03 1565.88 1149.04 1567.44 Q1146.05 1568.97 1141.72 1568.97 Q1136.24 1568.97 1133 1565.91 Q1129.78 1562.82 1129.78 1557.67 Q1129.78 1551.65 1133.79 1548.6 Q1137.84 1545.54 1145.83 1545.54 L1154.04 1545.54 L1154.04 1544.97 Q1154.04 1540.93 1151.36 1538.73 Q1148.72 1536.5 1143.92 1536.5 Q1140.86 1536.5 1137.96 1537.23 Q1135.07 1537.97 1132.39 1539.43 L1132.39 1534.02 Q1135.61 1532.78 1138.63 1532.17 Q1141.66 1531.54 1144.52 1531.54 Q1152.25 1531.54 1156.07 1535.55 Q1159.89 1539.56 1159.89 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1177.75 1522.27 L1177.75 1532.4 L1189.81 1532.4 L1189.81 1536.95 L1177.75 1536.95 L1177.75 1556.3 Q1177.75 1560.66 1178.93 1561.9 Q1180.14 1563.14 1183.8 1563.14 L1189.81 1563.14 L1189.81 1568.04 L1183.8 1568.04 Q1177.02 1568.04 1174.44 1565.53 Q1171.86 1562.98 1171.86 1556.3 L1171.86 1536.95 L1167.56 1536.95 L1167.56 1532.4 L1171.86 1532.4 L1171.86 1522.27 L1177.75 1522.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1228.01 1548.76 L1228.01 1551.62 L1201.08 1551.62 Q1201.46 1557.67 1204.71 1560.85 Q1207.99 1564 1213.81 1564 Q1217.18 1564 1220.34 1563.17 Q1223.52 1562.35 1226.64 1560.69 L1226.64 1566.23 Q1223.49 1567.57 1220.18 1568.27 Q1216.87 1568.97 1213.46 1568.97 Q1204.93 1568.97 1199.93 1564 Q1194.97 1559.04 1194.97 1550.57 Q1194.97 1541.82 1199.68 1536.69 Q1204.42 1531.54 1212.44 1531.54 Q1219.64 1531.54 1223.81 1536.18 Q1228.01 1540.8 1228.01 1548.76 M1222.15 1547.04 Q1222.09 1542.23 1219.44 1539.37 Q1216.83 1536.5 1212.51 1536.5 Q1207.6 1536.5 1204.64 1539.27 Q1201.72 1542.04 1201.27 1547.07 L1222.15 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,1266.66 2053.54,1266.66 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,1096.82 2053.54,1096.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,926.984 2053.54,926.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,757.146 2053.54,757.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,587.307 2053.54,587.307 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,417.469 2053.54,417.469 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 262.551,247.631 2053.54,247.631 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,1423.18 262.551,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,1266.66 284.043,1266.66 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,1096.82 284.043,1096.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,926.984 284.043,926.984 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,757.146 284.043,757.146 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,587.307 284.043,587.307 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,417.469 284.043,417.469 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.551,247.631 284.043,247.631 \n",
" \"/>\n",
"<path clip-path=\"url(#clip950)\" d=\"M154.862 1264.8 Q151.714 1264.8 149.862 1266.95 Q148.033 1269.1 148.033 1272.85 Q148.033 1276.58 149.862 1278.75 Q151.714 1280.91 154.862 1280.91 Q158.01 1280.91 159.839 1278.75 Q161.69 1276.58 161.69 1272.85 Q161.69 1269.1 159.839 1266.95 Q158.01 1264.8 154.862 1264.8 M164.144 1250.14 L164.144 1254.4 Q162.385 1253.57 160.579 1253.13 Q158.797 1252.69 157.038 1252.69 Q152.408 1252.69 149.954 1255.81 Q147.524 1258.94 147.177 1265.26 Q148.542 1263.25 150.603 1262.18 Q152.663 1261.09 155.14 1261.09 Q160.348 1261.09 163.357 1264.26 Q166.39 1267.41 166.39 1272.85 Q166.39 1278.18 163.241 1281.39 Q160.093 1284.61 154.862 1284.61 Q148.866 1284.61 145.695 1280.03 Q142.524 1275.42 142.524 1266.69 Q142.524 1258.5 146.413 1253.64 Q150.302 1248.75 156.853 1248.75 Q158.612 1248.75 160.394 1249.1 Q162.2 1249.45 164.144 1250.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 1252.46 Q180.834 1252.46 179.005 1256.02 Q177.2 1259.56 177.2 1266.69 Q177.2 1273.8 179.005 1277.37 Q180.834 1280.91 184.445 1280.91 Q188.079 1280.91 189.885 1277.37 Q191.713 1273.8 191.713 1266.69 Q191.713 1259.56 189.885 1256.02 Q188.079 1252.46 184.445 1252.46 M184.445 1248.75 Q190.255 1248.75 193.311 1253.36 Q196.389 1257.94 196.389 1266.69 Q196.389 1275.42 193.311 1280.03 Q190.255 1284.61 184.445 1284.61 Q178.635 1284.61 175.556 1280.03 Q172.501 1275.42 172.501 1266.69 Q172.501 1257.94 175.556 1253.36 Q178.635 1248.75 184.445 1248.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 1252.46 Q210.996 1252.46 209.167 1256.02 Q207.362 1259.56 207.362 1266.69 Q207.362 1273.8 209.167 1277.37 Q210.996 1280.91 214.607 1280.91 Q218.241 1280.91 220.047 1277.37 Q221.875 1273.8 221.875 1266.69 Q221.875 1259.56 220.047 1256.02 Q218.241 1252.46 214.607 1252.46 M214.607 1248.75 Q220.417 1248.75 223.473 1253.36 Q226.551 1257.94 226.551 1266.69 Q226.551 1275.42 223.473 1280.03 Q220.417 1284.61 214.607 1284.61 Q208.797 1284.61 205.718 1280.03 Q202.662 1275.42 202.662 1266.69 Q202.662 1257.94 205.718 1253.36 Q208.797 1248.75 214.607 1248.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M154.283 1097.69 Q150.95 1097.69 149.028 1099.47 Q147.13 1101.25 147.13 1104.38 Q147.13 1107.5 149.028 1109.29 Q150.95 1111.07 154.283 1111.07 Q157.616 1111.07 159.538 1109.29 Q161.459 1107.48 161.459 1104.38 Q161.459 1101.25 159.538 1099.47 Q157.64 1097.69 154.283 1097.69 M149.607 1095.7 Q146.598 1094.96 144.908 1092.9 Q143.241 1090.84 143.241 1087.88 Q143.241 1083.73 146.181 1081.32 Q149.144 1078.92 154.283 1078.92 Q159.445 1078.92 162.385 1081.32 Q165.325 1083.73 165.325 1087.88 Q165.325 1090.84 163.635 1092.9 Q161.968 1094.96 158.982 1095.7 Q162.362 1096.49 164.237 1098.78 Q166.135 1101.07 166.135 1104.38 Q166.135 1109.4 163.056 1112.09 Q160.001 1114.77 154.283 1114.77 Q148.566 1114.77 145.487 1112.09 Q142.431 1109.4 142.431 1104.38 Q142.431 1101.07 144.329 1098.78 Q146.228 1096.49 149.607 1095.7 M147.894 1088.31 Q147.894 1091 149.561 1092.5 Q151.251 1094.01 154.283 1094.01 Q157.292 1094.01 158.982 1092.5 Q160.695 1091 160.695 1088.31 Q160.695 1085.63 158.982 1084.13 Q157.292 1082.62 154.283 1082.62 Q151.251 1082.62 149.561 1084.13 Q147.894 1085.63 147.894 1088.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 1082.62 Q180.834 1082.62 179.005 1086.19 Q177.2 1089.73 177.2 1096.86 Q177.2 1103.96 179.005 1107.53 Q180.834 1111.07 184.445 1111.07 Q188.079 1111.07 189.885 1107.53 Q191.713 1103.96 191.713 1096.86 Q191.713 1089.73 189.885 1086.19 Q188.079 1082.62 184.445 1082.62 M184.445 1078.92 Q190.255 1078.92 193.311 1083.52 Q196.389 1088.11 196.389 1096.86 Q196.389 1105.58 193.311 1110.19 Q190.255 1114.77 184.445 1114.77 Q178.635 1114.77 175.556 1110.19 Q172.501 1105.58 172.501 1096.86 Q172.501 1088.11 175.556 1083.52 Q178.635 1078.92 184.445 1078.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 1082.62 Q210.996 1082.62 209.167 1086.19 Q207.362 1089.73 207.362 1096.86 Q207.362 1103.96 209.167 1107.53 Q210.996 1111.07 214.607 1111.07 Q218.241 1111.07 220.047 1107.53 Q221.875 1103.96 221.875 1096.86 Q221.875 1089.73 220.047 1086.19 Q218.241 1082.62 214.607 1082.62 M214.607 1078.92 Q220.417 1078.92 223.473 1083.52 Q226.551 1088.11 226.551 1096.86 Q226.551 1105.58 223.473 1110.19 Q220.417 1114.77 214.607 1114.77 Q208.797 1114.77 205.718 1110.19 Q202.662 1105.58 202.662 1096.86 Q202.662 1088.11 205.718 1083.52 Q208.797 1078.92 214.607 1078.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M114.931 940.328 L122.57 940.328 L122.57 913.963 L114.26 915.63 L114.26 911.37 L122.524 909.704 L127.2 909.704 L127.2 940.328 L134.839 940.328 L134.839 944.264 L114.931 944.264 L114.931 940.328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M154.283 912.782 Q150.672 912.782 148.843 916.347 Q147.038 919.889 147.038 927.018 Q147.038 934.125 148.843 937.69 Q150.672 941.231 154.283 941.231 Q157.917 941.231 159.723 937.69 Q161.552 934.125 161.552 927.018 Q161.552 919.889 159.723 916.347 Q157.917 912.782 154.283 912.782 M154.283 909.079 Q160.093 909.079 163.149 913.685 Q166.227 918.268 166.227 927.018 Q166.227 935.745 163.149 940.352 Q160.093 944.935 154.283 944.935 Q148.473 944.935 145.394 940.352 Q142.339 935.745 142.339 927.018 Q142.339 918.268 145.394 913.685 Q148.473 909.079 154.283 909.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 912.782 Q180.834 912.782 179.005 916.347 Q177.2 919.889 177.2 927.018 Q177.2 934.125 179.005 937.69 Q180.834 941.231 184.445 941.231 Q188.079 941.231 189.885 937.69 Q191.713 934.125 191.713 927.018 Q191.713 919.889 189.885 916.347 Q188.079 912.782 184.445 912.782 M184.445 909.079 Q190.255 909.079 193.311 913.685 Q196.389 918.268 196.389 927.018 Q196.389 935.745 193.311 940.352 Q190.255 944.935 184.445 944.935 Q178.635 944.935 175.556 940.352 Q172.501 935.745 172.501 927.018 Q172.501 918.268 175.556 913.685 Q178.635 909.079 184.445 909.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 912.782 Q210.996 912.782 209.167 916.347 Q207.362 919.889 207.362 927.018 Q207.362 934.125 209.167 937.69 Q210.996 941.231 214.607 941.231 Q218.241 941.231 220.047 937.69 Q221.875 934.125 221.875 927.018 Q221.875 919.889 220.047 916.347 Q218.241 912.782 214.607 912.782 M214.607 909.079 Q220.417 909.079 223.473 913.685 Q226.551 918.268 226.551 927.018 Q226.551 935.745 223.473 940.352 Q220.417 944.935 214.607 944.935 Q208.797 944.935 205.718 940.352 Q202.662 935.745 202.662 927.018 Q202.662 918.268 205.718 913.685 Q208.797 909.079 214.607 909.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M114.931 770.49 L122.57 770.49 L122.57 744.125 L114.26 745.791 L114.26 741.532 L122.524 739.866 L127.2 739.866 L127.2 770.49 L134.839 770.49 L134.839 774.426 L114.931 774.426 L114.931 770.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M148.311 770.49 L164.63 770.49 L164.63 774.426 L142.686 774.426 L142.686 770.49 Q145.348 767.736 149.931 763.106 Q154.538 758.453 155.718 757.111 Q157.964 754.588 158.843 752.852 Q159.746 751.092 159.746 749.403 Q159.746 746.648 157.802 744.912 Q155.88 743.176 152.778 743.176 Q150.579 743.176 148.126 743.94 Q145.695 744.703 142.917 746.254 L142.917 741.532 Q145.741 740.398 148.195 739.819 Q150.649 739.241 152.686 739.241 Q158.056 739.241 161.251 741.926 Q164.445 744.611 164.445 749.102 Q164.445 751.231 163.635 753.153 Q162.848 755.051 160.741 757.643 Q160.163 758.315 157.061 761.532 Q153.959 764.727 148.311 770.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 742.944 Q180.834 742.944 179.005 746.509 Q177.2 750.051 177.2 757.18 Q177.2 764.287 179.005 767.852 Q180.834 771.393 184.445 771.393 Q188.079 771.393 189.885 767.852 Q191.713 764.287 191.713 757.18 Q191.713 750.051 189.885 746.509 Q188.079 742.944 184.445 742.944 M184.445 739.241 Q190.255 739.241 193.311 743.847 Q196.389 748.43 196.389 757.18 Q196.389 765.907 193.311 770.514 Q190.255 775.097 184.445 775.097 Q178.635 775.097 175.556 770.514 Q172.501 765.907 172.501 757.18 Q172.501 748.43 175.556 743.847 Q178.635 739.241 184.445 739.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 742.944 Q210.996 742.944 209.167 746.509 Q207.362 750.051 207.362 757.18 Q207.362 764.287 209.167 767.852 Q210.996 771.393 214.607 771.393 Q218.241 771.393 220.047 767.852 Q221.875 764.287 221.875 757.18 Q221.875 750.051 220.047 746.509 Q218.241 742.944 214.607 742.944 M214.607 739.241 Q220.417 739.241 223.473 743.847 Q226.551 748.43 226.551 757.18 Q226.551 765.907 223.473 770.514 Q220.417 775.097 214.607 775.097 Q208.797 775.097 205.718 770.514 Q202.662 765.907 202.662 757.18 Q202.662 748.43 205.718 743.847 Q208.797 739.241 214.607 739.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M114.931 600.652 L122.57 600.652 L122.57 574.287 L114.26 575.953 L114.26 571.694 L122.524 570.027 L127.2 570.027 L127.2 600.652 L134.839 600.652 L134.839 604.587 L114.931 604.587 L114.931 600.652 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.13 574.102 L145.325 592.55 L157.13 592.55 L157.13 574.102 M155.903 570.027 L161.783 570.027 L161.783 592.55 L166.714 592.55 L166.714 596.439 L161.783 596.439 L161.783 604.587 L157.13 604.587 L157.13 596.439 L141.529 596.439 L141.529 591.925 L155.903 570.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 573.106 Q180.834 573.106 179.005 576.671 Q177.2 580.213 177.2 587.342 Q177.2 594.449 179.005 598.013 Q180.834 601.555 184.445 601.555 Q188.079 601.555 189.885 598.013 Q191.713 594.449 191.713 587.342 Q191.713 580.213 189.885 576.671 Q188.079 573.106 184.445 573.106 M184.445 569.402 Q190.255 569.402 193.311 574.009 Q196.389 578.592 196.389 587.342 Q196.389 596.069 193.311 600.675 Q190.255 605.259 184.445 605.259 Q178.635 605.259 175.556 600.675 Q172.501 596.069 172.501 587.342 Q172.501 578.592 175.556 574.009 Q178.635 569.402 184.445 569.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 573.106 Q210.996 573.106 209.167 576.671 Q207.362 580.213 207.362 587.342 Q207.362 594.449 209.167 598.013 Q210.996 601.555 214.607 601.555 Q218.241 601.555 220.047 598.013 Q221.875 594.449 221.875 587.342 Q221.875 580.213 220.047 576.671 Q218.241 573.106 214.607 573.106 M214.607 569.402 Q220.417 569.402 223.473 574.009 Q226.551 578.592 226.551 587.342 Q226.551 596.069 223.473 600.675 Q220.417 605.259 214.607 605.259 Q208.797 605.259 205.718 600.675 Q202.662 596.069 202.662 587.342 Q202.662 578.592 205.718 574.009 Q208.797 569.402 214.607 569.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M114.931 430.814 L122.57 430.814 L122.57 404.449 L114.26 406.115 L114.26 401.856 L122.524 400.189 L127.2 400.189 L127.2 430.814 L134.839 430.814 L134.839 434.749 L114.931 434.749 L114.931 430.814 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M154.862 415.606 Q151.714 415.606 149.862 417.759 Q148.033 419.911 148.033 423.661 Q148.033 427.388 149.862 429.564 Q151.714 431.717 154.862 431.717 Q158.01 431.717 159.839 429.564 Q161.69 427.388 161.69 423.661 Q161.69 419.911 159.839 417.759 Q158.01 415.606 154.862 415.606 M164.144 400.953 L164.144 405.212 Q162.385 404.379 160.579 403.939 Q158.797 403.5 157.038 403.5 Q152.408 403.5 149.954 406.625 Q147.524 409.75 147.177 416.069 Q148.542 414.055 150.603 412.99 Q152.663 411.902 155.14 411.902 Q160.348 411.902 163.357 415.074 Q166.39 418.222 166.39 423.661 Q166.39 428.986 163.241 432.203 Q160.093 435.421 154.862 435.421 Q148.866 435.421 145.695 430.837 Q142.524 426.231 142.524 417.504 Q142.524 409.31 146.413 404.449 Q150.302 399.564 156.853 399.564 Q158.612 399.564 160.394 399.912 Q162.2 400.259 164.144 400.953 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 403.268 Q180.834 403.268 179.005 406.833 Q177.2 410.375 177.2 417.504 Q177.2 424.611 179.005 428.175 Q180.834 431.717 184.445 431.717 Q188.079 431.717 189.885 428.175 Q191.713 424.611 191.713 417.504 Q191.713 410.375 189.885 406.833 Q188.079 403.268 184.445 403.268 M184.445 399.564 Q190.255 399.564 193.311 404.171 Q196.389 408.754 196.389 417.504 Q196.389 426.231 193.311 430.837 Q190.255 435.421 184.445 435.421 Q178.635 435.421 175.556 430.837 Q172.501 426.231 172.501 417.504 Q172.501 408.754 175.556 404.171 Q178.635 399.564 184.445 399.564 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 403.268 Q210.996 403.268 209.167 406.833 Q207.362 410.375 207.362 417.504 Q207.362 424.611 209.167 428.175 Q210.996 431.717 214.607 431.717 Q218.241 431.717 220.047 428.175 Q221.875 424.611 221.875 417.504 Q221.875 410.375 220.047 406.833 Q218.241 403.268 214.607 403.268 M214.607 399.564 Q220.417 399.564 223.473 404.171 Q226.551 408.754 226.551 417.504 Q226.551 426.231 223.473 430.837 Q220.417 435.421 214.607 435.421 Q208.797 435.421 205.718 430.837 Q202.662 426.231 202.662 417.504 Q202.662 408.754 205.718 404.171 Q208.797 399.564 214.607 399.564 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M114.931 260.976 L122.57 260.976 L122.57 234.611 L114.26 236.277 L114.26 232.018 L122.524 230.351 L127.2 230.351 L127.2 260.976 L134.839 260.976 L134.839 264.911 L114.931 264.911 L114.931 260.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M154.283 248.499 Q150.95 248.499 149.028 250.282 Q147.13 252.064 147.13 255.189 Q147.13 258.314 149.028 260.096 Q150.95 261.879 154.283 261.879 Q157.616 261.879 159.538 260.096 Q161.459 258.291 161.459 255.189 Q161.459 252.064 159.538 250.282 Q157.64 248.499 154.283 248.499 M149.607 246.509 Q146.598 245.768 144.908 243.708 Q143.241 241.648 143.241 238.685 Q143.241 234.541 146.181 232.134 Q149.144 229.726 154.283 229.726 Q159.445 229.726 162.385 232.134 Q165.325 234.541 165.325 238.685 Q165.325 241.648 163.635 243.708 Q161.968 245.768 158.982 246.509 Q162.362 247.296 164.237 249.587 Q166.135 251.879 166.135 255.189 Q166.135 260.212 163.056 262.897 Q160.001 265.583 154.283 265.583 Q148.566 265.583 145.487 262.897 Q142.431 260.212 142.431 255.189 Q142.431 251.879 144.329 249.587 Q146.228 247.296 149.607 246.509 M147.894 239.124 Q147.894 241.81 149.561 243.314 Q151.251 244.819 154.283 244.819 Q157.292 244.819 158.982 243.314 Q160.695 241.81 160.695 239.124 Q160.695 236.439 158.982 234.935 Q157.292 233.43 154.283 233.43 Q151.251 233.43 149.561 234.935 Q147.894 236.439 147.894 239.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M184.445 233.43 Q180.834 233.43 179.005 236.995 Q177.2 240.536 177.2 247.666 Q177.2 254.772 179.005 258.337 Q180.834 261.879 184.445 261.879 Q188.079 261.879 189.885 258.337 Q191.713 254.772 191.713 247.666 Q191.713 240.536 189.885 236.995 Q188.079 233.43 184.445 233.43 M184.445 229.726 Q190.255 229.726 193.311 234.333 Q196.389 238.916 196.389 247.666 Q196.389 256.393 193.311 260.999 Q190.255 265.583 184.445 265.583 Q178.635 265.583 175.556 260.999 Q172.501 256.393 172.501 247.666 Q172.501 238.916 175.556 234.333 Q178.635 229.726 184.445 229.726 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M214.607 233.43 Q210.996 233.43 209.167 236.995 Q207.362 240.536 207.362 247.666 Q207.362 254.772 209.167 258.337 Q210.996 261.879 214.607 261.879 Q218.241 261.879 220.047 258.337 Q221.875 254.772 221.875 247.666 Q221.875 240.536 220.047 236.995 Q218.241 233.43 214.607 233.43 M214.607 229.726 Q220.417 229.726 223.473 234.333 Q226.551 238.916 226.551 247.666 Q226.551 256.393 223.473 260.999 Q220.417 265.583 214.607 265.583 Q208.797 265.583 205.718 260.999 Q202.662 256.393 202.662 247.666 Q202.662 238.916 205.718 234.333 Q208.797 229.726 214.607 229.726 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M58.657 843.858 L77.5631 843.858 L77.5631 849.746 L28.3562 849.746 L28.3562 843.858 L33.7671 843.858 Q30.5842 842.012 29.0564 839.211 Q27.4968 836.378 27.4968 832.463 Q27.4968 825.97 32.6531 821.928 Q37.8093 817.854 46.212 817.854 Q54.6147 817.854 59.771 821.928 Q64.9272 825.97 64.9272 832.463 Q64.9272 836.378 63.3994 839.211 Q61.8398 842.012 58.657 843.858 M46.212 823.933 Q39.7508 823.933 36.0905 826.607 Q32.3984 829.249 32.3984 833.896 Q32.3984 838.543 36.0905 841.216 Q39.7508 843.858 46.212 843.858 Q52.6732 843.858 56.3653 841.216 Q60.0256 838.543 60.0256 833.896 Q60.0256 829.249 56.3653 826.607 Q52.6732 823.933 46.212 823.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M33.8307 787.49 Q33.2578 788.476 33.0032 789.654 Q32.7167 790.8 32.7167 792.2 Q32.7167 797.166 35.9632 799.839 Q39.1779 802.481 45.2253 802.481 L64.0042 802.481 L64.0042 808.369 L28.3562 808.369 L28.3562 802.481 L33.8944 802.481 Q30.6479 800.635 29.0883 797.675 Q27.4968 794.715 27.4968 790.482 Q27.4968 789.877 27.5923 789.145 Q27.656 788.413 27.8151 787.522 L33.8307 787.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M28.3562 781.347 L28.3562 775.49 L64.0042 775.49 L64.0042 781.347 L28.3562 781.347 M14.479 781.347 L14.479 775.49 L21.895 775.49 L21.895 781.347 L14.479 781.347 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M29.7248 737.583 L35.1993 737.583 Q33.8307 740.065 33.1623 742.58 Q32.4621 745.062 32.4621 747.609 Q32.4621 753.306 36.0905 756.457 Q39.6872 759.608 46.212 759.608 Q52.7369 759.608 56.3653 756.457 Q59.9619 753.306 59.9619 747.609 Q59.9619 745.062 59.2935 742.58 Q58.5933 740.065 57.2247 737.583 L62.6355 737.583 Q63.7814 740.033 64.3543 742.675 Q64.9272 745.285 64.9272 748.245 Q64.9272 756.298 59.8664 761.04 Q54.8057 765.783 46.212 765.783 Q37.491 765.783 32.4939 761.008 Q27.4968 756.202 27.4968 747.863 Q27.4968 745.158 28.0697 742.58 Q28.6108 740.002 29.7248 737.583 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M44.7161 696.906 L47.5806 696.906 L47.5806 723.833 Q53.6281 723.451 56.8109 720.204 Q59.9619 716.926 59.9619 711.101 Q59.9619 707.727 59.1344 704.576 Q58.3069 701.393 56.6518 698.274 L62.1899 698.274 Q63.5267 701.425 64.227 704.735 Q64.9272 708.046 64.9272 711.451 Q64.9272 719.981 59.9619 724.978 Q54.9967 729.944 46.5303 729.944 Q37.7774 729.944 32.6531 725.233 Q27.4968 720.491 27.4968 712.47 Q27.4968 705.277 32.1438 701.107 Q36.7589 696.906 44.7161 696.906 M42.9973 702.762 Q38.1912 702.826 35.3266 705.468 Q32.4621 708.077 32.4621 712.406 Q32.4621 717.308 35.2312 720.268 Q38.0002 723.196 43.0292 723.642 L42.9973 702.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M996.598 20.1573 L985.499 50.2555 L1007.74 50.2555 L996.598 20.1573 M991.98 12.096 L1001.26 12.096 L1024.31 72.576 L1015.8 72.576 L1010.29 57.061 L983.028 57.061 L977.519 72.576 L968.89 72.576 L991.98 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1061.21 34.0924 L1061.21 9.54393 L1068.66 9.54393 L1068.66 72.576 L1061.21 72.576 L1061.21 65.7705 Q1058.86 69.8214 1055.26 71.8063 Q1051.69 73.7508 1046.67 73.7508 Q1038.44 73.7508 1033.26 67.1883 Q1028.11 60.6258 1028.11 49.9314 Q1028.11 39.2371 1033.26 32.6746 Q1038.44 26.1121 1046.67 26.1121 Q1051.69 26.1121 1055.26 28.0971 Q1058.86 30.0415 1061.21 34.0924 M1035.81 49.9314 Q1035.81 58.1548 1039.17 62.8538 Q1042.58 67.5124 1048.49 67.5124 Q1054.4 67.5124 1057.81 62.8538 Q1061.21 58.1548 1061.21 49.9314 Q1061.21 41.7081 1057.81 37.0496 Q1054.4 32.3505 1048.49 32.3505 Q1042.58 32.3505 1039.17 37.0496 Q1035.81 41.7081 1035.81 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1084.02 27.2059 L1091.47 27.2059 L1091.47 73.3862 Q1091.47 82.0551 1088.15 85.944 Q1084.87 89.8329 1077.54 89.8329 L1074.7 89.8329 L1074.7 83.5134 L1076.68 83.5134 Q1080.94 83.5134 1082.48 81.5285 Q1084.02 79.5841 1084.02 73.3862 L1084.02 27.2059 M1084.02 9.54393 L1091.47 9.54393 L1091.47 18.9825 L1084.02 18.9825 L1084.02 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1179.05 16.7545 L1179.05 25.383 Q1174.92 21.5346 1170.22 19.6307 Q1165.56 17.7268 1160.3 17.7268 Q1149.93 17.7268 1144.42 24.0867 Q1138.91 30.4061 1138.91 42.3968 Q1138.91 54.3469 1144.42 60.7069 Q1149.93 67.0263 1160.3 67.0263 Q1165.56 67.0263 1170.22 65.1223 Q1174.92 63.2184 1179.05 59.3701 L1179.05 67.9175 Q1174.76 70.8341 1169.94 72.2924 Q1165.16 73.7508 1159.81 73.7508 Q1146.08 73.7508 1138.18 65.3654 Q1130.28 56.9395 1130.28 42.3968 Q1130.28 27.8135 1138.18 19.4281 Q1146.08 11.0023 1159.81 11.0023 Q1165.24 11.0023 1170.02 12.4606 Q1174.84 13.8784 1179.05 16.7545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1191.37 9.54393 L1198.82 9.54393 L1198.82 72.576 L1191.37 72.576 L1191.37 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1232 32.4315 Q1226 32.4315 1222.52 37.1306 Q1219.03 41.7891 1219.03 49.9314 Q1219.03 58.0738 1222.48 62.7728 Q1225.96 67.4314 1232 67.4314 Q1237.95 67.4314 1241.44 62.7323 Q1244.92 58.0333 1244.92 49.9314 Q1244.92 41.8701 1241.44 37.1711 Q1237.95 32.4315 1232 32.4315 M1232 26.1121 Q1241.72 26.1121 1247.27 32.4315 Q1252.82 38.7509 1252.82 49.9314 Q1252.82 61.0714 1247.27 67.4314 Q1241.72 73.7508 1232 73.7508 Q1222.23 73.7508 1216.68 67.4314 Q1211.17 61.0714 1211.17 49.9314 Q1211.17 38.7509 1216.68 32.4315 Q1222.23 26.1121 1232 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1294.1 28.5427 L1294.1 35.5912 Q1290.94 33.9709 1287.53 33.1607 Q1284.13 32.3505 1280.49 32.3505 Q1274.94 32.3505 1272.14 34.0519 Q1269.39 35.7533 1269.39 39.156 Q1269.39 41.7486 1271.37 43.2475 Q1273.36 44.7058 1279.35 46.0426 L1281.9 46.6097 Q1289.84 48.3111 1293.17 51.4303 Q1296.53 54.509 1296.53 60.0587 Q1296.53 66.3781 1291.5 70.0644 Q1286.52 73.7508 1277.77 73.7508 Q1274.13 73.7508 1270.16 73.0216 Q1266.23 72.3329 1261.85 70.9151 L1261.85 63.2184 Q1265.98 65.3654 1269.99 66.4591 Q1274 67.5124 1277.93 67.5124 Q1283.2 67.5124 1286.04 65.73 Q1288.87 63.9071 1288.87 60.6258 Q1288.87 57.5877 1286.81 55.9673 Q1284.78 54.3469 1277.85 52.8481 L1275.26 52.2405 Q1268.33 50.7821 1265.25 47.7845 Q1262.18 44.7463 1262.18 39.4801 Q1262.18 33.0797 1266.71 29.5959 Q1271.25 26.1121 1279.59 26.1121 Q1283.73 26.1121 1287.37 26.7198 Q1291.02 27.3274 1294.1 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1347.2 48.0275 L1347.2 51.6733 L1312.93 51.6733 Q1313.42 59.3701 1317.55 63.421 Q1321.72 67.4314 1329.14 67.4314 Q1333.43 67.4314 1337.44 66.3781 Q1341.49 65.3249 1345.46 63.2184 L1345.46 70.267 Q1341.45 71.9684 1337.24 72.8596 Q1333.03 73.7508 1328.69 73.7508 Q1317.84 73.7508 1311.48 67.4314 Q1305.16 61.1119 1305.16 50.3365 Q1305.16 39.1965 1311.15 32.6746 Q1317.19 26.1121 1327.4 26.1121 Q1336.55 26.1121 1341.86 32.0264 Q1347.2 37.9003 1347.2 48.0275 M1339.75 45.84 Q1339.67 39.7232 1336.31 36.0774 Q1332.99 32.4315 1327.48 32.4315 Q1321.24 32.4315 1317.47 35.9558 Q1313.74 39.4801 1313.18 45.8805 L1339.75 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip952)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 313.24,423.846 320.222,361.632 322.549,399.288 324.876,389.464 327.203,417.297 329.531,384.553 338.84,265.037 341.167,277.316 343.494,206.098 345.822,224.107 \n",
" 352.804,261.763 355.131,271.586 357.458,276.498 359.786,263.4 362.113,302.693 369.095,310.879 371.422,272.404 373.749,355.083 376.077,277.316 378.404,224.926 \n",
" 385.386,161.893 387.713,215.921 390.04,193.819 392.368,160.256 394.695,169.261 404.004,170.898 406.331,248.665 408.659,323.158 410.986,399.288 417.968,272.404 \n",
" 420.295,275.679 422.622,302.693 424.95,353.446 427.277,345.26 434.259,339.53 436.586,393.557 438.914,397.65 441.241,465.594 443.568,478.692 450.55,475.417 \n",
" 452.877,522.078 455.205,517.985 457.532,566.282 459.859,608.849 466.841,621.947 469.168,592.477 471.496,598.208 473.823,604.756 476.15,594.115 483.132,590.84 \n",
" 485.459,600.663 487.787,585.11 492.441,584.291 499.423,632.589 501.75,641.593 504.078,586.975 506.405,632.49 508.732,606.836 515.714,591.94 518.042,669.73 \n",
" 520.369,669.73 522.696,687.937 525.023,636.628 532.005,602.698 534.333,620.904 536.66,653.179 538.987,668.903 541.314,652.352 548.296,625.87 550.624,641.593 \n",
" 552.951,646.559 555.278,660.627 557.606,650.697 564.587,652.352 566.915,653.179 569.242,641.593 571.569,588.63 573.897,571.251 599.497,591.112 601.824,603.526 \n",
" 604.151,646.559 606.479,637.456 613.461,727.659 615.788,706.97 618.115,865.861 620.442,829.449 622.77,835.242 629.752,877.447 632.079,913.032 634.406,896.481 \n",
" 636.733,917.997 639.061,915.515 646.043,898.964 648.37,901.446 650.697,874.965 653.025,903.929 655.352,894.826 662.334,931.238 664.661,908.894 666.988,888.205 \n",
" 669.316,908.894 671.643,881.585 678.625,883.24 680.952,886.55 683.279,874.137 685.607,903.929 687.934,864.206 694.916,871.654 697.243,898.136 699.57,864.206 \n",
" 701.898,879.93 704.225,885.723 711.207,869.999 713.534,892.343 715.861,879.102 718.189,897.309 720.516,887.378 727.498,873.309 729.825,869.172 732.153,888.205 \n",
" 734.48,865.034 736.807,866.689 743.789,821.173 746.116,843.517 748.444,854.276 750.771,856.758 753.098,875.792 762.407,893.998 764.735,901.446 767.062,934.549 \n",
" 769.389,933.721 776.371,921.308 778.698,913.032 781.026,903.929 783.353,892.343 785.68,906.412 792.662,923.79 794.989,917.17 797.317,927.101 799.644,931.238 \n",
" 801.971,945.307 808.953,970.134 811.281,980.892 813.608,989.995 815.935,865.861 818.262,802.139 827.572,807.105 829.899,739.245 832.226,789.726 834.553,769.865 \n",
" 841.535,750.003 843.863,778.14 846.19,772.347 848.517,768.21 850.845,782.278 857.826,801.312 860.154,803.795 862.481,817.863 864.808,822.001 867.136,820.346 \n",
" 874.117,829.449 876.445,838.552 878.772,836.069 881.099,851.793 883.427,846.828 890.408,822.001 892.736,822.001 895.063,792.209 897.39,799.657 899.718,798.829 \n",
" 909.027,759.107 911.354,800.484 913.681,786.416 916.009,783.933 925.318,761.589 927.645,758.279 929.972,774.003 932.3,804.043 939.282,797.367 941.609,772.334 \n",
" 943.936,779.844 946.264,807.38 948.591,794.029 955.573,769.83 957.9,774.003 960.227,768.996 962.555,774.837 964.882,774.003 974.191,772.334 976.518,774.003 \n",
" 978.846,756.479 981.173,755.645 988.155,743.962 992.809,733.949 995.137,695.565 997.464,722.267 1004.45,730.611 1006.77,718.929 1009.1,703.909 1011.43,721.432 \n",
" 1013.76,736.452 1023.06,738.956 1025.39,750.638 1027.72,741.459 1030.05,709.75 1037.03,678.041 1039.36,637.988 1041.68,617.126 1044.01,671.365 1046.34,677.207 \n",
" 1053.32,741.459 1055.65,763.155 1057.97,765.658 1060.3,757.314 1062.63,745.631 1069.61,706.412 1071.94,713.088 1074.26,704.743 1076.59,701.406 1078.92,672.2 \n",
" 1085.9,666.359 1088.23,654.677 1090.56,626.305 1092.88,620.464 1095.21,600.437 1102.19,589.59 1104.52,617.126 1106.85,644.663 1109.17,663.021 1111.5,666.359 \n",
" 1118.48,690.558 1120.81,700.571 1123.14,723.936 1125.47,724.77 1127.79,735.618 1134.77,742.294 1137.1,748.135 1139.43,761.486 1141.76,748.135 1144.08,731.446 \n",
" 1151.07,734.783 1167.36,780.678 1169.68,775.671 1172.01,823.235 1174.34,795.698 1176.67,798.202 1185.97,814.89 1188.3,808.215 1190.63,824.904 1192.96,833.248 \n",
" 1199.94,833.248 1202.27,837.421 1204.59,831.579 1206.92,842.427 1209.25,849.937 1216.23,881.646 1218.56,878.308 1220.88,895.832 1223.21,925.038 1225.54,917.528 \n",
" 1232.52,920.031 1234.85,927.541 1237.18,920.865 1239.5,905.011 1241.83,924.203 1248.81,867.461 1253.47,811.553 1255.79,816.559 1258.12,852.441 1265.1,905.011 \n",
" 1267.43,889.991 1269.76,904.176 1272.08,917.528 1274.41,925.038 1283.72,988.456 1286.05,1018.5 1288.38,1058.55 1290.7,1101.11 1297.68,1062.72 1300.01,1083.58 \n",
" 1302.34,1078.58 1304.67,1077.74 1306.99,1125.31 1313.98,1189.56 1316.3,1151.17 1318.63,1171.2 1320.96,1202.07 1323.29,1232.11 1330.27,1249.64 1332.59,1231.28 \n",
" 1334.92,1242.96 1337.25,1316.39 1346.56,1328.08 1348.89,1286.35 1351.21,1262.99 1353.54,1298.87 1355.87,1295.53 1362.85,1306.57 1365.18,1302.33 1367.5,1338.84 \n",
" 1369.83,1365.17 1372.16,1386.4 1379.14,1370.26 1381.47,1364.32 1383.79,1360.07 1386.12,1320.16 1388.45,1326.95 1395.43,1340.54 1397.76,1326.1 1400.09,1339.69 \n",
" 1402.41,1336.29 1404.74,1327.8 1411.72,1298.08 1414.05,1326.95 1416.38,1322.71 1418.7,1289.59 1421.03,1311.67 1428.01,1296.38 1430.34,1245.43 1435,1188.53 \n",
" 1437.32,1236.94 1451.29,1259.02 1453.61,1238.64 1460.6,1183.44 1462.92,1208.07 1465.25,1226.75 1467.58,1262.41 1469.9,1254.77 1476.89,1259.87 1479.21,1203.82 \n",
" 1481.54,1200.42 1483.87,1189.38 1486.2,1214.86 1493.18,1129.94 1495.5,1129.09 1497.83,1140.98 1500.16,1169.85 1502.49,1198.72 1509.47,1178.34 1511.8,1167.3 \n",
" 1514.12,1178.34 1516.45,1202.97 1518.78,1191.93 1525.76,1129.94 1528.09,1148.62 1530.41,1155.42 1532.74,1196.18 1535.07,1198.72 1542.05,1219.95 1544.38,1176.65 \n",
" 1546.71,1195.33 1549.03,1201.27 1551.36,1191.08 1558.34,1181.74 1560.67,1188.53 1563,1185.14 1565.32,1214.01 1567.65,1212.31 1574.63,1246.28 1576.96,1245.43 \n",
" 1579.29,1255.62 1581.61,1264.11 1583.94,1294.68 1590.92,1278.55 1593.25,1278.55 1595.58,1289.59 1597.91,1309.97 1600.23,1311.67 1607.21,1296.38 1609.54,1293.83 \n",
" 1611.87,1282.79 1614.2,1282.79 1616.52,1290.44 1623.51,1301.48 1625.83,1309.97 1628.16,1302.33 1639.8,1311.67 1642.12,1324.4 1644.45,1343.09 1646.78,1347.33 \n",
" 1649.11,1370.26 1656.09,1366.86 1658.42,1334.6 1660.74,1338.84 1663.07,1352.43 1665.4,1343.09 1674.71,1383.85 1677.03,1367.71 1679.36,1361.77 1681.69,1359.22 \n",
" 1688.67,1350.73 1691,1356.67 1693.32,1356.67 1695.65,1369.41 1697.98,1327.8 1704.96,1329.5 1707.29,1324.4 1709.62,1315.91 1711.94,1301.48 1714.27,1322.71 \n",
" 1721.25,1299.78 1723.58,1302.33 1725.91,1317.61 1728.23,1315.06 1730.56,1311.67 1737.54,1293.83 1739.87,1261.56 1742.2,1269.21 1744.53,1269.21 1746.85,1247.13 \n",
" 1753.83,1239.49 1756.16,1241.18 1758.49,1240.33 1760.82,1224.2 1763.14,1218.26 1774.78,1226.75 1777.11,1256.47 1779.43,1260.72 1786.42,1249.68 1788.74,1250.53 \n",
" 1791.07,1274.3 1795.73,1292.14 1802.71,1257.32 1805.03,1238.64 1807.36,1238.64 1809.69,1217.41 1812.02,1236.94 1819,1236.94 1821.33,1252.22 1823.65,1256.47 \n",
" 1825.98,1263.26 1828.31,1289.59 1835.29,1256.47 1837.62,1263.26 1839.94,1267.51 1842.27,1288.74 1844.6,1274.3 1851.58,1289.59 1853.91,1294.68 1856.24,1319.31 \n",
" 1858.56,1317.61 1860.89,1343.09 1867.87,1331.2 1872.53,1319.31 1874.85,1315.06 1877.18,1309.12 1884.16,1337.99 1886.49,1253.07 1888.82,1259.87 1891.14,1289.59 \n",
" 1893.47,1319.31 1900.45,1287.89 1902.78,1268.36 1905.11,1272.6 1907.44,1282.79 1909.76,1273.45 1919.07,1269.21 1921.4,1269.21 1923.73,1264.11 1926.05,1260.72 \n",
" 1933.04,1287.04 1935.36,1292.98 1937.69,1281.1 1940.02,1264.11 1942.35,1269.21 1949.33,1279.4 1951.65,1281.95 1953.98,1273.45 1956.31,1283.64 1958.64,1294.68 \n",
" 1965.62,1296.38 1967.95,1287.89 1970.27,1268.36 1972.6,1269.21 1974.93,1266.66 1981.91,1278.55 1984.24,1298.08 1986.56,1300.63 1988.89,1304.02 1991.22,1304.87 \n",
" 1998.2,1305.72 2000.53,1293.83 2002.85,1305.72 \n",
" \"/>\n",
"</svg>\n"
]
},
"execution_count": 55,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot( \n",
" df.Date, df.\"Adj Close\",\n",
" right_margin=20mm,\n",
" title=\"Adj Close\",\n",
" xlabel=\"date\",\n",
" ylabel=\"price\",\n",
" legend=false )"
]
},
{
"cell_type": "code",
"execution_count": 56,
"id": "148a2d2e",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip990\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip990)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip991\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip990)\" d=\"\n",
"M224.098 1486.45 L2352.76 1486.45 L2352.76 123.472 L224.098 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip992\">\n",
" <rect x=\"224\" y=\"123\" width=\"2130\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 280.168,1486.45 280.168,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 697.666,1486.45 697.666,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1115.16,1486.45 1115.16,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1532.66,1486.45 1532.66,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1950.16,1486.45 1950.16,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 280.168,1486.45 280.168,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 697.666,1486.45 697.666,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1115.16,1486.45 1115.16,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1532.66,1486.45 1532.66,1470.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1950.16,1486.45 1950.16,1470.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip990)\" d=\"M280.168 1515.64 Q276.557 1515.64 274.728 1519.2 Q272.923 1522.75 272.923 1529.87 Q272.923 1536.98 274.728 1540.55 Q276.557 1544.09 280.168 1544.09 Q283.802 1544.09 285.608 1540.55 Q287.436 1536.98 287.436 1529.87 Q287.436 1522.75 285.608 1519.2 Q283.802 1515.64 280.168 1515.64 M280.168 1511.93 Q285.978 1511.93 289.034 1516.54 Q292.112 1521.12 292.112 1529.87 Q292.112 1538.6 289.034 1543.21 Q285.978 1547.79 280.168 1547.79 Q274.358 1547.79 271.279 1543.21 Q268.224 1538.6 268.224 1529.87 Q268.224 1521.12 271.279 1516.54 Q274.358 1511.93 280.168 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M657.273 1543.18 L664.912 1543.18 L664.912 1516.82 L656.602 1518.49 L656.602 1514.23 L664.866 1512.56 L669.542 1512.56 L669.542 1543.18 L677.18 1543.18 L677.18 1547.12 L657.273 1547.12 L657.273 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M696.625 1515.64 Q693.014 1515.64 691.185 1519.2 Q689.379 1522.75 689.379 1529.87 Q689.379 1536.98 691.185 1540.55 Q693.014 1544.09 696.625 1544.09 Q700.259 1544.09 702.065 1540.55 Q703.893 1536.98 703.893 1529.87 Q703.893 1522.75 702.065 1519.2 Q700.259 1515.64 696.625 1515.64 M696.625 1511.93 Q702.435 1511.93 705.49 1516.54 Q708.569 1521.12 708.569 1529.87 Q708.569 1538.6 705.49 1543.21 Q702.435 1547.79 696.625 1547.79 Q690.815 1547.79 687.736 1543.21 Q684.68 1538.6 684.68 1529.87 Q684.68 1521.12 687.736 1516.54 Q690.815 1511.93 696.625 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M726.787 1515.64 Q723.176 1515.64 721.347 1519.2 Q719.541 1522.75 719.541 1529.87 Q719.541 1536.98 721.347 1540.55 Q723.176 1544.09 726.787 1544.09 Q730.421 1544.09 732.226 1540.55 Q734.055 1536.98 734.055 1529.87 Q734.055 1522.75 732.226 1519.2 Q730.421 1515.64 726.787 1515.64 M726.787 1511.93 Q732.597 1511.93 735.652 1516.54 Q738.731 1521.12 738.731 1529.87 Q738.731 1538.6 735.652 1543.21 Q732.597 1547.79 726.787 1547.79 Q720.977 1547.79 717.898 1543.21 Q714.842 1538.6 714.842 1529.87 Q714.842 1521.12 717.898 1516.54 Q720.977 1511.93 726.787 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1078.86 1543.18 L1095.18 1543.18 L1095.18 1547.12 L1073.23 1547.12 L1073.23 1543.18 Q1075.89 1540.43 1080.48 1535.8 Q1085.08 1531.15 1086.26 1529.81 Q1088.51 1527.28 1089.39 1525.55 Q1090.29 1523.79 1090.29 1522.1 Q1090.29 1519.34 1088.35 1517.61 Q1086.43 1515.87 1083.32 1515.87 Q1081.13 1515.87 1078.67 1516.63 Q1076.24 1517.4 1073.46 1518.95 L1073.46 1514.23 Q1076.29 1513.09 1078.74 1512.51 Q1081.2 1511.93 1083.23 1511.93 Q1088.6 1511.93 1091.8 1514.62 Q1094.99 1517.31 1094.99 1521.8 Q1094.99 1523.93 1094.18 1525.85 Q1093.39 1527.74 1091.29 1530.34 Q1090.71 1531.01 1087.61 1534.23 Q1084.51 1537.42 1078.86 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1114.99 1515.64 Q1111.38 1515.64 1109.55 1519.2 Q1107.75 1522.75 1107.75 1529.87 Q1107.75 1536.98 1109.55 1540.55 Q1111.38 1544.09 1114.99 1544.09 Q1118.63 1544.09 1120.43 1540.55 Q1122.26 1536.98 1122.26 1529.87 Q1122.26 1522.75 1120.43 1519.2 Q1118.63 1515.64 1114.99 1515.64 M1114.99 1511.93 Q1120.8 1511.93 1123.86 1516.54 Q1126.94 1521.12 1126.94 1529.87 Q1126.94 1538.6 1123.86 1543.21 Q1120.8 1547.79 1114.99 1547.79 Q1109.18 1547.79 1106.1 1543.21 Q1103.05 1538.6 1103.05 1529.87 Q1103.05 1521.12 1106.1 1516.54 Q1109.18 1511.93 1114.99 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1145.15 1515.64 Q1141.54 1515.64 1139.71 1519.2 Q1137.91 1522.75 1137.91 1529.87 Q1137.91 1536.98 1139.71 1540.55 Q1141.54 1544.09 1145.15 1544.09 Q1148.79 1544.09 1150.59 1540.55 Q1152.42 1536.98 1152.42 1529.87 Q1152.42 1522.75 1150.59 1519.2 Q1148.79 1515.64 1145.15 1515.64 M1145.15 1511.93 Q1150.96 1511.93 1154.02 1516.54 Q1157.1 1521.12 1157.1 1529.87 Q1157.1 1538.6 1154.02 1543.21 Q1150.96 1547.79 1145.15 1547.79 Q1139.34 1547.79 1136.26 1543.21 Q1133.21 1538.6 1133.21 1529.87 Q1133.21 1521.12 1136.26 1516.54 Q1139.34 1511.93 1145.15 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1506.43 1528.49 Q1509.78 1529.2 1511.66 1531.47 Q1513.55 1533.74 1513.55 1537.07 Q1513.55 1542.19 1510.04 1544.99 Q1506.52 1547.79 1500.04 1547.79 Q1497.86 1547.79 1495.55 1547.35 Q1493.25 1546.93 1490.8 1546.08 L1490.8 1541.56 Q1492.74 1542.7 1495.06 1543.28 Q1497.37 1543.86 1499.9 1543.86 Q1504.3 1543.86 1506.59 1542.12 Q1508.9 1540.38 1508.9 1537.07 Q1508.9 1534.02 1506.75 1532.31 Q1504.62 1530.57 1500.8 1530.57 L1496.77 1530.57 L1496.77 1526.73 L1500.99 1526.73 Q1504.43 1526.73 1506.26 1525.36 Q1508.09 1523.97 1508.09 1521.38 Q1508.09 1518.72 1506.19 1517.31 Q1504.32 1515.87 1500.8 1515.87 Q1498.88 1515.87 1496.68 1516.29 Q1494.48 1516.7 1491.84 1517.58 L1491.84 1513.42 Q1494.5 1512.68 1496.82 1512.31 Q1499.16 1511.93 1501.22 1511.93 Q1506.54 1511.93 1509.64 1514.37 Q1512.74 1516.77 1512.74 1520.89 Q1512.74 1523.76 1511.1 1525.75 Q1509.46 1527.72 1506.43 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1532.42 1515.64 Q1528.81 1515.64 1526.98 1519.2 Q1525.18 1522.75 1525.18 1529.87 Q1525.18 1536.98 1526.98 1540.55 Q1528.81 1544.09 1532.42 1544.09 Q1536.05 1544.09 1537.86 1540.55 Q1539.69 1536.98 1539.69 1529.87 Q1539.69 1522.75 1537.86 1519.2 Q1536.05 1515.64 1532.42 1515.64 M1532.42 1511.93 Q1538.23 1511.93 1541.29 1516.54 Q1544.36 1521.12 1544.36 1529.87 Q1544.36 1538.6 1541.29 1543.21 Q1538.23 1547.79 1532.42 1547.79 Q1526.61 1547.79 1523.53 1543.21 Q1520.48 1538.6 1520.48 1529.87 Q1520.48 1521.12 1523.53 1516.54 Q1526.61 1511.93 1532.42 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1562.58 1515.64 Q1558.97 1515.64 1557.14 1519.2 Q1555.34 1522.75 1555.34 1529.87 Q1555.34 1536.98 1557.14 1540.55 Q1558.97 1544.09 1562.58 1544.09 Q1566.22 1544.09 1568.02 1540.55 Q1569.85 1536.98 1569.85 1529.87 Q1569.85 1522.75 1568.02 1519.2 Q1566.22 1515.64 1562.58 1515.64 M1562.58 1511.93 Q1568.39 1511.93 1571.45 1516.54 Q1574.53 1521.12 1574.53 1529.87 Q1574.53 1538.6 1571.45 1543.21 Q1568.39 1547.79 1562.58 1547.79 Q1556.77 1547.79 1553.69 1543.21 Q1550.64 1538.6 1550.64 1529.87 Q1550.64 1521.12 1553.69 1516.54 Q1556.77 1511.93 1562.58 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1923.25 1516.63 L1911.45 1535.08 L1923.25 1535.08 L1923.25 1516.63 M1922.03 1512.56 L1927.91 1512.56 L1927.91 1535.08 L1932.84 1535.08 L1932.84 1538.97 L1927.91 1538.97 L1927.91 1547.12 L1923.25 1547.12 L1923.25 1538.97 L1907.65 1538.97 L1907.65 1534.46 L1922.03 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1950.57 1515.64 Q1946.96 1515.64 1945.13 1519.2 Q1943.32 1522.75 1943.32 1529.87 Q1943.32 1536.98 1945.13 1540.55 Q1946.96 1544.09 1950.57 1544.09 Q1954.2 1544.09 1956.01 1540.55 Q1957.84 1536.98 1957.84 1529.87 Q1957.84 1522.75 1956.01 1519.2 Q1954.2 1515.64 1950.57 1515.64 M1950.57 1511.93 Q1956.38 1511.93 1959.43 1516.54 Q1962.51 1521.12 1962.51 1529.87 Q1962.51 1538.6 1959.43 1543.21 Q1956.38 1547.79 1950.57 1547.79 Q1944.76 1547.79 1941.68 1543.21 Q1938.62 1538.6 1938.62 1529.87 Q1938.62 1521.12 1941.68 1516.54 Q1944.76 1511.93 1950.57 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1980.73 1515.64 Q1977.12 1515.64 1975.29 1519.2 Q1973.48 1522.75 1973.48 1529.87 Q1973.48 1536.98 1975.29 1540.55 Q1977.12 1544.09 1980.73 1544.09 Q1984.36 1544.09 1986.17 1540.55 Q1988 1536.98 1988 1529.87 Q1988 1522.75 1986.17 1519.2 Q1984.36 1515.64 1980.73 1515.64 M1980.73 1511.93 Q1986.54 1511.93 1989.59 1516.54 Q1992.67 1521.12 1992.67 1529.87 Q1992.67 1538.6 1989.59 1543.21 Q1986.54 1547.79 1980.73 1547.79 Q1974.92 1547.79 1971.84 1543.21 Q1968.78 1538.6 1968.78 1529.87 Q1968.78 1521.12 1971.84 1516.54 Q1974.92 1511.93 1980.73 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,1406.48 2352.76,1406.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,1216.28 2352.76,1216.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,1026.08 2352.76,1026.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,835.885 2352.76,835.885 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,645.686 2352.76,645.686 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,455.487 2352.76,455.487 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip992)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 224.098,265.288 2352.76,265.288 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1486.45 224.098,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1406.48 249.642,1406.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1216.28 249.642,1216.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,1026.08 249.642,1026.08 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,835.885 249.642,835.885 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,645.686 249.642,645.686 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,455.487 249.642,455.487 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 224.098,265.288 249.642,265.288 \n",
" \"/>\n",
"<path clip-path=\"url(#clip990)\" d=\"M51.9875 1406.93 L81.6633 1406.93 L81.6633 1410.87 L51.9875 1410.87 L51.9875 1406.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M101.756 1392.28 Q98.1447 1392.28 96.316 1395.84 Q94.5104 1399.39 94.5104 1406.52 Q94.5104 1413.62 96.316 1417.19 Q98.1447 1420.73 101.756 1420.73 Q105.39 1420.73 107.196 1417.19 Q109.024 1413.62 109.024 1406.52 Q109.024 1399.39 107.196 1395.84 Q105.39 1392.28 101.756 1392.28 M101.756 1388.58 Q107.566 1388.58 110.621 1393.18 Q113.7 1397.77 113.7 1406.52 Q113.7 1415.24 110.621 1419.85 Q107.566 1424.43 101.756 1424.43 Q95.9456 1424.43 92.8669 1419.85 Q89.8114 1415.24 89.8114 1406.52 Q89.8114 1397.77 92.8669 1393.18 Q95.9456 1388.58 101.756 1388.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M121.918 1417.88 L126.802 1417.88 L126.802 1423.76 L121.918 1423.76 L121.918 1417.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M137.797 1419.83 L145.436 1419.83 L145.436 1393.46 L137.126 1395.13 L137.126 1390.87 L145.39 1389.2 L150.066 1389.2 L150.066 1419.83 L157.705 1419.83 L157.705 1423.76 L137.797 1423.76 L137.797 1419.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M167.195 1389.2 L185.552 1389.2 L185.552 1393.14 L171.478 1393.14 L171.478 1401.61 Q172.496 1401.26 173.515 1401.1 Q174.533 1400.91 175.552 1400.91 Q181.339 1400.91 184.718 1404.09 Q188.098 1407.26 188.098 1412.67 Q188.098 1418.25 184.626 1421.35 Q181.153 1424.43 174.834 1424.43 Q172.658 1424.43 170.39 1424.06 Q168.144 1423.69 165.737 1422.95 L165.737 1418.25 Q167.82 1419.39 170.042 1419.94 Q172.265 1420.5 174.741 1420.5 Q178.746 1420.5 181.084 1418.39 Q183.422 1416.28 183.422 1412.67 Q183.422 1409.06 181.084 1406.96 Q178.746 1404.85 174.741 1404.85 Q172.866 1404.85 170.991 1405.27 Q169.14 1405.68 167.195 1406.56 L167.195 1389.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M50.9921 1216.73 L80.6679 1216.73 L80.6679 1220.67 L50.9921 1220.67 L50.9921 1216.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M100.76 1202.08 Q97.1493 1202.08 95.3206 1205.65 Q93.515 1209.19 93.515 1216.32 Q93.515 1223.42 95.3206 1226.99 Q97.1493 1230.53 100.76 1230.53 Q104.395 1230.53 106.2 1226.99 Q108.029 1223.42 108.029 1216.32 Q108.029 1209.19 106.2 1205.65 Q104.395 1202.08 100.76 1202.08 M100.76 1198.38 Q106.571 1198.38 109.626 1202.98 Q112.705 1207.57 112.705 1216.32 Q112.705 1225.04 109.626 1229.65 Q106.571 1234.23 100.76 1234.23 Q94.9502 1234.23 91.8715 1229.65 Q88.816 1225.04 88.816 1216.32 Q88.816 1207.57 91.8715 1202.98 Q94.9502 1198.38 100.76 1198.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M120.922 1227.68 L125.807 1227.68 L125.807 1233.56 L120.922 1233.56 L120.922 1227.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M136.802 1229.63 L144.441 1229.63 L144.441 1203.26 L136.131 1204.93 L136.131 1200.67 L144.394 1199 L149.07 1199 L149.07 1229.63 L156.709 1229.63 L156.709 1233.56 L136.802 1233.56 L136.802 1229.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M176.153 1202.08 Q172.542 1202.08 170.714 1205.65 Q168.908 1209.19 168.908 1216.32 Q168.908 1223.42 170.714 1226.99 Q172.542 1230.53 176.153 1230.53 Q179.788 1230.53 181.593 1226.99 Q183.422 1223.42 183.422 1216.32 Q183.422 1209.19 181.593 1205.65 Q179.788 1202.08 176.153 1202.08 M176.153 1198.38 Q181.964 1198.38 185.019 1202.98 Q188.098 1207.57 188.098 1216.32 Q188.098 1225.04 185.019 1229.65 Q181.964 1234.23 176.153 1234.23 Q170.343 1234.23 167.265 1229.65 Q164.209 1225.04 164.209 1216.32 Q164.209 1207.57 167.265 1202.98 Q170.343 1198.38 176.153 1198.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M51.9875 1026.53 L81.6633 1026.53 L81.6633 1030.47 L51.9875 1030.47 L51.9875 1026.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M101.756 1011.88 Q98.1447 1011.88 96.316 1015.45 Q94.5104 1018.99 94.5104 1026.12 Q94.5104 1033.22 96.316 1036.79 Q98.1447 1040.33 101.756 1040.33 Q105.39 1040.33 107.196 1036.79 Q109.024 1033.22 109.024 1026.12 Q109.024 1018.99 107.196 1015.45 Q105.39 1011.88 101.756 1011.88 M101.756 1008.18 Q107.566 1008.18 110.621 1012.78 Q113.7 1017.37 113.7 1026.12 Q113.7 1034.85 110.621 1039.45 Q107.566 1044.03 101.756 1044.03 Q95.9456 1044.03 92.8669 1039.45 Q89.8114 1034.85 89.8114 1026.12 Q89.8114 1017.37 92.8669 1012.78 Q95.9456 1008.18 101.756 1008.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M121.918 1037.48 L126.802 1037.48 L126.802 1043.36 L121.918 1043.36 L121.918 1037.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M146.987 1011.88 Q143.376 1011.88 141.547 1015.45 Q139.742 1018.99 139.742 1026.12 Q139.742 1033.22 141.547 1036.79 Q143.376 1040.33 146.987 1040.33 Q150.621 1040.33 152.427 1036.79 Q154.255 1033.22 154.255 1026.12 Q154.255 1018.99 152.427 1015.45 Q150.621 1011.88 146.987 1011.88 M146.987 1008.18 Q152.797 1008.18 155.853 1012.78 Q158.931 1017.37 158.931 1026.12 Q158.931 1034.85 155.853 1039.45 Q152.797 1044.03 146.987 1044.03 Q141.177 1044.03 138.098 1039.45 Q135.043 1034.85 135.043 1026.12 Q135.043 1017.37 138.098 1012.78 Q141.177 1008.18 146.987 1008.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M167.195 1008.8 L185.552 1008.8 L185.552 1012.74 L171.478 1012.74 L171.478 1021.21 Q172.496 1020.86 173.515 1020.7 Q174.533 1020.52 175.552 1020.52 Q181.339 1020.52 184.718 1023.69 Q188.098 1026.86 188.098 1032.28 Q188.098 1037.85 184.626 1040.96 Q181.153 1044.03 174.834 1044.03 Q172.658 1044.03 170.39 1043.66 Q168.144 1043.29 165.737 1042.55 L165.737 1037.85 Q167.82 1038.99 170.042 1039.54 Q172.265 1040.1 174.741 1040.1 Q178.746 1040.1 181.084 1037.99 Q183.422 1035.89 183.422 1032.28 Q183.422 1028.66 181.084 1026.56 Q178.746 1024.45 174.741 1024.45 Q172.866 1024.45 170.991 1024.87 Q169.14 1025.28 167.195 1026.16 L167.195 1008.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M100.76 821.683 Q97.1493 821.683 95.3206 825.248 Q93.515 828.79 93.515 835.919 Q93.515 843.026 95.3206 846.591 Q97.1493 850.132 100.76 850.132 Q104.395 850.132 106.2 846.591 Q108.029 843.026 108.029 835.919 Q108.029 828.79 106.2 825.248 Q104.395 821.683 100.76 821.683 M100.76 817.98 Q106.571 817.98 109.626 822.586 Q112.705 827.169 112.705 835.919 Q112.705 844.646 109.626 849.253 Q106.571 853.836 100.76 853.836 Q94.9502 853.836 91.8715 849.253 Q88.816 844.646 88.816 835.919 Q88.816 827.169 91.8715 822.586 Q94.9502 817.98 100.76 817.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M120.922 847.285 L125.807 847.285 L125.807 853.165 L120.922 853.165 L120.922 847.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M145.992 821.683 Q142.381 821.683 140.552 825.248 Q138.746 828.79 138.746 835.919 Q138.746 843.026 140.552 846.591 Q142.381 850.132 145.992 850.132 Q149.626 850.132 151.431 846.591 Q153.26 843.026 153.26 835.919 Q153.26 828.79 151.431 825.248 Q149.626 821.683 145.992 821.683 M145.992 817.98 Q151.802 817.98 154.857 822.586 Q157.936 827.169 157.936 835.919 Q157.936 844.646 154.857 849.253 Q151.802 853.836 145.992 853.836 Q140.181 853.836 137.103 849.253 Q134.047 844.646 134.047 835.919 Q134.047 827.169 137.103 822.586 Q140.181 817.98 145.992 817.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M176.153 821.683 Q172.542 821.683 170.714 825.248 Q168.908 828.79 168.908 835.919 Q168.908 843.026 170.714 846.591 Q172.542 850.132 176.153 850.132 Q179.788 850.132 181.593 846.591 Q183.422 843.026 183.422 835.919 Q183.422 828.79 181.593 825.248 Q179.788 821.683 176.153 821.683 M176.153 817.98 Q181.964 817.98 185.019 822.586 Q188.098 827.169 188.098 835.919 Q188.098 844.646 185.019 849.253 Q181.964 853.836 176.153 853.836 Q170.343 853.836 167.265 849.253 Q164.209 844.646 164.209 835.919 Q164.209 827.169 167.265 822.586 Q170.343 817.98 176.153 817.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M101.756 631.484 Q98.1447 631.484 96.316 635.049 Q94.5104 638.591 94.5104 645.72 Q94.5104 652.827 96.316 656.392 Q98.1447 659.933 101.756 659.933 Q105.39 659.933 107.196 656.392 Q109.024 652.827 109.024 645.72 Q109.024 638.591 107.196 635.049 Q105.39 631.484 101.756 631.484 M101.756 627.781 Q107.566 627.781 110.621 632.387 Q113.7 636.97 113.7 645.72 Q113.7 654.447 110.621 659.054 Q107.566 663.637 101.756 663.637 Q95.9456 663.637 92.8669 659.054 Q89.8114 654.447 89.8114 645.72 Q89.8114 636.97 92.8669 632.387 Q95.9456 627.781 101.756 627.781 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M121.918 657.086 L126.802 657.086 L126.802 662.966 L121.918 662.966 L121.918 657.086 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M146.987 631.484 Q143.376 631.484 141.547 635.049 Q139.742 638.591 139.742 645.72 Q139.742 652.827 141.547 656.392 Q143.376 659.933 146.987 659.933 Q150.621 659.933 152.427 656.392 Q154.255 652.827 154.255 645.72 Q154.255 638.591 152.427 635.049 Q150.621 631.484 146.987 631.484 M146.987 627.781 Q152.797 627.781 155.853 632.387 Q158.931 636.97 158.931 645.72 Q158.931 654.447 155.853 659.054 Q152.797 663.637 146.987 663.637 Q141.177 663.637 138.098 659.054 Q135.043 654.447 135.043 645.72 Q135.043 636.97 138.098 632.387 Q141.177 627.781 146.987 627.781 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M167.195 628.406 L185.552 628.406 L185.552 632.341 L171.478 632.341 L171.478 640.813 Q172.496 640.466 173.515 640.304 Q174.533 640.118 175.552 640.118 Q181.339 640.118 184.718 643.29 Q188.098 646.461 188.098 651.878 Q188.098 657.456 184.626 660.558 Q181.153 663.637 174.834 663.637 Q172.658 663.637 170.39 663.267 Q168.144 662.896 165.737 662.155 L165.737 657.456 Q167.82 658.591 170.042 659.146 Q172.265 659.702 174.741 659.702 Q178.746 659.702 181.084 657.595 Q183.422 655.489 183.422 651.878 Q183.422 648.267 181.084 646.16 Q178.746 644.054 174.741 644.054 Q172.866 644.054 170.991 644.47 Q169.14 644.887 167.195 645.767 L167.195 628.406 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M100.76 441.285 Q97.1493 441.285 95.3206 444.85 Q93.515 448.392 93.515 455.521 Q93.515 462.628 95.3206 466.193 Q97.1493 469.734 100.76 469.734 Q104.395 469.734 106.2 466.193 Q108.029 462.628 108.029 455.521 Q108.029 448.392 106.2 444.85 Q104.395 441.285 100.76 441.285 M100.76 437.582 Q106.571 437.582 109.626 442.188 Q112.705 446.771 112.705 455.521 Q112.705 464.248 109.626 468.855 Q106.571 473.438 100.76 473.438 Q94.9502 473.438 91.8715 468.855 Q88.816 464.248 88.816 455.521 Q88.816 446.771 91.8715 442.188 Q94.9502 437.582 100.76 437.582 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M120.922 466.887 L125.807 466.887 L125.807 472.767 L120.922 472.767 L120.922 466.887 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M136.802 468.831 L144.441 468.831 L144.441 442.466 L136.131 444.133 L136.131 439.873 L144.394 438.207 L149.07 438.207 L149.07 468.831 L156.709 468.831 L156.709 472.767 L136.802 472.767 L136.802 468.831 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M176.153 441.285 Q172.542 441.285 170.714 444.85 Q168.908 448.392 168.908 455.521 Q168.908 462.628 170.714 466.193 Q172.542 469.734 176.153 469.734 Q179.788 469.734 181.593 466.193 Q183.422 462.628 183.422 455.521 Q183.422 448.392 181.593 444.85 Q179.788 441.285 176.153 441.285 M176.153 437.582 Q181.964 437.582 185.019 442.188 Q188.098 446.771 188.098 455.521 Q188.098 464.248 185.019 468.855 Q181.964 473.438 176.153 473.438 Q170.343 473.438 167.265 468.855 Q164.209 464.248 164.209 455.521 Q164.209 446.771 167.265 442.188 Q170.343 437.582 176.153 437.582 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M101.756 251.086 Q98.1447 251.086 96.316 254.651 Q94.5104 258.193 94.5104 265.322 Q94.5104 272.429 96.316 275.994 Q98.1447 279.535 101.756 279.535 Q105.39 279.535 107.196 275.994 Q109.024 272.429 109.024 265.322 Q109.024 258.193 107.196 254.651 Q105.39 251.086 101.756 251.086 M101.756 247.383 Q107.566 247.383 110.621 251.989 Q113.7 256.572 113.7 265.322 Q113.7 274.049 110.621 278.656 Q107.566 283.239 101.756 283.239 Q95.9456 283.239 92.8669 278.656 Q89.8114 274.049 89.8114 265.322 Q89.8114 256.572 92.8669 251.989 Q95.9456 247.383 101.756 247.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M121.918 276.688 L126.802 276.688 L126.802 282.568 L121.918 282.568 L121.918 276.688 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M137.797 278.632 L145.436 278.632 L145.436 252.267 L137.126 253.934 L137.126 249.674 L145.39 248.008 L150.066 248.008 L150.066 278.632 L157.705 278.632 L157.705 282.568 L137.797 282.568 L137.797 278.632 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M167.195 248.008 L185.552 248.008 L185.552 251.943 L171.478 251.943 L171.478 260.415 Q172.496 260.068 173.515 259.906 Q174.533 259.721 175.552 259.721 Q181.339 259.721 184.718 262.892 Q188.098 266.063 188.098 271.48 Q188.098 277.058 184.626 280.16 Q181.153 283.239 174.834 283.239 Q172.658 283.239 170.39 282.869 Q168.144 282.498 165.737 281.757 L165.737 277.058 Q167.82 278.193 170.042 278.748 Q172.265 279.304 174.741 279.304 Q178.746 279.304 181.084 277.197 Q183.422 275.091 183.422 271.48 Q183.422 267.869 181.084 265.762 Q178.746 263.656 174.741 263.656 Q172.866 263.656 170.991 264.072 Q169.14 264.489 167.195 265.369 L167.195 248.008 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1009.26 9.54393 L1016.71 9.54393 L1016.71 72.576 L1009.26 72.576 L1009.26 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1049.89 32.4315 Q1043.89 32.4315 1040.41 37.1306 Q1036.93 41.7891 1036.93 49.9314 Q1036.93 58.0738 1040.37 62.7728 Q1043.85 67.4314 1049.89 67.4314 Q1055.84 67.4314 1059.33 62.7323 Q1062.81 58.0333 1062.81 49.9314 Q1062.81 41.8701 1059.33 37.1711 Q1055.84 32.4315 1049.89 32.4315 M1049.89 26.1121 Q1059.61 26.1121 1065.16 32.4315 Q1070.71 38.7509 1070.71 49.9314 Q1070.71 61.0714 1065.16 67.4314 Q1059.61 73.7508 1049.89 73.7508 Q1040.13 73.7508 1034.58 67.4314 Q1029.07 61.0714 1029.07 49.9314 Q1029.07 38.7509 1034.58 32.4315 Q1040.13 26.1121 1049.89 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1112.92 49.3643 Q1112.92 41.2625 1109.56 36.8065 Q1106.24 32.3505 1100.2 32.3505 Q1094.21 32.3505 1090.84 36.8065 Q1087.52 41.2625 1087.52 49.3643 Q1087.52 57.4256 1090.84 61.8816 Q1094.21 66.3376 1100.2 66.3376 Q1106.24 66.3376 1109.56 61.8816 Q1112.92 57.4256 1112.92 49.3643 M1120.38 66.9452 Q1120.38 78.5308 1115.23 84.1616 Q1110.09 89.8329 1099.47 89.8329 Q1095.54 89.8329 1092.06 89.2252 Q1088.58 88.6581 1085.29 87.4428 L1085.29 80.1917 Q1088.58 81.9741 1091.78 82.8248 Q1094.98 83.6755 1098.3 83.6755 Q1105.63 83.6755 1109.28 79.8271 Q1112.92 76.0193 1112.92 68.282 L1112.92 64.5957 Q1110.61 68.6061 1107.01 70.5911 Q1103.4 72.576 1098.38 72.576 Q1090.03 72.576 1084.93 66.2161 Q1079.83 59.8562 1079.83 49.3643 Q1079.83 38.832 1084.93 32.472 Q1090.03 26.1121 1098.38 26.1121 Q1103.4 26.1121 1107.01 28.0971 Q1110.61 30.082 1112.92 34.0924 L1112.92 27.2059 L1120.38 27.2059 L1120.38 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1191.95 34.0924 L1191.95 9.54393 L1199.41 9.54393 L1199.41 72.576 L1191.95 72.576 L1191.95 65.7705 Q1189.61 69.8214 1186 71.8063 Q1182.43 73.7508 1177.41 73.7508 Q1169.19 73.7508 1164 67.1883 Q1158.86 60.6258 1158.86 49.9314 Q1158.86 39.2371 1164 32.6746 Q1169.19 26.1121 1177.41 26.1121 Q1182.43 26.1121 1186 28.0971 Q1189.61 30.0415 1191.95 34.0924 M1166.56 49.9314 Q1166.56 58.1548 1169.92 62.8538 Q1173.32 67.5124 1179.23 67.5124 Q1185.15 67.5124 1188.55 62.8538 Q1191.95 58.1548 1191.95 49.9314 Q1191.95 41.7081 1188.55 37.0496 Q1185.15 32.3505 1179.23 32.3505 Q1173.32 32.3505 1169.92 37.0496 Q1166.56 41.7081 1166.56 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1214.76 27.2059 L1222.21 27.2059 L1222.21 72.576 L1214.76 72.576 L1214.76 27.2059 M1214.76 9.54393 L1222.21 9.54393 L1222.21 18.9825 L1214.76 18.9825 L1214.76 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1260.78 9.54393 L1260.78 15.7418 L1253.65 15.7418 Q1249.64 15.7418 1248.06 17.3622 Q1246.52 18.9825 1246.52 23.1955 L1246.52 27.2059 L1258.79 27.2059 L1258.79 32.9987 L1246.52 32.9987 L1246.52 72.576 L1239.03 72.576 L1239.03 32.9987 L1231.9 32.9987 L1231.9 27.2059 L1239.03 27.2059 L1239.03 24.0462 Q1239.03 16.471 1242.55 13.0277 Q1246.07 9.54393 1253.73 9.54393 L1260.78 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1289.99 9.54393 L1289.99 15.7418 L1282.86 15.7418 Q1278.85 15.7418 1277.27 17.3622 Q1275.73 18.9825 1275.73 23.1955 L1275.73 27.2059 L1288 27.2059 L1288 32.9987 L1275.73 32.9987 L1275.73 72.576 L1268.23 72.576 L1268.23 32.9987 L1261.1 32.9987 L1261.1 27.2059 L1268.23 27.2059 L1268.23 24.0462 Q1268.23 16.471 1271.76 13.0277 Q1275.28 9.54393 1282.94 9.54393 L1289.99 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1335.03 48.0275 L1335.03 51.6733 L1300.76 51.6733 Q1301.25 59.3701 1305.38 63.421 Q1309.55 67.4314 1316.97 67.4314 Q1321.26 67.4314 1325.27 66.3781 Q1329.32 65.3249 1333.29 63.2184 L1333.29 70.267 Q1329.28 71.9684 1325.07 72.8596 Q1320.85 73.7508 1316.52 73.7508 Q1305.66 73.7508 1299.3 67.4314 Q1292.98 61.1119 1292.98 50.3365 Q1292.98 39.1965 1298.98 32.6746 Q1305.02 26.1121 1315.22 26.1121 Q1324.38 26.1121 1329.69 32.0264 Q1335.03 37.9003 1335.03 48.0275 M1327.58 45.84 Q1327.5 39.7232 1324.14 36.0774 Q1320.81 32.4315 1315.3 32.4315 Q1309.07 32.4315 1305.3 35.9558 Q1301.57 39.4801 1301 45.8805 L1327.58 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1373.56 34.1734 Q1372.3 33.4443 1370.8 33.1202 Q1369.34 32.7556 1367.56 32.7556 Q1361.24 32.7556 1357.84 36.8875 Q1354.48 40.9789 1354.48 48.6757 L1354.48 72.576 L1346.98 72.576 L1346.98 27.2059 L1354.48 27.2059 L1354.48 34.2544 Q1356.83 30.1225 1360.59 28.1376 Q1364.36 26.1121 1369.75 26.1121 Q1370.52 26.1121 1371.45 26.2337 Q1372.38 26.3147 1373.52 26.5172 L1373.56 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1418.36 48.0275 L1418.36 51.6733 L1384.09 51.6733 Q1384.58 59.3701 1388.71 63.421 Q1392.88 67.4314 1400.29 67.4314 Q1404.59 67.4314 1408.6 66.3781 Q1412.65 65.3249 1416.62 63.2184 L1416.62 70.267 Q1412.61 71.9684 1408.39 72.8596 Q1404.18 73.7508 1399.85 73.7508 Q1388.99 73.7508 1382.63 67.4314 Q1376.31 61.1119 1376.31 50.3365 Q1376.31 39.1965 1382.31 32.6746 Q1388.34 26.1121 1398.55 26.1121 Q1407.71 26.1121 1413.01 32.0264 Q1418.36 37.9003 1418.36 48.0275 M1410.91 45.84 Q1410.82 39.7232 1407.46 36.0774 Q1404.14 32.4315 1398.63 32.4315 Q1392.39 32.4315 1388.63 35.9558 Q1384.9 39.4801 1384.33 45.8805 L1410.91 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1468.31 45.1919 L1468.31 72.576 L1460.85 72.576 L1460.85 45.4349 Q1460.85 38.994 1458.34 35.7938 Q1455.83 32.5936 1450.81 32.5936 Q1444.77 32.5936 1441.29 36.4419 Q1437.8 40.2903 1437.8 46.9338 L1437.8 72.576 L1430.31 72.576 L1430.31 27.2059 L1437.8 27.2059 L1437.8 34.2544 Q1440.48 30.163 1444.08 28.1376 Q1447.73 26.1121 1452.47 26.1121 Q1460.29 26.1121 1464.3 30.9732 Q1468.31 35.7938 1468.31 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1515.82 28.9478 L1515.82 35.9153 Q1512.66 34.1734 1509.46 33.3227 Q1506.3 32.4315 1503.06 32.4315 Q1495.81 32.4315 1491.8 37.0496 Q1487.79 41.6271 1487.79 49.9314 Q1487.79 58.2358 1491.8 62.8538 Q1495.81 67.4314 1503.06 67.4314 Q1506.3 67.4314 1509.46 66.5807 Q1512.66 65.6895 1515.82 63.9476 L1515.82 70.8341 Q1512.71 72.2924 1509.34 73.0216 Q1506.02 73.7508 1502.25 73.7508 Q1492.01 73.7508 1485.97 67.3098 Q1479.93 60.8689 1479.93 49.9314 Q1479.93 38.832 1486.01 32.472 Q1492.13 26.1121 1502.74 26.1121 Q1506.18 26.1121 1509.46 26.8413 Q1512.75 27.5299 1515.82 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M1567.59 48.0275 L1567.59 51.6733 L1533.32 51.6733 Q1533.81 59.3701 1537.94 63.421 Q1542.11 67.4314 1549.53 67.4314 Q1553.82 67.4314 1557.83 66.3781 Q1561.88 65.3249 1565.85 63.2184 L1565.85 70.267 Q1561.84 71.9684 1557.63 72.8596 Q1553.42 73.7508 1549.08 73.7508 Q1538.23 73.7508 1531.87 67.4314 Q1525.55 61.1119 1525.55 50.3365 Q1525.55 39.1965 1531.54 32.6746 Q1537.58 26.1121 1547.79 26.1121 Q1556.94 26.1121 1562.25 32.0264 Q1567.59 37.9003 1567.59 48.0275 M1560.14 45.84 Q1560.06 39.7232 1556.7 36.0774 Q1553.38 32.4315 1547.87 32.4315 Q1541.63 32.4315 1537.86 35.9558 Q1534.13 39.4801 1533.57 45.8805 L1560.14 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip992)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.343,664.789 288.518,938.52 292.693,808.842 296.868,913.01 301.043,745.309 305.218,522.464 309.393,866.921 313.568,659.301 317.743,879.77 321.918,929.313 \n",
" 326.093,860.639 330.268,848.323 334.443,802.806 338.618,935.995 342.793,857.077 346.968,737.292 351.143,1051 355.318,633.213 359.493,705.193 363.668,684.374 \n",
" 367.843,965.378 372.018,782.376 376.193,756.044 380.368,857.141 384.543,839.762 388.718,1024.78 392.893,1026.07 397.068,1040.6 401.243,500.563 405.417,844.176 \n",
" 409.592,904.993 413.767,969.22 417.942,814.06 422.117,820.681 426.292,981.7 430.467,847.162 434.642,1028.15 438.817,874.091 442.992,826.297 447.167,974.847 \n",
" 451.342,823.49 455.517,984.783 459.692,972.13 463.867,878.807 468.042,739.981 472.217,854.344 476.392,857.092 480.567,801.483 484.742,825.362 488.917,867.54 \n",
" 493.092,785.883 497.267,833.271 501.442,993.239 505.617,865.956 509.792,657.032 513.967,984.338 518.142,751.5 522.317,787.732 526.492,1094.35 530.667,835.885 \n",
" 534.842,898.999 539.017,660.633 543.192,724.275 547.367,895.365 551.542,943.669 555.717,889.522 559.892,779.445 564.067,747.287 568.242,888.24 572.417,852.568 \n",
" 576.592,883.558 580.767,802.171 584.942,841.483 589.117,838.687 593.292,796.841 597.467,662.33 601.642,780.62 605.817,899.11 609.992,875.941 614.167,978.106 \n",
" 618.342,805.353 622.517,1149.82 626.692,761.557 630.867,1447.87 635.042,686.69 639.217,859.233 643.392,1010.46 647.567,989.566 651.742,763.632 655.917,930.083 \n",
" 660.092,824.896 664.267,763.425 668.442,846.666 672.617,722.43 676.792,960.151 680.967,796.39 685.142,996.383 689.316,736.597 693.491,746.206 697.666,925.563 \n",
" 701.841,717.95 706.016,842.929 710.191,850.013 714.366,783.173 718.541,963.642 722.716,666.477 726.891,867.079 731.066,948.917 735.241,691.657 739.416,902.042 \n",
" 743.591,860.551 747.766,769.3 751.941,930.857 756.116,779.319 760.291,913.881 764.466,793.143 768.641,776.144 772.816,818.491 776.991,916.563 781.166,737.893 \n",
" 785.341,842.801 789.516,650.123 793.691,925.943 797.866,880.019 802.041,846.143 806.216,915.462 810.391,913.591 814.566,868.137 818.741,982.633 822.916,832.146 \n",
" 827.091,780.243 831.266,799.237 835.441,795.976 839.616,785.69 843.791,896.922 847.966,912.662 852.141,806.453 856.316,880.118 860.491,854.468 864.666,899.755 \n",
" 868.841,951.282 873.016,886.998 877.191,879.678 881.366,278.208 885.541,578.513 889.716,855.326 893.891,578.421 898.066,1025.73 902.241,760.055 906.416,761.537 \n",
" 910.591,941.644 914.766,813.869 918.941,820.237 923.116,889.352 927.291,909.44 931.466,845.584 935.641,891.323 939.816,852.345 943.991,829.292 948.166,872.286 \n",
" 952.341,872.639 956.516,825.825 960.691,900.046 964.866,815.506 969.041,735.598 973.215,835.885 977.39,718.93 981.565,864.788 985.74,832.662 989.915,684.337 \n",
" 994.09,993.88 998.265,781.427 1002.44,826.354 1006.62,751.174 1010.79,823.494 1014.97,895.104 1019.14,951.653 1023.32,809.852 1027.49,739.819 1031.67,864.45 \n",
" 1035.84,942.5 1040.02,783.819 1044.19,743.295 1048.37,851.688 1052.54,816.928 1056.72,858.01 1060.89,832.716 1065.07,829.555 1069.24,842.214 1073.42,769.945 \n",
" 1077.59,832.773 1081.77,792.587 1085.94,799.16 1090.12,698.305 1094.29,931.063 1098.47,866.123 1102.64,793.618 1106.82,782.223 1110.99,898.565 1115.16,890.445 \n",
" 1119.34,845.054 1123.51,878.972 1127.69,801.989 1131.86,721.062 1136.04,724.426 1140.21,699.608 1144.39,766.795 1148.56,1018.2 1152.74,856.05 1156.91,1065.06 \n",
" 1161.09,916.494 1165.26,845.296 1169.44,804.602 1173.61,792.516 1177.79,693.805 1181.96,859.697 1186.14,806.142 1190.31,824.053 1194.49,733.895 1198.66,815.811 \n",
" 1202.84,796.052 1207.01,740.85 1211.19,816.61 1215.36,770.532 1219.54,800.948 1223.71,925.203 1227.89,927.351 1232.06,898.107 1236.24,847.308 1240.41,919.746 \n",
" 1244.59,871.134 1248.76,919.426 1252.94,838.902 1257.11,875.336 1261.29,860.367 1265.46,857.437 1269.64,885.61 1273.81,786.159 1277.99,774.627 1282.16,848.057 \n",
" 1286.34,1007.33 1290.51,816.801 1294.69,1021.16 1298.86,727.52 1303.04,845.609 1307.21,901.359 1311.39,809.559 1315.56,902.042 1319.74,869.4 1323.91,835.885 \n",
" 1328.09,852.754 1332.26,812.288 1336.44,879.823 1340.61,866.603 1344.79,968.392 1348.96,821.717 1353.14,910.86 1357.31,964.224 1361.49,802.467 1365.66,846.991 \n",
" 1369.84,869.4 1374.01,806.078 1378.19,766.017 1382.36,920.626 1386.54,590.614 1390.71,608.764 1394.89,855.68 1399.06,980.848 1403.24,1058.78 1407.41,770.858 \n",
" 1411.59,897.269 1415.76,894.578 1419.94,869.302 1424.11,1130.43 1428.29,983.79 1432.46,1042.49 1436.64,1068.43 1440.81,625.515 1444.99,948.771 1449.16,808.485 \n",
" 1453.34,831.337 1457.51,1104.18 1461.69,1231.26 1465.86,594.781 1470.04,959.77 1474.21,1035.15 1478.39,1040.33 1482.56,960.422 1486.74,705.517 1490.91,918.327 \n",
" 1495.09,1399.52 1499.26,933.787 1503.44,497.229 1507.61,658.629 1511.79,1111.61 1515.96,809.376 1520.14,924.274 1524.31,801.645 1528.49,1140.93 1532.66,1072.04 \n",
" 1536.84,1037.63 1541.01,681.593 1545.19,780.582 1549.36,796.869 1553.54,487.468 1557.71,892.981 1561.89,952.715 1566.06,711.87 1570.24,952.491 1574.41,806.396 \n",
" 1578.59,763.149 1582.76,591.732 1586.94,1072.84 1591.11,800.099 1595.29,567.743 1599.46,1012.53 1603.64,712.723 1607.81,451.964 1611.99,448.509 1616.16,1162.88 \n",
" 1620.34,994.916 1624.51,688.853 1628.69,464.051 1632.86,997.307 1637.04,963.081 1641.21,1091.2 1645.39,779.713 1649.56,873.24 1653.74,443.865 1657.91,813.376 \n",
" 1662.09,763.637 1666.26,1004.73 1670.44,299.982 1674.61,830.889 1678.79,906.424 1682.96,1012.85 1687.14,1021.48 1691.31,703.941 1695.49,766.281 1699.66,905.488 \n",
" 1703.84,995.901 1708.01,763.319 1712.19,452.274 1716.36,947.476 1720.54,877.289 1724.71,1094.25 1728.89,852.63 1733.06,978.372 1737.24,550.662 1741.41,956.308 \n",
" 1745.59,875.015 1749.76,769.049 1753.94,775.633 1758.11,879.609 1762.29,813.96 1766.46,1026.4 1770.64,824.409 1774.81,1072.23 1778.99,829.793 1783.16,909.631 \n",
" 1787.34,898.451 1791.51,1070.05 1795.69,710.504 1799.86,835.885 1804.04,921.223 1808.21,998.646 1812.39,849.768 1816.56,712.723 1820.74,815.74 1824.91,749.803 \n",
" 1829.09,835.885 1833.26,895.271 1837.44,923.336 1841.61,904.55 1845.79,774.03 1849.96,911.622 1854.14,941.655 1858.31,996.537 1862.49,873.362 1866.66,1044.9 \n",
" 1870.84,804.185 1875.01,547.221 1879.19,872.638 1883.36,955.941 1887.54,752.94 1891.71,1211.89 1895.89,682.575 1900.06,780.924 1904.24,812.571 1908.41,759.189 \n",
" 1912.59,889.409 1916.76,835.885 1920.94,953.18 1925.11,465.393 1929.29,850.321 1933.46,792.739 1937.64,765.045 1941.81,718.404 1945.99,1009.93 1950.16,648.253 \n",
" 1954.34,856.281 1958.51,960.616 1962.69,814.81 1966.86,807.965 1971.04,692.579 1975.21,589.544 1979.39,892.803 1983.56,835.885 1987.74,673.723 1991.91,781.325 \n",
" 1996.09,847.942 2000.26,829.851 2004.44,723.034 2008.61,795.138 2012.79,894.229 2016.96,1047.44 2021.14,867.09 2025.31,755.276 2029.49,842.025 2033.66,1011.97 \n",
" 2037.84,973.511 2042.01,571.658 2046.19,701.325 2050.36,835.885 2054.54,688.539 2058.71,971.23 2062.89,835.885 2067.06,945.272 2071.24,866.837 2075.41,885.938 \n",
" 2079.59,1036.31 2083.76,585.406 2087.94,885.938 2092.11,867.506 2096.29,998.057 2100.46,724.859 2104.64,953.543 2108.81,875.927 2112.99,1035.6 2117.16,821.77 \n",
" 2121.34,1053.31 2125.51,732.869 2129.69,735.586 2133.86,800.695 2138.04,787.16 2142.21,1078.62 2146.39,162.047 2150.56,885.61 2154.74,1061.42 2158.91,1075.64 \n",
" 2163.09,582.876 2167.26,686.69 2171.44,867.824 2175.61,913.652 2179.79,764.538 2183.96,803.891 2188.14,835.885 2192.31,797.844 2196.49,810.734 2200.66,1035.29 \n",
" 2204.84,882.397 2209.01,743.422 2213.19,707.576 2217.36,873.925 2221.54,913.125 2225.71,855.442 2229.89,771.079 2234.06,913.784 2238.24,922.116 2242.41,849.326 \n",
" 2246.59,769.146 2250.76,686.69 2254.94,842.251 2259.11,816.817 2263.29,925.696 2267.46,988.196 2271.64,856.209 2275.81,863.153 2279.99,842.732 2284.16,842.745 \n",
" 2288.34,740.95 2292.51,930.819 \n",
" \"/>\n",
"</svg>\n"
]
},
"execution_count": 56,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"X = diff(log.(df.\"Adj Close\"))\n",
"plot(X, title=\"log difference\", legend=false)"
]
},
{
"cell_type": "code",
"execution_count": 57,
"id": "488a0646",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"ar(1, [-0.0023896145018509306, -0.04708003403257884], 0.00131326671434751)"
]
},
"execution_count": 57,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"fit!( m, X )\n",
"m"
]
},
{
"cell_type": "code",
"execution_count": 58,
"id": "698da8ce",
"metadata": {},
"outputs": [],
"source": [
"# 条件付き期待値で各予測値を計算\n",
"pre = [ conditional_expectation( m, X[1:i], length_pre=1 ) for i in 1:length(X)-1 ];"
]
},
{
"cell_type": "code",
"execution_count": 59,
"id": "da84a007",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip030\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip030)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip031\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip030)\" d=\"\n",
"M254.422 1486.45 L2352.76 1486.45 L2352.76 47.2441 L254.422 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip032\">\n",
" <rect x=\"254\" y=\"47\" width=\"2099\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 309.685,1486.45 309.685,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 722.093,1486.45 722.093,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1134.5,1486.45 1134.5,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1546.91,1486.45 1546.91,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1959.32,1486.45 1959.32,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 309.685,1486.45 309.685,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 722.093,1486.45 722.093,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1134.5,1486.45 1134.5,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1546.91,1486.45 1546.91,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1959.32,1486.45 1959.32,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip030)\" d=\"M309.685 1515.64 Q306.073 1515.64 304.245 1519.2 Q302.439 1522.75 302.439 1529.87 Q302.439 1536.98 304.245 1540.55 Q306.073 1544.09 309.685 1544.09 Q313.319 1544.09 315.124 1540.55 Q316.953 1536.98 316.953 1529.87 Q316.953 1522.75 315.124 1519.2 Q313.319 1515.64 309.685 1515.64 M309.685 1511.93 Q315.495 1511.93 318.55 1516.54 Q321.629 1521.12 321.629 1529.87 Q321.629 1538.6 318.55 1543.21 Q315.495 1547.79 309.685 1547.79 Q303.874 1547.79 300.796 1543.21 Q297.74 1538.6 297.74 1529.87 Q297.74 1521.12 300.796 1516.54 Q303.874 1511.93 309.685 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M681.7 1543.18 L689.338 1543.18 L689.338 1516.82 L681.028 1518.49 L681.028 1514.23 L689.292 1512.56 L693.968 1512.56 L693.968 1543.18 L701.607 1543.18 L701.607 1547.12 L681.7 1547.12 L681.7 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M721.051 1515.64 Q717.44 1515.64 715.612 1519.2 Q713.806 1522.75 713.806 1529.87 Q713.806 1536.98 715.612 1540.55 Q717.44 1544.09 721.051 1544.09 Q724.686 1544.09 726.491 1540.55 Q728.32 1536.98 728.32 1529.87 Q728.32 1522.75 726.491 1519.2 Q724.686 1515.64 721.051 1515.64 M721.051 1511.93 Q726.861 1511.93 729.917 1516.54 Q732.996 1521.12 732.996 1529.87 Q732.996 1538.6 729.917 1543.21 Q726.861 1547.79 721.051 1547.79 Q715.241 1547.79 712.162 1543.21 Q709.107 1538.6 709.107 1529.87 Q709.107 1521.12 712.162 1516.54 Q715.241 1511.93 721.051 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M751.213 1515.64 Q747.602 1515.64 745.773 1519.2 Q743.968 1522.75 743.968 1529.87 Q743.968 1536.98 745.773 1540.55 Q747.602 1544.09 751.213 1544.09 Q754.847 1544.09 756.653 1540.55 Q758.482 1536.98 758.482 1529.87 Q758.482 1522.75 756.653 1519.2 Q754.847 1515.64 751.213 1515.64 M751.213 1511.93 Q757.023 1511.93 760.079 1516.54 Q763.158 1521.12 763.158 1529.87 Q763.158 1538.6 760.079 1543.21 Q757.023 1547.79 751.213 1547.79 Q745.403 1547.79 742.324 1543.21 Q739.269 1538.6 739.269 1529.87 Q739.269 1521.12 742.324 1516.54 Q745.403 1511.93 751.213 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1098.19 1543.18 L1114.51 1543.18 L1114.51 1547.12 L1092.57 1547.12 L1092.57 1543.18 Q1095.23 1540.43 1099.81 1535.8 Q1104.42 1531.15 1105.6 1529.81 Q1107.85 1527.28 1108.73 1525.55 Q1109.63 1523.79 1109.63 1522.1 Q1109.63 1519.34 1107.68 1517.61 Q1105.76 1515.87 1102.66 1515.87 Q1100.46 1515.87 1098.01 1516.63 Q1095.58 1517.4 1092.8 1518.95 L1092.8 1514.23 Q1095.62 1513.09 1098.08 1512.51 Q1100.53 1511.93 1102.57 1511.93 Q1107.94 1511.93 1111.13 1514.62 Q1114.33 1517.31 1114.33 1521.8 Q1114.33 1523.93 1113.52 1525.85 Q1112.73 1527.74 1110.62 1530.34 Q1110.05 1531.01 1106.94 1534.23 Q1103.84 1537.42 1098.19 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1134.33 1515.64 Q1130.72 1515.64 1128.89 1519.2 Q1127.08 1522.75 1127.08 1529.87 Q1127.08 1536.98 1128.89 1540.55 Q1130.72 1544.09 1134.33 1544.09 Q1137.96 1544.09 1139.77 1540.55 Q1141.6 1536.98 1141.6 1529.87 Q1141.6 1522.75 1139.77 1519.2 Q1137.96 1515.64 1134.33 1515.64 M1134.33 1511.93 Q1140.14 1511.93 1143.19 1516.54 Q1146.27 1521.12 1146.27 1529.87 Q1146.27 1538.6 1143.19 1543.21 Q1140.14 1547.79 1134.33 1547.79 Q1128.52 1547.79 1125.44 1543.21 Q1122.38 1538.6 1122.38 1529.87 Q1122.38 1521.12 1125.44 1516.54 Q1128.52 1511.93 1134.33 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1164.49 1515.64 Q1160.88 1515.64 1159.05 1519.2 Q1157.24 1522.75 1157.24 1529.87 Q1157.24 1536.98 1159.05 1540.55 Q1160.88 1544.09 1164.49 1544.09 Q1168.12 1544.09 1169.93 1540.55 Q1171.76 1536.98 1171.76 1529.87 Q1171.76 1522.75 1169.93 1519.2 Q1168.12 1515.64 1164.49 1515.64 M1164.49 1511.93 Q1170.3 1511.93 1173.36 1516.54 Q1176.43 1521.12 1176.43 1529.87 Q1176.43 1538.6 1173.36 1543.21 Q1170.3 1547.79 1164.49 1547.79 Q1158.68 1547.79 1155.6 1543.21 Q1152.55 1538.6 1152.55 1529.87 Q1152.55 1521.12 1155.6 1516.54 Q1158.68 1511.93 1164.49 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1520.67 1528.49 Q1524.03 1529.2 1525.9 1531.47 Q1527.8 1533.74 1527.8 1537.07 Q1527.8 1542.19 1524.28 1544.99 Q1520.76 1547.79 1514.28 1547.79 Q1512.11 1547.79 1509.79 1547.35 Q1507.5 1546.93 1505.05 1546.08 L1505.05 1541.56 Q1506.99 1542.7 1509.31 1543.28 Q1511.62 1543.86 1514.14 1543.86 Q1518.54 1543.86 1520.83 1542.12 Q1523.15 1540.38 1523.15 1537.07 Q1523.15 1534.02 1521 1532.31 Q1518.87 1530.57 1515.05 1530.57 L1511.02 1530.57 L1511.02 1526.73 L1515.23 1526.73 Q1518.68 1526.73 1520.51 1525.36 Q1522.34 1523.97 1522.34 1521.38 Q1522.34 1518.72 1520.44 1517.31 Q1518.57 1515.87 1515.05 1515.87 Q1513.13 1515.87 1510.93 1516.29 Q1508.73 1516.7 1506.09 1517.58 L1506.09 1513.42 Q1508.75 1512.68 1511.07 1512.31 Q1513.4 1511.93 1515.46 1511.93 Q1520.79 1511.93 1523.89 1514.37 Q1526.99 1516.77 1526.99 1520.89 Q1526.99 1523.76 1525.35 1525.75 Q1523.7 1527.72 1520.67 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1546.67 1515.64 Q1543.06 1515.64 1541.23 1519.2 Q1539.42 1522.75 1539.42 1529.87 Q1539.42 1536.98 1541.23 1540.55 Q1543.06 1544.09 1546.67 1544.09 Q1550.3 1544.09 1552.11 1540.55 Q1553.94 1536.98 1553.94 1529.87 Q1553.94 1522.75 1552.11 1519.2 Q1550.3 1515.64 1546.67 1515.64 M1546.67 1511.93 Q1552.48 1511.93 1555.53 1516.54 Q1558.61 1521.12 1558.61 1529.87 Q1558.61 1538.6 1555.53 1543.21 Q1552.48 1547.79 1546.67 1547.79 Q1540.86 1547.79 1537.78 1543.21 Q1534.72 1538.6 1534.72 1529.87 Q1534.72 1521.12 1537.78 1516.54 Q1540.86 1511.93 1546.67 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1576.83 1515.64 Q1573.22 1515.64 1571.39 1519.2 Q1569.58 1522.75 1569.58 1529.87 Q1569.58 1536.98 1571.39 1540.55 Q1573.22 1544.09 1576.83 1544.09 Q1580.46 1544.09 1582.27 1540.55 Q1584.1 1536.98 1584.1 1529.87 Q1584.1 1522.75 1582.27 1519.2 Q1580.46 1515.64 1576.83 1515.64 M1576.83 1511.93 Q1582.64 1511.93 1585.69 1516.54 Q1588.77 1521.12 1588.77 1529.87 Q1588.77 1538.6 1585.69 1543.21 Q1582.64 1547.79 1576.83 1547.79 Q1571.02 1547.79 1567.94 1543.21 Q1564.88 1538.6 1564.88 1529.87 Q1564.88 1521.12 1567.94 1516.54 Q1571.02 1511.93 1576.83 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1932.41 1516.63 L1920.6 1535.08 L1932.41 1535.08 L1932.41 1516.63 M1931.18 1512.56 L1937.06 1512.56 L1937.06 1535.08 L1941.99 1535.08 L1941.99 1538.97 L1937.06 1538.97 L1937.06 1547.12 L1932.41 1547.12 L1932.41 1538.97 L1916.81 1538.97 L1916.81 1534.46 L1931.18 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1959.72 1515.64 Q1956.11 1515.64 1954.28 1519.2 Q1952.48 1522.75 1952.48 1529.87 Q1952.48 1536.98 1954.28 1540.55 Q1956.11 1544.09 1959.72 1544.09 Q1963.36 1544.09 1965.16 1540.55 Q1966.99 1536.98 1966.99 1529.87 Q1966.99 1522.75 1965.16 1519.2 Q1963.36 1515.64 1959.72 1515.64 M1959.72 1511.93 Q1965.53 1511.93 1968.59 1516.54 Q1971.67 1521.12 1971.67 1529.87 Q1971.67 1538.6 1968.59 1543.21 Q1965.53 1547.79 1959.72 1547.79 Q1953.91 1547.79 1950.83 1543.21 Q1947.78 1538.6 1947.78 1529.87 Q1947.78 1521.12 1950.83 1516.54 Q1953.91 1511.93 1959.72 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1989.89 1515.64 Q1986.27 1515.64 1984.45 1519.2 Q1982.64 1522.75 1982.64 1529.87 Q1982.64 1536.98 1984.45 1540.55 Q1986.27 1544.09 1989.89 1544.09 Q1993.52 1544.09 1995.33 1540.55 Q1997.15 1536.98 1997.15 1529.87 Q1997.15 1522.75 1995.33 1519.2 Q1993.52 1515.64 1989.89 1515.64 M1989.89 1511.93 Q1995.7 1511.93 1998.75 1516.54 Q2001.83 1521.12 2001.83 1529.87 Q2001.83 1538.6 1998.75 1543.21 Q1995.7 1547.79 1989.89 1547.79 Q1984.08 1547.79 1981 1543.21 Q1977.94 1538.6 1977.94 1529.87 Q1977.94 1521.12 1981 1516.54 Q1984.08 1511.93 1989.89 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,1298.17 2352.76,1298.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,1042.22 2352.76,1042.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,786.268 2352.76,786.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,530.317 2352.76,530.317 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,274.366 2352.76,274.366 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1486.45 254.422,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1298.17 279.602,1298.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1042.22 279.602,1042.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,786.268 279.602,786.268 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,530.317 279.602,530.317 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,274.366 279.602,274.366 \n",
" \"/>\n",
"<path clip-path=\"url(#clip030)\" d=\"M51.3393 1298.62 L81.0151 1298.62 L81.0151 1302.56 L51.3393 1302.56 L51.3393 1298.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M101.108 1283.97 Q97.4965 1283.97 95.6678 1287.53 Q93.8623 1291.08 93.8623 1298.2 Q93.8623 1305.31 95.6678 1308.88 Q97.4965 1312.42 101.108 1312.42 Q104.742 1312.42 106.547 1308.88 Q108.376 1305.31 108.376 1298.2 Q108.376 1291.08 106.547 1287.53 Q104.742 1283.97 101.108 1283.97 M101.108 1280.27 Q106.918 1280.27 109.973 1284.87 Q113.052 1289.45 113.052 1298.2 Q113.052 1306.93 109.973 1311.54 Q106.918 1316.12 101.108 1316.12 Q95.2974 1316.12 92.2188 1311.54 Q89.1632 1306.93 89.1632 1298.2 Q89.1632 1289.45 92.2188 1284.87 Q95.2974 1280.27 101.108 1280.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M121.27 1309.57 L126.154 1309.57 L126.154 1315.45 L121.27 1315.45 L121.27 1309.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M146.339 1283.97 Q142.728 1283.97 140.899 1287.53 Q139.094 1291.08 139.094 1298.2 Q139.094 1305.31 140.899 1308.88 Q142.728 1312.42 146.339 1312.42 Q149.973 1312.42 151.779 1308.88 Q153.607 1305.31 153.607 1298.2 Q153.607 1291.08 151.779 1287.53 Q149.973 1283.97 146.339 1283.97 M146.339 1280.27 Q152.149 1280.27 155.205 1284.87 Q158.283 1289.45 158.283 1298.2 Q158.283 1306.93 155.205 1311.54 Q152.149 1316.12 146.339 1316.12 Q140.529 1316.12 137.45 1311.54 Q134.394 1306.93 134.394 1298.2 Q134.394 1289.45 137.45 1284.87 Q140.529 1280.27 146.339 1280.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M176.501 1283.97 Q172.89 1283.97 171.061 1287.53 Q169.255 1291.08 169.255 1298.2 Q169.255 1305.31 171.061 1308.88 Q172.89 1312.42 176.501 1312.42 Q180.135 1312.42 181.94 1308.88 Q183.769 1305.31 183.769 1298.2 Q183.769 1291.08 181.94 1287.53 Q180.135 1283.97 176.501 1283.97 M176.501 1280.27 Q182.311 1280.27 185.366 1284.87 Q188.445 1289.45 188.445 1298.2 Q188.445 1306.93 185.366 1311.54 Q182.311 1316.12 176.501 1316.12 Q170.691 1316.12 167.612 1311.54 Q164.556 1306.93 164.556 1298.2 Q164.556 1289.45 167.612 1284.87 Q170.691 1280.27 176.501 1280.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M196.802 1314.73 L196.802 1310.47 Q198.561 1311.31 200.366 1311.75 Q202.172 1312.19 203.908 1312.19 Q208.538 1312.19 210.968 1309.08 Q213.422 1305.96 213.769 1299.62 Q212.426 1301.61 210.366 1302.67 Q208.306 1303.74 205.806 1303.74 Q200.621 1303.74 197.589 1300.61 Q194.579 1297.46 194.579 1292.02 Q194.579 1286.7 197.727 1283.48 Q200.876 1280.27 206.107 1280.27 Q212.102 1280.27 215.251 1284.87 Q218.422 1289.45 218.422 1298.2 Q218.422 1306.38 214.533 1311.26 Q210.667 1316.12 204.116 1316.12 Q202.357 1316.12 200.552 1315.77 Q198.746 1315.43 196.802 1314.73 M206.107 1300.08 Q209.255 1300.08 211.084 1297.93 Q212.936 1295.77 212.936 1292.02 Q212.936 1288.3 211.084 1286.14 Q209.255 1283.97 206.107 1283.97 Q202.959 1283.97 201.107 1286.14 Q199.278 1288.3 199.278 1292.02 Q199.278 1295.77 201.107 1297.93 Q202.959 1300.08 206.107 1300.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M50.9921 1042.67 L80.6679 1042.67 L80.6679 1046.61 L50.9921 1046.61 L50.9921 1042.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M100.76 1028.02 Q97.1493 1028.02 95.3206 1031.58 Q93.515 1035.12 93.515 1042.25 Q93.515 1049.36 95.3206 1052.93 Q97.1493 1056.47 100.76 1056.47 Q104.395 1056.47 106.2 1052.93 Q108.029 1049.36 108.029 1042.25 Q108.029 1035.12 106.2 1031.58 Q104.395 1028.02 100.76 1028.02 M100.76 1024.31 Q106.571 1024.31 109.626 1028.92 Q112.705 1033.5 112.705 1042.25 Q112.705 1050.98 109.626 1055.59 Q106.571 1060.17 100.76 1060.17 Q94.9502 1060.17 91.8715 1055.59 Q88.816 1050.98 88.816 1042.25 Q88.816 1033.5 91.8715 1028.92 Q94.9502 1024.31 100.76 1024.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M120.922 1053.62 L125.807 1053.62 L125.807 1059.5 L120.922 1059.5 L120.922 1053.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M145.992 1028.02 Q142.381 1028.02 140.552 1031.58 Q138.746 1035.12 138.746 1042.25 Q138.746 1049.36 140.552 1052.93 Q142.381 1056.47 145.992 1056.47 Q149.626 1056.47 151.431 1052.93 Q153.26 1049.36 153.26 1042.25 Q153.26 1035.12 151.431 1031.58 Q149.626 1028.02 145.992 1028.02 M145.992 1024.31 Q151.802 1024.31 154.857 1028.92 Q157.936 1033.5 157.936 1042.25 Q157.936 1050.98 154.857 1055.59 Q151.802 1060.17 145.992 1060.17 Q140.181 1060.17 137.103 1055.59 Q134.047 1050.98 134.047 1042.25 Q134.047 1033.5 137.103 1028.92 Q140.181 1024.31 145.992 1024.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M176.153 1028.02 Q172.542 1028.02 170.714 1031.58 Q168.908 1035.12 168.908 1042.25 Q168.908 1049.36 170.714 1052.93 Q172.542 1056.47 176.153 1056.47 Q179.788 1056.47 181.593 1052.93 Q183.422 1049.36 183.422 1042.25 Q183.422 1035.12 181.593 1031.58 Q179.788 1028.02 176.153 1028.02 M176.153 1024.31 Q181.964 1024.31 185.019 1028.92 Q188.098 1033.5 188.098 1042.25 Q188.098 1050.98 185.019 1055.59 Q181.964 1060.17 176.153 1060.17 Q170.343 1060.17 167.265 1055.59 Q164.209 1050.98 164.209 1042.25 Q164.209 1033.5 167.265 1028.92 Q170.343 1024.31 176.153 1024.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M206.894 1040.36 Q203.746 1040.36 201.894 1042.51 Q200.065 1044.66 200.065 1048.41 Q200.065 1052.14 201.894 1054.31 Q203.746 1056.47 206.894 1056.47 Q210.042 1056.47 211.871 1054.31 Q213.723 1052.14 213.723 1048.41 Q213.723 1044.66 211.871 1042.51 Q210.042 1040.36 206.894 1040.36 M216.176 1025.7 L216.176 1029.96 Q214.417 1029.13 212.612 1028.69 Q210.829 1028.25 209.07 1028.25 Q204.44 1028.25 201.987 1031.37 Q199.556 1034.5 199.209 1040.82 Q200.575 1038.8 202.635 1037.74 Q204.695 1036.65 207.172 1036.65 Q212.38 1036.65 215.389 1039.82 Q218.422 1042.97 218.422 1048.41 Q218.422 1053.74 215.274 1056.95 Q212.126 1060.17 206.894 1060.17 Q200.899 1060.17 197.727 1055.59 Q194.556 1050.98 194.556 1042.25 Q194.556 1034.06 198.445 1029.2 Q202.334 1024.31 208.885 1024.31 Q210.644 1024.31 212.426 1024.66 Q214.232 1025.01 216.176 1025.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M51.8023 786.72 L81.4781 786.72 L81.4781 790.655 L51.8023 790.655 L51.8023 786.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M101.571 772.067 Q97.9595 772.067 96.1308 775.632 Q94.3252 779.173 94.3252 786.303 Q94.3252 793.409 96.1308 796.974 Q97.9595 800.516 101.571 800.516 Q105.205 800.516 107.01 796.974 Q108.839 793.409 108.839 786.303 Q108.839 779.173 107.01 775.632 Q105.205 772.067 101.571 772.067 M101.571 768.363 Q107.381 768.363 110.436 772.97 Q113.515 777.553 113.515 786.303 Q113.515 795.03 110.436 799.636 Q107.381 804.219 101.571 804.219 Q95.7604 804.219 92.6817 799.636 Q89.6262 795.03 89.6262 786.303 Q89.6262 777.553 92.6817 772.97 Q95.7604 768.363 101.571 768.363 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M121.732 797.669 L126.617 797.669 L126.617 803.548 L121.732 803.548 L121.732 797.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M146.802 772.067 Q143.191 772.067 141.362 775.632 Q139.556 779.173 139.556 786.303 Q139.556 793.409 141.362 796.974 Q143.191 800.516 146.802 800.516 Q150.436 800.516 152.242 796.974 Q154.07 793.409 154.07 786.303 Q154.07 779.173 152.242 775.632 Q150.436 772.067 146.802 772.067 M146.802 768.363 Q152.612 768.363 155.667 772.97 Q158.746 777.553 158.746 786.303 Q158.746 795.03 155.667 799.636 Q152.612 804.219 146.802 804.219 Q140.992 804.219 137.913 799.636 Q134.857 795.03 134.857 786.303 Q134.857 777.553 137.913 772.97 Q140.992 768.363 146.802 768.363 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M176.964 772.067 Q173.353 772.067 171.524 775.632 Q169.718 779.173 169.718 786.303 Q169.718 793.409 171.524 796.974 Q173.353 800.516 176.964 800.516 Q180.598 800.516 182.403 796.974 Q184.232 793.409 184.232 786.303 Q184.232 779.173 182.403 775.632 Q180.598 772.067 176.964 772.067 M176.964 768.363 Q182.774 768.363 185.829 772.97 Q188.908 777.553 188.908 786.303 Q188.908 795.03 185.829 799.636 Q182.774 804.219 176.964 804.219 Q171.154 804.219 168.075 799.636 Q165.019 795.03 165.019 786.303 Q165.019 777.553 168.075 772.97 Q171.154 768.363 176.964 768.363 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M211.292 784.914 Q214.649 785.632 216.524 787.9 Q218.422 790.169 218.422 793.502 Q218.422 798.618 214.903 801.419 Q211.385 804.219 204.903 804.219 Q202.727 804.219 200.413 803.78 Q198.121 803.363 195.667 802.506 L195.667 797.993 Q197.612 799.127 199.927 799.706 Q202.241 800.284 204.764 800.284 Q209.163 800.284 211.454 798.548 Q213.769 796.812 213.769 793.502 Q213.769 790.446 211.616 788.733 Q209.487 786.997 205.667 786.997 L201.639 786.997 L201.639 783.155 L205.852 783.155 Q209.301 783.155 211.13 781.789 Q212.959 780.4 212.959 777.808 Q212.959 775.146 211.061 773.733 Q209.186 772.298 205.667 772.298 Q203.746 772.298 201.547 772.715 Q199.348 773.132 196.709 774.011 L196.709 769.845 Q199.371 769.104 201.686 768.734 Q204.024 768.363 206.084 768.363 Q211.408 768.363 214.51 770.794 Q217.612 773.201 217.612 777.321 Q217.612 780.192 215.968 782.183 Q214.325 784.15 211.292 784.914 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M100.922 516.116 Q97.3113 516.116 95.4826 519.681 Q93.6771 523.222 93.6771 530.352 Q93.6771 537.458 95.4826 541.023 Q97.3113 544.565 100.922 544.565 Q104.557 544.565 106.362 541.023 Q108.191 537.458 108.191 530.352 Q108.191 523.222 106.362 519.681 Q104.557 516.116 100.922 516.116 M100.922 512.412 Q106.733 512.412 109.788 517.019 Q112.867 521.602 112.867 530.352 Q112.867 539.079 109.788 543.685 Q106.733 548.268 100.922 548.268 Q95.1123 548.268 92.0336 543.685 Q88.978 539.079 88.978 530.352 Q88.978 521.602 92.0336 517.019 Q95.1123 512.412 100.922 512.412 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M121.084 541.718 L125.969 541.718 L125.969 547.597 L121.084 547.597 L121.084 541.718 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M146.154 516.116 Q142.543 516.116 140.714 519.681 Q138.908 523.222 138.908 530.352 Q138.908 537.458 140.714 541.023 Q142.543 544.565 146.154 544.565 Q149.788 544.565 151.593 541.023 Q153.422 537.458 153.422 530.352 Q153.422 523.222 151.593 519.681 Q149.788 516.116 146.154 516.116 M146.154 512.412 Q151.964 512.412 155.019 517.019 Q158.098 521.602 158.098 530.352 Q158.098 539.079 155.019 543.685 Q151.964 548.268 146.154 548.268 Q140.343 548.268 137.265 543.685 Q134.209 539.079 134.209 530.352 Q134.209 521.602 137.265 517.019 Q140.343 512.412 146.154 512.412 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M176.316 516.116 Q172.704 516.116 170.876 519.681 Q169.07 523.222 169.07 530.352 Q169.07 537.458 170.876 541.023 Q172.704 544.565 176.316 544.565 Q179.95 544.565 181.755 541.023 Q183.584 537.458 183.584 530.352 Q183.584 523.222 181.755 519.681 Q179.95 516.116 176.316 516.116 M176.316 512.412 Q182.126 512.412 185.181 517.019 Q188.26 521.602 188.26 530.352 Q188.26 539.079 185.181 543.685 Q182.126 548.268 176.316 548.268 Q170.505 548.268 167.427 543.685 Q164.371 539.079 164.371 530.352 Q164.371 521.602 167.427 517.019 Q170.505 512.412 176.316 512.412 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M206.477 516.116 Q202.866 516.116 201.038 519.681 Q199.232 523.222 199.232 530.352 Q199.232 537.458 201.038 541.023 Q202.866 544.565 206.477 544.565 Q210.112 544.565 211.917 541.023 Q213.746 537.458 213.746 530.352 Q213.746 523.222 211.917 519.681 Q210.112 516.116 206.477 516.116 M206.477 512.412 Q212.288 512.412 215.343 517.019 Q218.422 521.602 218.422 530.352 Q218.422 539.079 215.343 543.685 Q212.288 548.268 206.477 548.268 Q200.667 548.268 197.589 543.685 Q194.533 539.079 194.533 530.352 Q194.533 521.602 197.589 517.019 Q200.667 512.412 206.477 512.412 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M101.571 260.165 Q97.9595 260.165 96.1308 263.73 Q94.3252 267.271 94.3252 274.401 Q94.3252 281.507 96.1308 285.072 Q97.9595 288.614 101.571 288.614 Q105.205 288.614 107.01 285.072 Q108.839 281.507 108.839 274.401 Q108.839 267.271 107.01 263.73 Q105.205 260.165 101.571 260.165 M101.571 256.461 Q107.381 256.461 110.436 261.068 Q113.515 265.651 113.515 274.401 Q113.515 283.128 110.436 287.734 Q107.381 292.317 101.571 292.317 Q95.7604 292.317 92.6817 287.734 Q89.6262 283.128 89.6262 274.401 Q89.6262 265.651 92.6817 261.068 Q95.7604 256.461 101.571 256.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M121.732 285.767 L126.617 285.767 L126.617 291.646 L121.732 291.646 L121.732 285.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M146.802 260.165 Q143.191 260.165 141.362 263.73 Q139.556 267.271 139.556 274.401 Q139.556 281.507 141.362 285.072 Q143.191 288.614 146.802 288.614 Q150.436 288.614 152.242 285.072 Q154.07 281.507 154.07 274.401 Q154.07 267.271 152.242 263.73 Q150.436 260.165 146.802 260.165 M146.802 256.461 Q152.612 256.461 155.667 261.068 Q158.746 265.651 158.746 274.401 Q158.746 283.128 155.667 287.734 Q152.612 292.317 146.802 292.317 Q140.992 292.317 137.913 287.734 Q134.857 283.128 134.857 274.401 Q134.857 265.651 137.913 261.068 Q140.992 256.461 146.802 256.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M176.964 260.165 Q173.353 260.165 171.524 263.73 Q169.718 267.271 169.718 274.401 Q169.718 281.507 171.524 285.072 Q173.353 288.614 176.964 288.614 Q180.598 288.614 182.403 285.072 Q184.232 281.507 184.232 274.401 Q184.232 267.271 182.403 263.73 Q180.598 260.165 176.964 260.165 M176.964 256.461 Q182.774 256.461 185.829 261.068 Q188.908 265.651 188.908 274.401 Q188.908 283.128 185.829 287.734 Q182.774 292.317 176.964 292.317 Q171.154 292.317 168.075 287.734 Q165.019 283.128 165.019 274.401 Q165.019 265.651 168.075 261.068 Q171.154 256.461 176.964 256.461 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M211.292 273.012 Q214.649 273.73 216.524 275.998 Q218.422 278.267 218.422 281.6 Q218.422 286.716 214.903 289.517 Q211.385 292.317 204.903 292.317 Q202.727 292.317 200.413 291.878 Q198.121 291.461 195.667 290.605 L195.667 286.091 Q197.612 287.225 199.927 287.804 Q202.241 288.382 204.764 288.382 Q209.163 288.382 211.454 286.646 Q213.769 284.91 213.769 281.6 Q213.769 278.544 211.616 276.831 Q209.487 275.095 205.667 275.095 L201.639 275.095 L201.639 271.253 L205.852 271.253 Q209.301 271.253 211.13 269.887 Q212.959 268.498 212.959 265.906 Q212.959 263.244 211.061 261.832 Q209.186 260.396 205.667 260.396 Q203.746 260.396 201.547 260.813 Q199.348 261.23 196.709 262.109 L196.709 257.943 Q199.371 257.202 201.686 256.832 Q204.024 256.461 206.084 256.461 Q211.408 256.461 214.51 258.892 Q217.612 261.299 217.612 265.419 Q217.612 268.29 215.968 270.281 Q214.325 272.248 211.292 273.012 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip032)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 313.809,914.856 317.933,625.816 322.057,762.747 326.181,652.753 330.305,829.833 334.429,1065.14 338.553,701.42 342.677,920.652 346.801,687.852 350.925,635.538 \n",
" 355.049,708.053 359.174,721.058 363.298,769.12 367.422,628.482 371.546,711.815 375.67,838.298 379.794,507.045 383.918,948.198 388.042,872.193 392.166,894.176 \n",
" 396.29,597.457 400.414,790.693 404.538,818.498 408.663,711.747 412.787,730.097 416.911,534.732 421.035,533.369 425.159,518.024 429.283,1088.27 433.407,725.436 \n",
" 437.531,661.218 441.655,593.399 445.779,757.237 449.903,750.245 454.027,580.222 458.152,722.283 462.276,531.172 466.4,693.848 470.524,744.316 474.648,587.458 \n",
" 478.772,747.28 482.896,576.966 487.02,590.327 491.144,688.869 495.268,835.459 499.392,714.7 503.516,711.799 507.641,770.517 511.765,745.303 515.889,700.766 \n",
" 520.013,786.99 524.137,736.952 528.261,568.037 532.385,702.439 536.509,923.047 540.633,577.436 544.757,823.296 548.881,785.037 553.005,461.275 557.13,734.192 \n",
" 561.254,667.548 565.378,919.245 569.502,852.044 573.626,671.385 577.75,620.379 581.874,677.554 585.998,793.788 590.122,827.744 594.246,678.908 598.37,716.575 \n",
" 602.495,683.853 606.619,769.791 610.743,728.28 614.867,731.233 618.991,775.42 623.115,917.453 627.239,792.548 631.363,667.43 635.487,691.895 639.611,584.017 \n",
" 643.735,766.431 647.859,402.697 651.984,812.676 656.108,87.9763 660.232,891.731 664.356,709.538 668.48,549.857 672.604,571.916 676.728,810.485 680.852,634.725 \n",
" 684.976,745.795 689.1,810.704 693.224,722.807 697.348,853.991 701.473,602.976 705.597,775.895 709.721,564.717 713.845,839.033 717.969,828.886 722.093,639.498 \n",
" 726.217,858.722 730.341,726.753 734.465,719.274 738.589,789.852 742.713,599.289 746.837,913.074 750.962,701.253 755.086,614.837 759.21,886.486 763.334,664.334 \n",
" 767.458,708.145 771.582,804.5 775.706,633.908 779.83,793.921 783.954,651.833 788.078,779.324 792.202,797.274 796.326,752.559 800.451,649.002 804.575,837.664 \n",
" 808.699,726.889 812.823,930.343 816.947,639.096 821.071,687.589 825.195,723.36 829.319,650.164 833.443,652.139 837.567,700.135 841.691,579.236 845.815,738.14 \n",
" 849.94,792.946 854.064,772.889 858.188,776.333 862.312,787.194 866.436,669.741 870.56,653.121 874.684,765.269 878.808,687.485 882.932,714.569 887.056,666.749 \n",
" 891.18,612.34 895.304,680.22 899.429,687.95 903.553,1323.06 907.677,1005.96 911.801,713.663 915.925,1006.05 920.049,533.725 924.173,814.262 928.297,812.697 \n",
" 932.421,622.517 936.545,757.439 940.669,750.715 944.794,677.734 948.918,656.523 953.042,723.949 957.166,675.653 961.29,716.811 965.414,741.153 969.538,695.754 \n",
" 973.662,695.382 977.786,744.814 981.91,666.442 986.034,755.71 990.158,840.087 994.283,734.192 998.407,857.688 1002.53,703.672 1006.65,737.594 1010.78,894.216 \n",
" 1014.9,567.36 1019.03,791.695 1023.15,744.255 1027.28,823.64 1031.4,747.276 1035.52,671.661 1039.65,611.949 1043.77,761.68 1047.9,835.63 1052.02,704.029 \n",
" 1056.14,621.614 1060.27,789.17 1064.39,831.96 1068.52,717.504 1072.64,754.209 1076.76,710.829 1080.89,737.538 1085.01,740.875 1089.14,727.508 1093.26,803.819 \n",
" 1097.38,737.477 1101.51,779.911 1105.63,772.97 1109.76,879.466 1113.88,633.69 1118.01,702.263 1122.13,778.823 1126.25,790.855 1130.38,668.006 1134.5,676.58 \n",
" 1138.63,724.509 1142.75,688.694 1146.87,769.983 1151,855.436 1155.12,851.884 1159.25,878.09 1163.37,807.146 1167.49,541.684 1171.62,712.899 1175.74,492.204 \n",
" 1179.87,649.074 1183.99,724.254 1188.11,767.224 1192.24,779.986 1196.36,884.218 1200.49,709.048 1204.61,765.597 1208.73,746.686 1212.86,841.885 1216.98,755.389 \n",
" 1221.11,776.252 1225.23,834.542 1229.36,754.544 1233.48,803.2 1237.6,771.082 1241.73,639.878 1245.85,637.61 1249.98,668.489 1254.1,722.13 1258.22,645.64 \n",
" 1262.35,696.971 1266.47,645.978 1270.6,731.005 1274.72,692.534 1278.84,708.34 1282.97,711.434 1287.09,681.685 1291.22,786.699 1295.34,798.875 1299.46,721.338 \n",
" 1303.59,553.153 1307.71,754.343 1311.84,538.55 1315.96,848.617 1320.09,723.923 1324.21,665.055 1328.33,761.989 1332.46,664.334 1336.58,698.802 1340.71,734.192 \n",
" 1344.83,716.379 1348.95,759.108 1353.08,687.796 1357.2,701.755 1361.33,594.274 1365.45,749.152 1369.57,655.024 1373.7,598.675 1377.82,769.478 1381.95,722.464 \n",
" 1386.07,698.802 1390.19,765.665 1394.32,807.966 1398.44,644.711 1402.57,993.18 1406.69,974.014 1410.82,713.29 1414.94,581.121 1419.06,498.835 1423.19,802.856 \n",
" 1427.31,669.374 1431.44,672.216 1435.56,698.906 1439.68,423.17 1443.81,578.014 1447.93,516.035 1452.06,488.636 1456.18,956.327 1460.3,614.992 1464.43,763.124 \n",
" 1468.55,738.994 1472.68,450.891 1476.8,316.706 1480.92,988.78 1485.05,603.378 1489.17,523.784 1493.3,518.316 1497.42,602.69 1501.54,871.85 1505.67,647.139 \n",
" 1509.79,139.035 1513.92,630.814 1518.04,1091.79 1522.17,921.361 1526.29,443.046 1530.41,762.183 1534.54,640.859 1538.66,770.346 1542.79,412.082 1546.91,484.825 \n",
" 1551.03,521.166 1555.16,897.112 1559.28,792.588 1563.41,775.389 1567.53,1102.09 1571.65,673.902 1575.78,610.828 1579.9,865.142 1584.03,611.064 1588.15,765.329 \n",
" 1592.27,810.996 1596.4,991.999 1600.52,483.985 1604.65,771.979 1608.77,1017.33 1612.9,547.667 1617.02,864.241 1621.14,1139.58 1625.27,1143.23 1629.39,388.91 \n",
" 1633.52,566.266 1637.64,889.447 1641.76,1126.82 1645.89,563.742 1650.01,599.882 1654.14,464.598 1658.26,793.505 1662.38,694.747 1666.51,1148.14 1670.63,757.96 \n",
" 1674.76,810.48 1678.88,555.906 1683,1300.07 1687.13,739.467 1691.25,659.707 1695.38,547.334 1699.5,538.215 1703.63,873.514 1707.75,807.688 1711.87,660.696 \n",
" 1716,565.226 1720.12,810.816 1724.25,1139.26 1728.37,616.359 1732.49,690.472 1736.62,461.381 1740.74,716.51 1744.87,583.735 1748.99,1035.37 1753.11,607.033 \n",
" 1757.24,692.873 1761.36,804.766 1765.49,797.813 1769.61,688.022 1773.73,757.343 1777.86,533.018 1781.98,746.309 1786.11,484.626 1790.23,740.624 1794.35,656.321 \n",
" 1798.48,668.126 1802.6,486.931 1806.73,866.585 1810.85,734.192 1814.98,644.08 1819.1,562.327 1823.22,719.532 1827.35,864.241 1831.47,755.463 1835.6,825.088 \n",
" 1839.72,734.192 1843.84,671.484 1847.97,641.849 1852.09,661.686 1856.22,799.506 1860.34,654.218 1864.46,622.506 1868.59,564.554 1872.71,694.618 1876.84,513.482 \n",
" 1880.96,767.665 1885.08,1039 1889.21,695.383 1893.33,607.421 1897.46,821.775 1901.58,337.155 1905.71,896.076 1909.83,792.226 1913.95,758.809 1918.08,815.177 \n",
" 1922.2,677.674 1926.33,734.192 1930.45,610.336 1934.57,1125.4 1938.7,718.948 1942.82,779.751 1946.95,808.993 1951.07,858.242 1955.19,550.412 1959.32,932.317 \n",
" 1963.44,712.654 1967.57,602.484 1971.69,756.445 1975.81,763.673 1979.94,885.513 1984.06,994.309 1988.19,674.09 1992.31,734.192 1996.44,905.423 2000.56,791.803 \n",
" 2004.68,721.461 2008.81,740.563 2012.93,853.354 2017.06,777.218 2021.18,672.584 2025.3,510.806 2029.43,701.241 2033.55,819.309 2037.68,727.708 2041.8,548.261 \n",
" 2045.92,588.868 2050.05,1013.2 2054.17,876.277 2058.3,734.192 2062.42,889.778 2066.54,591.277 2070.67,734.192 2074.79,618.687 2078.92,701.509 2083.04,681.339 \n",
" 2087.16,522.557 2091.29,998.68 2095.41,681.339 2099.54,700.802 2103.66,562.95 2107.79,851.427 2111.91,609.953 2116.03,691.91 2120.16,523.311 2124.28,749.096 \n",
" 2128.41,504.602 2132.53,842.969 2136.65,840.1 2140.78,771.35 2144.9,785.642 2149.03,477.878 2153.15,1445.72 2157.27,681.685 2161.4,496.044 2165.52,481.029 \n",
" 2169.65,1001.35 2173.77,891.731 2177.89,700.466 2182.02,652.075 2186.14,809.529 2190.27,767.974 2194.39,734.192 2198.52,774.36 2202.64,760.749 2206.76,523.631 \n",
" 2210.89,685.078 2215.01,831.825 2219.14,869.676 2223.26,694.024 2227.38,652.631 2231.51,713.54 2235.63,802.622 2239.76,651.935 2243.88,643.138 2248,719.999 \n",
" 2252.13,804.663 2256.25,891.731 2260.38,727.469 2264.5,754.326 2268.62,639.358 2272.75,573.362 2276.87,712.731 2281,705.398 2285.12,726.961 2289.25,726.948 \n",
" 2293.37,834.436 \n",
" \"/>\n",
"<path clip-path=\"url(#clip030)\" d=\"\n",
"M1978.78 216.178 L2282.81 216.178 L2282.81 95.2176 L1978.78 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1978.78,216.178 2282.81,216.178 2282.81,95.2176 1978.78,95.2176 1978.78,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip030)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2002.1,155.698 2141.99,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip030)\" d=\"M2169.58 169.089 L2169.58 182.839 L2165.3 182.839 L2165.3 147.052 L2169.58 147.052 L2169.58 150.987 Q2170.93 148.672 2172.96 147.561 Q2175.02 146.427 2177.87 146.427 Q2182.59 146.427 2185.53 150.177 Q2188.5 153.927 2188.5 160.038 Q2188.5 166.149 2185.53 169.899 Q2182.59 173.649 2177.87 173.649 Q2175.02 173.649 2172.96 172.538 Q2170.93 171.403 2169.58 169.089 M2184.08 160.038 Q2184.08 155.339 2182.13 152.677 Q2180.21 149.992 2176.83 149.992 Q2173.45 149.992 2171.51 152.677 Q2169.58 155.339 2169.58 160.038 Q2169.58 164.737 2171.51 167.422 Q2173.45 170.084 2176.83 170.084 Q2180.21 170.084 2182.13 167.422 Q2184.08 164.737 2184.08 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2210.58 151.033 Q2209.86 150.617 2209.01 150.431 Q2208.17 150.223 2207.15 150.223 Q2203.54 150.223 2201.6 152.584 Q2199.68 154.922 2199.68 159.32 L2199.68 172.978 L2195.39 172.978 L2195.39 147.052 L2199.68 147.052 L2199.68 151.08 Q2201.02 148.718 2203.17 147.584 Q2205.33 146.427 2208.4 146.427 Q2208.84 146.427 2209.38 146.496 Q2209.91 146.543 2210.56 146.658 L2210.58 151.033 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2236.18 158.95 L2236.18 161.033 L2216.6 161.033 Q2216.88 165.431 2219.24 167.746 Q2221.62 170.038 2225.86 170.038 Q2228.31 170.038 2230.6 169.436 Q2232.92 168.834 2235.19 167.63 L2235.19 171.658 Q2232.89 172.63 2230.49 173.14 Q2228.08 173.649 2225.6 173.649 Q2219.4 173.649 2215.77 170.038 Q2212.15 166.427 2212.15 160.269 Q2212.15 153.904 2215.58 150.177 Q2219.03 146.427 2224.86 146.427 Q2230.09 146.427 2233.13 149.806 Q2236.18 153.163 2236.18 158.95 M2231.92 157.7 Q2231.88 154.205 2229.95 152.121 Q2228.06 150.038 2224.91 150.038 Q2221.34 150.038 2219.19 152.052 Q2217.06 154.066 2216.74 157.723 L2231.92 157.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 59,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(pre, label=\"pre\")"
]
},
{
"cell_type": "markdown",
"id": "142bb73d",
"metadata": {},
"source": [
"# TOPIX"
]
},
{
"cell_type": "code",
"execution_count": 60,
"id": "fc10bfb6",
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"df = CSV.read(\"../stock price/topix_etf.csv\", DataFrame);"
]
},
{
"cell_type": "code",
"execution_count": 61,
"id": "fef9c68d",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip070\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip070)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip071\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip070)\" d=\"\n",
"M201.019 1486.45 L2352.76 1486.45 L2352.76 47.2441 L201.019 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip072\">\n",
" <rect x=\"201\" y=\"47\" width=\"2153\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.719,1486.45 254.719,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 614.638,1486.45 614.638,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 974.556,1486.45 974.556,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1334.47,1486.45 1334.47,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1694.39,1486.45 1694.39,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2054.31,1486.45 2054.31,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.719,1486.45 254.719,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 614.638,1486.45 614.638,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 974.556,1486.45 974.556,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1334.47,1486.45 1334.47,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1694.39,1486.45 1694.39,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2054.31,1486.45 2054.31,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip070)\" d=\"M254.719 1515.64 Q251.108 1515.64 249.279 1519.2 Q247.474 1522.75 247.474 1529.87 Q247.474 1536.98 249.279 1540.55 Q251.108 1544.09 254.719 1544.09 Q258.353 1544.09 260.159 1540.55 Q261.988 1536.98 261.988 1529.87 Q261.988 1522.75 260.159 1519.2 Q258.353 1515.64 254.719 1515.64 M254.719 1511.93 Q260.529 1511.93 263.585 1516.54 Q266.664 1521.12 266.664 1529.87 Q266.664 1538.6 263.585 1543.21 Q260.529 1547.79 254.719 1547.79 Q248.909 1547.79 245.83 1543.21 Q242.775 1538.6 242.775 1529.87 Q242.775 1521.12 245.83 1516.54 Q248.909 1511.93 254.719 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M589.337 1512.56 L607.693 1512.56 L607.693 1516.5 L593.619 1516.5 L593.619 1524.97 Q594.638 1524.62 595.656 1524.46 Q596.675 1524.27 597.693 1524.27 Q603.48 1524.27 606.86 1527.44 Q610.239 1530.62 610.239 1536.03 Q610.239 1541.61 606.767 1544.71 Q603.295 1547.79 596.976 1547.79 Q594.8 1547.79 592.531 1547.42 Q590.286 1547.05 587.878 1546.31 L587.878 1541.61 Q589.962 1542.74 592.184 1543.3 Q594.406 1543.86 596.883 1543.86 Q600.888 1543.86 603.226 1541.75 Q605.564 1539.64 605.564 1536.03 Q605.564 1532.42 603.226 1530.31 Q600.888 1528.21 596.883 1528.21 Q595.008 1528.21 593.133 1528.62 Q591.281 1529.04 589.337 1529.92 L589.337 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M629.452 1515.64 Q625.841 1515.64 624.013 1519.2 Q622.207 1522.75 622.207 1529.87 Q622.207 1536.98 624.013 1540.55 Q625.841 1544.09 629.452 1544.09 Q633.087 1544.09 634.892 1540.55 Q636.721 1536.98 636.721 1529.87 Q636.721 1522.75 634.892 1519.2 Q633.087 1515.64 629.452 1515.64 M629.452 1511.93 Q635.262 1511.93 638.318 1516.54 Q641.397 1521.12 641.397 1529.87 Q641.397 1538.6 638.318 1543.21 Q635.262 1547.79 629.452 1547.79 Q623.642 1547.79 620.563 1543.21 Q617.508 1538.6 617.508 1529.87 Q617.508 1521.12 620.563 1516.54 Q623.642 1511.93 629.452 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M934.163 1543.18 L941.802 1543.18 L941.802 1516.82 L933.491 1518.49 L933.491 1514.23 L941.755 1512.56 L946.431 1512.56 L946.431 1543.18 L954.07 1543.18 L954.07 1547.12 L934.163 1547.12 L934.163 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M973.514 1515.64 Q969.903 1515.64 968.075 1519.2 Q966.269 1522.75 966.269 1529.87 Q966.269 1536.98 968.075 1540.55 Q969.903 1544.09 973.514 1544.09 Q977.149 1544.09 978.954 1540.55 Q980.783 1536.98 980.783 1529.87 Q980.783 1522.75 978.954 1519.2 Q977.149 1515.64 973.514 1515.64 M973.514 1511.93 Q979.325 1511.93 982.38 1516.54 Q985.459 1521.12 985.459 1529.87 Q985.459 1538.6 982.38 1543.21 Q979.325 1547.79 973.514 1547.79 Q967.704 1547.79 964.626 1543.21 Q961.57 1538.6 961.57 1529.87 Q961.57 1521.12 964.626 1516.54 Q967.704 1511.93 973.514 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1003.68 1515.64 Q1000.07 1515.64 998.237 1519.2 Q996.431 1522.75 996.431 1529.87 Q996.431 1536.98 998.237 1540.55 Q1000.07 1544.09 1003.68 1544.09 Q1007.31 1544.09 1009.12 1540.55 Q1010.94 1536.98 1010.94 1529.87 Q1010.94 1522.75 1009.12 1519.2 Q1007.31 1515.64 1003.68 1515.64 M1003.68 1511.93 Q1009.49 1511.93 1012.54 1516.54 Q1015.62 1521.12 1015.62 1529.87 Q1015.62 1538.6 1012.54 1543.21 Q1009.49 1547.79 1003.68 1547.79 Q997.866 1547.79 994.787 1543.21 Q991.732 1538.6 991.732 1529.87 Q991.732 1521.12 994.787 1516.54 Q997.866 1511.93 1003.68 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1294.08 1543.18 L1301.72 1543.18 L1301.72 1516.82 L1293.41 1518.49 L1293.41 1514.23 L1301.67 1512.56 L1306.35 1512.56 L1306.35 1543.18 L1313.99 1543.18 L1313.99 1547.12 L1294.08 1547.12 L1294.08 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1323.48 1512.56 L1341.84 1512.56 L1341.84 1516.5 L1327.76 1516.5 L1327.76 1524.97 Q1328.78 1524.62 1329.8 1524.46 Q1330.82 1524.27 1331.84 1524.27 Q1337.62 1524.27 1341 1527.44 Q1344.38 1530.62 1344.38 1536.03 Q1344.38 1541.61 1340.91 1544.71 Q1337.44 1547.79 1331.12 1547.79 Q1328.94 1547.79 1326.67 1547.42 Q1324.43 1547.05 1322.02 1546.31 L1322.02 1541.61 Q1324.1 1542.74 1326.33 1543.3 Q1328.55 1543.86 1331.03 1543.86 Q1335.03 1543.86 1337.37 1541.75 Q1339.71 1539.64 1339.71 1536.03 Q1339.71 1532.42 1337.37 1530.31 Q1335.03 1528.21 1331.03 1528.21 Q1329.15 1528.21 1327.28 1528.62 Q1325.42 1529.04 1323.48 1529.92 L1323.48 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1363.59 1515.64 Q1359.98 1515.64 1358.15 1519.2 Q1356.35 1522.75 1356.35 1529.87 Q1356.35 1536.98 1358.15 1540.55 Q1359.98 1544.09 1363.59 1544.09 Q1367.23 1544.09 1369.03 1540.55 Q1370.86 1536.98 1370.86 1529.87 Q1370.86 1522.75 1369.03 1519.2 Q1367.23 1515.64 1363.59 1515.64 M1363.59 1511.93 Q1369.4 1511.93 1372.46 1516.54 Q1375.54 1521.12 1375.54 1529.87 Q1375.54 1538.6 1372.46 1543.21 Q1369.4 1547.79 1363.59 1547.79 Q1357.78 1547.79 1354.71 1543.21 Q1351.65 1538.6 1351.65 1529.87 Q1351.65 1521.12 1354.71 1516.54 Q1357.78 1511.93 1363.59 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1658.09 1543.18 L1674.4 1543.18 L1674.4 1547.12 L1652.46 1547.12 L1652.46 1543.18 Q1655.12 1540.43 1659.71 1535.8 Q1664.31 1531.15 1665.49 1529.81 Q1667.74 1527.28 1668.62 1525.55 Q1669.52 1523.79 1669.52 1522.1 Q1669.52 1519.34 1667.58 1517.61 Q1665.65 1515.87 1662.55 1515.87 Q1660.35 1515.87 1657.9 1516.63 Q1655.47 1517.4 1652.69 1518.95 L1652.69 1514.23 Q1655.52 1513.09 1657.97 1512.51 Q1660.42 1511.93 1662.46 1511.93 Q1667.83 1511.93 1671.03 1514.62 Q1674.22 1517.31 1674.22 1521.8 Q1674.22 1523.93 1673.41 1525.85 Q1672.62 1527.74 1670.52 1530.34 Q1669.94 1531.01 1666.84 1534.23 Q1663.73 1537.42 1658.09 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1694.22 1515.64 Q1690.61 1515.64 1688.78 1519.2 Q1686.97 1522.75 1686.97 1529.87 Q1686.97 1536.98 1688.78 1540.55 Q1690.61 1544.09 1694.22 1544.09 Q1697.85 1544.09 1699.66 1540.55 Q1701.49 1536.98 1701.49 1529.87 Q1701.49 1522.75 1699.66 1519.2 Q1697.85 1515.64 1694.22 1515.64 M1694.22 1511.93 Q1700.03 1511.93 1703.09 1516.54 Q1706.16 1521.12 1706.16 1529.87 Q1706.16 1538.6 1703.09 1543.21 Q1700.03 1547.79 1694.22 1547.79 Q1688.41 1547.79 1685.33 1543.21 Q1682.28 1538.6 1682.28 1529.87 Q1682.28 1521.12 1685.33 1516.54 Q1688.41 1511.93 1694.22 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1724.38 1515.64 Q1720.77 1515.64 1718.94 1519.2 Q1717.14 1522.75 1717.14 1529.87 Q1717.14 1536.98 1718.94 1540.55 Q1720.77 1544.09 1724.38 1544.09 Q1728.02 1544.09 1729.82 1540.55 Q1731.65 1536.98 1731.65 1529.87 Q1731.65 1522.75 1729.82 1519.2 Q1728.02 1515.64 1724.38 1515.64 M1724.38 1511.93 Q1730.19 1511.93 1733.25 1516.54 Q1736.33 1521.12 1736.33 1529.87 Q1736.33 1538.6 1733.25 1543.21 Q1730.19 1547.79 1724.38 1547.79 Q1718.57 1547.79 1715.49 1543.21 Q1712.44 1538.6 1712.44 1529.87 Q1712.44 1521.12 1715.49 1516.54 Q1718.57 1511.93 1724.38 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2018 1543.18 L2034.32 1543.18 L2034.32 1547.12 L2012.38 1547.12 L2012.38 1543.18 Q2015.04 1540.43 2019.62 1535.8 Q2024.23 1531.15 2025.41 1529.81 Q2027.66 1527.28 2028.54 1525.55 Q2029.44 1523.79 2029.44 1522.1 Q2029.44 1519.34 2027.49 1517.61 Q2025.57 1515.87 2022.47 1515.87 Q2020.27 1515.87 2017.82 1516.63 Q2015.39 1517.4 2012.61 1518.95 L2012.61 1514.23 Q2015.43 1513.09 2017.89 1512.51 Q2020.34 1511.93 2022.38 1511.93 Q2027.75 1511.93 2030.94 1514.62 Q2034.14 1517.31 2034.14 1521.8 Q2034.14 1523.93 2033.33 1525.85 Q2032.54 1527.74 2030.43 1530.34 Q2029.86 1531.01 2026.75 1534.23 Q2023.65 1537.42 2018 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2044.18 1512.56 L2062.54 1512.56 L2062.54 1516.5 L2048.47 1516.5 L2048.47 1524.97 Q2049.49 1524.62 2050.5 1524.46 Q2051.52 1524.27 2052.54 1524.27 Q2058.33 1524.27 2061.71 1527.44 Q2065.09 1530.62 2065.09 1536.03 Q2065.09 1541.61 2061.61 1544.71 Q2058.14 1547.79 2051.82 1547.79 Q2049.65 1547.79 2047.38 1547.42 Q2045.13 1547.05 2042.73 1546.31 L2042.73 1541.61 Q2044.81 1542.74 2047.03 1543.3 Q2049.25 1543.86 2051.73 1543.86 Q2055.74 1543.86 2058.07 1541.75 Q2060.41 1539.64 2060.41 1536.03 Q2060.41 1532.42 2058.07 1530.31 Q2055.74 1528.21 2051.73 1528.21 Q2049.86 1528.21 2047.98 1528.62 Q2046.13 1529.04 2044.18 1529.92 L2044.18 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2084.3 1515.64 Q2080.69 1515.64 2078.86 1519.2 Q2077.05 1522.75 2077.05 1529.87 Q2077.05 1536.98 2078.86 1540.55 Q2080.69 1544.09 2084.3 1544.09 Q2087.93 1544.09 2089.74 1540.55 Q2091.57 1536.98 2091.57 1529.87 Q2091.57 1522.75 2089.74 1519.2 Q2087.93 1515.64 2084.3 1515.64 M2084.3 1511.93 Q2090.11 1511.93 2093.17 1516.54 Q2096.24 1521.12 2096.24 1529.87 Q2096.24 1538.6 2093.17 1543.21 Q2090.11 1547.79 2084.3 1547.79 Q2078.49 1547.79 2075.41 1543.21 Q2072.36 1538.6 2072.36 1529.87 Q2072.36 1521.12 2075.41 1516.54 Q2078.49 1511.93 2084.3 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.019,1233.57 2352.76,1233.57 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.019,894.134 2352.76,894.134 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.019,554.699 2352.76,554.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 201.019,215.264 2352.76,215.264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,1486.45 201.019,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,1233.57 226.84,1233.57 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,894.134 226.84,894.134 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,554.699 226.84,554.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 201.019,215.264 226.84,215.264 \n",
" \"/>\n",
"<path clip-path=\"url(#clip070)\" d=\"M53.3995 1246.91 L61.0384 1246.91 L61.0384 1220.55 L52.7282 1222.21 L52.7282 1217.96 L60.9921 1216.29 L65.668 1216.29 L65.668 1246.91 L73.3068 1246.91 L73.3068 1250.85 L53.3995 1250.85 L53.3995 1246.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M95.5984 1220.36 L83.7929 1238.81 L95.5984 1238.81 L95.5984 1220.36 M94.3715 1216.29 L100.251 1216.29 L100.251 1238.81 L105.182 1238.81 L105.182 1242.7 L100.251 1242.7 L100.251 1250.85 L95.5984 1250.85 L95.5984 1242.7 L79.9966 1242.7 L79.9966 1238.19 L94.3715 1216.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M122.913 1219.37 Q119.302 1219.37 117.473 1222.93 Q115.668 1226.47 115.668 1233.6 Q115.668 1240.71 117.473 1244.27 Q119.302 1247.82 122.913 1247.82 Q126.547 1247.82 128.353 1244.27 Q130.182 1240.71 130.182 1233.6 Q130.182 1226.47 128.353 1222.93 Q126.547 1219.37 122.913 1219.37 M122.913 1215.66 Q128.723 1215.66 131.779 1220.27 Q134.857 1224.85 134.857 1233.6 Q134.857 1242.33 131.779 1246.94 Q128.723 1251.52 122.913 1251.52 Q117.103 1251.52 114.024 1246.94 Q110.969 1242.33 110.969 1233.6 Q110.969 1224.85 114.024 1220.27 Q117.103 1215.66 122.913 1215.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M153.075 1219.37 Q149.464 1219.37 147.635 1222.93 Q145.83 1226.47 145.83 1233.6 Q145.83 1240.71 147.635 1244.27 Q149.464 1247.82 153.075 1247.82 Q156.709 1247.82 158.515 1244.27 Q160.343 1240.71 160.343 1233.6 Q160.343 1226.47 158.515 1222.93 Q156.709 1219.37 153.075 1219.37 M153.075 1215.66 Q158.885 1215.66 161.941 1220.27 Q165.019 1224.85 165.019 1233.6 Q165.019 1242.33 161.941 1246.94 Q158.885 1251.52 153.075 1251.52 Q147.265 1251.52 144.186 1246.94 Q141.131 1242.33 141.131 1233.6 Q141.131 1224.85 144.186 1220.27 Q147.265 1215.66 153.075 1215.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M53.3995 907.479 L61.0384 907.479 L61.0384 881.113 L52.7282 882.78 L52.7282 878.521 L60.9921 876.854 L65.668 876.854 L65.668 907.479 L73.3068 907.479 L73.3068 911.414 L53.3995 911.414 L53.3995 907.479 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M93.3299 892.271 Q90.1817 892.271 88.3299 894.423 Q86.5012 896.576 86.5012 900.326 Q86.5012 904.053 88.3299 906.229 Q90.1817 908.382 93.3299 908.382 Q96.478 908.382 98.3067 906.229 Q100.159 904.053 100.159 900.326 Q100.159 896.576 98.3067 894.423 Q96.478 892.271 93.3299 892.271 M102.612 877.618 L102.612 881.877 Q100.853 881.044 99.0474 880.604 Q97.265 880.164 95.5058 880.164 Q90.8762 880.164 88.4225 883.289 Q85.9919 886.414 85.6447 892.734 Q87.0105 890.72 89.0706 889.655 Q91.1308 888.567 93.6076 888.567 Q98.8159 888.567 101.825 891.738 Q104.858 894.886 104.858 900.326 Q104.858 905.65 101.709 908.868 Q98.5613 912.085 93.3299 912.085 Q87.3345 912.085 84.1632 907.502 Q80.992 902.896 80.992 894.169 Q80.992 885.974 84.8808 881.113 Q88.7697 876.229 95.3206 876.229 Q97.0798 876.229 98.8622 876.576 Q100.668 876.923 102.612 877.618 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M122.913 879.933 Q119.302 879.933 117.473 883.498 Q115.668 887.039 115.668 894.169 Q115.668 901.275 117.473 904.84 Q119.302 908.382 122.913 908.382 Q126.547 908.382 128.353 904.84 Q130.182 901.275 130.182 894.169 Q130.182 887.039 128.353 883.498 Q126.547 879.933 122.913 879.933 M122.913 876.229 Q128.723 876.229 131.779 880.836 Q134.857 885.419 134.857 894.169 Q134.857 902.896 131.779 907.502 Q128.723 912.085 122.913 912.085 Q117.103 912.085 114.024 907.502 Q110.969 902.896 110.969 894.169 Q110.969 885.419 114.024 880.836 Q117.103 876.229 122.913 876.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M153.075 879.933 Q149.464 879.933 147.635 883.498 Q145.83 887.039 145.83 894.169 Q145.83 901.275 147.635 904.84 Q149.464 908.382 153.075 908.382 Q156.709 908.382 158.515 904.84 Q160.343 901.275 160.343 894.169 Q160.343 887.039 158.515 883.498 Q156.709 879.933 153.075 879.933 M153.075 876.229 Q158.885 876.229 161.941 880.836 Q165.019 885.419 165.019 894.169 Q165.019 902.896 161.941 907.502 Q158.885 912.085 153.075 912.085 Q147.265 912.085 144.186 907.502 Q141.131 902.896 141.131 894.169 Q141.131 885.419 144.186 880.836 Q147.265 876.229 153.075 876.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M53.3995 568.044 L61.0384 568.044 L61.0384 541.678 L52.7282 543.345 L52.7282 539.086 L60.9921 537.419 L65.668 537.419 L65.668 568.044 L73.3068 568.044 L73.3068 571.979 L53.3995 571.979 L53.3995 568.044 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M92.7512 555.567 Q89.4178 555.567 87.4966 557.35 Q85.5984 559.132 85.5984 562.257 Q85.5984 565.382 87.4966 567.164 Q89.4178 568.947 92.7512 568.947 Q96.0845 568.947 98.0058 567.164 Q99.927 565.359 99.927 562.257 Q99.927 559.132 98.0058 557.35 Q96.1076 555.567 92.7512 555.567 M88.0753 553.577 Q85.066 552.836 83.3762 550.776 Q81.7096 548.715 81.7096 545.752 Q81.7096 541.609 84.6494 539.202 Q87.6123 536.794 92.7512 536.794 Q97.9132 536.794 100.853 539.202 Q103.793 541.609 103.793 545.752 Q103.793 548.715 102.103 550.776 Q100.436 552.836 97.4502 553.577 Q100.83 554.364 102.705 556.655 Q104.603 558.947 104.603 562.257 Q104.603 567.28 101.524 569.965 Q98.4687 572.65 92.7512 572.65 Q87.0336 572.65 83.9549 569.965 Q80.8994 567.28 80.8994 562.257 Q80.8994 558.947 82.7975 556.655 Q84.6956 554.364 88.0753 553.577 M86.3623 546.192 Q86.3623 548.877 88.029 550.382 Q89.7188 551.887 92.7512 551.887 Q95.7604 551.887 97.4502 550.382 Q99.1632 548.877 99.1632 546.192 Q99.1632 543.507 97.4502 542.003 Q95.7604 540.498 92.7512 540.498 Q89.7188 540.498 88.029 542.003 Q86.3623 543.507 86.3623 546.192 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M122.913 540.498 Q119.302 540.498 117.473 544.063 Q115.668 547.604 115.668 554.734 Q115.668 561.84 117.473 565.405 Q119.302 568.947 122.913 568.947 Q126.547 568.947 128.353 565.405 Q130.182 561.84 130.182 554.734 Q130.182 547.604 128.353 544.063 Q126.547 540.498 122.913 540.498 M122.913 536.794 Q128.723 536.794 131.779 541.401 Q134.857 545.984 134.857 554.734 Q134.857 563.461 131.779 568.067 Q128.723 572.65 122.913 572.65 Q117.103 572.65 114.024 568.067 Q110.969 563.461 110.969 554.734 Q110.969 545.984 114.024 541.401 Q117.103 536.794 122.913 536.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M153.075 540.498 Q149.464 540.498 147.635 544.063 Q145.83 547.604 145.83 554.734 Q145.83 561.84 147.635 565.405 Q149.464 568.947 153.075 568.947 Q156.709 568.947 158.515 565.405 Q160.343 561.84 160.343 554.734 Q160.343 547.604 158.515 544.063 Q156.709 540.498 153.075 540.498 M153.075 536.794 Q158.885 536.794 161.941 541.401 Q165.019 545.984 165.019 554.734 Q165.019 563.461 161.941 568.067 Q158.885 572.65 153.075 572.65 Q147.265 572.65 144.186 568.067 Q141.131 563.461 141.131 554.734 Q141.131 545.984 144.186 541.401 Q147.265 536.794 153.075 536.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M56.6171 228.609 L72.9365 228.609 L72.9365 232.544 L50.9921 232.544 L50.9921 228.609 Q53.6541 225.855 58.2375 221.225 Q62.8439 216.572 64.0245 215.23 Q66.2698 212.706 67.1494 210.97 Q68.0522 209.211 68.0522 207.521 Q68.0522 204.767 66.1078 203.031 Q64.1865 201.295 61.0847 201.295 Q58.8856 201.295 56.4319 202.058 Q54.0014 202.822 51.2236 204.373 L51.2236 199.651 Q54.0477 198.517 56.5014 197.938 Q58.955 197.359 60.9921 197.359 Q66.3624 197.359 69.5568 200.045 Q72.7513 202.73 72.7513 207.22 Q72.7513 209.35 71.9411 211.271 Q71.1541 213.169 69.0476 215.762 Q68.4689 216.433 65.367 219.651 Q62.2652 222.845 56.6171 228.609 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M92.7512 201.063 Q89.1401 201.063 87.3114 204.628 Q85.5058 208.169 85.5058 215.299 Q85.5058 222.406 87.3114 225.97 Q89.1401 229.512 92.7512 229.512 Q96.3854 229.512 98.1909 225.97 Q100.02 222.406 100.02 215.299 Q100.02 208.169 98.1909 204.628 Q96.3854 201.063 92.7512 201.063 M92.7512 197.359 Q98.5613 197.359 101.617 201.966 Q104.696 206.549 104.696 215.299 Q104.696 224.026 101.617 228.632 Q98.5613 233.216 92.7512 233.216 Q86.941 233.216 83.8623 228.632 Q80.8068 224.026 80.8068 215.299 Q80.8068 206.549 83.8623 201.966 Q86.941 197.359 92.7512 197.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M122.913 201.063 Q119.302 201.063 117.473 204.628 Q115.668 208.169 115.668 215.299 Q115.668 222.406 117.473 225.97 Q119.302 229.512 122.913 229.512 Q126.547 229.512 128.353 225.97 Q130.182 222.406 130.182 215.299 Q130.182 208.169 128.353 204.628 Q126.547 201.063 122.913 201.063 M122.913 197.359 Q128.723 197.359 131.779 201.966 Q134.857 206.549 134.857 215.299 Q134.857 224.026 131.779 228.632 Q128.723 233.216 122.913 233.216 Q117.103 233.216 114.024 228.632 Q110.969 224.026 110.969 215.299 Q110.969 206.549 114.024 201.966 Q117.103 197.359 122.913 197.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M153.075 201.063 Q149.464 201.063 147.635 204.628 Q145.83 208.169 145.83 215.299 Q145.83 222.406 147.635 225.97 Q149.464 229.512 153.075 229.512 Q156.709 229.512 158.515 225.97 Q160.343 222.406 160.343 215.299 Q160.343 208.169 158.515 204.628 Q156.709 201.063 153.075 201.063 M153.075 197.359 Q158.885 197.359 161.941 201.966 Q165.019 206.549 165.019 215.299 Q165.019 224.026 161.941 228.632 Q158.885 233.216 153.075 233.216 Q147.265 233.216 144.186 228.632 Q141.131 224.026 141.131 215.299 Q141.131 206.549 144.186 201.966 Q147.265 197.359 153.075 197.359 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip072)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 261.917,624.283 269.116,573.368 276.314,614.1 283.513,564.882 290.711,554.699 297.909,546.213 305.108,561.488 312.306,568.277 319.504,554.699 326.703,542.819 \n",
" 333.901,554.699 341.1,536.03 348.298,568.277 355.496,564.882 362.695,617.495 369.893,634.466 377.091,622.586 384.29,663.318 391.488,644.649 398.687,668.41 \n",
" 405.885,644.649 413.083,614.1 420.282,553.002 427.48,564.882 434.678,583.551 441.877,586.946 449.075,598.826 456.273,612.403 463.472,637.861 470.67,680.29 \n",
" 477.869,670.107 485.067,663.318 492.265,665.016 499.464,763.452 506.662,782.121 513.86,853.402 521.059,951.838 528.257,926.38 535.456,960.324 542.654,967.113 \n",
" 549.852,934.866 557.051,1021.42 564.249,1167.38 571.447,1133.44 578.646,1174.17 585.844,1272.6 593.042,1393.1 600.241,1445.72 607.439,1376.13 614.638,1355.77 \n",
" 621.836,1335.4 629.034,1311.64 636.233,1264.12 643.431,1106.28 650.629,1138.53 657.828,1050.27 665.026,1046.88 672.225,1109.68 679.423,1208.11 686.621,1238.66 \n",
" 693.82,1240.36 701.018,1152.1 708.216,1106.28 715.415,1065.55 722.613,1087.61 729.812,1058.76 737.01,1109.68 744.208,1058.76 751.407,1050.27 758.605,1074.03 \n",
" 765.803,1041.79 773.002,1055.37 780.2,1085.91 787.398,1107.98 794.597,1072.34 801.795,1077.43 808.994,1035 816.192,1026.51 823.39,1007.84 830.589,1060.46 \n",
" 837.787,1063.85 844.985,1014.63 852.184,973.901 859.382,978.993 866.581,984.084 873.779,1031.61 880.977,1014.63 888.176,1007.84 895.374,963.718 902.572,948.444 \n",
" 909.771,950.141 916.969,978.993 924.167,933.169 931.366,873.768 938.564,850.008 945.763,792.304 952.961,826.247 960.159,816.064 967.358,783.818 974.556,758.36 \n",
" 981.754,749.874 988.953,741.388 996.151,705.748 1003.35,705.748 1010.55,710.839 1017.75,773.635 1024.94,817.761 1032.14,877.162 1039.34,770.24 1046.54,783.818 \n",
" 1053.74,785.515 1060.94,787.212 1068.13,792.304 1075.33,783.818 1082.53,797.395 1089.73,826.247 1096.93,792.304 1104.13,846.613 1111.33,839.824 1118.52,861.888 \n",
" 1125.72,851.705 1132.92,838.127 1140.12,794.001 1147.32,804.184 1154.52,829.641 1161.71,887.345 1168.91,922.986 1176.11,858.493 1183.31,873.768 1190.51,833.036 \n",
" 1197.71,848.31 1204.9,858.493 1212.1,855.099 1219.3,841.522 1226.5,861.888 1233.7,851.705 1240.9,865.282 1248.09,902.62 1255.29,919.592 1262.49,992.57 \n",
" 1269.69,951.838 1276.89,892.437 1284.09,894.134 1291.28,900.923 1298.48,902.62 1305.68,834.733 1312.88,804.184 1320.08,768.543 1327.28,773.635 1334.47,797.395 \n",
" 1341.67,795.698 1348.87,788.909 1356.07,817.761 1363.27,804.184 1370.47,799.092 1377.66,773.635 1384.86,770.24 1392.06,788.909 1399.26,809.275 1406.46,792.304 \n",
" 1413.66,787.212 1420.85,771.938 1428.05,761.754 1435.25,785.515 1442.45,795.698 1449.65,775.332 1456.85,807.578 1464.05,770.24 1471.24,748.177 1478.44,726.114 \n",
" 1485.64,744.783 1492.84,736.297 1500.04,746.48 1507.24,734.6 1514.43,737.994 1521.63,765.149 1528.83,753.269 1536.03,702.353 1543.23,685.382 1550.43,748.177 \n",
" 1557.62,773.635 1564.82,726.114 1572.02,710.839 1579.22,707.445 1586.42,692.17 1593.62,710.839 1600.81,715.931 1608.01,707.445 1615.21,717.628 1622.41,736.297 \n",
" 1629.61,761.754 1636.81,724.417 1644,744.783 1651.2,726.114 1658.4,758.36 1665.6,746.48 1672.8,758.36 1680,760.057 1687.19,770.24 1694.39,766.846 \n",
" 1701.59,824.55 1708.79,775.332 1715.99,741.388 1723.19,704.051 1730.38,687.079 1737.58,648.044 1744.78,614.1 1751.98,564.882 1759.18,568.277 1766.38,609.009 \n",
" 1773.58,558.094 1780.77,553.002 1787.97,576.762 1795.17,571.671 1802.37,568.277 1809.57,508.875 1816.77,503.784 1823.96,473.235 1831.16,464.749 1838.36,524.15 \n",
" 1845.56,495.298 1852.76,486.812 1859.96,478.326 1867.15,480.024 1874.35,505.481 1881.55,507.178 1888.75,471.538 1895.95,474.932 1903.15,469.84 1910.34,451.172 \n",
" 1917.54,468.143 1924.74,457.96 1931.94,449.474 1939.14,447.777 1946.34,456.263 1953.53,507.178 1960.73,481.721 1967.93,478.326 1975.13,459.657 1982.33,427.411 \n",
" 1989.53,446.08 1996.72,449.474 2003.92,439.291 2011.12,384.982 2018.32,334.067 2025.52,334.067 2032.72,301.82 2039.91,352.735 2047.11,330.672 2054.31,347.644 \n",
" 2061.51,328.975 2068.71,335.764 2075.91,325.581 2083.1,344.25 2090.3,325.581 2097.5,368.01 2104.7,422.32 2111.9,386.679 2119.1,351.038 2126.3,303.517 \n",
" 2133.49,198.293 2140.69,249.208 2147.89,318.792 2155.09,245.813 2162.29,222.053 2169.49,137.194 2176.68,184.715 2183.88,179.624 2191.08,152.469 2198.28,125.314 \n",
" 2205.48,120.223 2212.68,120.223 2219.87,111.737 2227.07,127.011 2234.27,121.92 2241.47,127.011 2248.67,120.223 2255.87,87.9763 2263.06,87.9763 2270.26,108.342 \n",
" 2277.46,145.68 2284.66,223.75 2291.86,120.223 \n",
" \"/>\n",
"<path clip-path=\"url(#clip070)\" d=\"\n",
"M1825.77 216.178 L2281.03 216.178 L2281.03 95.2176 L1825.77 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1825.77,216.178 2281.03,216.178 2281.03,95.2176 1825.77,95.2176 1825.77,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip070)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1849.68,155.698 1993.13,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip070)\" d=\"M2032.87 143.024 L2026.53 160.223 L2039.23 160.223 L2032.87 143.024 M2030.23 138.418 L2035.53 138.418 L2048.7 172.978 L2043.84 172.978 L2040.69 164.112 L2025.11 164.112 L2021.97 172.978 L2017.04 172.978 L2030.23 138.418 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2069.79 150.987 L2069.79 136.959 L2074.05 136.959 L2074.05 172.978 L2069.79 172.978 L2069.79 169.089 Q2068.45 171.403 2066.39 172.538 Q2064.35 173.649 2061.48 173.649 Q2056.78 173.649 2053.82 169.899 Q2050.88 166.149 2050.88 160.038 Q2050.88 153.927 2053.82 150.177 Q2056.78 146.427 2061.48 146.427 Q2064.35 146.427 2066.39 147.561 Q2068.45 148.672 2069.79 150.987 M2055.28 160.038 Q2055.28 164.737 2057.2 167.422 Q2059.14 170.084 2062.52 170.084 Q2065.9 170.084 2067.85 167.422 Q2069.79 164.737 2069.79 160.038 Q2069.79 155.339 2067.85 152.677 Q2065.9 149.992 2062.52 149.992 Q2059.14 149.992 2057.2 152.677 Q2055.28 155.339 2055.28 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2082.82 147.052 L2087.08 147.052 L2087.08 173.441 Q2087.08 178.394 2085.18 180.616 Q2083.31 182.839 2079.12 182.839 L2077.5 182.839 L2077.5 179.228 L2078.63 179.228 Q2081.06 179.228 2081.94 178.093 Q2082.82 176.982 2082.82 173.441 L2082.82 147.052 M2082.82 136.959 L2087.08 136.959 L2087.08 142.353 L2082.82 142.353 L2082.82 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2137.13 141.08 L2137.13 146.01 Q2134.77 143.811 2132.08 142.723 Q2129.42 141.635 2126.41 141.635 Q2120.48 141.635 2117.34 145.269 Q2114.19 148.88 2114.19 155.732 Q2114.19 162.561 2117.34 166.195 Q2120.48 169.806 2126.41 169.806 Q2129.42 169.806 2132.08 168.718 Q2134.77 167.63 2137.13 165.431 L2137.13 170.316 Q2134.67 171.982 2131.92 172.816 Q2129.19 173.649 2126.13 173.649 Q2118.29 173.649 2113.77 168.857 Q2109.26 164.042 2109.26 155.732 Q2109.26 147.399 2113.77 142.607 Q2118.29 137.793 2126.13 137.793 Q2129.23 137.793 2131.97 138.626 Q2134.72 139.436 2137.13 141.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2144.16 136.959 L2148.42 136.959 L2148.42 172.978 L2144.16 172.978 L2144.16 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2167.38 150.038 Q2163.96 150.038 2161.97 152.723 Q2159.97 155.385 2159.97 160.038 Q2159.97 164.691 2161.94 167.376 Q2163.93 170.038 2167.38 170.038 Q2170.78 170.038 2172.78 167.353 Q2174.77 164.667 2174.77 160.038 Q2174.77 155.431 2172.78 152.746 Q2170.78 150.038 2167.38 150.038 M2167.38 146.427 Q2172.94 146.427 2176.11 150.038 Q2179.28 153.649 2179.28 160.038 Q2179.28 166.404 2176.11 170.038 Q2172.94 173.649 2167.38 173.649 Q2161.8 173.649 2158.63 170.038 Q2155.48 166.404 2155.48 160.038 Q2155.48 153.649 2158.63 150.038 Q2161.8 146.427 2167.38 146.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2202.87 147.816 L2202.87 151.843 Q2201.06 150.917 2199.12 150.455 Q2197.17 149.992 2195.09 149.992 Q2191.92 149.992 2190.32 150.964 Q2188.75 151.936 2188.75 153.88 Q2188.75 155.362 2189.88 156.218 Q2191.02 157.052 2194.44 157.816 L2195.9 158.14 Q2200.44 159.112 2202.34 160.894 Q2204.26 162.654 2204.26 165.825 Q2204.26 169.436 2201.39 171.542 Q2198.54 173.649 2193.54 173.649 Q2191.46 173.649 2189.19 173.232 Q2186.94 172.839 2184.44 172.028 L2184.44 167.63 Q2186.8 168.857 2189.09 169.482 Q2191.39 170.084 2193.63 170.084 Q2196.64 170.084 2198.26 169.066 Q2199.88 168.024 2199.88 166.149 Q2199.88 164.413 2198.7 163.487 Q2197.54 162.561 2193.59 161.704 L2192.1 161.357 Q2188.15 160.524 2186.39 158.811 Q2184.63 157.075 2184.63 154.066 Q2184.63 150.408 2187.22 148.418 Q2189.81 146.427 2194.58 146.427 Q2196.94 146.427 2199.03 146.774 Q2201.11 147.121 2202.87 147.816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2233.21 158.95 L2233.21 161.033 L2213.63 161.033 Q2213.91 165.431 2216.27 167.746 Q2218.65 170.038 2222.89 170.038 Q2225.34 170.038 2227.64 169.436 Q2229.95 168.834 2232.22 167.63 L2232.22 171.658 Q2229.93 172.63 2227.52 173.14 Q2225.11 173.649 2222.64 173.649 Q2216.43 173.649 2212.8 170.038 Q2209.19 166.427 2209.19 160.269 Q2209.19 153.904 2212.61 150.177 Q2216.06 146.427 2221.9 146.427 Q2227.13 146.427 2230.16 149.806 Q2233.21 153.163 2233.21 158.95 M2228.96 157.7 Q2228.91 154.205 2226.99 152.121 Q2225.09 150.038 2221.94 150.038 Q2218.38 150.038 2216.22 152.052 Q2214.09 154.066 2213.77 157.723 L2228.96 157.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 61,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot( df.\"Adj Close\", label=\"Adj Close\")"
]
},
{
"cell_type": "code",
"execution_count": 62,
"id": "7cf2d202",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip110\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip110)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip111\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip110)\" d=\"\n",
"M254.26 1486.45 L2352.76 1486.45 L2352.76 47.2441 L254.26 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip112\">\n",
" <rect x=\"254\" y=\"47\" width=\"2099\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 306.606,1486.45 306.606,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 658.868,1486.45 658.868,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1011.13,1486.45 1011.13,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1363.39,1486.45 1363.39,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1715.65,1486.45 1715.65,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2067.92,1486.45 2067.92,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 306.606,1486.45 306.606,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 658.868,1486.45 658.868,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1011.13,1486.45 1011.13,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1363.39,1486.45 1363.39,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1715.65,1486.45 1715.65,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2067.92,1486.45 2067.92,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip110)\" d=\"M306.606 1515.64 Q302.995 1515.64 301.166 1519.2 Q299.361 1522.75 299.361 1529.87 Q299.361 1536.98 301.166 1540.55 Q302.995 1544.09 306.606 1544.09 Q310.24 1544.09 312.046 1540.55 Q313.874 1536.98 313.874 1529.87 Q313.874 1522.75 312.046 1519.2 Q310.24 1515.64 306.606 1515.64 M306.606 1511.93 Q312.416 1511.93 315.472 1516.54 Q318.55 1521.12 318.55 1529.87 Q318.55 1538.6 315.472 1543.21 Q312.416 1547.79 306.606 1547.79 Q300.796 1547.79 297.717 1543.21 Q294.662 1538.6 294.662 1529.87 Q294.662 1521.12 297.717 1516.54 Q300.796 1511.93 306.606 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M633.567 1512.56 L651.924 1512.56 L651.924 1516.5 L637.85 1516.5 L637.85 1524.97 Q638.868 1524.62 639.887 1524.46 Q640.905 1524.27 641.924 1524.27 Q647.711 1524.27 651.09 1527.44 Q654.47 1530.62 654.47 1536.03 Q654.47 1541.61 650.998 1544.71 Q647.526 1547.79 641.206 1547.79 Q639.03 1547.79 636.762 1547.42 Q634.516 1547.05 632.109 1546.31 L632.109 1541.61 Q634.192 1542.74 636.414 1543.3 Q638.637 1543.86 641.114 1543.86 Q645.118 1543.86 647.456 1541.75 Q649.794 1539.64 649.794 1536.03 Q649.794 1532.42 647.456 1530.31 Q645.118 1528.21 641.114 1528.21 Q639.239 1528.21 637.364 1528.62 Q635.512 1529.04 633.567 1529.92 L633.567 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M673.683 1515.64 Q670.072 1515.64 668.243 1519.2 Q666.437 1522.75 666.437 1529.87 Q666.437 1536.98 668.243 1540.55 Q670.072 1544.09 673.683 1544.09 Q677.317 1544.09 679.123 1540.55 Q680.951 1536.98 680.951 1529.87 Q680.951 1522.75 679.123 1519.2 Q677.317 1515.64 673.683 1515.64 M673.683 1511.93 Q679.493 1511.93 682.548 1516.54 Q685.627 1521.12 685.627 1529.87 Q685.627 1538.6 682.548 1543.21 Q679.493 1547.79 673.683 1547.79 Q667.873 1547.79 664.794 1543.21 Q661.738 1538.6 661.738 1529.87 Q661.738 1521.12 664.794 1516.54 Q667.873 1511.93 673.683 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M970.737 1543.18 L978.376 1543.18 L978.376 1516.82 L970.066 1518.49 L970.066 1514.23 L978.329 1512.56 L983.005 1512.56 L983.005 1543.18 L990.644 1543.18 L990.644 1547.12 L970.737 1547.12 L970.737 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1010.09 1515.64 Q1006.48 1515.64 1004.65 1519.2 Q1002.84 1522.75 1002.84 1529.87 Q1002.84 1536.98 1004.65 1540.55 Q1006.48 1544.09 1010.09 1544.09 Q1013.72 1544.09 1015.53 1540.55 Q1017.36 1536.98 1017.36 1529.87 Q1017.36 1522.75 1015.53 1519.2 Q1013.72 1515.64 1010.09 1515.64 M1010.09 1511.93 Q1015.9 1511.93 1018.95 1516.54 Q1022.03 1521.12 1022.03 1529.87 Q1022.03 1538.6 1018.95 1543.21 Q1015.9 1547.79 1010.09 1547.79 Q1004.28 1547.79 1001.2 1543.21 Q998.144 1538.6 998.144 1529.87 Q998.144 1521.12 1001.2 1516.54 Q1004.28 1511.93 1010.09 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1040.25 1515.64 Q1036.64 1515.64 1034.81 1519.2 Q1033.01 1522.75 1033.01 1529.87 Q1033.01 1536.98 1034.81 1540.55 Q1036.64 1544.09 1040.25 1544.09 Q1043.88 1544.09 1045.69 1540.55 Q1047.52 1536.98 1047.52 1529.87 Q1047.52 1522.75 1045.69 1519.2 Q1043.88 1515.64 1040.25 1515.64 M1040.25 1511.93 Q1046.06 1511.93 1049.12 1516.54 Q1052.19 1521.12 1052.19 1529.87 Q1052.19 1538.6 1049.12 1543.21 Q1046.06 1547.79 1040.25 1547.79 Q1034.44 1547.79 1031.36 1543.21 Q1028.31 1538.6 1028.31 1529.87 Q1028.31 1521.12 1031.36 1516.54 Q1034.44 1511.93 1040.25 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1323 1543.18 L1330.64 1543.18 L1330.64 1516.82 L1322.33 1518.49 L1322.33 1514.23 L1330.59 1512.56 L1335.27 1512.56 L1335.27 1543.18 L1342.91 1543.18 L1342.91 1547.12 L1323 1547.12 L1323 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1352.4 1512.56 L1370.75 1512.56 L1370.75 1516.5 L1356.68 1516.5 L1356.68 1524.97 Q1357.7 1524.62 1358.72 1524.46 Q1359.74 1524.27 1360.75 1524.27 Q1366.54 1524.27 1369.92 1527.44 Q1373.3 1530.62 1373.3 1536.03 Q1373.3 1541.61 1369.83 1544.71 Q1366.36 1547.79 1360.04 1547.79 Q1357.86 1547.79 1355.59 1547.42 Q1353.35 1547.05 1350.94 1546.31 L1350.94 1541.61 Q1353.02 1542.74 1355.24 1543.3 Q1357.47 1543.86 1359.94 1543.86 Q1363.95 1543.86 1366.29 1541.75 Q1368.62 1539.64 1368.62 1536.03 Q1368.62 1532.42 1366.29 1530.31 Q1363.95 1528.21 1359.94 1528.21 Q1358.07 1528.21 1356.19 1528.62 Q1354.34 1529.04 1352.4 1529.92 L1352.4 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1392.51 1515.64 Q1388.9 1515.64 1387.07 1519.2 Q1385.27 1522.75 1385.27 1529.87 Q1385.27 1536.98 1387.07 1540.55 Q1388.9 1544.09 1392.51 1544.09 Q1396.15 1544.09 1397.95 1540.55 Q1399.78 1536.98 1399.78 1529.87 Q1399.78 1522.75 1397.95 1519.2 Q1396.15 1515.64 1392.51 1515.64 M1392.51 1511.93 Q1398.32 1511.93 1401.38 1516.54 Q1404.46 1521.12 1404.46 1529.87 Q1404.46 1538.6 1401.38 1543.21 Q1398.32 1547.79 1392.51 1547.79 Q1386.7 1547.79 1383.62 1543.21 Q1380.57 1538.6 1380.57 1529.87 Q1380.57 1521.12 1383.62 1516.54 Q1386.7 1511.93 1392.51 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1679.35 1543.18 L1695.67 1543.18 L1695.67 1547.12 L1673.72 1547.12 L1673.72 1543.18 Q1676.38 1540.43 1680.97 1535.8 Q1685.57 1531.15 1686.75 1529.81 Q1689 1527.28 1689.88 1525.55 Q1690.78 1523.79 1690.78 1522.1 Q1690.78 1519.34 1688.84 1517.61 Q1686.92 1515.87 1683.81 1515.87 Q1681.62 1515.87 1679.16 1516.63 Q1676.73 1517.4 1673.95 1518.95 L1673.95 1514.23 Q1676.78 1513.09 1679.23 1512.51 Q1681.68 1511.93 1683.72 1511.93 Q1689.09 1511.93 1692.29 1514.62 Q1695.48 1517.31 1695.48 1521.8 Q1695.48 1523.93 1694.67 1525.85 Q1693.88 1527.74 1691.78 1530.34 Q1691.2 1531.01 1688.1 1534.23 Q1684.99 1537.42 1679.35 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1715.48 1515.64 Q1711.87 1515.64 1710.04 1519.2 Q1708.24 1522.75 1708.24 1529.87 Q1708.24 1536.98 1710.04 1540.55 Q1711.87 1544.09 1715.48 1544.09 Q1719.12 1544.09 1720.92 1540.55 Q1722.75 1536.98 1722.75 1529.87 Q1722.75 1522.75 1720.92 1519.2 Q1719.12 1515.64 1715.48 1515.64 M1715.48 1511.93 Q1721.29 1511.93 1724.35 1516.54 Q1727.43 1521.12 1727.43 1529.87 Q1727.43 1538.6 1724.35 1543.21 Q1721.29 1547.79 1715.48 1547.79 Q1709.67 1547.79 1706.59 1543.21 Q1703.54 1538.6 1703.54 1529.87 Q1703.54 1521.12 1706.59 1516.54 Q1709.67 1511.93 1715.48 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1745.64 1515.64 Q1742.03 1515.64 1740.2 1519.2 Q1738.4 1522.75 1738.4 1529.87 Q1738.4 1536.98 1740.2 1540.55 Q1742.03 1544.09 1745.64 1544.09 Q1749.28 1544.09 1751.08 1540.55 Q1752.91 1536.98 1752.91 1529.87 Q1752.91 1522.75 1751.08 1519.2 Q1749.28 1515.64 1745.64 1515.64 M1745.64 1511.93 Q1751.45 1511.93 1754.51 1516.54 Q1757.59 1521.12 1757.59 1529.87 Q1757.59 1538.6 1754.51 1543.21 Q1751.45 1547.79 1745.64 1547.79 Q1739.83 1547.79 1736.75 1543.21 Q1733.7 1538.6 1733.7 1529.87 Q1733.7 1521.12 1736.75 1516.54 Q1739.83 1511.93 1745.64 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2031.61 1543.18 L2047.93 1543.18 L2047.93 1547.12 L2025.98 1547.12 L2025.98 1543.18 Q2028.65 1540.43 2033.23 1535.8 Q2037.84 1531.15 2039.02 1529.81 Q2041.26 1527.28 2042.14 1525.55 Q2043.04 1523.79 2043.04 1522.1 Q2043.04 1519.34 2041.1 1517.61 Q2039.18 1515.87 2036.08 1515.87 Q2033.88 1515.87 2031.42 1516.63 Q2028.99 1517.4 2026.22 1518.95 L2026.22 1514.23 Q2029.04 1513.09 2031.49 1512.51 Q2033.95 1511.93 2035.98 1511.93 Q2041.35 1511.93 2044.55 1514.62 Q2047.74 1517.31 2047.74 1521.8 Q2047.74 1523.93 2046.93 1525.85 Q2046.15 1527.74 2044.04 1530.34 Q2043.46 1531.01 2040.36 1534.23 Q2037.26 1537.42 2031.61 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2057.79 1512.56 L2076.15 1512.56 L2076.15 1516.5 L2062.07 1516.5 L2062.07 1524.97 Q2063.09 1524.62 2064.11 1524.46 Q2065.13 1524.27 2066.15 1524.27 Q2071.93 1524.27 2075.31 1527.44 Q2078.69 1530.62 2078.69 1536.03 Q2078.69 1541.61 2075.22 1544.71 Q2071.75 1547.79 2065.43 1547.79 Q2063.25 1547.79 2060.98 1547.42 Q2058.74 1547.05 2056.33 1546.31 L2056.33 1541.61 Q2058.41 1542.74 2060.64 1543.3 Q2062.86 1543.86 2065.34 1543.86 Q2069.34 1543.86 2071.68 1541.75 Q2074.02 1539.64 2074.02 1536.03 Q2074.02 1532.42 2071.68 1530.31 Q2069.34 1528.21 2065.34 1528.21 Q2063.46 1528.21 2061.59 1528.62 Q2059.73 1529.04 2057.79 1529.92 L2057.79 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2097.9 1515.64 Q2094.29 1515.64 2092.47 1519.2 Q2090.66 1522.75 2090.66 1529.87 Q2090.66 1536.98 2092.47 1540.55 Q2094.29 1544.09 2097.9 1544.09 Q2101.54 1544.09 2103.34 1540.55 Q2105.17 1536.98 2105.17 1529.87 Q2105.17 1522.75 2103.34 1519.2 Q2101.54 1515.64 2097.9 1515.64 M2097.9 1511.93 Q2103.72 1511.93 2106.77 1516.54 Q2109.85 1521.12 2109.85 1529.87 Q2109.85 1538.6 2106.77 1543.21 Q2103.72 1547.79 2097.9 1547.79 Q2092.09 1547.79 2089.02 1543.21 Q2085.96 1538.6 2085.96 1529.87 Q2085.96 1521.12 2089.02 1516.54 Q2092.09 1511.93 2097.9 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,1357.02 2352.76,1357.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,1081.45 2352.76,1081.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,805.869 2352.76,805.869 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,530.292 2352.76,530.292 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.26,254.715 2352.76,254.715 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1486.45 254.26,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1357.02 279.442,1357.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,1081.45 279.442,1081.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,805.869 279.442,805.869 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,530.292 279.442,530.292 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.26,254.715 279.442,254.715 \n",
" \"/>\n",
"<path clip-path=\"url(#clip110)\" d=\"M50.9921 1357.48 L80.6679 1357.48 L80.6679 1361.41 L50.9921 1361.41 L50.9921 1357.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M100.76 1342.82 Q97.1493 1342.82 95.3206 1346.39 Q93.515 1349.93 93.515 1357.06 Q93.515 1364.17 95.3206 1367.73 Q97.1493 1371.27 100.76 1371.27 Q104.395 1371.27 106.2 1367.73 Q108.029 1364.17 108.029 1357.06 Q108.029 1349.93 106.2 1346.39 Q104.395 1342.82 100.76 1342.82 M100.76 1339.12 Q106.571 1339.12 109.626 1343.73 Q112.705 1348.31 112.705 1357.06 Q112.705 1365.79 109.626 1370.39 Q106.571 1374.98 100.76 1374.98 Q94.9502 1374.98 91.8715 1370.39 Q88.816 1365.79 88.816 1357.06 Q88.816 1348.31 91.8715 1343.73 Q94.9502 1339.12 100.76 1339.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M120.922 1368.42 L125.807 1368.42 L125.807 1374.3 L120.922 1374.3 L120.922 1368.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M145.992 1342.82 Q142.381 1342.82 140.552 1346.39 Q138.746 1349.93 138.746 1357.06 Q138.746 1364.17 140.552 1367.73 Q142.381 1371.27 145.992 1371.27 Q149.626 1371.27 151.431 1367.73 Q153.26 1364.17 153.26 1357.06 Q153.26 1349.93 151.431 1346.39 Q149.626 1342.82 145.992 1342.82 M145.992 1339.12 Q151.802 1339.12 154.857 1343.73 Q157.936 1348.31 157.936 1357.06 Q157.936 1365.79 154.857 1370.39 Q151.802 1374.98 145.992 1374.98 Q140.181 1374.98 137.103 1370.39 Q134.047 1365.79 134.047 1357.06 Q134.047 1348.31 137.103 1343.73 Q140.181 1339.12 145.992 1339.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M166.2 1339.74 L184.556 1339.74 L184.556 1343.68 L170.482 1343.68 L170.482 1352.15 Q171.501 1351.8 172.519 1351.64 Q173.538 1351.46 174.556 1351.46 Q180.343 1351.46 183.723 1354.63 Q187.103 1357.8 187.103 1363.22 Q187.103 1368.79 183.63 1371.9 Q180.158 1374.98 173.839 1374.98 Q171.663 1374.98 169.394 1374.6 Q167.149 1374.23 164.742 1373.49 L164.742 1368.79 Q166.825 1369.93 169.047 1370.48 Q171.269 1371.04 173.746 1371.04 Q177.751 1371.04 180.089 1368.93 Q182.427 1366.83 182.427 1363.22 Q182.427 1359.61 180.089 1357.5 Q177.751 1355.39 173.746 1355.39 Q171.871 1355.39 169.996 1355.81 Q168.144 1356.23 166.2 1357.11 L166.2 1339.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M206.315 1342.82 Q202.704 1342.82 200.876 1346.39 Q199.07 1349.93 199.07 1357.06 Q199.07 1364.17 200.876 1367.73 Q202.704 1371.27 206.315 1371.27 Q209.95 1371.27 211.755 1367.73 Q213.584 1364.17 213.584 1357.06 Q213.584 1349.93 211.755 1346.39 Q209.95 1342.82 206.315 1342.82 M206.315 1339.12 Q212.126 1339.12 215.181 1343.73 Q218.26 1348.31 218.26 1357.06 Q218.26 1365.79 215.181 1370.39 Q212.126 1374.98 206.315 1374.98 Q200.505 1374.98 197.427 1370.39 Q194.371 1365.79 194.371 1357.06 Q194.371 1348.31 197.427 1343.73 Q200.505 1339.12 206.315 1339.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M51.9875 1081.9 L81.6633 1081.9 L81.6633 1085.83 L51.9875 1085.83 L51.9875 1081.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M101.756 1067.25 Q98.1447 1067.25 96.316 1070.81 Q94.5104 1074.35 94.5104 1081.48 Q94.5104 1088.59 96.316 1092.15 Q98.1447 1095.69 101.756 1095.69 Q105.39 1095.69 107.196 1092.15 Q109.024 1088.59 109.024 1081.48 Q109.024 1074.35 107.196 1070.81 Q105.39 1067.25 101.756 1067.25 M101.756 1063.54 Q107.566 1063.54 110.621 1068.15 Q113.7 1072.73 113.7 1081.48 Q113.7 1090.21 110.621 1094.81 Q107.566 1099.4 101.756 1099.4 Q95.9456 1099.4 92.8669 1094.81 Q89.8114 1090.21 89.8114 1081.48 Q89.8114 1072.73 92.8669 1068.15 Q95.9456 1063.54 101.756 1063.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M121.918 1092.85 L126.802 1092.85 L126.802 1098.73 L121.918 1098.73 L121.918 1092.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M146.987 1067.25 Q143.376 1067.25 141.547 1070.81 Q139.742 1074.35 139.742 1081.48 Q139.742 1088.59 141.547 1092.15 Q143.376 1095.69 146.987 1095.69 Q150.621 1095.69 152.427 1092.15 Q154.255 1088.59 154.255 1081.48 Q154.255 1074.35 152.427 1070.81 Q150.621 1067.25 146.987 1067.25 M146.987 1063.54 Q152.797 1063.54 155.853 1068.15 Q158.931 1072.73 158.931 1081.48 Q158.931 1090.21 155.853 1094.81 Q152.797 1099.4 146.987 1099.4 Q141.177 1099.4 138.098 1094.81 Q135.043 1090.21 135.043 1081.48 Q135.043 1072.73 138.098 1068.15 Q141.177 1063.54 146.987 1063.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M171.177 1094.79 L187.496 1094.79 L187.496 1098.73 L165.552 1098.73 L165.552 1094.79 Q168.214 1092.04 172.797 1087.41 Q177.403 1082.75 178.584 1081.41 Q180.829 1078.89 181.709 1077.15 Q182.612 1075.39 182.612 1073.7 Q182.612 1070.95 180.667 1069.21 Q178.746 1067.48 175.644 1067.48 Q173.445 1067.48 170.991 1068.24 Q168.561 1069 165.783 1070.56 L165.783 1065.83 Q168.607 1064.7 171.061 1064.12 Q173.515 1063.54 175.552 1063.54 Q180.922 1063.54 184.116 1066.23 Q187.311 1068.91 187.311 1073.4 Q187.311 1075.53 186.501 1077.45 Q185.714 1079.35 183.607 1081.94 Q183.028 1082.62 179.927 1085.83 Q176.825 1089.03 171.177 1094.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M197.357 1064.17 L215.713 1064.17 L215.713 1068.1 L201.639 1068.1 L201.639 1076.57 Q202.658 1076.23 203.676 1076.06 Q204.695 1075.88 205.714 1075.88 Q211.501 1075.88 214.88 1079.05 Q218.26 1082.22 218.26 1087.64 Q218.26 1093.22 214.788 1096.32 Q211.315 1099.4 204.996 1099.4 Q202.82 1099.4 200.552 1099.03 Q198.306 1098.66 195.899 1097.92 L195.899 1093.22 Q197.982 1094.35 200.204 1094.91 Q202.426 1095.46 204.903 1095.46 Q208.908 1095.46 211.246 1093.36 Q213.584 1091.25 213.584 1087.64 Q213.584 1084.03 211.246 1081.92 Q208.908 1079.81 204.903 1079.81 Q203.028 1079.81 201.153 1080.23 Q199.302 1080.65 197.357 1081.53 L197.357 1064.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M100.76 791.668 Q97.1493 791.668 95.3206 795.233 Q93.515 798.774 93.515 805.904 Q93.515 813.01 95.3206 816.575 Q97.1493 820.117 100.76 820.117 Q104.395 820.117 106.2 816.575 Q108.029 813.01 108.029 805.904 Q108.029 798.774 106.2 795.233 Q104.395 791.668 100.76 791.668 M100.76 787.964 Q106.571 787.964 109.626 792.571 Q112.705 797.154 112.705 805.904 Q112.705 814.631 109.626 819.237 Q106.571 823.821 100.76 823.821 Q94.9502 823.821 91.8715 819.237 Q88.816 814.631 88.816 805.904 Q88.816 797.154 91.8715 792.571 Q94.9502 787.964 100.76 787.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M120.922 817.27 L125.807 817.27 L125.807 823.149 L120.922 823.149 L120.922 817.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M145.992 791.668 Q142.381 791.668 140.552 795.233 Q138.746 798.774 138.746 805.904 Q138.746 813.01 140.552 816.575 Q142.381 820.117 145.992 820.117 Q149.626 820.117 151.431 816.575 Q153.26 813.01 153.26 805.904 Q153.26 798.774 151.431 795.233 Q149.626 791.668 145.992 791.668 M145.992 787.964 Q151.802 787.964 154.857 792.571 Q157.936 797.154 157.936 805.904 Q157.936 814.631 154.857 819.237 Q151.802 823.821 145.992 823.821 Q140.181 823.821 137.103 819.237 Q134.047 814.631 134.047 805.904 Q134.047 797.154 137.103 792.571 Q140.181 787.964 145.992 787.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M176.153 791.668 Q172.542 791.668 170.714 795.233 Q168.908 798.774 168.908 805.904 Q168.908 813.01 170.714 816.575 Q172.542 820.117 176.153 820.117 Q179.788 820.117 181.593 816.575 Q183.422 813.01 183.422 805.904 Q183.422 798.774 181.593 795.233 Q179.788 791.668 176.153 791.668 M176.153 787.964 Q181.964 787.964 185.019 792.571 Q188.098 797.154 188.098 805.904 Q188.098 814.631 185.019 819.237 Q181.964 823.821 176.153 823.821 Q170.343 823.821 167.265 819.237 Q164.209 814.631 164.209 805.904 Q164.209 797.154 167.265 792.571 Q170.343 787.964 176.153 787.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M206.315 791.668 Q202.704 791.668 200.876 795.233 Q199.07 798.774 199.07 805.904 Q199.07 813.01 200.876 816.575 Q202.704 820.117 206.315 820.117 Q209.95 820.117 211.755 816.575 Q213.584 813.01 213.584 805.904 Q213.584 798.774 211.755 795.233 Q209.95 791.668 206.315 791.668 M206.315 787.964 Q212.126 787.964 215.181 792.571 Q218.26 797.154 218.26 805.904 Q218.26 814.631 215.181 819.237 Q212.126 823.821 206.315 823.821 Q200.505 823.821 197.427 819.237 Q194.371 814.631 194.371 805.904 Q194.371 797.154 197.427 792.571 Q200.505 787.964 206.315 787.964 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M101.756 516.091 Q98.1447 516.091 96.316 519.655 Q94.5104 523.197 94.5104 530.327 Q94.5104 537.433 96.316 540.998 Q98.1447 544.54 101.756 544.54 Q105.39 544.54 107.196 540.998 Q109.024 537.433 109.024 530.327 Q109.024 523.197 107.196 519.655 Q105.39 516.091 101.756 516.091 M101.756 512.387 Q107.566 512.387 110.621 516.993 Q113.7 521.577 113.7 530.327 Q113.7 539.053 110.621 543.66 Q107.566 548.243 101.756 548.243 Q95.9456 548.243 92.8669 543.66 Q89.8114 539.053 89.8114 530.327 Q89.8114 521.577 92.8669 516.993 Q95.9456 512.387 101.756 512.387 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M121.918 541.692 L126.802 541.692 L126.802 547.572 L121.918 547.572 L121.918 541.692 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M146.987 516.091 Q143.376 516.091 141.547 519.655 Q139.742 523.197 139.742 530.327 Q139.742 537.433 141.547 540.998 Q143.376 544.54 146.987 544.54 Q150.621 544.54 152.427 540.998 Q154.255 537.433 154.255 530.327 Q154.255 523.197 152.427 519.655 Q150.621 516.091 146.987 516.091 M146.987 512.387 Q152.797 512.387 155.853 516.993 Q158.931 521.577 158.931 530.327 Q158.931 539.053 155.853 543.66 Q152.797 548.243 146.987 548.243 Q141.177 548.243 138.098 543.66 Q135.043 539.053 135.043 530.327 Q135.043 521.577 138.098 516.993 Q141.177 512.387 146.987 512.387 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M171.177 543.637 L187.496 543.637 L187.496 547.572 L165.552 547.572 L165.552 543.637 Q168.214 540.882 172.797 536.253 Q177.403 531.6 178.584 530.257 Q180.829 527.734 181.709 525.998 Q182.612 524.239 182.612 522.549 Q182.612 519.794 180.667 518.058 Q178.746 516.322 175.644 516.322 Q173.445 516.322 170.991 517.086 Q168.561 517.85 165.783 519.401 L165.783 514.679 Q168.607 513.544 171.061 512.966 Q173.515 512.387 175.552 512.387 Q180.922 512.387 184.116 515.072 Q187.311 517.757 187.311 522.248 Q187.311 524.378 186.501 526.299 Q185.714 528.197 183.607 530.79 Q183.028 531.461 179.927 534.678 Q176.825 537.873 171.177 543.637 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M197.357 513.012 L215.713 513.012 L215.713 516.947 L201.639 516.947 L201.639 525.419 Q202.658 525.072 203.676 524.91 Q204.695 524.725 205.714 524.725 Q211.501 524.725 214.88 527.896 Q218.26 531.067 218.26 536.484 Q218.26 542.063 214.788 545.165 Q211.315 548.243 204.996 548.243 Q202.82 548.243 200.552 547.873 Q198.306 547.502 195.899 546.762 L195.899 542.063 Q197.982 543.197 200.204 543.752 Q202.426 544.308 204.903 544.308 Q208.908 544.308 211.246 542.202 Q213.584 540.095 213.584 536.484 Q213.584 532.873 211.246 530.766 Q208.908 528.66 204.903 528.66 Q203.028 528.66 201.153 529.077 Q199.302 529.493 197.357 530.373 L197.357 513.012 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M100.76 240.513 Q97.1493 240.513 95.3206 244.078 Q93.515 247.62 93.515 254.749 Q93.515 261.856 95.3206 265.42 Q97.1493 268.962 100.76 268.962 Q104.395 268.962 106.2 265.42 Q108.029 261.856 108.029 254.749 Q108.029 247.62 106.2 244.078 Q104.395 240.513 100.76 240.513 M100.76 236.81 Q106.571 236.81 109.626 241.416 Q112.705 245.999 112.705 254.749 Q112.705 263.476 109.626 268.083 Q106.571 272.666 100.76 272.666 Q94.9502 272.666 91.8715 268.083 Q88.816 263.476 88.816 254.749 Q88.816 245.999 91.8715 241.416 Q94.9502 236.81 100.76 236.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M120.922 266.115 L125.807 266.115 L125.807 271.995 L120.922 271.995 L120.922 266.115 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M145.992 240.513 Q142.381 240.513 140.552 244.078 Q138.746 247.62 138.746 254.749 Q138.746 261.856 140.552 265.42 Q142.381 268.962 145.992 268.962 Q149.626 268.962 151.431 265.42 Q153.26 261.856 153.26 254.749 Q153.26 247.62 151.431 244.078 Q149.626 240.513 145.992 240.513 M145.992 236.81 Q151.802 236.81 154.857 241.416 Q157.936 245.999 157.936 254.749 Q157.936 263.476 154.857 268.083 Q151.802 272.666 145.992 272.666 Q140.181 272.666 137.103 268.083 Q134.047 263.476 134.047 254.749 Q134.047 245.999 137.103 241.416 Q140.181 236.81 145.992 236.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M166.2 237.435 L184.556 237.435 L184.556 241.37 L170.482 241.37 L170.482 249.842 Q171.501 249.495 172.519 249.333 Q173.538 249.147 174.556 249.147 Q180.343 249.147 183.723 252.319 Q187.103 255.49 187.103 260.907 Q187.103 266.485 183.63 269.587 Q180.158 272.666 173.839 272.666 Q171.663 272.666 169.394 272.295 Q167.149 271.925 164.742 271.184 L164.742 266.485 Q166.825 267.62 169.047 268.175 Q171.269 268.731 173.746 268.731 Q177.751 268.731 180.089 266.624 Q182.427 264.518 182.427 260.907 Q182.427 257.296 180.089 255.189 Q177.751 253.083 173.746 253.083 Q171.871 253.083 169.996 253.499 Q168.144 253.916 166.2 254.796 L166.2 237.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M206.315 240.513 Q202.704 240.513 200.876 244.078 Q199.07 247.62 199.07 254.749 Q199.07 261.856 200.876 265.42 Q202.704 268.962 206.315 268.962 Q209.95 268.962 211.755 265.42 Q213.584 261.856 213.584 254.749 Q213.584 247.62 211.755 244.078 Q209.95 240.513 206.315 240.513 M206.315 236.81 Q212.126 236.81 215.181 241.416 Q218.26 245.999 218.26 254.749 Q218.26 263.476 215.181 268.083 Q212.126 272.666 206.315 272.666 Q200.505 272.666 197.427 268.083 Q194.371 263.476 194.371 254.749 Q194.371 245.999 197.427 241.416 Q200.505 236.81 206.315 236.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip112)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 313.651,619.454 320.696,954.748 327.742,626.225 334.787,769.064 341.832,775.292 348.877,860.97 355.923,830.447 362.968,756.769 370.013,763.085 377.058,848.654 \n",
" 384.104,738.711 391.149,922.128 398.194,793.574 405.239,998.011 412.285,868.572 419.33,761.94 426.375,957.219 433.42,736.243 440.466,894.561 447.511,717.177 \n",
" 454.556,692.875 461.601,583.298 468.647,848.797 475.692,873.666 482.737,818.241 489.782,849.28 496.827,855.691 503.873,899.897 510.918,964.386 517.963,767.617 \n",
" 525.008,780.441 532.054,812.221 539.099,1180.66 546.144,878.412 553.189,1087.33 560.235,1206.75 567.28,700.787 574.325,946.203 581.37,834.152 588.416,672.169 \n",
" 595.461,1168.48 602.506,1445.72 609.551,653.719 616.597,988.703 623.642,1260.66 630.687,1389.41 637.732,1070.68 644.778,456.981 651.823,705.81 658.868,706.71 \n",
" 665.913,691.3 672.959,580.243 680.004,87.9763 687.049,948.784 694.094,419.054 701.14,791.259 708.185,1079.34 715.23,1248.68 722.275,946.992 729.321,813.763 \n",
" 736.366,402.729 743.411,602.221 750.456,627.954 757.501,901.883 764.547,680.48 771.592,1028.12 778.637,583.622 785.682,769.26 792.728,908.684 799.773,666.567 \n",
" 806.818,864.309 813.863,938.502 820.909,902.662 827.954,649.932 834.999,828.011 842.044,622.696 849.09,769.597 856.135,726.488 863.18,1031.06 870.225,820.557 \n",
" 877.271,594.79 884.316,634.189 891.361,827.184 898.406,827.225 905.452,1007.21 912.497,733.539 919.542,777.07 926.587,620.483 933.633,742.417 940.678,812.902 \n",
" 947.723,926.11 954.768,615.507 961.814,563.898 968.859,710.549 975.904,577.751 982.949,939.484 989.995,765.614 997.04,679.357 1004.08,707.007 1011.13,773.111 \n",
" 1018.18,773.208 1025.22,669.74 1032.27,805.869 1039.31,825.214 1046.36,1047.28 1053.4,978.732 1060.45,1042.93 1067.49,382.756 1074.54,858.706 1081.58,812.492 \n",
" 1088.63,812.496 1095.67,825.773 1102.72,772.717 1109.76,858.961 1116.81,919.545 1123.85,672.254 1130.9,1020.44 1137.94,778.819 1144.99,894.027 1152.04,765.093 \n",
" 1159.08,751.735 1166.13,631.746 1173.17,845.808 1180.22,906.354 1187.26,1037.08 1194.31,951.14 1201.35,544.385 1208.4,867.241 1215.44,642.963 1222.49,866.677 \n",
" 1229.53,846.595 1236.58,792.277 1243.62,751.668 1250.67,887.271 1257.71,765.093 1264.76,860.271 1271.8,956.873 1278.85,875.197 1285.89,1109.05 1292.94,635.625 \n",
" 1299.99,562.217 1307.03,812.757 1314.08,833.462 1321.12,812.778 1328.17,532.837 1335.21,685.177 1342.26,666.712 1349.3,825.642 1356.35,898.612 1363.39,799.219 \n",
" 1370.44,779.308 1377.48,919.201 1384.53,752.391 1391.57,785.882 1398.62,706.472 1405.66,792.684 1412.71,878.586 1419.75,885.747 1426.8,739.264 1433.84,785.966 \n",
" 1440.89,746.374 1447.94,766.384 1454.98,898.224 1462.03,845.688 1469.07,726.375 1476.12,932.001 1483.16,659.954 1490.21,720.546 1497.25,721.201 1504.3,877.469 \n",
" 1511.34,773.266 1518.39,845.005 1525.43,760.225 1532.48,818.891 1539.52,910.603 1546.57,759.926 1553.61,611.11 1560.66,741.707 1567.7,1045.16 1574.75,904.378 \n",
" 1581.79,622.692 1588.84,747.631 1595.89,792.969 1602.93,748.005 1609.98,876.634 1617.02,825.248 1624.07,773.591 1631.11,844.615 1638.16,877.258 1645.2,903.969 \n",
" 1652.25,662.286 1659.29,883.955 1666.34,734.269 1673.38,929.836 1680.43,760.035 1687.47,851.703 1694.52,812.433 1701.56,845.331 1708.61,792.7 1715.65,1031.92 \n",
" 1722.7,612.769 1729.75,674.64 1736.79,663.299 1743.84,741.669 1750.88,659.613 1757.93,680.249 1764.97,626.225 1772.02,818.165 1779.06,954.498 1786.11,620.395 \n",
" 1793.15,787.492 1800.2,891.892 1807.24,787.379 1814.29,793.56 1821.33,592.65 1828.38,787.784 1835.42,697.975 1842.47,776.085 1849.51,1016.07 1856.56,703.272 \n",
" 1863.6,775.874 1870.65,775.956 1877.7,811.845 1884.74,895.903 1891.79,811.898 1898.83,679.958 1905.88,817.799 1912.92,787.979 1919.97,740.521 1927.01,865.261 \n",
" 1934.06,770.196 1941.1,776.229 1948.15,799.951 1955.19,835.493 1962.24,985.305 1969.28,715.786 1976.33,793.914 1983.37,740.344 1990.42,693.599 1997.46,870.729 \n",
" 2004.51,817.703 2011.55,770.406 2018.6,618.636 2025.65,633.18 2032.69,805.869 2039.74,697.882 2046.78,976.862 2053.83,731.447 2060.87,863.073 2067.92,742.962 \n",
" 2074.96,828.703 2082.01,771.636 2089.05,868.712 2096.1,743.027 2103.14,949.215 2110.19,992.114 2117.23,683.292 2124.28,684.64 2131.32,646.277 2138.37,460.499 \n",
" 2145.41,971.633 2152.46,1036.52 2159.5,564.088 2166.55,728.281 2173.6,533.141 2180.64,957.765 2187.69,789.494 2194.73,718.944 2201.78,719.625 2208.82,789.773 \n",
" 2215.87,805.869 2222.91,779.095 2229.96,854.11 2237,789.765 2244.05,821.973 2251.09,784.403 2258.14,704.47 2265.18,805.869 2272.23,869.802 2279.27,924.052 \n",
" 2286.32,1057.15 2293.36,473.872 \n",
" \"/>\n",
"<path clip-path=\"url(#clip110)\" d=\"\n",
"M1889.22 216.178 L2282.81 216.178 L2282.81 95.2176 L1889.22 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1889.22,216.178 2282.81,216.178 2282.81,95.2176 1889.22,95.2176 1889.22,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip110)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1912.54,155.698 2052.44,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip110)\" d=\"M2075.76 136.959 L2080.02 136.959 L2080.02 172.978 L2075.76 172.978 L2075.76 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2098.97 150.038 Q2095.55 150.038 2093.56 152.723 Q2091.57 155.385 2091.57 160.038 Q2091.57 164.691 2093.53 167.376 Q2095.53 170.038 2098.97 170.038 Q2102.38 170.038 2104.37 167.353 Q2106.36 164.667 2106.36 160.038 Q2106.36 155.431 2104.37 152.746 Q2102.38 150.038 2098.97 150.038 M2098.97 146.427 Q2104.53 146.427 2107.7 150.038 Q2110.87 153.649 2110.87 160.038 Q2110.87 166.404 2107.7 170.038 Q2104.53 173.649 2098.97 173.649 Q2093.4 173.649 2090.22 170.038 Q2087.08 166.404 2087.08 160.038 Q2087.08 153.649 2090.22 150.038 Q2093.4 146.427 2098.97 146.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2134.99 159.714 Q2134.99 155.084 2133.07 152.538 Q2131.17 149.992 2127.72 149.992 Q2124.3 149.992 2122.38 152.538 Q2120.48 155.084 2120.48 159.714 Q2120.48 164.32 2122.38 166.866 Q2124.3 169.413 2127.72 169.413 Q2131.17 169.413 2133.07 166.866 Q2134.99 164.32 2134.99 159.714 M2139.25 169.76 Q2139.25 176.38 2136.31 179.598 Q2133.37 182.839 2127.31 182.839 Q2125.06 182.839 2123.07 182.491 Q2121.08 182.167 2119.21 181.473 L2119.21 177.329 Q2121.08 178.348 2122.91 178.834 Q2124.74 179.32 2126.64 179.32 Q2130.83 179.32 2132.91 177.121 Q2134.99 174.945 2134.99 170.524 L2134.99 168.417 Q2133.67 170.709 2131.61 171.843 Q2129.55 172.978 2126.68 172.978 Q2121.91 172.978 2119 169.343 Q2116.08 165.709 2116.08 159.714 Q2116.08 153.695 2119 150.061 Q2121.91 146.427 2126.68 146.427 Q2129.55 146.427 2131.61 147.561 Q2133.67 148.695 2134.99 150.987 L2134.99 147.052 L2139.25 147.052 L2139.25 169.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2180.15 150.987 L2180.15 136.959 L2184.41 136.959 L2184.41 172.978 L2180.15 172.978 L2180.15 169.089 Q2178.81 171.403 2176.75 172.538 Q2174.71 173.649 2171.84 173.649 Q2167.15 173.649 2164.18 169.899 Q2161.24 166.149 2161.24 160.038 Q2161.24 153.927 2164.18 150.177 Q2167.15 146.427 2171.84 146.427 Q2174.71 146.427 2176.75 147.561 Q2178.81 148.672 2180.15 150.987 M2165.64 160.038 Q2165.64 164.737 2167.56 167.422 Q2169.51 170.084 2172.89 170.084 Q2176.27 170.084 2178.21 167.422 Q2180.15 164.737 2180.15 160.038 Q2180.15 155.339 2178.21 152.677 Q2176.27 149.992 2172.89 149.992 Q2169.51 149.992 2167.56 152.677 Q2165.64 155.339 2165.64 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2193.19 147.052 L2197.45 147.052 L2197.45 172.978 L2193.19 172.978 L2193.19 147.052 M2193.19 136.959 L2197.45 136.959 L2197.45 142.353 L2193.19 142.353 L2193.19 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2219.48 136.959 L2219.48 140.501 L2215.41 140.501 Q2213.12 140.501 2212.21 141.427 Q2211.33 142.353 2211.33 144.76 L2211.33 147.052 L2218.35 147.052 L2218.35 150.362 L2211.33 150.362 L2211.33 172.978 L2207.05 172.978 L2207.05 150.362 L2202.98 150.362 L2202.98 147.052 L2207.05 147.052 L2207.05 145.246 Q2207.05 140.918 2209.07 138.95 Q2211.08 136.959 2215.46 136.959 L2219.48 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2236.17 136.959 L2236.17 140.501 L2232.1 140.501 Q2229.81 140.501 2228.9 141.427 Q2228.02 142.353 2228.02 144.76 L2228.02 147.052 L2235.04 147.052 L2235.04 150.362 L2228.02 150.362 L2228.02 172.978 L2223.74 172.978 L2223.74 150.362 L2219.67 150.362 L2219.67 147.052 L2223.74 147.052 L2223.74 145.246 Q2223.74 140.918 2225.76 138.95 Q2227.77 136.959 2232.15 136.959 L2236.17 136.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 62,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"X = diff( log.( df.\"Adj Close\" ) )\n",
"plot(X, label=\"log diff\")"
]
},
{
"cell_type": "code",
"execution_count": 63,
"id": "75608d59",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"ar(1, [0.00044261977058751947, 0.11699406772229867], 0.00019312264567949696)"
]
},
"execution_count": 63,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"fit!(m, X)\n",
"m"
]
},
{
"cell_type": "code",
"execution_count": 64,
"id": "698da8ce",
"metadata": {},
"outputs": [],
"source": [
"# 条件付き期待値で各予測値を計算\n",
"pre = [ conditional_expectation( m, X[1:i], length_pre=1 ) for i in 1:length(X)-1 ];"
]
},
{
"cell_type": "code",
"execution_count": 65,
"id": "da84a007",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip150\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip150)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip151\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip150)\" d=\"\n",
"M254.422 1486.45 L2352.76 1486.45 L2352.76 47.2441 L254.422 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip152\">\n",
" <rect x=\"254\" y=\"47\" width=\"2099\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 306.739,1486.45 306.739,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 660.232,1486.45 660.232,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1013.72,1486.45 1013.72,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1367.22,1486.45 1367.22,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1720.71,1486.45 1720.71,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2074.2,1486.45 2074.2,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 306.739,1486.45 306.739,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 660.232,1486.45 660.232,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1013.72,1486.45 1013.72,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1367.22,1486.45 1367.22,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1720.71,1486.45 1720.71,1469.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2074.2,1486.45 2074.2,1469.18 \n",
" \"/>\n",
"<path clip-path=\"url(#clip150)\" d=\"M306.739 1515.64 Q303.128 1515.64 301.299 1519.2 Q299.493 1522.75 299.493 1529.87 Q299.493 1536.98 301.299 1540.55 Q303.128 1544.09 306.739 1544.09 Q310.373 1544.09 312.179 1540.55 Q314.007 1536.98 314.007 1529.87 Q314.007 1522.75 312.179 1519.2 Q310.373 1515.64 306.739 1515.64 M306.739 1511.93 Q312.549 1511.93 315.604 1516.54 Q318.683 1521.12 318.683 1529.87 Q318.683 1538.6 315.604 1543.21 Q312.549 1547.79 306.739 1547.79 Q300.929 1547.79 297.85 1543.21 Q294.794 1538.6 294.794 1529.87 Q294.794 1521.12 297.85 1516.54 Q300.929 1511.93 306.739 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M634.931 1512.56 L653.287 1512.56 L653.287 1516.5 L639.213 1516.5 L639.213 1524.97 Q640.232 1524.62 641.25 1524.46 Q642.269 1524.27 643.287 1524.27 Q649.074 1524.27 652.454 1527.44 Q655.834 1530.62 655.834 1536.03 Q655.834 1541.61 652.361 1544.71 Q648.889 1547.79 642.57 1547.79 Q640.394 1547.79 638.125 1547.42 Q635.88 1547.05 633.473 1546.31 L633.473 1541.61 Q635.556 1542.74 637.778 1543.3 Q640 1543.86 642.477 1543.86 Q646.482 1543.86 648.82 1541.75 Q651.158 1539.64 651.158 1536.03 Q651.158 1532.42 648.82 1530.31 Q646.482 1528.21 642.477 1528.21 Q640.602 1528.21 638.727 1528.62 Q636.875 1529.04 634.931 1529.92 L634.931 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M675.046 1515.64 Q671.435 1515.64 669.607 1519.2 Q667.801 1522.75 667.801 1529.87 Q667.801 1536.98 669.607 1540.55 Q671.435 1544.09 675.046 1544.09 Q678.681 1544.09 680.486 1540.55 Q682.315 1536.98 682.315 1529.87 Q682.315 1522.75 680.486 1519.2 Q678.681 1515.64 675.046 1515.64 M675.046 1511.93 Q680.857 1511.93 683.912 1516.54 Q686.991 1521.12 686.991 1529.87 Q686.991 1538.6 683.912 1543.21 Q680.857 1547.79 675.046 1547.79 Q669.236 1547.79 666.158 1543.21 Q663.102 1538.6 663.102 1529.87 Q663.102 1521.12 666.158 1516.54 Q669.236 1511.93 675.046 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M973.331 1543.18 L980.97 1543.18 L980.97 1516.82 L972.66 1518.49 L972.66 1514.23 L980.924 1512.56 L985.6 1512.56 L985.6 1543.18 L993.239 1543.18 L993.239 1547.12 L973.331 1547.12 L973.331 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1012.68 1515.64 Q1009.07 1515.64 1007.24 1519.2 Q1005.44 1522.75 1005.44 1529.87 Q1005.44 1536.98 1007.24 1540.55 Q1009.07 1544.09 1012.68 1544.09 Q1016.32 1544.09 1018.12 1540.55 Q1019.95 1536.98 1019.95 1529.87 Q1019.95 1522.75 1018.12 1519.2 Q1016.32 1515.64 1012.68 1515.64 M1012.68 1511.93 Q1018.49 1511.93 1021.55 1516.54 Q1024.63 1521.12 1024.63 1529.87 Q1024.63 1538.6 1021.55 1543.21 Q1018.49 1547.79 1012.68 1547.79 Q1006.87 1547.79 1003.79 1543.21 Q1000.74 1538.6 1000.74 1529.87 Q1000.74 1521.12 1003.79 1516.54 Q1006.87 1511.93 1012.68 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1042.84 1515.64 Q1039.23 1515.64 1037.41 1519.2 Q1035.6 1522.75 1035.6 1529.87 Q1035.6 1536.98 1037.41 1540.55 Q1039.23 1544.09 1042.84 1544.09 Q1046.48 1544.09 1048.28 1540.55 Q1050.11 1536.98 1050.11 1529.87 Q1050.11 1522.75 1048.28 1519.2 Q1046.48 1515.64 1042.84 1515.64 M1042.84 1511.93 Q1048.65 1511.93 1051.71 1516.54 Q1054.79 1521.12 1054.79 1529.87 Q1054.79 1538.6 1051.71 1543.21 Q1048.65 1547.79 1042.84 1547.79 Q1037.03 1547.79 1033.96 1543.21 Q1030.9 1538.6 1030.9 1529.87 Q1030.9 1521.12 1033.96 1516.54 Q1037.03 1511.93 1042.84 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1326.82 1543.18 L1334.46 1543.18 L1334.46 1516.82 L1326.15 1518.49 L1326.15 1514.23 L1334.42 1512.56 L1339.09 1512.56 L1339.09 1543.18 L1346.73 1543.18 L1346.73 1547.12 L1326.82 1547.12 L1326.82 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1356.22 1512.56 L1374.58 1512.56 L1374.58 1516.5 L1360.5 1516.5 L1360.5 1524.97 Q1361.52 1524.62 1362.54 1524.46 Q1363.56 1524.27 1364.58 1524.27 Q1370.37 1524.27 1373.75 1527.44 Q1377.12 1530.62 1377.12 1536.03 Q1377.12 1541.61 1373.65 1544.71 Q1370.18 1547.79 1363.86 1547.79 Q1361.69 1547.79 1359.42 1547.42 Q1357.17 1547.05 1354.76 1546.31 L1354.76 1541.61 Q1356.85 1542.74 1359.07 1543.3 Q1361.29 1543.86 1363.77 1543.86 Q1367.77 1543.86 1370.11 1541.75 Q1372.45 1539.64 1372.45 1536.03 Q1372.45 1532.42 1370.11 1530.31 Q1367.77 1528.21 1363.77 1528.21 Q1361.89 1528.21 1360.02 1528.62 Q1358.17 1529.04 1356.22 1529.92 L1356.22 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1396.34 1515.64 Q1392.73 1515.64 1390.9 1519.2 Q1389.09 1522.75 1389.09 1529.87 Q1389.09 1536.98 1390.9 1540.55 Q1392.73 1544.09 1396.34 1544.09 Q1399.97 1544.09 1401.78 1540.55 Q1403.61 1536.98 1403.61 1529.87 Q1403.61 1522.75 1401.78 1519.2 Q1399.97 1515.64 1396.34 1515.64 M1396.34 1511.93 Q1402.15 1511.93 1405.2 1516.54 Q1408.28 1521.12 1408.28 1529.87 Q1408.28 1538.6 1405.2 1543.21 Q1402.15 1547.79 1396.34 1547.79 Q1390.53 1547.79 1387.45 1543.21 Q1384.39 1538.6 1384.39 1529.87 Q1384.39 1521.12 1387.45 1516.54 Q1390.53 1511.93 1396.34 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1684.4 1543.18 L1700.72 1543.18 L1700.72 1547.12 L1678.78 1547.12 L1678.78 1543.18 Q1681.44 1540.43 1686.02 1535.8 Q1690.63 1531.15 1691.81 1529.81 Q1694.06 1527.28 1694.94 1525.55 Q1695.84 1523.79 1695.84 1522.1 Q1695.84 1519.34 1693.89 1517.61 Q1691.97 1515.87 1688.87 1515.87 Q1686.67 1515.87 1684.22 1516.63 Q1681.79 1517.4 1679.01 1518.95 L1679.01 1514.23 Q1681.83 1513.09 1684.29 1512.51 Q1686.74 1511.93 1688.78 1511.93 Q1694.15 1511.93 1697.34 1514.62 Q1700.54 1517.31 1700.54 1521.8 Q1700.54 1523.93 1699.73 1525.85 Q1698.94 1527.74 1696.83 1530.34 Q1696.25 1531.01 1693.15 1534.23 Q1690.05 1537.42 1684.4 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1720.54 1515.64 Q1716.93 1515.64 1715.1 1519.2 Q1713.29 1522.75 1713.29 1529.87 Q1713.29 1536.98 1715.1 1540.55 Q1716.93 1544.09 1720.54 1544.09 Q1724.17 1544.09 1725.98 1540.55 Q1727.81 1536.98 1727.81 1529.87 Q1727.81 1522.75 1725.98 1519.2 Q1724.17 1515.64 1720.54 1515.64 M1720.54 1511.93 Q1726.35 1511.93 1729.4 1516.54 Q1732.48 1521.12 1732.48 1529.87 Q1732.48 1538.6 1729.4 1543.21 Q1726.35 1547.79 1720.54 1547.79 Q1714.73 1547.79 1711.65 1543.21 Q1708.59 1538.6 1708.59 1529.87 Q1708.59 1521.12 1711.65 1516.54 Q1714.73 1511.93 1720.54 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1750.7 1515.64 Q1747.09 1515.64 1745.26 1519.2 Q1743.45 1522.75 1743.45 1529.87 Q1743.45 1536.98 1745.26 1540.55 Q1747.09 1544.09 1750.7 1544.09 Q1754.33 1544.09 1756.14 1540.55 Q1757.97 1536.98 1757.97 1529.87 Q1757.97 1522.75 1756.14 1519.2 Q1754.33 1515.64 1750.7 1515.64 M1750.7 1511.93 Q1756.51 1511.93 1759.56 1516.54 Q1762.64 1521.12 1762.64 1529.87 Q1762.64 1538.6 1759.56 1543.21 Q1756.51 1547.79 1750.7 1547.79 Q1744.89 1547.79 1741.81 1543.21 Q1738.75 1538.6 1738.75 1529.87 Q1738.75 1521.12 1741.81 1516.54 Q1744.89 1511.93 1750.7 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2037.9 1543.18 L2054.22 1543.18 L2054.22 1547.12 L2032.27 1547.12 L2032.27 1543.18 Q2034.93 1540.43 2039.52 1535.8 Q2044.12 1531.15 2045.3 1529.81 Q2047.55 1527.28 2048.43 1525.55 Q2049.33 1523.79 2049.33 1522.1 Q2049.33 1519.34 2047.39 1517.61 Q2045.47 1515.87 2042.36 1515.87 Q2040.16 1515.87 2037.71 1516.63 Q2035.28 1517.4 2032.5 1518.95 L2032.5 1514.23 Q2035.33 1513.09 2037.78 1512.51 Q2040.23 1511.93 2042.27 1511.93 Q2047.64 1511.93 2050.84 1514.62 Q2054.03 1517.31 2054.03 1521.8 Q2054.03 1523.93 2053.22 1525.85 Q2052.43 1527.74 2050.33 1530.34 Q2049.75 1531.01 2046.65 1534.23 Q2043.54 1537.42 2037.9 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2064.08 1512.56 L2082.43 1512.56 L2082.43 1516.5 L2068.36 1516.5 L2068.36 1524.97 Q2069.38 1524.62 2070.4 1524.46 Q2071.41 1524.27 2072.43 1524.27 Q2078.22 1524.27 2081.6 1527.44 Q2084.98 1530.62 2084.98 1536.03 Q2084.98 1541.61 2081.51 1544.71 Q2078.03 1547.79 2071.72 1547.79 Q2069.54 1547.79 2067.27 1547.42 Q2065.03 1547.05 2062.62 1546.31 L2062.62 1541.61 Q2064.7 1542.74 2066.92 1543.3 Q2069.15 1543.86 2071.62 1543.86 Q2075.63 1543.86 2077.97 1541.75 Q2080.3 1539.64 2080.3 1536.03 Q2080.3 1532.42 2077.97 1530.31 Q2075.63 1528.21 2071.62 1528.21 Q2069.75 1528.21 2067.87 1528.62 Q2066.02 1529.04 2064.08 1529.92 L2064.08 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2104.19 1515.64 Q2100.58 1515.64 2098.75 1519.2 Q2096.95 1522.75 2096.95 1529.87 Q2096.95 1536.98 2098.75 1540.55 Q2100.58 1544.09 2104.19 1544.09 Q2107.83 1544.09 2109.63 1540.55 Q2111.46 1536.98 2111.46 1529.87 Q2111.46 1522.75 2109.63 1519.2 Q2107.83 1515.64 2104.19 1515.64 M2104.19 1511.93 Q2110 1511.93 2113.06 1516.54 Q2116.14 1521.12 2116.14 1529.87 Q2116.14 1538.6 2113.06 1543.21 Q2110 1547.79 2104.19 1547.79 Q2098.38 1547.79 2095.3 1543.21 Q2092.25 1538.6 2092.25 1529.87 Q2092.25 1521.12 2095.3 1516.54 Q2098.38 1511.93 2104.19 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,1412.89 2352.76,1412.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,1130.23 2352.76,1130.23 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,847.573 2352.76,847.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,564.915 2352.76,564.915 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 254.422,282.257 2352.76,282.257 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1486.45 254.422,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1412.89 279.602,1412.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,1130.23 279.602,1130.23 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,847.573 279.602,847.573 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,564.915 279.602,564.915 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.422,282.257 279.602,282.257 \n",
" \"/>\n",
"<path clip-path=\"url(#clip150)\" d=\"M50.9921 1413.34 L80.6679 1413.34 L80.6679 1417.27 L50.9921 1417.27 L50.9921 1413.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M100.76 1398.69 Q97.1493 1398.69 95.3206 1402.25 Q93.515 1405.79 93.515 1412.92 Q93.515 1420.03 95.3206 1423.59 Q97.1493 1427.14 100.76 1427.14 Q104.395 1427.14 106.2 1423.59 Q108.029 1420.03 108.029 1412.92 Q108.029 1405.79 106.2 1402.25 Q104.395 1398.69 100.76 1398.69 M100.76 1394.98 Q106.571 1394.98 109.626 1399.59 Q112.705 1404.17 112.705 1412.92 Q112.705 1421.65 109.626 1426.26 Q106.571 1430.84 100.76 1430.84 Q94.9502 1430.84 91.8715 1426.26 Q88.816 1421.65 88.816 1412.92 Q88.816 1404.17 91.8715 1399.59 Q94.9502 1394.98 100.76 1394.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M120.922 1424.29 L125.807 1424.29 L125.807 1430.17 L120.922 1430.17 L120.922 1424.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M145.992 1398.69 Q142.381 1398.69 140.552 1402.25 Q138.746 1405.79 138.746 1412.92 Q138.746 1420.03 140.552 1423.59 Q142.381 1427.14 145.992 1427.14 Q149.626 1427.14 151.431 1423.59 Q153.26 1420.03 153.26 1412.92 Q153.26 1405.79 151.431 1402.25 Q149.626 1398.69 145.992 1398.69 M145.992 1394.98 Q151.802 1394.98 154.857 1399.59 Q157.936 1404.17 157.936 1412.92 Q157.936 1421.65 154.857 1426.26 Q151.802 1430.84 145.992 1430.84 Q140.181 1430.84 137.103 1426.26 Q134.047 1421.65 134.047 1412.92 Q134.047 1404.17 137.103 1399.59 Q140.181 1394.98 145.992 1394.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M176.153 1398.69 Q172.542 1398.69 170.714 1402.25 Q168.908 1405.79 168.908 1412.92 Q168.908 1420.03 170.714 1423.59 Q172.542 1427.14 176.153 1427.14 Q179.788 1427.14 181.593 1423.59 Q183.422 1420.03 183.422 1412.92 Q183.422 1405.79 181.593 1402.25 Q179.788 1398.69 176.153 1398.69 M176.153 1394.98 Q181.964 1394.98 185.019 1399.59 Q188.098 1404.17 188.098 1412.92 Q188.098 1421.65 185.019 1426.26 Q181.964 1430.84 176.153 1430.84 Q170.343 1430.84 167.265 1426.26 Q164.209 1421.65 164.209 1412.92 Q164.209 1404.17 167.265 1399.59 Q170.343 1394.98 176.153 1394.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M206.894 1411.02 Q203.746 1411.02 201.894 1413.18 Q200.065 1415.33 200.065 1419.08 Q200.065 1422.81 201.894 1424.98 Q203.746 1427.14 206.894 1427.14 Q210.042 1427.14 211.871 1424.98 Q213.723 1422.81 213.723 1419.08 Q213.723 1415.33 211.871 1413.18 Q210.042 1411.02 206.894 1411.02 M216.176 1396.37 L216.176 1400.63 Q214.417 1399.8 212.612 1399.36 Q210.829 1398.92 209.07 1398.92 Q204.44 1398.92 201.987 1402.04 Q199.556 1405.17 199.209 1411.49 Q200.575 1409.47 202.635 1408.41 Q204.695 1407.32 207.172 1407.32 Q212.38 1407.32 215.389 1410.49 Q218.422 1413.64 218.422 1419.08 Q218.422 1424.4 215.274 1427.62 Q212.126 1430.84 206.894 1430.84 Q200.899 1430.84 197.727 1426.26 Q194.556 1421.65 194.556 1412.92 Q194.556 1404.73 198.445 1399.87 Q202.334 1394.98 208.885 1394.98 Q210.644 1394.98 212.426 1395.33 Q214.232 1395.68 216.176 1396.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M51.8023 1130.68 L81.4781 1130.68 L81.4781 1134.62 L51.8023 1134.62 L51.8023 1130.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M101.571 1116.03 Q97.9595 1116.03 96.1308 1119.59 Q94.3252 1123.14 94.3252 1130.27 Q94.3252 1137.37 96.1308 1140.94 Q97.9595 1144.48 101.571 1144.48 Q105.205 1144.48 107.01 1140.94 Q108.839 1137.37 108.839 1130.27 Q108.839 1123.14 107.01 1119.59 Q105.205 1116.03 101.571 1116.03 M101.571 1112.33 Q107.381 1112.33 110.436 1116.93 Q113.515 1121.52 113.515 1130.27 Q113.515 1138.99 110.436 1143.6 Q107.381 1148.18 101.571 1148.18 Q95.7604 1148.18 92.6817 1143.6 Q89.6262 1138.99 89.6262 1130.27 Q89.6262 1121.52 92.6817 1116.93 Q95.7604 1112.33 101.571 1112.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M121.732 1141.63 L126.617 1141.63 L126.617 1147.51 L121.732 1147.51 L121.732 1141.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M146.802 1116.03 Q143.191 1116.03 141.362 1119.59 Q139.556 1123.14 139.556 1130.27 Q139.556 1137.37 141.362 1140.94 Q143.191 1144.48 146.802 1144.48 Q150.436 1144.48 152.242 1140.94 Q154.07 1137.37 154.07 1130.27 Q154.07 1123.14 152.242 1119.59 Q150.436 1116.03 146.802 1116.03 M146.802 1112.33 Q152.612 1112.33 155.667 1116.93 Q158.746 1121.52 158.746 1130.27 Q158.746 1138.99 155.667 1143.6 Q152.612 1148.18 146.802 1148.18 Q140.992 1148.18 137.913 1143.6 Q134.857 1138.99 134.857 1130.27 Q134.857 1121.52 137.913 1116.93 Q140.992 1112.33 146.802 1112.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M176.964 1116.03 Q173.353 1116.03 171.524 1119.59 Q169.718 1123.14 169.718 1130.27 Q169.718 1137.37 171.524 1140.94 Q173.353 1144.48 176.964 1144.48 Q180.598 1144.48 182.403 1140.94 Q184.232 1137.37 184.232 1130.27 Q184.232 1123.14 182.403 1119.59 Q180.598 1116.03 176.964 1116.03 M176.964 1112.33 Q182.774 1112.33 185.829 1116.93 Q188.908 1121.52 188.908 1130.27 Q188.908 1138.99 185.829 1143.6 Q182.774 1148.18 176.964 1148.18 Q171.154 1148.18 168.075 1143.6 Q165.019 1138.99 165.019 1130.27 Q165.019 1121.52 168.075 1116.93 Q171.154 1112.33 176.964 1112.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M211.292 1128.88 Q214.649 1129.59 216.524 1131.86 Q218.422 1134.13 218.422 1137.46 Q218.422 1142.58 214.903 1145.38 Q211.385 1148.18 204.903 1148.18 Q202.727 1148.18 200.413 1147.74 Q198.121 1147.33 195.667 1146.47 L195.667 1141.95 Q197.612 1143.09 199.927 1143.67 Q202.241 1144.25 204.764 1144.25 Q209.163 1144.25 211.454 1142.51 Q213.769 1140.77 213.769 1137.46 Q213.769 1134.41 211.616 1132.7 Q209.487 1130.96 205.667 1130.96 L201.639 1130.96 L201.639 1127.12 L205.852 1127.12 Q209.301 1127.12 211.13 1125.75 Q212.959 1124.36 212.959 1121.77 Q212.959 1119.11 211.061 1117.7 Q209.186 1116.26 205.667 1116.26 Q203.746 1116.26 201.547 1116.68 Q199.348 1117.09 196.709 1117.97 L196.709 1113.81 Q199.371 1113.07 201.686 1112.7 Q204.024 1112.33 206.084 1112.33 Q211.408 1112.33 214.51 1114.76 Q217.612 1117.16 217.612 1121.28 Q217.612 1124.15 215.968 1126.14 Q214.325 1128.11 211.292 1128.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M100.922 833.371 Q97.3113 833.371 95.4826 836.936 Q93.6771 840.478 93.6771 847.607 Q93.6771 854.714 95.4826 858.279 Q97.3113 861.82 100.922 861.82 Q104.557 861.82 106.362 858.279 Q108.191 854.714 108.191 847.607 Q108.191 840.478 106.362 836.936 Q104.557 833.371 100.922 833.371 M100.922 829.668 Q106.733 829.668 109.788 834.274 Q112.867 838.857 112.867 847.607 Q112.867 856.334 109.788 860.941 Q106.733 865.524 100.922 865.524 Q95.1123 865.524 92.0336 860.941 Q88.978 856.334 88.978 847.607 Q88.978 838.857 92.0336 834.274 Q95.1123 829.668 100.922 829.668 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M121.084 858.973 L125.969 858.973 L125.969 864.853 L121.084 864.853 L121.084 858.973 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M146.154 833.371 Q142.543 833.371 140.714 836.936 Q138.908 840.478 138.908 847.607 Q138.908 854.714 140.714 858.279 Q142.543 861.82 146.154 861.82 Q149.788 861.82 151.593 858.279 Q153.422 854.714 153.422 847.607 Q153.422 840.478 151.593 836.936 Q149.788 833.371 146.154 833.371 M146.154 829.668 Q151.964 829.668 155.019 834.274 Q158.098 838.857 158.098 847.607 Q158.098 856.334 155.019 860.941 Q151.964 865.524 146.154 865.524 Q140.343 865.524 137.265 860.941 Q134.209 856.334 134.209 847.607 Q134.209 838.857 137.265 834.274 Q140.343 829.668 146.154 829.668 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M176.316 833.371 Q172.704 833.371 170.876 836.936 Q169.07 840.478 169.07 847.607 Q169.07 854.714 170.876 858.279 Q172.704 861.82 176.316 861.82 Q179.95 861.82 181.755 858.279 Q183.584 854.714 183.584 847.607 Q183.584 840.478 181.755 836.936 Q179.95 833.371 176.316 833.371 M176.316 829.668 Q182.126 829.668 185.181 834.274 Q188.26 838.857 188.26 847.607 Q188.26 856.334 185.181 860.941 Q182.126 865.524 176.316 865.524 Q170.505 865.524 167.427 860.941 Q164.371 856.334 164.371 847.607 Q164.371 838.857 167.427 834.274 Q170.505 829.668 176.316 829.668 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M206.477 833.371 Q202.866 833.371 201.038 836.936 Q199.232 840.478 199.232 847.607 Q199.232 854.714 201.038 858.279 Q202.866 861.82 206.477 861.82 Q210.112 861.82 211.917 858.279 Q213.746 854.714 213.746 847.607 Q213.746 840.478 211.917 836.936 Q210.112 833.371 206.477 833.371 M206.477 829.668 Q212.288 829.668 215.343 834.274 Q218.422 838.857 218.422 847.607 Q218.422 856.334 215.343 860.941 Q212.288 865.524 206.477 865.524 Q200.667 865.524 197.589 860.941 Q194.533 856.334 194.533 847.607 Q194.533 838.857 197.589 834.274 Q200.667 829.668 206.477 829.668 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M101.571 550.713 Q97.9595 550.713 96.1308 554.278 Q94.3252 557.82 94.3252 564.95 Q94.3252 572.056 96.1308 575.621 Q97.9595 579.162 101.571 579.162 Q105.205 579.162 107.01 575.621 Q108.839 572.056 108.839 564.95 Q108.839 557.82 107.01 554.278 Q105.205 550.713 101.571 550.713 M101.571 547.01 Q107.381 547.01 110.436 551.616 Q113.515 556.2 113.515 564.95 Q113.515 573.676 110.436 578.283 Q107.381 582.866 101.571 582.866 Q95.7604 582.866 92.6817 578.283 Q89.6262 573.676 89.6262 564.95 Q89.6262 556.2 92.6817 551.616 Q95.7604 547.01 101.571 547.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M121.732 576.315 L126.617 576.315 L126.617 582.195 L121.732 582.195 L121.732 576.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M146.802 550.713 Q143.191 550.713 141.362 554.278 Q139.556 557.82 139.556 564.95 Q139.556 572.056 141.362 575.621 Q143.191 579.162 146.802 579.162 Q150.436 579.162 152.242 575.621 Q154.07 572.056 154.07 564.95 Q154.07 557.82 152.242 554.278 Q150.436 550.713 146.802 550.713 M146.802 547.01 Q152.612 547.01 155.667 551.616 Q158.746 556.2 158.746 564.95 Q158.746 573.676 155.667 578.283 Q152.612 582.866 146.802 582.866 Q140.992 582.866 137.913 578.283 Q134.857 573.676 134.857 564.95 Q134.857 556.2 137.913 551.616 Q140.992 547.01 146.802 547.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M176.964 550.713 Q173.353 550.713 171.524 554.278 Q169.718 557.82 169.718 564.95 Q169.718 572.056 171.524 575.621 Q173.353 579.162 176.964 579.162 Q180.598 579.162 182.403 575.621 Q184.232 572.056 184.232 564.95 Q184.232 557.82 182.403 554.278 Q180.598 550.713 176.964 550.713 M176.964 547.01 Q182.774 547.01 185.829 551.616 Q188.908 556.2 188.908 564.95 Q188.908 573.676 185.829 578.283 Q182.774 582.866 176.964 582.866 Q171.154 582.866 168.075 578.283 Q165.019 573.676 165.019 564.95 Q165.019 556.2 168.075 551.616 Q171.154 547.01 176.964 547.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M211.292 563.561 Q214.649 564.278 216.524 566.547 Q218.422 568.815 218.422 572.149 Q218.422 577.264 214.903 580.065 Q211.385 582.866 204.903 582.866 Q202.727 582.866 200.413 582.426 Q198.121 582.01 195.667 581.153 L195.667 576.639 Q197.612 577.774 199.927 578.352 Q202.241 578.931 204.764 578.931 Q209.163 578.931 211.454 577.195 Q213.769 575.459 213.769 572.149 Q213.769 569.093 211.616 567.38 Q209.487 565.644 205.667 565.644 L201.639 565.644 L201.639 561.801 L205.852 561.801 Q209.301 561.801 211.13 560.436 Q212.959 559.047 212.959 556.454 Q212.959 553.792 211.061 552.38 Q209.186 550.945 205.667 550.945 Q203.746 550.945 201.547 551.362 Q199.348 551.778 196.709 552.658 L196.709 548.491 Q199.371 547.751 201.686 547.38 Q204.024 547.01 206.084 547.01 Q211.408 547.01 214.51 549.44 Q217.612 551.848 217.612 555.968 Q217.612 558.838 215.968 560.829 Q214.325 562.797 211.292 563.561 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M100.76 268.056 Q97.1493 268.056 95.3206 271.62 Q93.515 275.162 93.515 282.292 Q93.515 289.398 95.3206 292.963 Q97.1493 296.505 100.76 296.505 Q104.395 296.505 106.2 292.963 Q108.029 289.398 108.029 282.292 Q108.029 275.162 106.2 271.62 Q104.395 268.056 100.76 268.056 M100.76 264.352 Q106.571 264.352 109.626 268.958 Q112.705 273.542 112.705 282.292 Q112.705 291.019 109.626 295.625 Q106.571 300.208 100.76 300.208 Q94.9502 300.208 91.8715 295.625 Q88.816 291.019 88.816 282.292 Q88.816 273.542 91.8715 268.958 Q94.9502 264.352 100.76 264.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M120.922 293.657 L125.807 293.657 L125.807 299.537 L120.922 299.537 L120.922 293.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M145.992 268.056 Q142.381 268.056 140.552 271.62 Q138.746 275.162 138.746 282.292 Q138.746 289.398 140.552 292.963 Q142.381 296.505 145.992 296.505 Q149.626 296.505 151.431 292.963 Q153.26 289.398 153.26 282.292 Q153.26 275.162 151.431 271.62 Q149.626 268.056 145.992 268.056 M145.992 264.352 Q151.802 264.352 154.857 268.958 Q157.936 273.542 157.936 282.292 Q157.936 291.019 154.857 295.625 Q151.802 300.208 145.992 300.208 Q140.181 300.208 137.103 295.625 Q134.047 291.019 134.047 282.292 Q134.047 273.542 137.103 268.958 Q140.181 264.352 145.992 264.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M176.153 268.056 Q172.542 268.056 170.714 271.62 Q168.908 275.162 168.908 282.292 Q168.908 289.398 170.714 292.963 Q172.542 296.505 176.153 296.505 Q179.788 296.505 181.593 292.963 Q183.422 289.398 183.422 282.292 Q183.422 275.162 181.593 271.62 Q179.788 268.056 176.153 268.056 M176.153 264.352 Q181.964 264.352 185.019 268.958 Q188.098 273.542 188.098 282.292 Q188.098 291.019 185.019 295.625 Q181.964 300.208 176.153 300.208 Q170.343 300.208 167.265 295.625 Q164.209 291.019 164.209 282.292 Q164.209 273.542 167.265 268.958 Q170.343 264.352 176.153 264.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M206.894 280.394 Q203.746 280.394 201.894 282.546 Q200.065 284.699 200.065 288.449 Q200.065 292.176 201.894 294.352 Q203.746 296.505 206.894 296.505 Q210.042 296.505 211.871 294.352 Q213.723 292.176 213.723 288.449 Q213.723 284.699 211.871 282.546 Q210.042 280.394 206.894 280.394 M216.176 265.741 L216.176 270 Q214.417 269.167 212.612 268.727 Q210.829 268.287 209.07 268.287 Q204.44 268.287 201.987 271.412 Q199.556 274.537 199.209 280.857 Q200.575 278.843 202.635 277.778 Q204.695 276.69 207.172 276.69 Q212.38 276.69 215.389 279.861 Q218.422 283.009 218.422 288.449 Q218.422 293.773 215.274 296.991 Q212.126 300.208 206.894 300.208 Q200.899 300.208 197.727 295.625 Q194.556 291.019 194.556 282.292 Q194.556 274.097 198.445 269.236 Q202.334 264.352 208.885 264.352 Q210.644 264.352 212.426 264.699 Q214.232 265.046 216.176 265.741 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip152)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 313.809,619.454 320.878,954.748 327.948,626.225 335.018,769.064 342.088,775.292 349.158,860.97 356.228,830.447 363.298,756.769 370.367,763.085 377.437,848.654 \n",
" 384.507,738.711 391.577,922.128 398.647,793.574 405.717,998.011 412.787,868.572 419.856,761.94 426.926,957.219 433.996,736.243 441.066,894.561 448.136,717.177 \n",
" 455.206,692.875 462.276,583.298 469.345,848.797 476.415,873.666 483.485,818.241 490.555,849.28 497.625,855.691 504.695,899.897 511.765,964.386 518.835,767.617 \n",
" 525.904,780.441 532.974,812.221 540.044,1180.66 547.114,878.412 554.184,1087.33 561.254,1206.75 568.324,700.787 575.393,946.203 582.463,834.152 589.533,672.169 \n",
" 596.603,1168.48 603.673,1445.72 610.743,653.719 617.813,988.703 624.882,1260.66 631.952,1389.41 639.022,1070.68 646.092,456.981 653.162,705.81 660.232,706.71 \n",
" 667.302,691.3 674.371,580.243 681.441,87.9763 688.511,948.784 695.581,419.054 702.651,791.259 709.721,1079.34 716.791,1248.68 723.86,946.992 730.93,813.763 \n",
" 738,402.729 745.07,602.221 752.14,627.954 759.21,901.883 766.28,680.48 773.349,1028.12 780.419,583.622 787.489,769.26 794.559,908.684 801.629,666.567 \n",
" 808.699,864.309 815.769,938.502 822.838,902.662 829.908,649.932 836.978,828.011 844.048,622.696 851.118,769.597 858.188,726.488 865.258,1031.06 872.327,820.557 \n",
" 879.397,594.79 886.467,634.189 893.537,827.184 900.607,827.225 907.677,1007.21 914.747,733.539 921.816,777.07 928.886,620.483 935.956,742.417 943.026,812.902 \n",
" 950.096,926.11 957.166,615.507 964.236,563.898 971.305,710.549 978.375,577.751 985.445,939.484 992.515,765.614 999.585,679.357 1006.65,707.007 1013.72,773.111 \n",
" 1020.79,773.208 1027.86,669.74 1034.93,805.869 1042,825.214 1049.07,1047.28 1056.14,978.732 1063.21,1042.93 1070.28,382.756 1077.35,858.706 1084.42,812.492 \n",
" 1091.49,812.496 1098.56,825.773 1105.63,772.717 1112.7,858.961 1119.77,919.545 1126.84,672.254 1133.91,1020.44 1140.98,778.819 1148.05,894.027 1155.12,765.093 \n",
" 1162.19,751.735 1169.26,631.746 1176.33,845.808 1183.4,906.354 1190.47,1037.08 1197.54,951.14 1204.61,544.385 1211.68,867.241 1218.75,642.963 1225.82,866.677 \n",
" 1232.89,846.595 1239.96,792.277 1247.03,751.668 1254.1,887.271 1261.17,765.093 1268.24,860.271 1275.31,956.873 1282.38,875.197 1289.45,1109.05 1296.52,635.625 \n",
" 1303.59,562.217 1310.66,812.757 1317.73,833.462 1324.8,812.778 1331.87,532.837 1338.94,685.177 1346.01,666.712 1353.08,825.642 1360.15,898.612 1367.22,799.219 \n",
" 1374.29,779.308 1381.36,919.201 1388.43,752.391 1395.5,785.882 1402.57,706.472 1409.64,792.684 1416.71,878.586 1423.78,885.747 1430.85,739.264 1437.92,785.966 \n",
" 1444.99,746.374 1452.06,766.384 1459.13,898.224 1466.2,845.688 1473.27,726.375 1480.34,932.001 1487.41,659.954 1494.48,720.546 1501.54,721.201 1508.61,877.469 \n",
" 1515.68,773.266 1522.75,845.005 1529.82,760.225 1536.89,818.891 1543.96,910.603 1551.03,759.926 1558.1,611.11 1565.17,741.707 1572.24,1045.16 1579.31,904.378 \n",
" 1586.38,622.692 1593.45,747.631 1600.52,792.969 1607.59,748.005 1614.66,876.634 1621.73,825.248 1628.8,773.591 1635.87,844.615 1642.94,877.258 1650.01,903.969 \n",
" 1657.08,662.286 1664.15,883.955 1671.22,734.269 1678.29,929.836 1685.36,760.035 1692.43,851.703 1699.5,812.433 1706.57,845.331 1713.64,792.7 1720.71,1031.92 \n",
" 1727.78,612.769 1734.85,674.64 1741.92,663.299 1748.99,741.669 1756.06,659.613 1763.13,680.249 1770.2,626.225 1777.27,818.165 1784.34,954.498 1791.41,620.395 \n",
" 1798.48,787.492 1805.55,891.892 1812.62,787.379 1819.69,793.56 1826.76,592.65 1833.83,787.784 1840.9,697.975 1847.97,776.085 1855.04,1016.07 1862.11,703.272 \n",
" 1869.18,775.874 1876.25,775.956 1883.32,811.845 1890.39,895.903 1897.46,811.898 1904.53,679.958 1911.6,817.799 1918.67,787.979 1925.74,740.521 1932.81,865.261 \n",
" 1939.88,770.196 1946.95,776.229 1954.02,799.951 1961.09,835.493 1968.16,985.305 1975.23,715.786 1982.3,793.914 1989.37,740.344 1996.44,693.599 2003.5,870.729 \n",
" 2010.57,817.703 2017.64,770.406 2024.71,618.636 2031.78,633.18 2038.85,805.869 2045.92,697.882 2052.99,976.862 2060.06,731.447 2067.13,863.073 2074.2,742.962 \n",
" 2081.27,828.703 2088.34,771.636 2095.41,868.712 2102.48,743.027 2109.55,949.215 2116.62,992.114 2123.69,683.292 2130.76,684.64 2137.83,646.277 2144.9,460.499 \n",
" 2151.97,971.633 2159.04,1036.52 2166.11,564.088 2173.18,728.281 2180.25,533.141 2187.32,957.765 2194.39,789.494 2201.46,718.944 2208.53,719.625 2215.6,789.773 \n",
" 2222.67,805.869 2229.74,779.095 2236.81,854.11 2243.88,789.765 2250.95,821.973 2258.02,784.403 2265.09,704.47 2272.16,805.869 2279.23,869.802 2286.3,924.052 \n",
" 2293.37,1057.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip150)\" d=\"\n",
"M1978.78 216.178 L2282.81 216.178 L2282.81 95.2176 L1978.78 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1978.78,216.178 2282.81,216.178 2282.81,95.2176 1978.78,95.2176 1978.78,216.178 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip150)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2002.1,155.698 2141.99,155.698 \n",
" \"/>\n",
"<path clip-path=\"url(#clip150)\" d=\"M2169.58 169.089 L2169.58 182.839 L2165.3 182.839 L2165.3 147.052 L2169.58 147.052 L2169.58 150.987 Q2170.93 148.672 2172.96 147.561 Q2175.02 146.427 2177.87 146.427 Q2182.59 146.427 2185.53 150.177 Q2188.5 153.927 2188.5 160.038 Q2188.5 166.149 2185.53 169.899 Q2182.59 173.649 2177.87 173.649 Q2175.02 173.649 2172.96 172.538 Q2170.93 171.403 2169.58 169.089 M2184.08 160.038 Q2184.08 155.339 2182.13 152.677 Q2180.21 149.992 2176.83 149.992 Q2173.45 149.992 2171.51 152.677 Q2169.58 155.339 2169.58 160.038 Q2169.58 164.737 2171.51 167.422 Q2173.45 170.084 2176.83 170.084 Q2180.21 170.084 2182.13 167.422 Q2184.08 164.737 2184.08 160.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2210.58 151.033 Q2209.86 150.617 2209.01 150.431 Q2208.17 150.223 2207.15 150.223 Q2203.54 150.223 2201.6 152.584 Q2199.68 154.922 2199.68 159.32 L2199.68 172.978 L2195.39 172.978 L2195.39 147.052 L2199.68 147.052 L2199.68 151.08 Q2201.02 148.718 2203.17 147.584 Q2205.33 146.427 2208.4 146.427 Q2208.84 146.427 2209.38 146.496 Q2209.91 146.543 2210.56 146.658 L2210.58 151.033 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2236.18 158.95 L2236.18 161.033 L2216.6 161.033 Q2216.88 165.431 2219.24 167.746 Q2221.62 170.038 2225.86 170.038 Q2228.31 170.038 2230.6 169.436 Q2232.92 168.834 2235.19 167.63 L2235.19 171.658 Q2232.89 172.63 2230.49 173.14 Q2228.08 173.649 2225.6 173.649 Q2219.4 173.649 2215.77 170.038 Q2212.15 166.427 2212.15 160.269 Q2212.15 153.904 2215.58 150.177 Q2219.03 146.427 2224.86 146.427 Q2230.09 146.427 2233.13 149.806 Q2236.18 153.163 2236.18 158.95 M2231.92 157.7 Q2231.88 154.205 2229.95 152.121 Q2228.06 150.038 2224.91 150.038 Q2221.34 150.038 2219.19 152.052 Q2217.06 154.066 2216.74 157.723 L2231.92 157.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 65,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"plot(pre, label=\"pre\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "31d4d014",
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"id": "ff48c304",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.6.0",
"language": "julia",
"name": "julia-1.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.6.0"
},
"toc": {
"base_numbering": 1,
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment