Skip to content

Instantly share code, notes, and snippets.

@genkuroki
Created September 22, 2020 21:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genkuroki/44c91b9f8018221aff6bb9ab626e3772 to your computer and use it in GitHub Desktop.
Save genkuroki/44c91b9f8018221aff6bb9ab626e3772 to your computer and use it in GitHub Desktop.
Parameters.jl @unpack example.ipynb
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "using Parameters",
"execution_count": 1,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "?@unpack",
"execution_count": 2,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 2,
"data": {
"text/plain": "\u001b[36m @unpack a, b, c, ... = dict_or_typeinstance\u001b[39m\n\n Unpack fields/properties/keys from a composite type, a \u001b[36mDict{Symbol}\u001b[39m, a\n \u001b[36mDict{String}\u001b[39m, or a module into variables.\n\n Example with dict:\n\n\u001b[36m d = Dict{Symbol,Any}(:a=>5.0,:b=>2,:c=>\"Hi!\")\u001b[39m\n\u001b[36m @unpack a, c = d\u001b[39m\n\u001b[36m a == 5.0 #true\u001b[39m\n\u001b[36m c == \"Hi!\" #true\u001b[39m\n\n Example with type:\n\n\u001b[36m struct A; a; b; c; end\u001b[39m\n\u001b[36m d = A(4,7.0,\"Hi\")\u001b[39m\n\u001b[36m @unpack a, c = d\u001b[39m\n\u001b[36m a == 4 #true\u001b[39m\n\u001b[36m c == \"Hi\" #true\u001b[39m\n\n Note that its functionality can be extended by adding methods to the\n \u001b[36mUnPack.unpack\u001b[39m function.",
"text/markdown": "```julia_skip\n@unpack a, b, c, ... = dict_or_typeinstance\n```\n\nUnpack fields/properties/keys from a composite type, a `Dict{Symbol}`, a `Dict{String}`, or a module into variables.\n\nExample with dict:\n\n```julia\nd = Dict{Symbol,Any}(:a=>5.0,:b=>2,:c=>\"Hi!\")\n@unpack a, c = d\na == 5.0 #true\nc == \"Hi!\" #true\n```\n\nExample with type:\n\n```julia\nstruct A; a; b; c; end\nd = A(4,7.0,\"Hi\")\n@unpack a, c = d\na == 4 #true\nc == \"Hi\" #true\n```\n\nNote that its functionality can be extended by adding methods to the `UnPack.unpack` function.\n",
"text/latex": "\\begin{verbatim}\n@unpack a, b, c, ... = dict_or_typeinstance\n\\end{verbatim}\nUnpack fields/properties/keys from a composite type, a \\texttt{Dict\\{Symbol\\}}, a \\texttt{Dict\\{String\\}}, or a module into variables.\n\nExample with dict:\n\n\\begin{verbatim}\nd = Dict{Symbol,Any}(:a=>5.0,:b=>2,:c=>\"Hi!\")\n@unpack a, c = d\na == 5.0 #true\nc == \"Hi!\" #true\n\\end{verbatim}\nExample with type:\n\n\\begin{verbatim}\nstruct A; a; b; c; end\nd = A(4,7.0,\"Hi\")\n@unpack a, c = d\na == 4 #true\nc == \"Hi\" #true\n\\end{verbatim}\nNote that its functionality can be extended by adding methods to the \\texttt{UnPack.unpack} function.\n\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "struct Param{T}\n dt::T\n ω²::T\nend\n\nmutable struct System{T}\n x::T\n v::T\nend\n\nfunction leapfrog!(par::Param, sys::System)\n @unpack dt, ω² = par\n sys.x += sys.v*dt\n sys.v += -ω²*sys.x*dt\n sys\nend",
"execution_count": 3,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 3,
"data": {
"text/plain": "leapfrog! (generic function with 1 method)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "par = Param{Float64}(0.01, 4)\nsys = System{Float64}(2, 0)\n\nleapfrog!(par, sys)",
"execution_count": 4,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 4,
"data": {
"text/plain": "System{Float64}(2.0, -0.08)"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "using Plots\n\npar = Param{Float64}(0.01, 4)\nsys = System{Float64}(2, 0)\n\nP = plot(size=(400, 400), legend=false)\nplot!(xlim=(-2.5, 2.5), ylim=(-5, 5))\nscatter!([sys.x], [sys.v]; color=:red, msc=:auto, ms=2)\nfor i in 1:300\n leapfrog!(par, sys)\n scatter!([sys.x], [sys.v]; color=:red, msc=:auto, ms=2)\nend\nP",
"execution_count": 5,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 5,
"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=\"400\" height=\"400\" viewBox=\"0 0 1600 1600\">\n<defs>\n <clipPath id=\"clip470\">\n <rect x=\"0\" y=\"0\" width=\"1600\" height=\"1600\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip470)\" d=\"\nM0 1600 L1600 1600 L1600 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip471\">\n <rect x=\"320\" y=\"160\" width=\"1121\" height=\"1121\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip470)\" d=\"\nM171.654 1469.17 L1552.76 1469.17 L1552.76 47.2441 L171.654 47.2441 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip472\">\n <rect x=\"171\" y=\"47\" width=\"1382\" height=\"1423\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 309.764,1469.17 309.764,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 585.984,1469.17 585.984,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 862.205,1469.17 862.205,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1138.43,1469.17 1138.43,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1414.65,1469.17 1414.65,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 171.654,1469.17 1552.76,1469.17 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 171.654,1113.69 1552.76,1113.69 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 171.654,758.206 1552.76,758.206 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 171.654,402.725 1552.76,402.725 \n \"/>\n<polyline clip-path=\"url(#clip472)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 171.654,47.2441 1552.76,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,1469.17 1552.76,1469.17 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,1469.17 171.654,47.2441 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 309.764,1469.17 309.764,1452.1 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 585.984,1469.17 585.984,1452.1 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 862.205,1469.17 862.205,1452.1 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1138.43,1469.17 1138.43,1452.1 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1414.65,1469.17 1414.65,1452.1 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,1469.17 188.227,1469.17 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,1113.69 188.227,1113.69 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,758.206 188.227,758.206 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,402.725 188.227,402.725 \n \"/>\n<polyline clip-path=\"url(#clip470)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 171.654,47.2441 188.227,47.2441 \n \"/>\n<path clip-path=\"url(#clip470)\" d=\"M 0 0 M282.218 1506.61 L311.894 1506.61 L311.894 1510.55 L282.218 1510.55 L282.218 1506.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M320.991 1519.5 L337.31 1519.5 L337.31 1523.44 L315.366 1523.44 L315.366 1519.5 Q318.028 1516.75 322.611 1512.12 Q327.218 1507.47 328.398 1506.13 Q330.643 1503.6 331.523 1501.87 Q332.426 1500.11 332.426 1498.42 Q332.426 1495.66 330.481 1493.93 Q328.56 1492.19 325.458 1492.19 Q323.259 1492.19 320.805 1492.95 Q318.375 1493.72 315.597 1495.27 L315.597 1490.55 Q318.421 1489.41 320.875 1488.83 Q323.329 1488.25 325.366 1488.25 Q330.736 1488.25 333.93 1490.94 Q337.125 1493.63 337.125 1498.12 Q337.125 1500.25 336.315 1502.17 Q335.528 1504.06 333.421 1506.66 Q332.842 1507.33 329.741 1510.55 Q326.639 1513.74 320.991 1519.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M558.253 1506.61 L587.929 1506.61 L587.929 1510.55 L558.253 1510.55 L558.253 1506.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M593.808 1519.5 L601.447 1519.5 L601.447 1493.14 L593.137 1494.81 L593.137 1490.55 L601.401 1488.88 L606.077 1488.88 L606.077 1519.5 L613.716 1519.5 L613.716 1523.44 L593.808 1523.44 L593.808 1519.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M862.205 1491.96 Q858.594 1491.96 856.765 1495.52 Q854.959 1499.07 854.959 1506.19 Q854.959 1513.3 856.765 1516.87 Q858.594 1520.41 862.205 1520.41 Q865.839 1520.41 867.645 1516.87 Q869.473 1513.3 869.473 1506.19 Q869.473 1499.07 867.645 1495.52 Q865.839 1491.96 862.205 1491.96 M862.205 1488.25 Q868.015 1488.25 871.07 1492.86 Q874.149 1497.44 874.149 1506.19 Q874.149 1514.92 871.07 1519.53 Q868.015 1524.11 862.205 1524.11 Q856.395 1524.11 853.316 1519.53 Q850.26 1514.92 850.26 1506.19 Q850.26 1497.44 853.316 1492.86 Q856.395 1488.25 862.205 1488.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M1128.81 1519.5 L1136.45 1519.5 L1136.45 1493.14 L1128.14 1494.81 L1128.14 1490.55 L1136.4 1488.88 L1141.08 1488.88 L1141.08 1519.5 L1148.71 1519.5 L1148.71 1523.44 L1128.81 1523.44 L1128.81 1519.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M1409.3 1519.5 L1425.62 1519.5 L1425.62 1523.44 L1403.67 1523.44 L1403.67 1519.5 Q1406.34 1516.75 1410.92 1512.12 Q1415.53 1507.47 1416.71 1506.13 Q1418.95 1503.6 1419.83 1501.87 Q1420.73 1500.11 1420.73 1498.42 Q1420.73 1495.66 1418.79 1493.93 Q1416.87 1492.19 1413.77 1492.19 Q1411.57 1492.19 1409.11 1492.95 Q1406.68 1493.72 1403.9 1495.27 L1403.9 1490.55 Q1406.73 1489.41 1409.18 1488.83 Q1411.64 1488.25 1413.67 1488.25 Q1419.04 1488.25 1422.24 1490.94 Q1425.43 1493.63 1425.43 1498.12 Q1425.43 1500.25 1424.62 1502.17 Q1423.84 1504.06 1421.73 1506.66 Q1421.15 1507.33 1418.05 1510.55 Q1414.95 1513.74 1409.3 1519.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M54.9921 1469.62 L84.6679 1469.62 L84.6679 1473.55 L54.9921 1473.55 L54.9921 1469.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M89.7836 1451.89 L108.14 1451.89 L108.14 1455.82 L94.066 1455.82 L94.066 1464.3 Q95.0845 1463.95 96.103 1463.79 Q97.1215 1463.6 98.14 1463.6 Q103.927 1463.6 107.307 1466.77 Q110.686 1469.94 110.686 1475.36 Q110.686 1480.94 107.214 1484.04 Q103.742 1487.12 97.4225 1487.12 Q95.2465 1487.12 92.978 1486.75 Q90.7327 1486.38 88.3253 1485.64 L88.3253 1480.94 Q90.4086 1482.07 92.6308 1482.63 Q94.853 1483.18 97.3299 1483.18 Q101.334 1483.18 103.672 1481.08 Q106.01 1478.97 106.01 1475.36 Q106.01 1471.75 103.672 1469.64 Q101.334 1467.54 97.3299 1467.54 Q95.4549 1467.54 93.5799 1467.95 Q91.728 1468.37 89.7836 1469.25 L89.7836 1451.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M115.756 1480.57 L120.64 1480.57 L120.64 1486.45 L115.756 1486.45 L115.756 1480.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M135.709 1454.97 Q132.098 1454.97 130.27 1458.53 Q128.464 1462.07 128.464 1469.2 Q128.464 1476.31 130.27 1479.87 Q132.098 1483.42 135.709 1483.42 Q139.344 1483.42 141.149 1479.87 Q142.978 1476.31 142.978 1469.2 Q142.978 1462.07 141.149 1458.53 Q139.344 1454.97 135.709 1454.97 M135.709 1451.26 Q141.519 1451.26 144.575 1455.87 Q147.654 1460.45 147.654 1469.2 Q147.654 1477.93 144.575 1482.54 Q141.519 1487.12 135.709 1487.12 Q129.899 1487.12 126.82 1482.54 Q123.765 1477.93 123.765 1469.2 Q123.765 1460.45 126.82 1455.87 Q129.899 1451.26 135.709 1451.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M56.5893 1114.14 L86.2651 1114.14 L86.2651 1118.07 L56.5893 1118.07 L56.5893 1114.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M95.3623 1127.03 L111.682 1127.03 L111.682 1130.97 L89.7373 1130.97 L89.7373 1127.03 Q92.3993 1124.28 96.9826 1119.65 Q101.589 1114.99 102.77 1113.65 Q105.015 1111.13 105.895 1109.39 Q106.797 1107.63 106.797 1105.94 Q106.797 1103.19 104.853 1101.45 Q102.932 1099.72 99.8298 1099.72 Q97.6308 1099.72 95.1771 1100.48 Q92.7466 1101.24 89.9688 1102.8 L89.9688 1098.07 Q92.7928 1096.94 95.2465 1096.36 Q97.7002 1095.78 99.7373 1095.78 Q105.108 1095.78 108.302 1098.47 Q111.496 1101.15 111.496 1105.64 Q111.496 1107.77 110.686 1109.69 Q109.899 1111.59 107.793 1114.18 Q107.214 1114.86 104.112 1118.07 Q101.01 1121.27 95.3623 1127.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M116.751 1125.09 L121.635 1125.09 L121.635 1130.97 L116.751 1130.97 L116.751 1125.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M126.751 1096.41 L145.107 1096.41 L145.107 1100.34 L131.033 1100.34 L131.033 1108.81 Q132.052 1108.47 133.07 1108.31 Q134.089 1108.12 135.107 1108.12 Q140.894 1108.12 144.274 1111.29 Q147.654 1114.46 147.654 1119.88 Q147.654 1125.46 144.181 1128.56 Q140.709 1131.64 134.39 1131.64 Q132.214 1131.64 129.945 1131.27 Q127.7 1130.9 125.293 1130.16 L125.293 1125.46 Q127.376 1126.59 129.598 1127.15 Q131.82 1127.7 134.297 1127.7 Q138.302 1127.7 140.64 1125.6 Q142.978 1123.49 142.978 1119.88 Q142.978 1116.27 140.64 1114.16 Q138.302 1112.05 134.297 1112.05 Q132.422 1112.05 130.547 1112.47 Q128.695 1112.89 126.751 1113.77 L126.751 1096.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M98.7419 744.005 Q95.1308 744.005 93.3021 747.569 Q91.4966 751.111 91.4966 758.241 Q91.4966 765.347 93.3021 768.912 Q95.1308 772.454 98.7419 772.454 Q102.376 772.454 104.182 768.912 Q106.01 765.347 106.01 758.241 Q106.01 751.111 104.182 747.569 Q102.376 744.005 98.7419 744.005 M98.7419 740.301 Q104.552 740.301 107.608 744.907 Q110.686 749.491 110.686 758.241 Q110.686 766.968 107.608 771.574 Q104.552 776.157 98.7419 776.157 Q92.9317 776.157 89.8531 771.574 Q86.7975 766.968 86.7975 758.241 Q86.7975 749.491 89.8531 744.907 Q92.9317 740.301 98.7419 740.301 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M115.756 769.606 L120.64 769.606 L120.64 775.486 L115.756 775.486 L115.756 769.606 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M135.709 744.005 Q132.098 744.005 130.27 747.569 Q128.464 751.111 128.464 758.241 Q128.464 765.347 130.27 768.912 Q132.098 772.454 135.709 772.454 Q139.344 772.454 141.149 768.912 Q142.978 765.347 142.978 758.241 Q142.978 751.111 141.149 747.569 Q139.344 744.005 135.709 744.005 M135.709 740.301 Q141.519 740.301 144.575 744.907 Q147.654 749.491 147.654 758.241 Q147.654 766.968 144.575 771.574 Q141.519 776.157 135.709 776.157 Q129.899 776.157 126.82 771.574 Q123.765 766.968 123.765 758.241 Q123.765 749.491 126.82 744.907 Q129.899 740.301 135.709 740.301 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M95.3623 416.07 L111.682 416.07 L111.682 420.005 L89.7373 420.005 L89.7373 416.07 Q92.3993 413.315 96.9826 408.686 Q101.589 404.033 102.77 402.69 Q105.015 400.167 105.895 398.431 Q106.797 396.672 106.797 394.982 Q106.797 392.227 104.853 390.491 Q102.932 388.755 99.8298 388.755 Q97.6308 388.755 95.1771 389.519 Q92.7466 390.283 89.9688 391.834 L89.9688 387.112 Q92.7928 385.977 95.2465 385.399 Q97.7002 384.82 99.7373 384.82 Q105.108 384.82 108.302 387.505 Q111.496 390.19 111.496 394.681 Q111.496 396.811 110.686 398.732 Q109.899 400.63 107.793 403.223 Q107.214 403.894 104.112 407.112 Q101.01 410.306 95.3623 416.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M116.751 414.125 L121.635 414.125 L121.635 420.005 L116.751 420.005 L116.751 414.125 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M126.751 385.445 L145.107 385.445 L145.107 389.38 L131.033 389.38 L131.033 397.852 Q132.052 397.505 133.07 397.343 Q134.089 397.158 135.107 397.158 Q140.894 397.158 144.274 400.329 Q147.654 403.5 147.654 408.917 Q147.654 414.496 144.181 417.598 Q140.709 420.676 134.39 420.676 Q132.214 420.676 129.945 420.306 Q127.7 419.936 125.293 419.195 L125.293 414.496 Q127.376 415.63 129.598 416.186 Q131.82 416.741 134.297 416.741 Q138.302 416.741 140.64 414.635 Q142.978 412.528 142.978 408.917 Q142.978 405.306 140.64 403.2 Q138.302 401.093 134.297 401.093 Q132.422 401.093 130.547 401.51 Q128.695 401.926 126.751 402.806 L126.751 385.445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M89.7836 29.9641 L108.14 29.9641 L108.14 33.8993 L94.066 33.8993 L94.066 42.3714 Q95.0845 42.0242 96.103 41.8622 Q97.1215 41.677 98.14 41.677 Q103.927 41.677 107.307 44.8483 Q110.686 48.0196 110.686 53.4362 Q110.686 59.0149 107.214 62.1167 Q103.742 65.1954 97.4225 65.1954 Q95.2465 65.1954 92.978 64.825 Q90.7327 64.4547 88.3253 63.7139 L88.3253 59.0149 Q90.4086 60.1491 92.6308 60.7047 Q94.853 61.2602 97.3299 61.2602 Q101.334 61.2602 103.672 59.1538 Q106.01 57.0473 106.01 53.4362 Q106.01 49.8251 103.672 47.7186 Q101.334 45.6122 97.3299 45.6122 Q95.4549 45.6122 93.5799 46.0288 Q91.728 46.4455 89.7836 47.3251 L89.7836 29.9641 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M115.756 58.6445 L120.64 58.6445 L120.64 64.5241 L115.756 64.5241 L115.756 58.6445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip470)\" d=\"M 0 0 M135.709 33.0428 Q132.098 33.0428 130.27 36.6076 Q128.464 40.1492 128.464 47.2788 Q128.464 54.3853 130.27 57.9501 Q132.098 61.4917 135.709 61.4917 Q139.344 61.4917 141.149 57.9501 Q142.978 54.3853 142.978 47.2788 Q142.978 40.1492 141.149 36.6076 Q139.344 33.0428 135.709 33.0428 M135.709 29.3391 Q141.519 29.3391 144.575 33.9456 Q147.654 38.5289 147.654 47.2788 Q147.654 56.0056 144.575 60.6121 Q141.519 65.1954 135.709 65.1954 Q129.899 65.1954 126.82 60.6121 Q123.765 56.0056 123.765 47.2788 Q123.765 38.5289 126.82 33.9456 Q129.899 29.3391 135.709 29.3391 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip472)\" cx=\"1414.65\" cy=\"758.206\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1414.65\" cy=\"769.581\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1414.42\" cy=\"780.952\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1413.98\" cy=\"792.314\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1413.32\" cy=\"803.662\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1412.44\" cy=\"814.992\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1411.33\" cy=\"826.299\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1410.01\" cy=\"837.579\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1408.47\" cy=\"848.827\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1406.71\" cy=\"860.039\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1404.73\" cy=\"871.211\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1402.54\" cy=\"882.337\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1400.12\" cy=\"893.413\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1397.5\" cy=\"904.435\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1394.66\" cy=\"915.399\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1391.6\" cy=\"926.3\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1388.34\" cy=\"937.134\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1384.86\" cy=\"947.896\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1381.18\" cy=\"958.582\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1377.29\" cy=\"969.188\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1373.19\" cy=\"979.71\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1368.88\" cy=\"990.143\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1364.38\" cy=\"1000.48\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1359.67\" cy=\"1010.73\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1354.77\" cy=\"1020.87\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1349.66\" cy=\"1030.91\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1344.37\" cy=\"1040.83\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1338.88\" cy=\"1050.65\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1333.2\" cy=\"1060.35\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1327.33\" cy=\"1069.93\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1321.27\" cy=\"1079.38\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1315.03\" cy=\"1088.7\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1308.61\" cy=\"1097.89\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1302.01\" cy=\"1106.95\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1295.24\" cy=\"1115.87\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1288.29\" cy=\"1124.64\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1281.17\" cy=\"1133.27\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1273.89\" cy=\"1141.74\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1266.44\" cy=\"1150.07\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1258.82\" cy=\"1158.24\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1251.05\" cy=\"1166.24\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1243.13\" cy=\"1174.09\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1235.05\" cy=\"1181.76\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1226.82\" cy=\"1189.27\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1218.45\" cy=\"1196.61\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1209.93\" cy=\"1203.77\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1201.27\" cy=\"1210.75\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1192.48\" cy=\"1217.55\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1183.56\" cy=\"1224.17\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1174.51\" cy=\"1230.6\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1165.33\" cy=\"1236.84\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1156.03\" cy=\"1242.89\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1146.62\" cy=\"1248.74\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1137.09\" cy=\"1254.4\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1127.45\" cy=\"1259.87\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1117.7\" cy=\"1265.13\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1107.86\" cy=\"1270.19\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1097.91\" cy=\"1275.04\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1087.87\" cy=\"1279.69\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1077.74\" cy=\"1284.12\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1067.52\" cy=\"1288.35\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1057.23\" cy=\"1292.37\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1046.85\" cy=\"1296.17\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1036.4\" cy=\"1299.76\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1025.88\" cy=\"1303.13\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1015.29\" cy=\"1306.28\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1004.65\" cy=\"1309.21\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"993.943\" cy=\"1311.92\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"983.187\" cy=\"1314.42\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"972.382\" cy=\"1316.68\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"961.533\" cy=\"1318.73\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"950.645\" cy=\"1320.55\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"939.721\" cy=\"1322.15\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"928.766\" cy=\"1323.52\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"917.784\" cy=\"1324.66\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"906.78\" cy=\"1325.58\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"895.758\" cy=\"1326.27\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"884.723\" cy=\"1326.73\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"873.679\" cy=\"1326.97\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"862.63\" cy=\"1326.98\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"851.581\" cy=\"1326.76\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"840.537\" cy=\"1326.31\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"829.501\" cy=\"1325.64\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"818.478\" cy=\"1324.74\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"807.472\" cy=\"1323.61\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"796.489\" cy=\"1322.26\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"785.532\" cy=\"1320.68\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"774.605\" cy=\"1318.88\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"763.714\" cy=\"1316.85\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"752.861\" cy=\"1314.6\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"742.053\" cy=\"1312.12\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"731.293\" cy=\"1309.43\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"720.585\" cy=\"1306.51\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"709.933\" cy=\"1303.38\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"699.343\" cy=\"1300.02\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"688.818\" cy=\"1296.45\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"678.362\" cy=\"1292.67\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"667.98\" cy=\"1288.67\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"657.675\" cy=\"1284.46\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"647.452\" cy=\"1280.04\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"637.315\" cy=\"1275.4\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"627.268\" cy=\"1270.57\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"617.315\" cy=\"1265.52\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"607.46\" cy=\"1260.28\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"597.707\" cy=\"1254.83\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"588.059\" cy=\"1249.19\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"578.522\" cy=\"1243.35\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"569.097\" cy=\"1237.31\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"559.79\" cy=\"1231.08\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"550.604\" cy=\"1224.67\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"541.543\" cy=\"1218.06\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"532.61\" cy=\"1211.28\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"523.808\" cy=\"1204.31\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"515.143\" cy=\"1197.16\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"506.615\" cy=\"1189.84\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"498.231\" cy=\"1182.35\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"489.991\" cy=\"1174.68\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"481.901\" cy=\"1166.85\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"473.963\" cy=\"1158.86\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"466.18\" cy=\"1150.7\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"458.555\" cy=\"1142.39\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"451.092\" cy=\"1133.93\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"443.793\" cy=\"1125.31\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"436.662\" cy=\"1116.55\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"429.701\" cy=\"1107.64\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"422.913\" cy=\"1098.6\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"416.3\" cy=\"1089.42\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"409.866\" cy=\"1080.1\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"403.613\" cy=\"1070.66\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"397.544\" cy=\"1061.09\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"391.66\" cy=\"1051.4\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"385.964\" cy=\"1041.59\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"380.459\" cy=\"1031.67\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"375.147\" cy=\"1021.65\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"370.029\" cy=\"1011.51\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"365.109\" cy=\"1001.28\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"360.387\" cy=\"990.943\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"355.866\" cy=\"980.517\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"351.547\" cy=\"970.002\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"347.433\" cy=\"959.402\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"343.524\" cy=\"948.722\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"339.824\" cy=\"937.965\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"336.332\" cy=\"927.137\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"333.05\" cy=\"916.241\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"329.98\" cy=\"905.282\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"327.123\" cy=\"894.264\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"324.48\" cy=\"883.191\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"322.052\" cy=\"872.069\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"319.84\" cy=\"860.901\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"317.845\" cy=\"849.692\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"316.068\" cy=\"838.447\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"314.509\" cy=\"827.169\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"313.17\" cy=\"815.864\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"312.049\" cy=\"804.535\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"311.149\" cy=\"793.188\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"310.47\" cy=\"781.828\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"310.011\" cy=\"770.457\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"309.773\" cy=\"759.082\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"309.756\" cy=\"747.707\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"309.96\" cy=\"736.335\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"310.385\" cy=\"724.973\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"311.03\" cy=\"713.623\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"311.896\" cy=\"702.292\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"312.983\" cy=\"690.983\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"314.289\" cy=\"679.7\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"315.814\" cy=\"668.45\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"317.557\" cy=\"657.235\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"319.519\" cy=\"646.06\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"321.697\" cy=\"634.931\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"324.092\" cy=\"623.85\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"326.702\" cy=\"612.824\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"329.526\" cy=\"601.855\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"332.563\" cy=\"590.949\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"335.812\" cy=\"580.11\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"339.272\" cy=\"569.342\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"342.941\" cy=\"558.65\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"346.817\" cy=\"548.038\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"350.9\" cy=\"537.509\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"355.187\" cy=\"527.069\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"359.677\" cy=\"516.722\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"364.368\" cy=\"506.471\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"369.259\" cy=\"496.32\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"374.346\" cy=\"486.275\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"379.628\" cy=\"476.338\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"385.104\" cy=\"466.514\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"390.77\" cy=\"456.807\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"396.625\" cy=\"447.22\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"402.666\" cy=\"437.757\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"408.891\" cy=\"428.423\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"415.298\" cy=\"419.221\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"421.883\" cy=\"410.154\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"428.644\" cy=\"401.226\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"435.579\" cy=\"392.442\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"442.684\" cy=\"383.803\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"449.957\" cy=\"375.315\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"457.395\" cy=\"366.979\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"464.995\" cy=\"358.8\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"472.754\" cy=\"350.781\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"480.668\" cy=\"342.925\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"488.735\" cy=\"335.234\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"496.952\" cy=\"327.713\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"505.315\" cy=\"320.365\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"513.82\" cy=\"313.191\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"522.465\" cy=\"306.195\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"531.245\" cy=\"299.381\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"540.158\" cy=\"292.749\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"549.2\" cy=\"286.304\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"558.367\" cy=\"280.048\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"567.656\" cy=\"273.983\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"577.063\" cy=\"268.111\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"586.583\" cy=\"262.436\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"596.214\" cy=\"256.959\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"605.951\" cy=\"251.682\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"615.791\" cy=\"246.608\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"625.729\" cy=\"241.739\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"635.762\" cy=\"237.076\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"645.885\" cy=\"232.622\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"656.095\" cy=\"228.378\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"666.387\" cy=\"224.346\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"676.758\" cy=\"220.527\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"687.203\" cy=\"216.924\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"697.718\" cy=\"213.537\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"708.298\" cy=\"210.368\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"718.94\" cy=\"207.418\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"729.64\" cy=\"204.688\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"740.392\" cy=\"202.18\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"751.194\" cy=\"199.894\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"762.039\" cy=\"197.831\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"772.925\" cy=\"195.993\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"783.847\" cy=\"194.38\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"794.799\" cy=\"192.992\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"805.779\" cy=\"191.83\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"816.781\" cy=\"190.894\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"827.802\" cy=\"190.186\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"838.836\" cy=\"189.705\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"849.88\" cy=\"189.451\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"860.928\" cy=\"189.425\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"871.977\" cy=\"189.626\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"883.022\" cy=\"190.055\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"894.059\" cy=\"190.711\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"905.083\" cy=\"191.594\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"916.09\" cy=\"192.703\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"927.076\" cy=\"194.039\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"938.035\" cy=\"195.6\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"948.964\" cy=\"197.387\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"959.859\" cy=\"199.398\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"970.714\" cy=\"201.632\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"981.526\" cy=\"204.089\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"992.29\" cy=\"206.767\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1003\" cy=\"209.667\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1013.66\" cy=\"212.785\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1024.25\" cy=\"216.122\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1034.78\" cy=\"219.676\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1045.24\" cy=\"223.445\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1055.63\" cy=\"227.428\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1065.94\" cy=\"231.623\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1076.17\" cy=\"236.029\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1086.32\" cy=\"240.643\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1096.37\" cy=\"245.465\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1106.33\" cy=\"250.492\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1116.19\" cy=\"255.722\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1125.96\" cy=\"261.153\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1135.61\" cy=\"266.783\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1145.16\" cy=\"272.609\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1154.59\" cy=\"278.629\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1163.91\" cy=\"284.842\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1173.1\" cy=\"291.244\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1182.17\" cy=\"297.832\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1191.12\" cy=\"304.605\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1199.93\" cy=\"311.559\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1208.6\" cy=\"318.692\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1217.14\" cy=\"326\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1225.54\" cy=\"333.482\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1233.79\" cy=\"341.133\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1241.89\" cy=\"348.951\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1249.84\" cy=\"356.933\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1257.64\" cy=\"365.075\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1265.27\" cy=\"373.375\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1272.75\" cy=\"381.829\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1280.06\" cy=\"390.433\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1287.2\" cy=\"399.184\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1294.18\" cy=\"408.079\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1300.98\" cy=\"417.114\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1307.61\" cy=\"426.285\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1314.05\" cy=\"435.589\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1320.32\" cy=\"445.022\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1326.41\" cy=\"454.581\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1332.3\" cy=\"464.261\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1338.01\" cy=\"474.058\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1343.53\" cy=\"483.969\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1348.86\" cy=\"493.99\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1353.99\" cy=\"504.116\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1358.93\" cy=\"514.345\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1363.67\" cy=\"524.67\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1368.2\" cy=\"535.089\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1372.54\" cy=\"545.598\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1376.67\" cy=\"556.191\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1380.59\" cy=\"566.865\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1384.31\" cy=\"577.616\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1387.82\" cy=\"588.439\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n<circle clip-path=\"url(#clip472)\" cx=\"1391.11\" cy=\"599.33\" r=\"7\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n</svg>\n"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
}
],
"metadata": {
"@webio": {
"lastKernelId": null,
"lastCommId": null
},
"kernelspec": {
"name": "julia-1.6-o3-depwarn",
"display_name": "Julia 1.6.0-DEV depwarn -O3",
"language": "julia"
},
"language_info": {
"file_extension": ".jl",
"name": "julia",
"mimetype": "application/julia",
"version": "1.6.0"
},
"toc": {
"nav_menu": {},
"number_sections": true,
"sideBar": true,
"skip_h1_title": false,
"base_numbering": 1,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": false,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
},
"gist": {
"id": "44c91b9f8018221aff6bb9ab626e3772",
"data": {
"description": "Parameters.jl @unpack example.ipynb",
"public": true
}
},
"_draft": {
"nbviewer_url": "https://gist.github.com/44c91b9f8018221aff6bb9ab626e3772"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment