Forked from jpivarski/mandelbrot-on-all-accelerators.ipynb
Last active
June 14, 2022 14:36
-
-
Save Moelf/5aff79748afc6ff380f392fdf9445d19 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#= one can use these to test fastmath-like path in controlled way | |
@inline mul_fast(x::T, y::T) where {T<:Complex} = | |
T(complex(muladd(-imag(x), imag(y), real(x)*real(y)), | |
muladd( real(x), imag(y), imag(x)*real(y)))) | |
@inline abs2_fast(z::Complex) = muladd(real(z), real(z), imag(z)*imag(z)) | |
=# | |
function run_julia(height, width) | |
y = range(-1.0f0, 0.0f0; length = height) | |
x = range(-1.5f0, 0.0f0; length = width) | |
c = x' .+ y*im | |
fractal = fill(Int32(20), height, width) | |
@inbounds for w in 1:width | |
for h in 1:height | |
_c = c[h, w] | |
z = _c | |
for i in 1:20 | |
z = z^2 + _c | |
if abs2(z) > 4 | |
fractal[h, w] = i | |
break | |
end | |
end | |
end | |
end | |
return fractal | |
end | |
julia> @benchmark run_julia(2000, 3000) | |
BenchmarkTools.Trial: 27 samples with 1 evaluation. | |
Range (min … max): 181.366 ms … 222.897 ms ┊ GC (min … max): 0.20% … 17.82% | |
Time (median): 182.620 ms ┊ GC (median): 0.23% | |
Time (mean ± σ): 185.657 ms ± 9.775 ms ┊ GC (mean ± σ): 1.78% ± 4.44% | |
█▆ | |
██▇▇▄▆▁▁▁▁▁▄▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▄▁▁▁▁▁▁▁▁▁▁▄ ▁ | |
181 ms Histogram: frequency by time 223 ms < | |
Memory estimate: 68.66 MiB, allocs estimate: 4. | |
julia> @benchmark run_julia(4000, 6000) | |
BenchmarkTools.Trial: 7 samples with 1 evaluation. | |
Range (min … max): 728.765 ms … 773.615 ms ┊ GC (min … max): 0.06% … 5.51% | |
Time (median): 731.186 ms ┊ GC (median): 0.17% | |
Time (mean ± σ): 742.578 ms ± 18.685 ms ┊ GC (mean ± σ): 1.73% ± 2.37% | |
█▁ ▁ ▁ ▁ ▁ | |
██▁█▁▁▁▁▁▁▁▁▁▁▁▁▁█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█▁▁▁▁▁▁▁▁▁▁▁█ ▁ | |
729 ms Histogram: frequency by time 774 ms < | |
Memory estimate: 274.66 MiB, allocs estimate: 4. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<!-- Created with matplotlib (https://matplotlib.org/) --> | |
<svg | |
height="325.66339pt" | |
version="1.1" | |
viewBox="0 0 953.50623 325.66339" | |
width="953.50623pt" | |
id="svg1908" | |
sodipodi:docname="mandelbrot-on-all-accelerators-colab.svg" | |
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" | |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" | |
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" | |
xmlns:xlink="http://www.w3.org/1999/xlink" | |
xmlns="http://www.w3.org/2000/svg" | |
xmlns:svg="http://www.w3.org/2000/svg"> | |
<sodipodi:namedview | |
id="namedview1910" | |
pagecolor="#ffffff" | |
bordercolor="#666666" | |
borderopacity="1.0" | |
inkscape:pageshadow="2" | |
inkscape:pageopacity="0.0" | |
inkscape:pagecheckerboard="0" | |
inkscape:document-units="pt" | |
showgrid="false" | |
inkscape:zoom="0.64166667" | |
inkscape:cx="571.94805" | |
inkscape:cy="110.64935" | |
inkscape:window-width="2560" | |
inkscape:window-height="1371" | |
inkscape:window-x="1920" | |
inkscape:window-y="32" | |
inkscape:window-maximized="1" | |
inkscape:current-layer="svg1908" | |
fit-margin-top="5" | |
fit-margin-left="5" | |
fit-margin-right="5" | |
fit-margin-bottom="5" /> | |
<defs | |
id="defs4"> | |
<style | |
type="text/css" | |
id="style2"> | |
*{stroke-linecap:butt;stroke-linejoin:round;} | |
</style> | |
</defs> | |
<g | |
id="axes_1" | |
transform="translate(300.10625,-24.692866)"> | |
<g | |
id="patch_2"> | |
<path | |
d="M 90,315 H 648 V 43.2 H 90 Z" | |
style="fill:#ffffff" | |
id="path9" /> | |
</g> | |
<g | |
id="patch_3"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,306.72783 H 139.42741 V 287.82 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path12" /> | |
</g> | |
<g | |
id="patch_4"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,283.09304 H 117.21242 V 264.18522 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path15" /> | |
</g> | |
<g | |
id="patch_5"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,259.45826 H 115.36364 V 240.55043 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path18" /> | |
</g> | |
<g | |
id="patch_6"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,235.82348 H 236.85241 V 216.91565 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path21" /> | |
</g> | |
<g | |
id="patch_7"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,212.1887 H 268.89579 V 193.28087 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path24" /> | |
</g> | |
<g | |
id="patch_8"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,188.55391 H 293.28517 V 169.64609 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path27" /> | |
</g> | |
<g | |
id="patch_9"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,164.91913 H 286.51381 V 146.0113 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path30" /> | |
</g> | |
<g | |
id="patch_10"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,141.28435 H 298.12599 V 122.37652 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path33" /> | |
</g> | |
<g | |
id="patch_11"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,117.64956 H 339.75147 V 98.741739 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path36" /> | |
</g> | |
<g | |
id="patch_12"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,94.014783 H 393.29796 V 75.106957 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path39" /> | |
</g> | |
<g | |
id="patch_13"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M -114783.34,70.38 H 605.77621 V 51.472174 H -114783.34 Z" | |
style="fill:#1f77b4" | |
id="path42" /> | |
</g> | |
<g | |
id="matplotlib.axis_1"> | |
<g | |
id="xtick_1"> | |
<g | |
id="line2d_1"> | |
<defs | |
id="defs46"> | |
<path | |
d="M 0,0 V 3.5" | |
id="m83991ffc2a" | |
style="stroke:#000000;stroke-width:0.8" /> | |
</defs> | |
<g | |
id="g50"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="134.76953" | |
xlink:href="#m83991ffc2a" | |
y="315" | |
id="use48" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_1"> | |
<!-- $\mathdefault{10^{1}}$ --> | |
<defs | |
id="defs55"> | |
<path | |
d="m 12.40625,8.296875 h 16.109375 v 55.625 L 10.984375,60.40625 v 8.984375 l 17.4375,3.515625 H 38.28125 V 8.296875 H 54.390625 V 0 H 12.40625 Z" | |
id="DejaVuSans-49" /> | |
<path | |
d="m 31.78125,66.40625 q -7.609375,0 -11.453125,-7.5 Q 16.5,51.421875 16.5,36.375 q 0,-14.984375 3.828125,-22.484375 3.84375,-7.5 11.453125,-7.5 7.671875,0 11.5,7.5 3.84375,7.5 3.84375,22.484375 0,15.046875 -3.84375,22.53125 -3.828125,7.5 -11.5,7.5 z m 0,7.8125 q 12.265625,0 18.734375,-9.703125 6.46875,-9.6875 6.46875,-28.140625 0,-18.40625 -6.46875,-28.109375 -6.46875,-9.6875 -18.734375,-9.6875 -12.25,0 -18.71875,9.6875 Q 6.59375,17.96875 6.59375,36.375 q 0,18.453125 6.46875,28.140625 6.46875,9.703125 18.71875,9.703125 z" | |
id="DejaVuSans-48" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,125.96953,329.59844)" | |
id="g63"> | |
<use | |
transform="translate(0,0.684375)" | |
xlink:href="#DejaVuSans-49" | |
id="use57" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="translate(63.623047,0.684375)" | |
xlink:href="#DejaVuSans-48" | |
id="use59" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="matrix(0.7,0,0,0.7,128.20312,38.965625)" | |
xlink:href="#DejaVuSans-49" | |
id="use61" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_2"> | |
<g | |
id="line2d_2"> | |
<g | |
id="g69"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="249.57283" | |
xlink:href="#m83991ffc2a" | |
y="315" | |
id="use67" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_2"> | |
<!-- $\mathdefault{10^{2}}$ --> | |
<defs | |
id="defs73"> | |
<path | |
d="M 19.1875,8.296875 H 53.609375 V 0 H 7.328125 v 8.296875 q 5.609375,5.8125 15.296875,15.59375 9.703125,9.796875 12.1875,12.640625 4.734375,5.3125 6.609375,9 1.890625,3.6875 1.890625,7.25 0,5.8125 -4.078125,9.46875 -4.078125,3.671875 -10.625,3.671875 -4.640625,0 -9.796875,-1.609375 -5.140625,-1.609375 -11,-4.890625 v 9.96875 Q 13.765625,71.78125 18.9375,73 q 5.1875,1.21875 9.484375,1.21875 11.328125,0 18.0625,-5.671875 6.734375,-5.65625 6.734375,-15.125 0,-4.5 -1.6875,-8.53125 Q 49.859375,40.875 45.40625,35.40625 44.1875,33.984375 37.640625,27.21875 31.109375,20.453125 19.1875,8.296875 Z" | |
id="DejaVuSans-50" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,240.77283,329.59844)" | |
id="g81"> | |
<use | |
transform="translate(0,0.765625)" | |
xlink:href="#DejaVuSans-49" | |
id="use75" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="translate(63.623047,0.765625)" | |
xlink:href="#DejaVuSans-48" | |
id="use77" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="matrix(0.7,0,0,0.7,128.20312,39.046875)" | |
xlink:href="#DejaVuSans-50" | |
id="use79" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_3"> | |
<g | |
id="line2d_3"> | |
<g | |
id="g87"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="364.37613" | |
xlink:href="#m83991ffc2a" | |
y="315" | |
id="use85" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_3"> | |
<!-- $\mathdefault{10^{3}}$ --> | |
<defs | |
id="defs91"> | |
<path | |
d="M 40.578125,39.3125 Q 47.65625,37.796875 51.625,33 q 3.984375,-4.78125 3.984375,-11.8125 0,-10.78125 -7.421875,-16.703125 -7.421875,-5.90625 -21.09375,-5.90625 -4.578125,0 -9.4375,0.90625 -4.859375,0.90625 -10.03125,2.71875 v 9.515625 q 4.09375,-2.390625 8.96875,-3.609375 4.890625,-1.21875 10.21875,-1.21875 9.265625,0 14.125,3.65625 4.859375,3.65625 4.859375,10.640625 0,6.453125 -4.515625,10.078125 -4.515625,3.640625 -12.5625,3.640625 h -8.5 v 8.109375 h 8.890625 q 7.265625,0 11.125,2.90625 3.859375,2.90625 3.859375,8.375 0,5.609375 -3.984375,8.609375 -3.96875,3.015625 -11.390625,3.015625 -4.0625,0 -8.703125,-0.890625 Q 15.375,64.15625 9.8125,62.3125 v 8.78125 q 5.625,1.5625 10.53125,2.34375 4.90625,0.78125 9.25,0.78125 11.234375,0 17.765625,-5.109375 6.546875,-5.09375 6.546875,-13.78125 0,-6.0625 -3.46875,-10.234375 -3.46875,-4.171875 -9.859375,-5.78125 z" | |
id="DejaVuSans-51" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,355.57613,329.59844)" | |
id="g99"> | |
<use | |
transform="translate(0,0.765625)" | |
xlink:href="#DejaVuSans-49" | |
id="use93" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="translate(63.623047,0.765625)" | |
xlink:href="#DejaVuSans-48" | |
id="use95" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="matrix(0.7,0,0,0.7,128.20312,39.046875)" | |
xlink:href="#DejaVuSans-51" | |
id="use97" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_4"> | |
<g | |
id="line2d_4"> | |
<g | |
id="g105"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="479.17944" | |
xlink:href="#m83991ffc2a" | |
y="315" | |
id="use103" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_4"> | |
<!-- $\mathdefault{10^{4}}$ --> | |
<defs | |
id="defs109"> | |
<path | |
d="M 37.796875,64.3125 12.890625,25.390625 h 24.90625 z m -2.59375,8.59375 h 12.40625 V 25.390625 h 10.40625 V 17.1875 H 47.609375 V 0 h -9.8125 V 17.1875 H 4.890625 v 9.515625 z" | |
id="DejaVuSans-52" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,470.37943,329.59844)" | |
id="g117"> | |
<use | |
transform="translate(0,0.684375)" | |
xlink:href="#DejaVuSans-49" | |
id="use111" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="translate(63.623047,0.684375)" | |
xlink:href="#DejaVuSans-48" | |
id="use113" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="matrix(0.7,0,0,0.7,128.20312,38.965625)" | |
xlink:href="#DejaVuSans-52" | |
id="use115" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_5"> | |
<g | |
id="line2d_5"> | |
<g | |
id="g123"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="593.98273" | |
xlink:href="#m83991ffc2a" | |
y="315" | |
id="use121" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_5"> | |
<!-- $\mathdefault{10^{5}}$ --> | |
<defs | |
id="defs127"> | |
<path | |
d="m 10.796875,72.90625 h 38.71875 v -8.3125 h -29.6875 V 46.734375 q 2.140625,0.734375 4.28125,1.09375 2.15625,0.359375 4.3125,0.359375 Q 40.625,48.1875 47.75,41.5 54.890625,34.8125 54.890625,23.390625 54.890625,11.625 47.5625,5.09375 40.234375,-1.421875 26.90625,-1.421875 q -4.59375,0 -9.359375,0.78125 -4.75,0.78125 -9.828125,2.34375 V 11.625 q 4.390625,-2.390625 9.078125,-3.5625 4.6875,-1.171875 9.90625,-1.171875 8.453125,0 13.375,4.4375 4.9375,4.4375 4.9375,12.0625 0,7.609375 -4.9375,12.046875 -4.921875,4.453125 -13.375,4.453125 -3.953125,0 -7.890625,-0.875 -3.921875,-0.875 -8.015625,-2.734375 z" | |
id="DejaVuSans-53" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,585.18274,329.59844)" | |
id="g135"> | |
<use | |
transform="translate(0,0.684375)" | |
xlink:href="#DejaVuSans-49" | |
id="use129" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="translate(63.623047,0.684375)" | |
xlink:href="#DejaVuSans-48" | |
id="use131" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
transform="matrix(0.7,0,0,0.7,128.20312,38.965625)" | |
xlink:href="#DejaVuSans-53" | |
id="use133" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_6"> | |
<g | |
id="line2d_6"> | |
<defs | |
id="defs140"> | |
<path | |
d="M 0,0 V 2" | |
id="ma4b909d18d" | |
style="stroke:#000000;stroke-width:0.6" /> | |
</defs> | |
<g | |
id="g144"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="100.21029" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use142" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_7"> | |
<g | |
id="line2d_7"> | |
<g | |
id="g150"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="109.30056" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use148" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_8"> | |
<g | |
id="line2d_8"> | |
<g | |
id="g156"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="116.98627" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use154" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_9"> | |
<g | |
id="line2d_9"> | |
<g | |
id="g162"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="123.64394" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use160" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_10"> | |
<g | |
id="line2d_10"> | |
<g | |
id="g168"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="129.51642" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use166" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_11"> | |
<g | |
id="line2d_11"> | |
<g | |
id="g174"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="169.32877" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use172" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_12"> | |
<g | |
id="line2d_12"> | |
<g | |
id="g180"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="189.54462" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use178" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_13"> | |
<g | |
id="line2d_13"> | |
<g | |
id="g186"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="203.888" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use184" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_14"> | |
<g | |
id="line2d_14"> | |
<g | |
id="g192"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="215.0136" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use190" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_15"> | |
<g | |
id="line2d_15"> | |
<g | |
id="g198"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="224.10387" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use196" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_16"> | |
<g | |
id="line2d_16"> | |
<g | |
id="g204"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="231.78958" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use202" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_17"> | |
<g | |
id="line2d_17"> | |
<g | |
id="g210"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="238.44724" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use208" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_18"> | |
<g | |
id="line2d_18"> | |
<g | |
id="g216"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="244.31972" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use214" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_19"> | |
<g | |
id="line2d_19"> | |
<g | |
id="g222"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="284.13208" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use220" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_20"> | |
<g | |
id="line2d_20"> | |
<g | |
id="g228"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="304.34793" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use226" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_21"> | |
<g | |
id="line2d_21"> | |
<g | |
id="g234"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="318.69131" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use232" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_22"> | |
<g | |
id="line2d_22"> | |
<g | |
id="g240"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="329.81689" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use238" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_23"> | |
<g | |
id="line2d_23"> | |
<g | |
id="g246"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="338.90717" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use244" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_24"> | |
<g | |
id="line2d_24"> | |
<g | |
id="g252"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="346.59286" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use250" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_25"> | |
<g | |
id="line2d_25"> | |
<g | |
id="g258"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="353.25055" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use256" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_26"> | |
<g | |
id="line2d_26"> | |
<g | |
id="g264"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="359.12302" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use262" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_27"> | |
<g | |
id="line2d_27"> | |
<g | |
id="g270"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="398.93536" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use268" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_28"> | |
<g | |
id="line2d_28"> | |
<g | |
id="g276"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="419.15121" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use274" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_29"> | |
<g | |
id="line2d_29"> | |
<g | |
id="g282"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="433.4946" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use280" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_30"> | |
<g | |
id="line2d_30"> | |
<g | |
id="g288"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="444.62021" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use286" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_31"> | |
<g | |
id="line2d_31"> | |
<g | |
id="g294"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="453.71048" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use292" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_32"> | |
<g | |
id="line2d_32"> | |
<g | |
id="g300"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="461.39618" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use298" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_33"> | |
<g | |
id="line2d_33"> | |
<g | |
id="g306"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="468.05383" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use304" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_34"> | |
<g | |
id="line2d_34"> | |
<g | |
id="g312"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="473.92633" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use310" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_35"> | |
<g | |
id="line2d_35"> | |
<g | |
id="g318"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="513.73865" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use316" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_36"> | |
<g | |
id="line2d_36"> | |
<g | |
id="g324"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="533.95453" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use322" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_37"> | |
<g | |
id="line2d_37"> | |
<g | |
id="g330"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="548.29791" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use328" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_38"> | |
<g | |
id="line2d_38"> | |
<g | |
id="g336"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="559.42352" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use334" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_39"> | |
<g | |
id="line2d_39"> | |
<g | |
id="g342"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="568.51379" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use340" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_40"> | |
<g | |
id="line2d_40"> | |
<g | |
id="g348"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="576.19946" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use346" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_41"> | |
<g | |
id="line2d_41"> | |
<g | |
id="g354"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="582.85712" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use352" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_42"> | |
<g | |
id="line2d_42"> | |
<g | |
id="g360"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="588.72961" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use358" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_43"> | |
<g | |
id="line2d_43"> | |
<g | |
id="g366"> | |
<use | |
style="stroke:#000000;stroke-width:0.6" | |
x="628.54199" | |
xlink:href="#ma4b909d18d" | |
y="315" | |
id="use364" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="text_6"> | |
<!-- time for 2000×3000 pixels (ms), smaller is better --> | |
<defs | |
id="defs388"> | |
<path | |
d="M 18.3125,70.21875 V 54.6875 h 18.5 v -6.984375 h -18.5 v -29.6875 q 0,-6.6875 1.828125,-8.59375 1.828125,-1.90625 7.453125,-1.90625 H 36.8125 V 0 H 27.59375 Q 17.1875,0 13.234375,3.875 9.28125,7.765625 9.28125,18.015625 v 29.6875 H 2.6875 V 54.6875 h 6.59375 v 15.53125 z" | |
id="DejaVuSans-116" /> | |
<path | |
d="M 9.421875,54.6875 H 18.40625 V 0 H 9.421875 Z m 0,21.296875 H 18.40625 V 64.59375 H 9.421875 Z" | |
id="DejaVuSans-105" /> | |
<path | |
d="M 52,44.1875 Q 55.375,50.25 60.0625,53.125 64.75,56 71.09375,56 q 8.546875,0 13.1875,-5.984375 4.640625,-5.96875 4.640625,-17 V 0 h -9.03125 v 32.71875 q 0,7.859375 -2.796875,11.65625 -2.78125,3.8125 -8.484375,3.8125 -6.984375,0 -11.046875,-4.640625 -4.046875,-4.625 -4.046875,-12.640625 V 0 h -9.03125 v 32.71875 q 0,7.90625 -2.78125,11.6875 -2.78125,3.78125 -8.59375,3.78125 -6.890625,0 -10.953125,-4.65625 -4.046875,-4.65625 -4.046875,-12.625 V 0 h -9.03125 v 54.6875 h 9.03125 v -8.5 q 3.078125,5.03125 7.375,7.421875 Q 29.78125,56 35.6875,56 41.65625,56 45.828125,52.96875 50,49.953125 52,44.1875 Z" | |
id="DejaVuSans-109" /> | |
<path | |
d="m 56.203125,29.59375 v -4.390625 h -41.3125 q 0.59375,-9.28125 5.59375,-14.140625 5,-4.859375 13.9375,-4.859375 5.171875,0 10.03125,1.265625 4.859375,1.265625 9.65625,3.8125 v -8.5 q -4.84375,-2.046875 -9.921875,-3.125 -5.078125,-1.078125 -10.296875,-1.078125 -13.09375,0 -20.734375,7.609375 -7.640625,7.625 -7.640625,20.625 0,13.421875 7.25,21.296875 Q 20.015625,56 32.328125,56 q 11.03125,0 17.453125,-7.109375 6.421875,-7.09375 6.421875,-19.296875 z m -8.984375,2.640625 q -0.09375,7.359375 -4.125,11.75 -4.03125,4.40625 -10.671875,4.40625 -7.515625,0 -12.03125,-4.25 -4.515625,-4.25 -5.203125,-11.96875 z" | |
id="DejaVuSans-101" /> | |
<path | |
id="DejaVuSans-32" | |
d="" /> | |
<path | |
d="M 37.109375,75.984375 V 68.5 h -8.59375 q -4.828125,0 -6.71875,-1.953125 -1.875,-1.953125 -1.875,-7.03125 V 54.6875 H 34.71875 V 47.703125 H 19.921875 V 0 h -9.03125 V 47.703125 H 2.296875 V 54.6875 h 8.59375 V 58.5 q 0,9.125 4.25,13.296875 4.25,4.1875 13.46875,4.1875 z" | |
id="DejaVuSans-102" /> | |
<path | |
d="m 30.609375,48.390625 q -7.21875,0 -11.421875,-5.640625 -4.203125,-5.640625 -4.203125,-15.453125 0,-9.8125 4.171875,-15.453125 4.1875,-5.640625 11.453125,-5.640625 7.1875,0 11.375,5.65625 4.203125,5.671875 4.203125,15.4375 0,9.71875 -4.203125,15.40625 -4.1875,5.6875 -11.375,5.6875 z m 0,7.609375 q 11.71875,0 18.40625,-7.625 6.703125,-7.609375 6.703125,-21.078125 0,-13.421875 -6.703125,-21.078125 -6.6875,-7.640625 -18.40625,-7.640625 -11.765625,0 -18.4375,7.640625 -6.65625,7.65625 -6.65625,21.078125 0,13.46875 6.65625,21.078125 Q 18.84375,56 30.609375,56 Z" | |
id="DejaVuSans-111" /> | |
<path | |
d="m 41.109375,46.296875 q -1.515625,0.875 -3.296875,1.28125 Q 36.03125,48 33.890625,48 26.265625,48 22.1875,43.046875 18.109375,38.09375 18.109375,28.8125 V 0 h -9.03125 v 54.6875 h 9.03125 v -8.5 q 2.84375,4.984375 7.375,7.390625 Q 30.03125,56 36.53125,56 q 0.921875,0 2.046875,-0.125 1.125,-0.109375 2.484375,-0.359375 z" | |
id="DejaVuSans-114" /> | |
<path | |
d="M 70.125,53.71875 47.796875,31.296875 70.125,8.984375 64.3125,3.078125 41.890625,25.484375 19.484375,3.078125 13.71875,8.984375 35.984375,31.296875 13.71875,53.71875 19.484375,59.625 41.890625,37.203125 64.3125,59.625 Z" | |
id="DejaVuSans-215" /> | |
<path | |
d="m 18.109375,8.203125 v -29 H 9.078125 V 54.6875 h 9.03125 v -8.296875 q 2.84375,4.875 7.15625,7.234375 Q 29.59375,56 35.59375,56 q 9.96875,0 16.1875,-7.90625 6.234375,-7.90625 6.234375,-20.796875 0,-12.890625 -6.234375,-20.8125 -6.21875,-7.90625 -16.1875,-7.90625 -6,0 -10.328125,2.375 -4.3125,2.375 -7.15625,7.25 z M 48.6875,27.296875 q 0,9.90625 -4.078125,15.546875 -4.078125,5.640625 -11.203125,5.640625 -7.140625,0 -11.21875,-5.640625 -4.078125,-5.640625 -4.078125,-15.546875 0,-9.90625 4.078125,-15.546875 4.078125,-5.640625 11.21875,-5.640625 7.125,0 11.203125,5.640625 4.078125,5.640625 4.078125,15.546875 z" | |
id="DejaVuSans-112" /> | |
<path | |
d="M 54.890625,54.6875 35.109375,28.078125 55.90625,0 H 45.3125 L 29.390625,21.484375 13.484375,0 H 2.875 L 24.125,28.609375 4.6875,54.6875 h 10.59375 l 14.5,-19.484375 14.5,19.484375 z" | |
id="DejaVuSans-120" /> | |
<path | |
d="M 9.421875,75.984375 H 18.40625 V 0 H 9.421875 Z" | |
id="DejaVuSans-108" /> | |
<path | |
d="m 44.28125,53.078125 v -8.5 Q 40.484375,46.53125 36.375,47.5 q -4.09375,0.984375 -8.5,0.984375 -6.6875,0 -10.03125,-2.046875 Q 14.5,44.390625 14.5,40.28125 q 0,-3.125 2.390625,-4.90625 2.390625,-1.78125 9.625,-3.390625 l 3.078125,-0.6875 Q 39.15625,29.25 43.1875,25.515625 47.21875,21.78125 47.21875,15.09375 q 0,-7.625 -6.03125,-12.078125 -6.03125,-4.4375 -16.578125,-4.4375 -4.390625,0 -9.15625,0.859375 Q 10.6875,0.296875 5.421875,2 v 9.28125 q 4.984375,-2.59375 9.8125,-3.890625 4.828125,-1.28125 9.578125,-1.28125 6.34375,0 9.75,2.171875 3.421875,2.171875 3.421875,6.125 0,3.65625 -2.46875,5.609375 -2.453125,1.953125 -10.8125,3.765625 l -3.125,0.734375 q -8.34375,1.75 -12.0625,5.390625 -3.703125,3.640625 -3.703125,9.984375 0,7.71875 5.46875,11.90625 Q 16.75,56 26.8125,56 q 4.96875,0 9.359375,-0.734375 4.40625,-0.71875 8.109375,-2.1875 z" | |
id="DejaVuSans-115" /> | |
<path | |
d="M 31,75.875 Q 24.46875,64.65625 21.28125,53.65625 18.109375,42.671875 18.109375,31.390625 18.109375,20.125 21.3125,9.0625 24.515625,-2 31,-13.1875 H 23.1875 Q 15.875,-1.703125 12.234375,9.375 8.59375,20.453125 8.59375,31.390625 q 0,10.890625 3.609375,21.921875 3.625,11.046875 10.984375,22.5625 z" | |
id="DejaVuSans-40" /> | |
<path | |
d="m 8.015625,75.875 h 7.8125 q 7.3125,-11.515625 10.953125,-22.5625 3.640625,-11.03125 3.640625,-21.921875 0,-10.9375 -3.640625,-22.015625 -3.640625,-11.078125 -10.953125,-22.5625 h -7.8125 Q 14.5,-2 17.703125,9.0625 20.90625,20.125 20.90625,31.390625 q 0,11.28125 -3.203125,22.265625 -3.203125,11 -9.6875,22.21875 z" | |
id="DejaVuSans-41" /> | |
<path | |
d="M 11.71875,12.40625 H 22.015625 V 4 l -8,-15.625 H 7.71875 l 4,15.625 z" | |
id="DejaVuSans-44" /> | |
<path | |
d="m 34.28125,27.484375 q -10.890625,0 -15.09375,-2.484375 -4.203125,-2.484375 -4.203125,-8.5 0,-4.78125 3.15625,-7.59375 3.15625,-2.796875 8.5625,-2.796875 7.484375,0 12,5.296875 4.515625,5.296875 4.515625,14.078125 v 2 z m 17.921875,3.71875 V 0 H 43.21875 v 8.296875 q -3.078125,-4.96875 -7.671875,-7.34375 -4.59375,-2.375 -11.234375,-2.375 -8.390625,0 -13.359375,4.71875 Q 6,8.015625 6,15.921875 q 0,9.21875 6.171875,13.90625 6.1875,4.6875 18.4375,4.6875 H 43.21875 v 0.890625 q 0,6.203125 -4.078125,9.59375 -4.078125,3.390625 -11.453125,3.390625 -4.6875,0 -9.140625,-1.125 -4.4375,-1.125 -8.53125,-3.375 v 8.3125 q 4.921875,1.90625 9.5625,2.84375 Q 24.21875,56 28.609375,56 q 11.875,0 17.734375,-6.15625 5.859375,-6.140625 5.859375,-18.640625 z" | |
id="DejaVuSans-97" /> | |
<path | |
d="m 48.6875,27.296875 q 0,9.90625 -4.078125,15.546875 -4.078125,5.640625 -11.203125,5.640625 -7.140625,0 -11.21875,-5.640625 -4.078125,-5.640625 -4.078125,-15.546875 0,-9.90625 4.078125,-15.546875 4.078125,-5.640625 11.21875,-5.640625 7.125,0 11.203125,5.640625 4.078125,5.640625 4.078125,15.546875 z m -30.578125,19.09375 q 2.84375,4.875 7.15625,7.234375 Q 29.59375,56 35.59375,56 q 9.96875,0 16.1875,-7.90625 6.234375,-7.90625 6.234375,-20.796875 0,-12.890625 -6.234375,-20.8125 -6.21875,-7.90625 -16.1875,-7.90625 -6,0 -10.328125,2.375 -4.3125,2.375 -7.15625,7.25 V 0 h -9.03125 v 75.984375 h 9.03125 z" | |
id="DejaVuSans-98" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,244.91719,343.27656)" | |
id="g488"> | |
<use | |
xlink:href="#DejaVuSans-116" | |
id="use390" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="39.208984" | |
xlink:href="#DejaVuSans-105" | |
id="use392" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="66.992188" | |
xlink:href="#DejaVuSans-109" | |
id="use394" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="164.4043" | |
xlink:href="#DejaVuSans-101" | |
id="use396" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="225.92773" | |
xlink:href="#DejaVuSans-32" | |
id="use398" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="257.71484" | |
xlink:href="#DejaVuSans-102" | |
id="use400" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="292.91992" | |
xlink:href="#DejaVuSans-111" | |
id="use402" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="354.10156" | |
xlink:href="#DejaVuSans-114" | |
id="use404" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="395.21484" | |
xlink:href="#DejaVuSans-32" | |
id="use406" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="427.00195" | |
xlink:href="#DejaVuSans-50" | |
id="use408" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="490.625" | |
xlink:href="#DejaVuSans-48" | |
id="use410" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="554.24805" | |
xlink:href="#DejaVuSans-48" | |
id="use412" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="617.87109" | |
xlink:href="#DejaVuSans-48" | |
id="use414" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="681.49414" | |
xlink:href="#DejaVuSans-215" | |
id="use416" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="765.2832" | |
xlink:href="#DejaVuSans-51" | |
id="use418" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="828.90625" | |
xlink:href="#DejaVuSans-48" | |
id="use420" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="892.5293" | |
xlink:href="#DejaVuSans-48" | |
id="use422" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="956.15234" | |
xlink:href="#DejaVuSans-48" | |
id="use424" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1019.7754" | |
xlink:href="#DejaVuSans-32" | |
id="use426" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1051.5625" | |
xlink:href="#DejaVuSans-112" | |
id="use428" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1115.0391" | |
xlink:href="#DejaVuSans-105" | |
id="use430" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1142.8223" | |
xlink:href="#DejaVuSans-120" | |
id="use432" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1198.877" | |
xlink:href="#DejaVuSans-101" | |
id="use434" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1260.4004" | |
xlink:href="#DejaVuSans-108" | |
id="use436" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1288.1836" | |
xlink:href="#DejaVuSans-115" | |
id="use438" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1340.2832" | |
xlink:href="#DejaVuSans-32" | |
id="use440" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1372.0703" | |
xlink:href="#DejaVuSans-40" | |
id="use442" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1411.084" | |
xlink:href="#DejaVuSans-109" | |
id="use444" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1508.4961" | |
xlink:href="#DejaVuSans-115" | |
id="use446" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1560.5957" | |
xlink:href="#DejaVuSans-41" | |
id="use448" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1599.6094" | |
xlink:href="#DejaVuSans-44" | |
id="use450" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1631.3965" | |
xlink:href="#DejaVuSans-32" | |
id="use452" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1663.1836" | |
xlink:href="#DejaVuSans-115" | |
id="use454" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1715.2832" | |
xlink:href="#DejaVuSans-109" | |
id="use456" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1812.6953" | |
xlink:href="#DejaVuSans-97" | |
id="use458" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1873.9746" | |
xlink:href="#DejaVuSans-108" | |
id="use460" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1901.7578" | |
xlink:href="#DejaVuSans-108" | |
id="use462" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1929.541" | |
xlink:href="#DejaVuSans-101" | |
id="use464" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1991.0645" | |
xlink:href="#DejaVuSans-114" | |
id="use466" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2032.1777" | |
xlink:href="#DejaVuSans-32" | |
id="use468" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2063.9648" | |
xlink:href="#DejaVuSans-105" | |
id="use470" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2091.748" | |
xlink:href="#DejaVuSans-115" | |
id="use472" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2143.8477" | |
xlink:href="#DejaVuSans-32" | |
id="use474" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2175.6348" | |
xlink:href="#DejaVuSans-98" | |
id="use476" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2239.1113" | |
xlink:href="#DejaVuSans-101" | |
id="use478" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2300.6348" | |
xlink:href="#DejaVuSans-116" | |
id="use480" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2339.8438" | |
xlink:href="#DejaVuSans-116" | |
id="use482" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2379.0527" | |
xlink:href="#DejaVuSans-101" | |
id="use484" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2440.5762" | |
xlink:href="#DejaVuSans-114" | |
id="use486" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="matplotlib.axis_2"> | |
<g | |
id="ytick_1"> | |
<g | |
id="line2d_44"> | |
<defs | |
id="defs493"> | |
<path | |
d="M 0,0 H -3.5" | |
id="mf8097922d4" | |
style="stroke:#000000;stroke-width:0.8" /> | |
</defs> | |
<g | |
id="g497"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="297.27393" | |
id="use495" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_7"> | |
<!-- JAX: array-oriented with automatic fusion into JIT-compiled routines on GPU --> | |
<defs | |
id="defs517"> | |
<path | |
d="m 9.8125,72.90625 h 9.859375 V 5.078125 q 0,-13.1875 -5,-19.140625 -5,-5.953125 -16.09375,-5.953125 h -3.75 v 8.296875 h 3.078125 q 6.53125,0 9.21875,3.671875 2.6875,3.65625 2.6875,13.125 z" | |
id="DejaVuSans-74" /> | |
<path | |
d="M 34.1875,63.1875 20.796875,26.90625 h 26.8125 z m -5.578125,9.71875 h 11.1875 L 67.578125,0 h -10.25 L 50.6875,18.703125 H 17.828125 L 11.1875,0 H 0.78125 Z" | |
id="DejaVuSans-65" /> | |
<path | |
d="m 6.296875,72.90625 h 10.59375 L 35.015625,45.796875 53.21875,72.90625 H 63.8125 L 40.375,37.890625 65.375,0 H 54.78125 l -20.5,31 L 13.625,0 H 2.984375 L 29,38.921875 Z" | |
id="DejaVuSans-88" /> | |
<path | |
d="M 11.71875,12.40625 H 22.015625 V 0 H 11.71875 Z m 0,39.296875 H 22.015625 V 39.3125 H 11.71875 Z" | |
id="DejaVuSans-58" /> | |
<path | |
d="M 32.171875,-5.078125 Q 28.375,-14.84375 24.75,-17.8125 q -3.609375,-2.984375 -9.65625,-2.984375 h -7.1875 v 7.515625 h 5.28125 q 3.703125,0 5.75,1.765625 2.0625,1.75 4.546875,8.296875 L 25.09375,0.875 2.984375,54.6875 H 12.5 L 29.59375,11.921875 46.6875,54.6875 h 9.515625 z" | |
id="DejaVuSans-121" /> | |
<path | |
d="m 4.890625,31.390625 h 26.3125 v -8 h -26.3125 z" | |
id="DejaVuSans-45" /> | |
<path | |
d="M 54.890625,33.015625 V 0 H 45.90625 v 32.71875 q 0,7.765625 -3.03125,11.609375 -3.03125,3.859375 -9.078125,3.859375 -7.28125,0 -11.484375,-4.640625 -4.203125,-4.625 -4.203125,-12.640625 V 0 h -9.03125 v 54.6875 h 9.03125 v -8.5 q 3.234375,4.9375 7.59375,7.375 4.375,2.4375 10.09375,2.4375 9.421875,0 14.25,-5.828125 4.84375,-5.828125 4.84375,-17.15625 z" | |
id="DejaVuSans-110" /> | |
<path | |
d="m 45.40625,46.390625 v 29.59375 h 8.984375 V 0 H 45.40625 v 8.203125 q -2.828125,-4.875 -7.15625,-7.25 -4.3125,-2.375 -10.375,-2.375 -9.90625,0 -16.140625,7.90625 -6.21875,7.921875 -6.21875,20.8125 0,12.890625 6.21875,20.796875 Q 17.96875,56 27.875,56 q 6.0625,0 10.375,-2.375 4.328125,-2.359375 7.15625,-7.234375 z M 14.796875,27.296875 q 0,-9.90625 4.078125,-15.546875 4.078125,-5.640625 11.203125,-5.640625 7.125,0 11.21875,5.640625 4.109375,5.640625 4.109375,15.546875 0,9.90625 -4.109375,15.546875 -4.09375,5.640625 -11.21875,5.640625 -7.125,0 -11.203125,-5.640625 -4.078125,-5.640625 -4.078125,-15.546875 z" | |
id="DejaVuSans-100" /> | |
<path | |
d="M 4.203125,54.6875 H 13.1875 L 24.421875,12.015625 35.59375,54.6875 H 46.1875 L 57.421875,12.015625 68.609375,54.6875 H 77.59375 L 63.28125,0 H 52.6875 L 40.921875,44.828125 29.109375,0 H 18.5 Z" | |
id="DejaVuSans-119" /> | |
<path | |
d="M 54.890625,33.015625 V 0 H 45.90625 v 32.71875 q 0,7.765625 -3.03125,11.609375 -3.03125,3.859375 -9.078125,3.859375 -7.28125,0 -11.484375,-4.640625 -4.203125,-4.625 -4.203125,-12.640625 V 0 h -9.03125 v 75.984375 h 9.03125 V 46.1875 q 3.234375,4.9375 7.59375,7.375 4.375,2.4375 10.09375,2.4375 9.421875,0 14.25,-5.828125 4.84375,-5.828125 4.84375,-17.15625 z" | |
id="DejaVuSans-104" /> | |
<path | |
d="M 8.5,21.578125 V 54.6875 h 8.984375 V 21.921875 q 0,-7.765625 3.015625,-11.65625 3.03125,-3.875 9.09375,-3.875 7.265625,0 11.484375,4.640625 4.234375,4.640625 4.234375,12.65625 v 31 h 8.984375 V 0 H 45.3125 V 8.40625 Q 42.046875,3.421875 37.71875,1 33.40625,-1.421875 27.6875,-1.421875 18.265625,-1.421875 13.375,4.4375 8.5,10.296875 8.5,21.578125 Z M 31.109375,56 Z" | |
id="DejaVuSans-117" /> | |
<path | |
d="M 48.78125,52.59375 V 44.1875 q -3.8125,2.109375 -7.640625,3.15625 -3.828125,1.046875 -7.734375,1.046875 -8.75,0 -13.59375,-5.546875 -4.828125,-5.53125 -4.828125,-15.546875 0,-10.015625 4.828125,-15.5625 4.84375,-5.53125 13.59375,-5.53125 3.90625,0 7.734375,1.046875 3.828125,1.046875 7.640625,3.15625 v -8.3125 q -3.765625,-1.75 -7.796875,-2.625 -4.015625,-0.890625 -8.5625,-0.890625 -12.359375,0 -19.640625,7.765625 -7.265625,7.765625 -7.265625,20.953125 0,13.375 7.34375,21.03125 Q 20.21875,56 33.015625,56 q 4.140625,0 8.09375,-0.859375 3.953125,-0.84375 7.671875,-2.546875 z" | |
id="DejaVuSans-99" /> | |
<path | |
d="m 9.8125,72.90625 h 9.859375 V 0 H 9.8125 Z" | |
id="DejaVuSans-73" /> | |
<path | |
d="M -0.296875,72.90625 H 61.375 v -8.3125 H 35.5 V 0 H 25.59375 V 64.59375 H -0.296875 Z" | |
id="DejaVuSans-84" /> | |
<path | |
d="M 59.515625,10.40625 V 29.984375 H 43.40625 v 8.109375 h 25.875 V 6.78125 Q 63.578125,2.734375 56.6875,0.65625 49.8125,-1.421875 42,-1.421875 q -17.09375,0 -26.75,9.984375 -9.640625,10 -9.640625,27.8125 0,17.875 9.640625,27.859375 9.65625,9.984375 26.75,9.984375 7.125,0 13.546875,-1.765625 6.421875,-1.75 11.84375,-5.171875 v -10.5 q -5.46875,4.640625 -11.625,6.984375 -6.15625,2.34375 -12.9375,2.34375 -13.390625,0 -20.109375,-7.46875 -6.703125,-7.46875 -6.703125,-22.265625 0,-14.75 6.703125,-22.21875 6.71875,-7.46875 20.109375,-7.46875 5.21875,0 9.3125,0.90625 4.109375,0.90625 7.375,2.8125 z" | |
id="DejaVuSans-71" /> | |
<path | |
d="M 19.671875,64.796875 V 37.40625 h 12.40625 q 6.890625,0 10.640625,3.5625 3.765625,3.5625 3.765625,10.15625 0,6.546875 -3.765625,10.109375 -3.75,3.5625 -10.640625,3.5625 z M 9.8125,72.90625 h 22.265625 q 12.265625,0 18.53125,-5.546875 6.28125,-5.546875 6.28125,-16.234375 0,-10.796875 -6.28125,-16.3125 -6.265625,-5.515625 -18.53125,-5.515625 H 19.671875 V 0 H 9.8125 Z" | |
id="DejaVuSans-80" /> | |
<path | |
d="m 8.6875,72.90625 h 9.921875 V 28.609375 q 0,-11.71875 4.234375,-16.875 4.25,-5.140625 13.78125,-5.140625 9.46875,0 13.71875,5.140625 4.25,5.15625 4.25,16.875 V 72.90625 H 64.5 V 27.390625 q 0,-14.25 -7.0625,-21.53125 -7.046875,-7.28125 -20.8125,-7.28125 -13.828125,0 -20.890625,7.28125 Q 8.6875,13.140625 8.6875,27.390625 Z" | |
id="DejaVuSans-85" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-293.20156,301.07313)" | |
id="g669"> | |
<use | |
xlink:href="#DejaVuSans-74" | |
id="use519" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="27.742188" | |
xlink:href="#DejaVuSans-65" | |
id="use521" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="96.150391" | |
xlink:href="#DejaVuSans-88" | |
id="use523" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="164.65625" | |
xlink:href="#DejaVuSans-58" | |
id="use525" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="198.34766" | |
xlink:href="#DejaVuSans-32" | |
id="use527" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="230.13477" | |
xlink:href="#DejaVuSans-97" | |
id="use529" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="291.41406" | |
xlink:href="#DejaVuSans-114" | |
id="use531" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="330.77734" | |
xlink:href="#DejaVuSans-114" | |
id="use533" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="371.89062" | |
xlink:href="#DejaVuSans-97" | |
id="use535" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="433.16992" | |
xlink:href="#DejaVuSans-121" | |
id="use537" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="490.59961" | |
xlink:href="#DejaVuSans-45" | |
id="use539" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="528.55859" | |
xlink:href="#DejaVuSans-111" | |
id="use541" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="589.74023" | |
xlink:href="#DejaVuSans-114" | |
id="use543" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="630.85352" | |
xlink:href="#DejaVuSans-105" | |
id="use545" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="658.63672" | |
xlink:href="#DejaVuSans-101" | |
id="use547" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="720.16016" | |
xlink:href="#DejaVuSans-110" | |
id="use549" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="783.53906" | |
xlink:href="#DejaVuSans-116" | |
id="use551" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="822.74805" | |
xlink:href="#DejaVuSans-101" | |
id="use553" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="884.27148" | |
xlink:href="#DejaVuSans-100" | |
id="use555" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="947.74805" | |
xlink:href="#DejaVuSans-32" | |
id="use557" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="979.53516" | |
xlink:href="#DejaVuSans-119" | |
id="use559" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1061.3223" | |
xlink:href="#DejaVuSans-105" | |
id="use561" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1089.1055" | |
xlink:href="#DejaVuSans-116" | |
id="use563" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1128.3145" | |
xlink:href="#DejaVuSans-104" | |
id="use565" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1191.6934" | |
xlink:href="#DejaVuSans-32" | |
id="use567" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1223.4805" | |
xlink:href="#DejaVuSans-97" | |
id="use569" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1284.7598" | |
xlink:href="#DejaVuSans-117" | |
id="use571" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1348.1387" | |
xlink:href="#DejaVuSans-116" | |
id="use573" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1387.3477" | |
xlink:href="#DejaVuSans-111" | |
id="use575" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1448.5293" | |
xlink:href="#DejaVuSans-109" | |
id="use577" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1545.9414" | |
xlink:href="#DejaVuSans-97" | |
id="use579" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1607.2207" | |
xlink:href="#DejaVuSans-116" | |
id="use581" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1646.4297" | |
xlink:href="#DejaVuSans-105" | |
id="use583" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1674.2129" | |
xlink:href="#DejaVuSans-99" | |
id="use585" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1729.1934" | |
xlink:href="#DejaVuSans-32" | |
id="use587" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1760.9805" | |
xlink:href="#DejaVuSans-102" | |
id="use589" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1796.1855" | |
xlink:href="#DejaVuSans-117" | |
id="use591" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1859.5645" | |
xlink:href="#DejaVuSans-115" | |
id="use593" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1911.6641" | |
xlink:href="#DejaVuSans-105" | |
id="use595" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1939.4473" | |
xlink:href="#DejaVuSans-111" | |
id="use597" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2000.6289" | |
xlink:href="#DejaVuSans-110" | |
id="use599" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2064.0078" | |
xlink:href="#DejaVuSans-32" | |
id="use601" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2095.7949" | |
xlink:href="#DejaVuSans-105" | |
id="use603" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2123.5781" | |
xlink:href="#DejaVuSans-110" | |
id="use605" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2186.957" | |
xlink:href="#DejaVuSans-116" | |
id="use607" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2226.166" | |
xlink:href="#DejaVuSans-111" | |
id="use609" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2287.3477" | |
xlink:href="#DejaVuSans-32" | |
id="use611" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2319.1348" | |
xlink:href="#DejaVuSans-74" | |
id="use613" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2348.627" | |
xlink:href="#DejaVuSans-73" | |
id="use615" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2378.1191" | |
xlink:href="#DejaVuSans-84" | |
id="use617" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2430.0781" | |
xlink:href="#DejaVuSans-45" | |
id="use619" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2466.1621" | |
xlink:href="#DejaVuSans-99" | |
id="use621" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2521.1426" | |
xlink:href="#DejaVuSans-111" | |
id="use623" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2582.3242" | |
xlink:href="#DejaVuSans-109" | |
id="use625" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2679.7363" | |
xlink:href="#DejaVuSans-112" | |
id="use627" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2743.2129" | |
xlink:href="#DejaVuSans-105" | |
id="use629" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2770.9961" | |
xlink:href="#DejaVuSans-108" | |
id="use631" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2798.7793" | |
xlink:href="#DejaVuSans-101" | |
id="use633" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2860.3027" | |
xlink:href="#DejaVuSans-100" | |
id="use635" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2923.7793" | |
xlink:href="#DejaVuSans-32" | |
id="use637" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2955.5664" | |
xlink:href="#DejaVuSans-114" | |
id="use639" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2994.4297" | |
xlink:href="#DejaVuSans-111" | |
id="use641" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3055.6113" | |
xlink:href="#DejaVuSans-117" | |
id="use643" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3118.9902" | |
xlink:href="#DejaVuSans-116" | |
id="use645" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3158.1992" | |
xlink:href="#DejaVuSans-105" | |
id="use647" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3185.9824" | |
xlink:href="#DejaVuSans-110" | |
id="use649" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3249.3613" | |
xlink:href="#DejaVuSans-101" | |
id="use651" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3310.8848" | |
xlink:href="#DejaVuSans-115" | |
id="use653" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3362.9844" | |
xlink:href="#DejaVuSans-32" | |
id="use655" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3394.7715" | |
xlink:href="#DejaVuSans-111" | |
id="use657" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3455.9531" | |
xlink:href="#DejaVuSans-110" | |
id="use659" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3519.332" | |
xlink:href="#DejaVuSans-32" | |
id="use661" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3551.1191" | |
xlink:href="#DejaVuSans-71" | |
id="use663" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3628.6094" | |
xlink:href="#DejaVuSans-80" | |
id="use665" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3688.9121" | |
xlink:href="#DejaVuSans-85" | |
id="use667" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_2"> | |
<g | |
id="line2d_45"> | |
<g | |
id="g675"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="273.63913" | |
id="use673" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_8"> | |
<!-- Numba-CUDA: imperative per pixel, array-oriented in the large --> | |
<defs | |
id="defs683"> | |
<path | |
d="M 9.8125,72.90625 H 23.09375 L 55.421875,11.921875 V 72.90625 h 9.5625 V 0 h -13.28125 l -32.3125,60.984375 V 0 H 9.8125 Z" | |
id="DejaVuSans-78" /> | |
<path | |
d="M 64.40625,67.28125 V 56.890625 q -4.984375,4.640625 -10.625,6.921875 -5.640625,2.296875 -11.984375,2.296875 -12.5,0 -19.140625,-7.640625 -6.640625,-7.640625 -6.640625,-22.09375 0,-14.40625 6.640625,-22.046875 Q 29.296875,6.6875 41.796875,6.6875 q 6.34375,0 11.984375,2.296875 5.640625,2.296875 10.625,6.9375 V 5.609375 Q 59.234375,2.09375 53.4375,0.328125 q -5.78125,-1.75 -12.21875,-1.75 -16.5625,0 -26.09375,10.125 Q 5.609375,18.84375 5.609375,36.375 q 0,17.578125 9.515625,27.703125 9.53125,10.140625 26.09375,10.140625 6.53125,0 12.3125,-1.734375 5.796875,-1.734375 10.875,-5.203125 z" | |
id="DejaVuSans-67" /> | |
<path | |
d="M 19.671875,64.796875 V 8.109375 H 31.59375 q 15.09375,0 22.09375,6.828125 7,6.84375 7,21.59375 0,14.640625 -7,21.453125 -7,6.8125 -22.09375,6.8125 z M 9.8125,72.90625 h 20.265625 q 21.1875,0 31.09375,-8.8125 9.921875,-8.8125 9.921875,-27.5625 0,-18.859375 -9.96875,-27.703125 Q 51.171875,0 30.078125,0 H 9.8125 Z" | |
id="DejaVuSans-68" /> | |
<path | |
d="M 2.984375,54.6875 H 12.5 L 29.59375,8.796875 46.6875,54.6875 h 9.515625 L 35.6875,0 H 23.484375 Z" | |
id="DejaVuSans-118" /> | |
<path | |
d="m 45.40625,27.984375 q 0,9.765625 -4.03125,15.125 -4.015625,5.375 -11.296875,5.375 -7.21875,0 -11.25,-5.375 -4.03125,-5.359375 -4.03125,-15.125 0,-9.71875 4.03125,-15.09375 4.03125,-5.375 11.25,-5.375 7.28125,0 11.296875,5.375 4.03125,5.375 4.03125,15.09375 z M 54.390625,6.78125 q 0,-13.953125 -6.203125,-20.765625 -6.1875,-6.8125 -18.984375,-6.8125 -4.734375,0 -8.9375,0.703125 -4.203125,0.703125 -8.15625,2.171875 V -9.1875 q 3.953125,-2.140625 7.8125,-3.15625 3.859375,-1.03125 7.859375,-1.03125 8.84375,0 13.234375,4.609375 4.390625,4.609375 4.390625,13.9375 V 9.625 Q 42.625,4.78125 38.28125,2.390625 33.9375,0 27.875,0 17.828125,0 11.671875,7.65625 q -6.15625,7.671875 -6.15625,20.328125 0,12.6875 6.15625,20.34375 Q 17.828125,56 27.875,56 q 6.0625,0 10.40625,-2.390625 4.34375,-2.390625 7.125,-7.21875 V 54.6875 h 8.984375 z" | |
id="DejaVuSans-103" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-230.86875,277.43835)" | |
id="g807"> | |
<use | |
xlink:href="#DejaVuSans-78" | |
id="use685" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="74.804688" | |
xlink:href="#DejaVuSans-117" | |
id="use687" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="138.18359" | |
xlink:href="#DejaVuSans-109" | |
id="use689" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="235.5957" | |
xlink:href="#DejaVuSans-98" | |
id="use691" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="299.07227" | |
xlink:href="#DejaVuSans-97" | |
id="use693" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="360.35156" | |
xlink:href="#DejaVuSans-45" | |
id="use695" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="396.43555" | |
xlink:href="#DejaVuSans-67" | |
id="use697" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="466.25977" | |
xlink:href="#DejaVuSans-85" | |
id="use699" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="539.45312" | |
xlink:href="#DejaVuSans-68" | |
id="use701" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="614.70508" | |
xlink:href="#DejaVuSans-65" | |
id="use703" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="681.36328" | |
xlink:href="#DejaVuSans-58" | |
id="use705" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="715.05469" | |
xlink:href="#DejaVuSans-32" | |
id="use707" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="746.8418" | |
xlink:href="#DejaVuSans-105" | |
id="use709" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="774.625" | |
xlink:href="#DejaVuSans-109" | |
id="use711" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="872.03711" | |
xlink:href="#DejaVuSans-112" | |
id="use713" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="935.51367" | |
xlink:href="#DejaVuSans-101" | |
id="use715" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="997.03711" | |
xlink:href="#DejaVuSans-114" | |
id="use717" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1038.1504" | |
xlink:href="#DejaVuSans-97" | |
id="use719" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1099.4297" | |
xlink:href="#DejaVuSans-116" | |
id="use721" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1138.6387" | |
xlink:href="#DejaVuSans-105" | |
id="use723" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1166.4219" | |
xlink:href="#DejaVuSans-118" | |
id="use725" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1225.6016" | |
xlink:href="#DejaVuSans-101" | |
id="use727" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1287.125" | |
xlink:href="#DejaVuSans-32" | |
id="use729" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1318.9121" | |
xlink:href="#DejaVuSans-112" | |
id="use731" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1382.3887" | |
xlink:href="#DejaVuSans-101" | |
id="use733" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1443.9121" | |
xlink:href="#DejaVuSans-114" | |
id="use735" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1485.0254" | |
xlink:href="#DejaVuSans-32" | |
id="use737" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1516.8125" | |
xlink:href="#DejaVuSans-112" | |
id="use739" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1580.2891" | |
xlink:href="#DejaVuSans-105" | |
id="use741" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1608.0723" | |
xlink:href="#DejaVuSans-120" | |
id="use743" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1664.127" | |
xlink:href="#DejaVuSans-101" | |
id="use745" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1725.6504" | |
xlink:href="#DejaVuSans-108" | |
id="use747" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1753.4336" | |
xlink:href="#DejaVuSans-44" | |
id="use749" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1785.2207" | |
xlink:href="#DejaVuSans-32" | |
id="use751" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1817.0078" | |
xlink:href="#DejaVuSans-97" | |
id="use753" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1878.2871" | |
xlink:href="#DejaVuSans-114" | |
id="use755" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1917.6504" | |
xlink:href="#DejaVuSans-114" | |
id="use757" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1958.7637" | |
xlink:href="#DejaVuSans-97" | |
id="use759" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2020.043" | |
xlink:href="#DejaVuSans-121" | |
id="use761" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2077.4727" | |
xlink:href="#DejaVuSans-45" | |
id="use763" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2115.4316" | |
xlink:href="#DejaVuSans-111" | |
id="use765" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2176.6133" | |
xlink:href="#DejaVuSans-114" | |
id="use767" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2217.7266" | |
xlink:href="#DejaVuSans-105" | |
id="use769" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2245.5098" | |
xlink:href="#DejaVuSans-101" | |
id="use771" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2307.0332" | |
xlink:href="#DejaVuSans-110" | |
id="use773" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2370.4121" | |
xlink:href="#DejaVuSans-116" | |
id="use775" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2409.6211" | |
xlink:href="#DejaVuSans-101" | |
id="use777" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2471.1445" | |
xlink:href="#DejaVuSans-100" | |
id="use779" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2534.6211" | |
xlink:href="#DejaVuSans-32" | |
id="use781" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2566.4082" | |
xlink:href="#DejaVuSans-105" | |
id="use783" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2594.1914" | |
xlink:href="#DejaVuSans-110" | |
id="use785" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2657.5703" | |
xlink:href="#DejaVuSans-32" | |
id="use787" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2689.3574" | |
xlink:href="#DejaVuSans-116" | |
id="use789" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2728.5664" | |
xlink:href="#DejaVuSans-104" | |
id="use791" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2791.9453" | |
xlink:href="#DejaVuSans-101" | |
id="use793" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2853.4688" | |
xlink:href="#DejaVuSans-32" | |
id="use795" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2885.2559" | |
xlink:href="#DejaVuSans-108" | |
id="use797" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2913.0391" | |
xlink:href="#DejaVuSans-97" | |
id="use799" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2974.3184" | |
xlink:href="#DejaVuSans-114" | |
id="use801" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3013.6816" | |
xlink:href="#DejaVuSans-103" | |
id="use803" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3077.1582" | |
xlink:href="#DejaVuSans-101" | |
id="use805" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_3"> | |
<g | |
id="line2d_46"> | |
<g | |
id="g813"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="250.00435" | |
id="use811" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_9"> | |
<!-- CuPy with a custom kernel: imperative per pixel, array-oriented in the large --> | |
<defs | |
id="defs817"> | |
<path | |
d="m 9.078125,75.984375 h 9.03125 v -44.875 l 26.8125,23.578125 h 11.46875 l -29,-25.578125 L 57.625,0 H 45.90625 L 18.109375,26.703125 V 0 h -9.03125 z" | |
id="DejaVuSans-107" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-295.66719,253.80357)" | |
id="g971"> | |
<use | |
xlink:href="#DejaVuSans-67" | |
id="use819" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="69.824219" | |
xlink:href="#DejaVuSans-117" | |
id="use821" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="133.20312" | |
xlink:href="#DejaVuSans-80" | |
id="use823" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="193.50586" | |
xlink:href="#DejaVuSans-121" | |
id="use825" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="252.68555" | |
xlink:href="#DejaVuSans-32" | |
id="use827" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="284.47266" | |
xlink:href="#DejaVuSans-119" | |
id="use829" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="366.25977" | |
xlink:href="#DejaVuSans-105" | |
id="use831" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="394.04297" | |
xlink:href="#DejaVuSans-116" | |
id="use833" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="433.25195" | |
xlink:href="#DejaVuSans-104" | |
id="use835" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="496.63086" | |
xlink:href="#DejaVuSans-32" | |
id="use837" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="528.41797" | |
xlink:href="#DejaVuSans-97" | |
id="use839" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="589.69727" | |
xlink:href="#DejaVuSans-32" | |
id="use841" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="621.48438" | |
xlink:href="#DejaVuSans-99" | |
id="use843" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="676.46484" | |
xlink:href="#DejaVuSans-117" | |
id="use845" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="739.84375" | |
xlink:href="#DejaVuSans-115" | |
id="use847" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="791.94336" | |
xlink:href="#DejaVuSans-116" | |
id="use849" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="831.15234" | |
xlink:href="#DejaVuSans-111" | |
id="use851" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="892.33398" | |
xlink:href="#DejaVuSans-109" | |
id="use853" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="989.74609" | |
xlink:href="#DejaVuSans-32" | |
id="use855" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1021.5332" | |
xlink:href="#DejaVuSans-107" | |
id="use857" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1075.8184" | |
xlink:href="#DejaVuSans-101" | |
id="use859" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1137.3418" | |
xlink:href="#DejaVuSans-114" | |
id="use861" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1176.7051" | |
xlink:href="#DejaVuSans-110" | |
id="use863" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1240.084" | |
xlink:href="#DejaVuSans-101" | |
id="use865" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1301.6074" | |
xlink:href="#DejaVuSans-108" | |
id="use867" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1329.3906" | |
xlink:href="#DejaVuSans-58" | |
id="use869" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1363.082" | |
xlink:href="#DejaVuSans-32" | |
id="use871" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1394.8691" | |
xlink:href="#DejaVuSans-105" | |
id="use873" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1422.6523" | |
xlink:href="#DejaVuSans-109" | |
id="use875" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1520.0645" | |
xlink:href="#DejaVuSans-112" | |
id="use877" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1583.541" | |
xlink:href="#DejaVuSans-101" | |
id="use879" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1645.0645" | |
xlink:href="#DejaVuSans-114" | |
id="use881" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1686.1777" | |
xlink:href="#DejaVuSans-97" | |
id="use883" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1747.457" | |
xlink:href="#DejaVuSans-116" | |
id="use885" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1786.666" | |
xlink:href="#DejaVuSans-105" | |
id="use887" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1814.4492" | |
xlink:href="#DejaVuSans-118" | |
id="use889" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1873.6289" | |
xlink:href="#DejaVuSans-101" | |
id="use891" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1935.1523" | |
xlink:href="#DejaVuSans-32" | |
id="use893" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1966.9395" | |
xlink:href="#DejaVuSans-112" | |
id="use895" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2030.416" | |
xlink:href="#DejaVuSans-101" | |
id="use897" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2091.9395" | |
xlink:href="#DejaVuSans-114" | |
id="use899" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2133.0527" | |
xlink:href="#DejaVuSans-32" | |
id="use901" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2164.8398" | |
xlink:href="#DejaVuSans-112" | |
id="use903" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2228.3164" | |
xlink:href="#DejaVuSans-105" | |
id="use905" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2256.0996" | |
xlink:href="#DejaVuSans-120" | |
id="use907" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2312.1543" | |
xlink:href="#DejaVuSans-101" | |
id="use909" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2373.6777" | |
xlink:href="#DejaVuSans-108" | |
id="use911" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2401.4609" | |
xlink:href="#DejaVuSans-44" | |
id="use913" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2433.248" | |
xlink:href="#DejaVuSans-32" | |
id="use915" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2465.0352" | |
xlink:href="#DejaVuSans-97" | |
id="use917" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2526.3145" | |
xlink:href="#DejaVuSans-114" | |
id="use919" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2565.6777" | |
xlink:href="#DejaVuSans-114" | |
id="use921" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2606.791" | |
xlink:href="#DejaVuSans-97" | |
id="use923" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2668.0703" | |
xlink:href="#DejaVuSans-121" | |
id="use925" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2725.5" | |
xlink:href="#DejaVuSans-45" | |
id="use927" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2763.459" | |
xlink:href="#DejaVuSans-111" | |
id="use929" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2824.6406" | |
xlink:href="#DejaVuSans-114" | |
id="use931" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2865.7539" | |
xlink:href="#DejaVuSans-105" | |
id="use933" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2893.5371" | |
xlink:href="#DejaVuSans-101" | |
id="use935" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2955.0605" | |
xlink:href="#DejaVuSans-110" | |
id="use937" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3018.4395" | |
xlink:href="#DejaVuSans-116" | |
id="use939" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3057.6484" | |
xlink:href="#DejaVuSans-101" | |
id="use941" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3119.1719" | |
xlink:href="#DejaVuSans-100" | |
id="use943" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3182.6484" | |
xlink:href="#DejaVuSans-32" | |
id="use945" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3214.4355" | |
xlink:href="#DejaVuSans-105" | |
id="use947" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3242.2188" | |
xlink:href="#DejaVuSans-110" | |
id="use949" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3305.5977" | |
xlink:href="#DejaVuSans-32" | |
id="use951" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3337.3848" | |
xlink:href="#DejaVuSans-116" | |
id="use953" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3376.5938" | |
xlink:href="#DejaVuSans-104" | |
id="use955" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3439.9727" | |
xlink:href="#DejaVuSans-101" | |
id="use957" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3501.4961" | |
xlink:href="#DejaVuSans-32" | |
id="use959" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3533.2832" | |
xlink:href="#DejaVuSans-108" | |
id="use961" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3561.0664" | |
xlink:href="#DejaVuSans-97" | |
id="use963" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3622.3457" | |
xlink:href="#DejaVuSans-114" | |
id="use965" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3661.709" | |
xlink:href="#DejaVuSans-103" | |
id="use967" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3725.1855" | |
xlink:href="#DejaVuSans-101" | |
id="use969" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_4"> | |
<g | |
id="line2d_47"> | |
<g | |
id="g977"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="226.36957" | |
id="use975" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_10"> | |
<!-- CuPy: array-oriented on a GPU --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-69.06875,230.16878)" | |
id="g1038"> | |
<use | |
xlink:href="#DejaVuSans-67" | |
id="use980" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="69.824219" | |
xlink:href="#DejaVuSans-117" | |
id="use982" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="133.20312" | |
xlink:href="#DejaVuSans-80" | |
id="use984" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="193.50586" | |
xlink:href="#DejaVuSans-121" | |
id="use986" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="245.43555" | |
xlink:href="#DejaVuSans-58" | |
id="use988" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="279.12695" | |
xlink:href="#DejaVuSans-32" | |
id="use990" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="310.91406" | |
xlink:href="#DejaVuSans-97" | |
id="use992" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="372.19336" | |
xlink:href="#DejaVuSans-114" | |
id="use994" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="411.55664" | |
xlink:href="#DejaVuSans-114" | |
id="use996" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="452.66992" | |
xlink:href="#DejaVuSans-97" | |
id="use998" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="513.94922" | |
xlink:href="#DejaVuSans-121" | |
id="use1000" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="571.37891" | |
xlink:href="#DejaVuSans-45" | |
id="use1002" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="609.33789" | |
xlink:href="#DejaVuSans-111" | |
id="use1004" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="670.51953" | |
xlink:href="#DejaVuSans-114" | |
id="use1006" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="711.63281" | |
xlink:href="#DejaVuSans-105" | |
id="use1008" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="739.41602" | |
xlink:href="#DejaVuSans-101" | |
id="use1010" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="800.93945" | |
xlink:href="#DejaVuSans-110" | |
id="use1012" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="864.31836" | |
xlink:href="#DejaVuSans-116" | |
id="use1014" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="903.52734" | |
xlink:href="#DejaVuSans-101" | |
id="use1016" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="965.05078" | |
xlink:href="#DejaVuSans-100" | |
id="use1018" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1028.5273" | |
xlink:href="#DejaVuSans-32" | |
id="use1020" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1060.3145" | |
xlink:href="#DejaVuSans-111" | |
id="use1022" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1121.4961" | |
xlink:href="#DejaVuSans-110" | |
id="use1024" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1184.875" | |
xlink:href="#DejaVuSans-32" | |
id="use1026" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1216.6621" | |
xlink:href="#DejaVuSans-97" | |
id="use1028" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1277.9414" | |
xlink:href="#DejaVuSans-32" | |
id="use1030" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1309.7285" | |
xlink:href="#DejaVuSans-71" | |
id="use1032" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1387.2188" | |
xlink:href="#DejaVuSans-80" | |
id="use1034" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1447.5215" | |
xlink:href="#DejaVuSans-85" | |
id="use1036" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_5"> | |
<g | |
id="line2d_48"> | |
<g | |
id="g1044"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="202.73479" | |
id="use1042" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_11"> | |
<!-- JAX: array-oriented with automatic fusion into JIT-compiled routines on CPU --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-292.43594,206.534)" | |
id="g1197"> | |
<use | |
xlink:href="#DejaVuSans-74" | |
id="use1047" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="27.742188" | |
xlink:href="#DejaVuSans-65" | |
id="use1049" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="96.150391" | |
xlink:href="#DejaVuSans-88" | |
id="use1051" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="164.65625" | |
xlink:href="#DejaVuSans-58" | |
id="use1053" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="198.34766" | |
xlink:href="#DejaVuSans-32" | |
id="use1055" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="230.13477" | |
xlink:href="#DejaVuSans-97" | |
id="use1057" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="291.41406" | |
xlink:href="#DejaVuSans-114" | |
id="use1059" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="330.77734" | |
xlink:href="#DejaVuSans-114" | |
id="use1061" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="371.89062" | |
xlink:href="#DejaVuSans-97" | |
id="use1063" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="433.16992" | |
xlink:href="#DejaVuSans-121" | |
id="use1065" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="490.59961" | |
xlink:href="#DejaVuSans-45" | |
id="use1067" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="528.55859" | |
xlink:href="#DejaVuSans-111" | |
id="use1069" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="589.74023" | |
xlink:href="#DejaVuSans-114" | |
id="use1071" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="630.85352" | |
xlink:href="#DejaVuSans-105" | |
id="use1073" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="658.63672" | |
xlink:href="#DejaVuSans-101" | |
id="use1075" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="720.16016" | |
xlink:href="#DejaVuSans-110" | |
id="use1077" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="783.53906" | |
xlink:href="#DejaVuSans-116" | |
id="use1079" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="822.74805" | |
xlink:href="#DejaVuSans-101" | |
id="use1081" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="884.27148" | |
xlink:href="#DejaVuSans-100" | |
id="use1083" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="947.74805" | |
xlink:href="#DejaVuSans-32" | |
id="use1085" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="979.53516" | |
xlink:href="#DejaVuSans-119" | |
id="use1087" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1061.3223" | |
xlink:href="#DejaVuSans-105" | |
id="use1089" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1089.1055" | |
xlink:href="#DejaVuSans-116" | |
id="use1091" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1128.3145" | |
xlink:href="#DejaVuSans-104" | |
id="use1093" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1191.6934" | |
xlink:href="#DejaVuSans-32" | |
id="use1095" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1223.4805" | |
xlink:href="#DejaVuSans-97" | |
id="use1097" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1284.7598" | |
xlink:href="#DejaVuSans-117" | |
id="use1099" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1348.1387" | |
xlink:href="#DejaVuSans-116" | |
id="use1101" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1387.3477" | |
xlink:href="#DejaVuSans-111" | |
id="use1103" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1448.5293" | |
xlink:href="#DejaVuSans-109" | |
id="use1105" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1545.9414" | |
xlink:href="#DejaVuSans-97" | |
id="use1107" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1607.2207" | |
xlink:href="#DejaVuSans-116" | |
id="use1109" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1646.4297" | |
xlink:href="#DejaVuSans-105" | |
id="use1111" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1674.2129" | |
xlink:href="#DejaVuSans-99" | |
id="use1113" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1729.1934" | |
xlink:href="#DejaVuSans-32" | |
id="use1115" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1760.9805" | |
xlink:href="#DejaVuSans-102" | |
id="use1117" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1796.1855" | |
xlink:href="#DejaVuSans-117" | |
id="use1119" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1859.5645" | |
xlink:href="#DejaVuSans-115" | |
id="use1121" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1911.6641" | |
xlink:href="#DejaVuSans-105" | |
id="use1123" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1939.4473" | |
xlink:href="#DejaVuSans-111" | |
id="use1125" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2000.6289" | |
xlink:href="#DejaVuSans-110" | |
id="use1127" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2064.0078" | |
xlink:href="#DejaVuSans-32" | |
id="use1129" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2095.7949" | |
xlink:href="#DejaVuSans-105" | |
id="use1131" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2123.5781" | |
xlink:href="#DejaVuSans-110" | |
id="use1133" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2186.957" | |
xlink:href="#DejaVuSans-116" | |
id="use1135" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2226.166" | |
xlink:href="#DejaVuSans-111" | |
id="use1137" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2287.3477" | |
xlink:href="#DejaVuSans-32" | |
id="use1139" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2319.1348" | |
xlink:href="#DejaVuSans-74" | |
id="use1141" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2348.627" | |
xlink:href="#DejaVuSans-73" | |
id="use1143" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2378.1191" | |
xlink:href="#DejaVuSans-84" | |
id="use1145" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2430.0781" | |
xlink:href="#DejaVuSans-45" | |
id="use1147" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2466.1621" | |
xlink:href="#DejaVuSans-99" | |
id="use1149" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2521.1426" | |
xlink:href="#DejaVuSans-111" | |
id="use1151" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2582.3242" | |
xlink:href="#DejaVuSans-109" | |
id="use1153" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2679.7363" | |
xlink:href="#DejaVuSans-112" | |
id="use1155" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2743.2129" | |
xlink:href="#DejaVuSans-105" | |
id="use1157" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2770.9961" | |
xlink:href="#DejaVuSans-108" | |
id="use1159" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2798.7793" | |
xlink:href="#DejaVuSans-101" | |
id="use1161" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2860.3027" | |
xlink:href="#DejaVuSans-100" | |
id="use1163" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2923.7793" | |
xlink:href="#DejaVuSans-32" | |
id="use1165" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2955.5664" | |
xlink:href="#DejaVuSans-114" | |
id="use1167" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2994.4297" | |
xlink:href="#DejaVuSans-111" | |
id="use1169" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3055.6113" | |
xlink:href="#DejaVuSans-117" | |
id="use1171" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3118.9902" | |
xlink:href="#DejaVuSans-116" | |
id="use1173" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3158.1992" | |
xlink:href="#DejaVuSans-105" | |
id="use1175" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3185.9824" | |
xlink:href="#DejaVuSans-110" | |
id="use1177" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3249.3613" | |
xlink:href="#DejaVuSans-101" | |
id="use1179" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3310.8848" | |
xlink:href="#DejaVuSans-115" | |
id="use1181" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3362.9844" | |
xlink:href="#DejaVuSans-32" | |
id="use1183" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3394.7715" | |
xlink:href="#DejaVuSans-111" | |
id="use1185" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3455.9531" | |
xlink:href="#DejaVuSans-110" | |
id="use1187" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3519.332" | |
xlink:href="#DejaVuSans-32" | |
id="use1189" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3551.1191" | |
xlink:href="#DejaVuSans-67" | |
id="use1191" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3620.9434" | |
xlink:href="#DejaVuSans-80" | |
id="use1193" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3681.2461" | |
xlink:href="#DejaVuSans-85" | |
id="use1195" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_6"> | |
<g | |
id="line2d_49"> | |
<g | |
id="g1203"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="179.10001" | |
id="use1201" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_12"> | |
<!-- Numba vectorize: imperative per pixel, array-oriented in the large --> | |
<defs | |
id="defs1207"> | |
<path | |
d="M 5.515625,54.6875 H 48.1875 V 46.484375 L 14.40625,7.171875 H 48.1875 V 0 H 4.296875 v 8.203125 l 33.796875,39.3125 H 5.515625 Z" | |
id="DejaVuSans-122" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-247.84687,182.89922)" | |
id="g1341"> | |
<use | |
xlink:href="#DejaVuSans-78" | |
id="use1209" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="74.804688" | |
xlink:href="#DejaVuSans-117" | |
id="use1211" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="138.18359" | |
xlink:href="#DejaVuSans-109" | |
id="use1213" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="235.5957" | |
xlink:href="#DejaVuSans-98" | |
id="use1215" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="299.07227" | |
xlink:href="#DejaVuSans-97" | |
id="use1217" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="360.35156" | |
xlink:href="#DejaVuSans-32" | |
id="use1219" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="392.13867" | |
xlink:href="#DejaVuSans-118" | |
id="use1221" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="451.31836" | |
xlink:href="#DejaVuSans-101" | |
id="use1223" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="512.8418" | |
xlink:href="#DejaVuSans-99" | |
id="use1225" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="567.82227" | |
xlink:href="#DejaVuSans-116" | |
id="use1227" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="607.03125" | |
xlink:href="#DejaVuSans-111" | |
id="use1229" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="668.21289" | |
xlink:href="#DejaVuSans-114" | |
id="use1231" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="709.32617" | |
xlink:href="#DejaVuSans-105" | |
id="use1233" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="737.10938" | |
xlink:href="#DejaVuSans-122" | |
id="use1235" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="789.59961" | |
xlink:href="#DejaVuSans-101" | |
id="use1237" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="851.12305" | |
xlink:href="#DejaVuSans-58" | |
id="use1239" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="884.81445" | |
xlink:href="#DejaVuSans-32" | |
id="use1241" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="916.60156" | |
xlink:href="#DejaVuSans-105" | |
id="use1243" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="944.38477" | |
xlink:href="#DejaVuSans-109" | |
id="use1245" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1041.7969" | |
xlink:href="#DejaVuSans-112" | |
id="use1247" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1105.2734" | |
xlink:href="#DejaVuSans-101" | |
id="use1249" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1166.7969" | |
xlink:href="#DejaVuSans-114" | |
id="use1251" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1207.9102" | |
xlink:href="#DejaVuSans-97" | |
id="use1253" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1269.1895" | |
xlink:href="#DejaVuSans-116" | |
id="use1255" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1308.3984" | |
xlink:href="#DejaVuSans-105" | |
id="use1257" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1336.1816" | |
xlink:href="#DejaVuSans-118" | |
id="use1259" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1395.3613" | |
xlink:href="#DejaVuSans-101" | |
id="use1261" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1456.8848" | |
xlink:href="#DejaVuSans-32" | |
id="use1263" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1488.6719" | |
xlink:href="#DejaVuSans-112" | |
id="use1265" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1552.1484" | |
xlink:href="#DejaVuSans-101" | |
id="use1267" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1613.6719" | |
xlink:href="#DejaVuSans-114" | |
id="use1269" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1654.7852" | |
xlink:href="#DejaVuSans-32" | |
id="use1271" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1686.5723" | |
xlink:href="#DejaVuSans-112" | |
id="use1273" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1750.0488" | |
xlink:href="#DejaVuSans-105" | |
id="use1275" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1777.832" | |
xlink:href="#DejaVuSans-120" | |
id="use1277" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1833.8867" | |
xlink:href="#DejaVuSans-101" | |
id="use1279" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1895.4102" | |
xlink:href="#DejaVuSans-108" | |
id="use1281" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1923.1934" | |
xlink:href="#DejaVuSans-44" | |
id="use1283" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1954.9805" | |
xlink:href="#DejaVuSans-32" | |
id="use1285" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1986.7676" | |
xlink:href="#DejaVuSans-97" | |
id="use1287" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2048.0469" | |
xlink:href="#DejaVuSans-114" | |
id="use1289" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2087.4102" | |
xlink:href="#DejaVuSans-114" | |
id="use1291" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2128.5234" | |
xlink:href="#DejaVuSans-97" | |
id="use1293" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2189.8027" | |
xlink:href="#DejaVuSans-121" | |
id="use1295" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2247.2324" | |
xlink:href="#DejaVuSans-45" | |
id="use1297" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2285.1914" | |
xlink:href="#DejaVuSans-111" | |
id="use1299" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2346.373" | |
xlink:href="#DejaVuSans-114" | |
id="use1301" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2387.4863" | |
xlink:href="#DejaVuSans-105" | |
id="use1303" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2415.2695" | |
xlink:href="#DejaVuSans-101" | |
id="use1305" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2476.793" | |
xlink:href="#DejaVuSans-110" | |
id="use1307" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2540.1719" | |
xlink:href="#DejaVuSans-116" | |
id="use1309" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2579.3809" | |
xlink:href="#DejaVuSans-101" | |
id="use1311" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2640.9043" | |
xlink:href="#DejaVuSans-100" | |
id="use1313" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2704.3809" | |
xlink:href="#DejaVuSans-32" | |
id="use1315" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2736.168" | |
xlink:href="#DejaVuSans-105" | |
id="use1317" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2763.9512" | |
xlink:href="#DejaVuSans-110" | |
id="use1319" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2827.3301" | |
xlink:href="#DejaVuSans-32" | |
id="use1321" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2859.1172" | |
xlink:href="#DejaVuSans-116" | |
id="use1323" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2898.3262" | |
xlink:href="#DejaVuSans-104" | |
id="use1325" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2961.7051" | |
xlink:href="#DejaVuSans-101" | |
id="use1327" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3023.2285" | |
xlink:href="#DejaVuSans-32" | |
id="use1329" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3055.0156" | |
xlink:href="#DejaVuSans-108" | |
id="use1331" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3082.7988" | |
xlink:href="#DejaVuSans-97" | |
id="use1333" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3144.0781" | |
xlink:href="#DejaVuSans-114" | |
id="use1335" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3183.4414" | |
xlink:href="#DejaVuSans-103" | |
id="use1337" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="3246.918" | |
xlink:href="#DejaVuSans-101" | |
id="use1339" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_7"> | |
<g | |
id="line2d_50"> | |
<g | |
id="g1347"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="155.46521" | |
id="use1345" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_13"> | |
<!-- Numba: imperative in a compiled subset of Python --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-171.16875,159.26444)" | |
id="g1446"> | |
<use | |
xlink:href="#DejaVuSans-78" | |
id="use1350" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="74.804688" | |
xlink:href="#DejaVuSans-117" | |
id="use1352" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="138.18359" | |
xlink:href="#DejaVuSans-109" | |
id="use1354" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="235.5957" | |
xlink:href="#DejaVuSans-98" | |
id="use1356" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="299.07227" | |
xlink:href="#DejaVuSans-97" | |
id="use1358" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="360.35156" | |
xlink:href="#DejaVuSans-58" | |
id="use1360" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="394.04297" | |
xlink:href="#DejaVuSans-32" | |
id="use1362" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="425.83008" | |
xlink:href="#DejaVuSans-105" | |
id="use1364" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="453.61328" | |
xlink:href="#DejaVuSans-109" | |
id="use1366" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="551.02539" | |
xlink:href="#DejaVuSans-112" | |
id="use1368" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="614.50195" | |
xlink:href="#DejaVuSans-101" | |
id="use1370" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="676.02539" | |
xlink:href="#DejaVuSans-114" | |
id="use1372" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="717.13867" | |
xlink:href="#DejaVuSans-97" | |
id="use1374" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="778.41797" | |
xlink:href="#DejaVuSans-116" | |
id="use1376" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="817.62695" | |
xlink:href="#DejaVuSans-105" | |
id="use1378" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="845.41016" | |
xlink:href="#DejaVuSans-118" | |
id="use1380" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="904.58984" | |
xlink:href="#DejaVuSans-101" | |
id="use1382" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="966.11328" | |
xlink:href="#DejaVuSans-32" | |
id="use1384" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="997.90039" | |
xlink:href="#DejaVuSans-105" | |
id="use1386" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1025.6836" | |
xlink:href="#DejaVuSans-110" | |
id="use1388" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1089.0625" | |
xlink:href="#DejaVuSans-32" | |
id="use1390" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1120.8496" | |
xlink:href="#DejaVuSans-97" | |
id="use1392" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1182.1289" | |
xlink:href="#DejaVuSans-32" | |
id="use1394" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1213.916" | |
xlink:href="#DejaVuSans-99" | |
id="use1396" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1268.8965" | |
xlink:href="#DejaVuSans-111" | |
id="use1398" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1330.0781" | |
xlink:href="#DejaVuSans-109" | |
id="use1400" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1427.4902" | |
xlink:href="#DejaVuSans-112" | |
id="use1402" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1490.9668" | |
xlink:href="#DejaVuSans-105" | |
id="use1404" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1518.75" | |
xlink:href="#DejaVuSans-108" | |
id="use1406" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1546.5332" | |
xlink:href="#DejaVuSans-101" | |
id="use1408" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1608.0566" | |
xlink:href="#DejaVuSans-100" | |
id="use1410" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1671.5332" | |
xlink:href="#DejaVuSans-32" | |
id="use1412" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1703.3203" | |
xlink:href="#DejaVuSans-115" | |
id="use1414" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1755.4199" | |
xlink:href="#DejaVuSans-117" | |
id="use1416" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1818.7988" | |
xlink:href="#DejaVuSans-98" | |
id="use1418" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1882.2754" | |
xlink:href="#DejaVuSans-115" | |
id="use1420" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1934.375" | |
xlink:href="#DejaVuSans-101" | |
id="use1422" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1995.8984" | |
xlink:href="#DejaVuSans-116" | |
id="use1424" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2035.1074" | |
xlink:href="#DejaVuSans-32" | |
id="use1426" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2066.8945" | |
xlink:href="#DejaVuSans-111" | |
id="use1428" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2128.0762" | |
xlink:href="#DejaVuSans-102" | |
id="use1430" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2163.2812" | |
xlink:href="#DejaVuSans-32" | |
id="use1432" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2195.0684" | |
xlink:href="#DejaVuSans-80" | |
id="use1434" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2255.3711" | |
xlink:href="#DejaVuSans-121" | |
id="use1436" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2314.5508" | |
xlink:href="#DejaVuSans-116" | |
id="use1438" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2353.7598" | |
xlink:href="#DejaVuSans-104" | |
id="use1440" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2417.1387" | |
xlink:href="#DejaVuSans-111" | |
id="use1442" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2478.3203" | |
xlink:href="#DejaVuSans-110" | |
id="use1444" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_8"> | |
<g | |
id="line2d_51"> | |
<g | |
id="g1452"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="131.83043" | |
id="use1450" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_14"> | |
<!-- Cython: imperative in a C++/Python hybrid --> | |
<defs | |
id="defs1457"> | |
<path | |
d="M 46,62.703125 V 35.5 H 73.1875 V 27.203125 H 46 V 0 H 37.796875 V 27.203125 H 10.59375 V 35.5 h 27.203125 v 27.203125 z" | |
id="DejaVuSans-43" /> | |
<path | |
d="M 25.390625,72.90625 H 33.6875 L 8.296875,-9.28125 H 0 Z" | |
id="DejaVuSans-47" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-134.76406,135.62965)" | |
id="g1541"> | |
<use | |
xlink:href="#DejaVuSans-67" | |
id="use1459" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="69.824219" | |
xlink:href="#DejaVuSans-121" | |
id="use1461" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="129.00391" | |
xlink:href="#DejaVuSans-116" | |
id="use1463" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="168.21289" | |
xlink:href="#DejaVuSans-104" | |
id="use1465" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="231.5918" | |
xlink:href="#DejaVuSans-111" | |
id="use1467" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="292.77344" | |
xlink:href="#DejaVuSans-110" | |
id="use1469" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="356.15234" | |
xlink:href="#DejaVuSans-58" | |
id="use1471" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="389.84375" | |
xlink:href="#DejaVuSans-32" | |
id="use1473" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="421.63086" | |
xlink:href="#DejaVuSans-105" | |
id="use1475" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="449.41406" | |
xlink:href="#DejaVuSans-109" | |
id="use1477" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="546.82617" | |
xlink:href="#DejaVuSans-112" | |
id="use1479" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="610.30273" | |
xlink:href="#DejaVuSans-101" | |
id="use1481" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="671.82617" | |
xlink:href="#DejaVuSans-114" | |
id="use1483" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="712.93945" | |
xlink:href="#DejaVuSans-97" | |
id="use1485" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="774.21875" | |
xlink:href="#DejaVuSans-116" | |
id="use1487" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="813.42773" | |
xlink:href="#DejaVuSans-105" | |
id="use1489" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="841.21094" | |
xlink:href="#DejaVuSans-118" | |
id="use1491" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="900.39062" | |
xlink:href="#DejaVuSans-101" | |
id="use1493" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="961.91406" | |
xlink:href="#DejaVuSans-32" | |
id="use1495" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="993.70117" | |
xlink:href="#DejaVuSans-105" | |
id="use1497" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1021.4844" | |
xlink:href="#DejaVuSans-110" | |
id="use1499" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1084.8633" | |
xlink:href="#DejaVuSans-32" | |
id="use1501" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1116.6504" | |
xlink:href="#DejaVuSans-97" | |
id="use1503" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1177.9297" | |
xlink:href="#DejaVuSans-32" | |
id="use1505" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1209.7168" | |
xlink:href="#DejaVuSans-67" | |
id="use1507" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1279.541" | |
xlink:href="#DejaVuSans-43" | |
id="use1509" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1363.3301" | |
xlink:href="#DejaVuSans-43" | |
id="use1511" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1447.1191" | |
xlink:href="#DejaVuSans-47" | |
id="use1513" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1480.8105" | |
xlink:href="#DejaVuSans-80" | |
id="use1515" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1541.1133" | |
xlink:href="#DejaVuSans-121" | |
id="use1517" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1600.293" | |
xlink:href="#DejaVuSans-116" | |
id="use1519" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1639.502" | |
xlink:href="#DejaVuSans-104" | |
id="use1521" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1702.8809" | |
xlink:href="#DejaVuSans-111" | |
id="use1523" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1764.0625" | |
xlink:href="#DejaVuSans-110" | |
id="use1525" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1827.4414" | |
xlink:href="#DejaVuSans-32" | |
id="use1527" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1859.2285" | |
xlink:href="#DejaVuSans-104" | |
id="use1529" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1922.6074" | |
xlink:href="#DejaVuSans-121" | |
id="use1531" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1981.7871" | |
xlink:href="#DejaVuSans-98" | |
id="use1533" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2045.2637" | |
xlink:href="#DejaVuSans-114" | |
id="use1535" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2086.377" | |
xlink:href="#DejaVuSans-105" | |
id="use1537" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="2114.1602" | |
xlink:href="#DejaVuSans-100" | |
id="use1539" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_9"> | |
<g | |
id="line2d_52"> | |
<g | |
id="g1547"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="108.19565" | |
id="use1545" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_15"> | |
<!-- pybind11: imperative in C++ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-63.595313,111.99487)" | |
id="g1604"> | |
<use | |
xlink:href="#DejaVuSans-112" | |
id="use1550" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="63.476562" | |
xlink:href="#DejaVuSans-121" | |
id="use1552" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="122.65625" | |
xlink:href="#DejaVuSans-98" | |
id="use1554" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="186.13281" | |
xlink:href="#DejaVuSans-105" | |
id="use1556" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="213.91602" | |
xlink:href="#DejaVuSans-110" | |
id="use1558" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="277.29492" | |
xlink:href="#DejaVuSans-100" | |
id="use1560" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="340.77148" | |
xlink:href="#DejaVuSans-49" | |
id="use1562" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="404.39453" | |
xlink:href="#DejaVuSans-49" | |
id="use1564" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="468.01758" | |
xlink:href="#DejaVuSans-58" | |
id="use1566" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="501.70898" | |
xlink:href="#DejaVuSans-32" | |
id="use1568" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="533.49609" | |
xlink:href="#DejaVuSans-105" | |
id="use1570" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="561.2793" | |
xlink:href="#DejaVuSans-109" | |
id="use1572" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="658.69141" | |
xlink:href="#DejaVuSans-112" | |
id="use1574" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="722.16797" | |
xlink:href="#DejaVuSans-101" | |
id="use1576" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="783.69141" | |
xlink:href="#DejaVuSans-114" | |
id="use1578" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="824.80469" | |
xlink:href="#DejaVuSans-97" | |
id="use1580" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="886.08398" | |
xlink:href="#DejaVuSans-116" | |
id="use1582" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="925.29297" | |
xlink:href="#DejaVuSans-105" | |
id="use1584" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="953.07617" | |
xlink:href="#DejaVuSans-118" | |
id="use1586" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1012.2559" | |
xlink:href="#DejaVuSans-101" | |
id="use1588" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1073.7793" | |
xlink:href="#DejaVuSans-32" | |
id="use1590" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1105.5664" | |
xlink:href="#DejaVuSans-105" | |
id="use1592" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1133.3496" | |
xlink:href="#DejaVuSans-110" | |
id="use1594" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1196.7285" | |
xlink:href="#DejaVuSans-32" | |
id="use1596" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1228.5156" | |
xlink:href="#DejaVuSans-67" | |
id="use1598" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1298.3398" | |
xlink:href="#DejaVuSans-43" | |
id="use1600" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1382.1289" | |
xlink:href="#DejaVuSans-43" | |
id="use1602" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_10"> | |
<g | |
id="line2d_53"> | |
<g | |
id="g1610"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="84.560867" | |
id="use1608" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_16"> | |
<!-- NumPy: array-oriented --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-30.092188,88.360088)" | |
id="g1655"> | |
<use | |
xlink:href="#DejaVuSans-78" | |
id="use1613" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="74.804688" | |
xlink:href="#DejaVuSans-117" | |
id="use1615" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="138.18359" | |
xlink:href="#DejaVuSans-109" | |
id="use1617" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="235.5957" | |
xlink:href="#DejaVuSans-80" | |
id="use1619" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="295.89844" | |
xlink:href="#DejaVuSans-121" | |
id="use1621" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="347.82812" | |
xlink:href="#DejaVuSans-58" | |
id="use1623" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="381.51953" | |
xlink:href="#DejaVuSans-32" | |
id="use1625" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="413.30664" | |
xlink:href="#DejaVuSans-97" | |
id="use1627" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="474.58594" | |
xlink:href="#DejaVuSans-114" | |
id="use1629" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="513.94922" | |
xlink:href="#DejaVuSans-114" | |
id="use1631" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="555.0625" | |
xlink:href="#DejaVuSans-97" | |
id="use1633" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="616.3418" | |
xlink:href="#DejaVuSans-121" | |
id="use1635" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="673.77148" | |
xlink:href="#DejaVuSans-45" | |
id="use1637" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="711.73047" | |
xlink:href="#DejaVuSans-111" | |
id="use1639" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="772.91211" | |
xlink:href="#DejaVuSans-114" | |
id="use1641" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="814.02539" | |
xlink:href="#DejaVuSans-105" | |
id="use1643" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="841.80859" | |
xlink:href="#DejaVuSans-101" | |
id="use1645" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="903.33203" | |
xlink:href="#DejaVuSans-110" | |
id="use1647" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="966.71094" | |
xlink:href="#DejaVuSans-116" | |
id="use1649" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1005.9199" | |
xlink:href="#DejaVuSans-101" | |
id="use1651" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1067.4434" | |
xlink:href="#DejaVuSans-100" | |
id="use1653" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_11"> | |
<g | |
id="line2d_54"> | |
<g | |
id="g1661"> | |
<use | |
style="stroke:#000000;stroke-width:0.8" | |
x="90" | |
xlink:href="#mf8097922d4" | |
y="60.926086" | |
id="use1659" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_17"> | |
<!-- Python "for" loops: imperative --> | |
<defs | |
id="defs1665"> | |
<path | |
d="M 17.921875,72.90625 V 45.796875 H 9.625 V 72.90625 Z m 18.453125,0 V 45.796875 H 28.078125 V 72.90625 Z" | |
id="DejaVuSans-34" /> | |
</defs> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-68.11875,64.725306)" | |
id="g1727"> | |
<use | |
xlink:href="#DejaVuSans-80" | |
id="use1667" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="60.302734" | |
xlink:href="#DejaVuSans-121" | |
id="use1669" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="119.48242" | |
xlink:href="#DejaVuSans-116" | |
id="use1671" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="158.69141" | |
xlink:href="#DejaVuSans-104" | |
id="use1673" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="222.07031" | |
xlink:href="#DejaVuSans-111" | |
id="use1675" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="283.25195" | |
xlink:href="#DejaVuSans-110" | |
id="use1677" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="346.63086" | |
xlink:href="#DejaVuSans-32" | |
id="use1679" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="378.41797" | |
xlink:href="#DejaVuSans-34" | |
id="use1681" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="424.41406" | |
xlink:href="#DejaVuSans-102" | |
id="use1683" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="459.61914" | |
xlink:href="#DejaVuSans-111" | |
id="use1685" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="520.80078" | |
xlink:href="#DejaVuSans-114" | |
id="use1687" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="561.91406" | |
xlink:href="#DejaVuSans-34" | |
id="use1689" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="607.91016" | |
xlink:href="#DejaVuSans-32" | |
id="use1691" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="639.69727" | |
xlink:href="#DejaVuSans-108" | |
id="use1693" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="667.48047" | |
xlink:href="#DejaVuSans-111" | |
id="use1695" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="728.66211" | |
xlink:href="#DejaVuSans-111" | |
id="use1697" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="789.84375" | |
xlink:href="#DejaVuSans-112" | |
id="use1699" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="853.32031" | |
xlink:href="#DejaVuSans-115" | |
id="use1701" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="905.41992" | |
xlink:href="#DejaVuSans-58" | |
id="use1703" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="939.11133" | |
xlink:href="#DejaVuSans-32" | |
id="use1705" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="970.89844" | |
xlink:href="#DejaVuSans-105" | |
id="use1707" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="998.68164" | |
xlink:href="#DejaVuSans-109" | |
id="use1709" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1096.0938" | |
xlink:href="#DejaVuSans-112" | |
id="use1711" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1159.5703" | |
xlink:href="#DejaVuSans-101" | |
id="use1713" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1221.0938" | |
xlink:href="#DejaVuSans-114" | |
id="use1715" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1262.207" | |
xlink:href="#DejaVuSans-97" | |
id="use1717" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1323.4863" | |
xlink:href="#DejaVuSans-116" | |
id="use1719" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1362.6953" | |
xlink:href="#DejaVuSans-105" | |
id="use1721" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1390.4785" | |
xlink:href="#DejaVuSans-118" | |
id="use1723" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="1449.6582" | |
xlink:href="#DejaVuSans-101" | |
id="use1725" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
</g> | |
<g | |
id="LineCollection_1"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 139.42741,297.27391 h 0.89978" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1732" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 117.21242,273.63913 h 1.63043" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1734" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 115.36364,250.00435 h 0.71451" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1736" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 236.85241,226.36956 h 0.1" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1738" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 268.89579,202.73478 h 1.28348" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1740" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 293.28517,179.1 h 1.02892" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1742" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 286.51381,155.46522 h 1.41197" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1744" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 298.12599,131.83043 h 32.22628" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1746" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 339.75147,108.19565 h 17.99986" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1748" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 393.29796,84.56087 h 0.87033" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1750" /> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="m 605.77621,60.926087 h 16.86015" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1752" /> | |
</g> | |
<g | |
id="line2d_55"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M 605.77621,315 V 43.2" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1755" /> | |
</g> | |
<g | |
id="line2d_56"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M 268.89579,315 V 43.2" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1758" /> | |
</g> | |
<g | |
id="line2d_57"> | |
<path | |
clip-path="url(#pb1aa176d57)" | |
d="M 115.36364,315 V 43.2" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1761" /> | |
</g> | |
<g | |
id="line2d_58"> | |
<defs | |
id="defs1765"> | |
<path | |
d="M 0,5 V -5" | |
id="mdc18bdfd29" | |
style="stroke:#1f77b4" /> | |
</defs> | |
<g | |
clip-path="url(#pb1aa176d57)" | |
id="g1789"> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="139.42741" | |
xlink:href="#mdc18bdfd29" | |
y="297.27393" | |
id="use1767" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="117.21242" | |
xlink:href="#mdc18bdfd29" | |
y="273.63913" | |
id="use1769" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="115.36363" | |
xlink:href="#mdc18bdfd29" | |
y="250.00435" | |
id="use1771" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="236.85242" | |
xlink:href="#mdc18bdfd29" | |
y="226.36957" | |
id="use1773" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="268.89578" | |
xlink:href="#mdc18bdfd29" | |
y="202.73479" | |
id="use1775" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="293.28519" | |
xlink:href="#mdc18bdfd29" | |
y="179.10001" | |
id="use1777" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="286.51382" | |
xlink:href="#mdc18bdfd29" | |
y="155.46521" | |
id="use1779" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="298.12601" | |
xlink:href="#mdc18bdfd29" | |
y="131.83043" | |
id="use1781" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="339.75146" | |
xlink:href="#mdc18bdfd29" | |
y="108.19565" | |
id="use1783" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="393.29794" | |
xlink:href="#mdc18bdfd29" | |
y="84.560867" | |
id="use1785" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="605.77618" | |
xlink:href="#mdc18bdfd29" | |
y="60.926086" | |
id="use1787" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="line2d_59"> | |
<g | |
clip-path="url(#pb1aa176d57)" | |
id="g1814"> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="140.32719" | |
xlink:href="#mdc18bdfd29" | |
y="297.27393" | |
id="use1792" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="118.84285" | |
xlink:href="#mdc18bdfd29" | |
y="273.63913" | |
id="use1794" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="116.07815" | |
xlink:href="#mdc18bdfd29" | |
y="250.00435" | |
id="use1796" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="236.95236" | |
xlink:href="#mdc18bdfd29" | |
y="226.36957" | |
id="use1798" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="270.17926" | |
xlink:href="#mdc18bdfd29" | |
y="202.73479" | |
id="use1800" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="294.31409" | |
xlink:href="#mdc18bdfd29" | |
y="179.10001" | |
id="use1802" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="287.92578" | |
xlink:href="#mdc18bdfd29" | |
y="155.46521" | |
id="use1804" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="330.35226" | |
xlink:href="#mdc18bdfd29" | |
y="131.83043" | |
id="use1806" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="357.75131" | |
xlink:href="#mdc18bdfd29" | |
y="108.19565" | |
id="use1808" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="394.1683" | |
xlink:href="#mdc18bdfd29" | |
y="84.560867" | |
id="use1810" | |
width="100%" | |
height="100%" /> | |
<use | |
style="fill:#1f77b4;stroke:#1f77b4" | |
x="622.63635" | |
xlink:href="#mdc18bdfd29" | |
y="60.926086" | |
id="use1812" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="patch_14"> | |
<path | |
d="M 90,315 V 43.2" | |
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter" | |
id="path1817" /> | |
</g> | |
<g | |
id="patch_15"> | |
<path | |
d="M 648,315 V 43.2" | |
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter" | |
id="path1820" /> | |
</g> | |
<g | |
id="patch_16"> | |
<path | |
d="M 90,315 H 648" | |
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter" | |
id="path1823" /> | |
</g> | |
<g | |
id="patch_17"> | |
<path | |
d="M 90,43.2 H 648" | |
style="fill:none;stroke:#000000;stroke-width:0.8;stroke-linecap:square;stroke-linejoin:miter" | |
id="path1826" /> | |
</g> | |
<g | |
id="text_18"> | |
<!-- Python --> | |
<defs | |
id="defs1835"> | |
<path | |
d="M 9.1875,72.90625 H 40.375 q 13.921875,0 21.359375,-6.1875 Q 69.1875,60.546875 69.1875,49.125 69.1875,37.640625 61.734375,31.46875 54.296875,25.296875 40.375,25.296875 H 27.984375 V 0 H 9.1875 Z m 18.796875,-13.625 V 38.921875 H 38.375 q 5.46875,0 8.453125,2.65625 2.984375,2.65625 2.984375,7.546875 0,4.875 -2.984375,7.515625 Q 43.84375,59.28125 38.375,59.28125 Z" | |
id="DejaVuSans-Bold-80" /> | |
<path | |
d="M 1.21875,54.6875 H 18.703125 L 33.40625,17.578125 45.90625,54.6875 H 63.375 l -23,-59.859375 Q 36.921875,-14.3125 32.296875,-17.9375 27.6875,-21.578125 20.125,-21.578125 H 10.015625 v 11.46875 h 5.46875 q 4.4375,0 6.453125,1.421875 2.03125,1.40625 3.15625,5.078125 l 0.5,1.515625 z" | |
id="DejaVuSans-Bold-121" /> | |
<path | |
d="M 27.484375,70.21875 V 54.6875 h 18.03125 v -12.5 H 27.484375 V 19 Q 27.484375,15.1875 29,13.84375 30.515625,12.5 35.015625,12.5 H 44 V 0 H 29 Q 18.65625,0 14.328125,4.3125 10.015625,8.640625 10.015625,19 V 42.1875 H 1.3125 v 12.5 h 8.703125 v 15.53125 z" | |
id="DejaVuSans-Bold-116" /> | |
<path | |
d="M 63.375,33.296875 V 0 H 45.796875 v 5.421875 19.96875 q 0,7.171875 -0.3125,9.859375 -0.3125,2.6875 -1.09375,3.953125 -1.03125,1.71875 -2.796875,2.671875 -1.75,0.953125 -4,0.953125 Q 32.125,42.828125 29,38.59375 25.875,34.375 25.875,26.90625 V 0 H 8.40625 V 75.984375 H 25.875 V 46.6875 q 3.953125,4.78125 8.390625,7.046875 Q 38.71875,56 44.09375,56 53.5625,56 58.46875,50.1875 63.375,44.390625 63.375,33.296875 Z" | |
id="DejaVuSans-Bold-104" /> | |
<path | |
d="m 34.421875,43.5 q -5.8125,0 -8.859375,-4.171875 -3.046875,-4.171875 -3.046875,-12.03125 0,-7.859375 3.046875,-12.046875 3.046875,-4.171875 8.859375,-4.171875 5.71875,0 8.734375,4.171875 3.03125,4.1875 3.03125,12.046875 0,7.859375 -3.03125,12.03125 Q 40.140625,43.5 34.421875,43.5 Z m 0,12.5 q 14.109375,0 22.046875,-7.625 7.9375,-7.609375 7.9375,-21.078125 0,-13.484375 -7.9375,-21.109375 -7.9375,-7.609375 -22.046875,-7.609375 -14.15625,0 -22.140625,7.609375 -7.984375,7.625 -7.984375,21.109375 0,13.46875 7.984375,21.078125 Q 20.265625,56 34.421875,56 Z" | |
id="DejaVuSans-Bold-111" /> | |
<path | |
d="M 63.375,33.296875 V 0 H 45.796875 v 5.421875 20.0625 q 0,7.078125 -0.3125,9.765625 -0.3125,2.6875 -1.09375,3.953125 -1.03125,1.71875 -2.796875,2.671875 -1.75,0.953125 -4,0.953125 Q 32.125,42.828125 29,38.59375 25.875,34.375 25.875,26.90625 V 0 H 8.40625 V 54.6875 H 25.875 v -8 q 3.953125,4.78125 8.390625,7.046875 Q 38.71875,56 44.09375,56 53.5625,56 58.46875,50.1875 63.375,44.390625 63.375,33.296875 Z" | |
id="DejaVuSans-Bold-110" /> | |
</defs> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,585.81449,37.291304)" | |
id="g1849"> | |
<use | |
xlink:href="#DejaVuSans-Bold-80" | |
id="use1837" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="75.166016" | |
xlink:href="#DejaVuSans-Bold-121" | |
id="use1839" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="140.35156" | |
xlink:href="#DejaVuSans-Bold-116" | |
id="use1841" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="188.1543" | |
xlink:href="#DejaVuSans-Bold-104" | |
id="use1843" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="259.3457" | |
xlink:href="#DejaVuSans-Bold-111" | |
id="use1845" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="328.04688" | |
xlink:href="#DejaVuSans-Bold-110" | |
id="use1847" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_19"> | |
<!-- best CPU --> | |
<defs | |
id="defs1858"> | |
<path | |
d="m 37.5,11.28125 q 5.609375,0 8.5625,4.09375 2.96875,4.109375 2.96875,11.921875 0,7.8125 -2.96875,11.90625 Q 43.109375,43.3125 37.5,43.3125 q -5.609375,0 -8.625,-4.125 -3,-4.125 -3,-11.890625 0,-7.765625 3,-11.890625 3.015625,-4.125 8.625,-4.125 z M 25.875,46.6875 Q 29.5,51.46875 33.890625,53.734375 38.28125,56 44,56 q 10.109375,0 16.59375,-8.03125 6.5,-8.03125 6.5,-20.671875 0,-12.640625 -6.5,-20.6875 Q 54.109375,-1.421875 44,-1.421875 q -5.71875,0 -10.109375,2.265625 Q 29.5,3.125 25.875,7.90625 V 0 H 8.40625 V 75.984375 H 25.875 Z" | |
id="DejaVuSans-Bold-98" /> | |
<path | |
d="m 62.984375,27.484375 v -4.96875 H 22.125 q 0.625,-6.15625 4.4375,-9.234375 3.8125,-3.078125 10.640625,-3.078125 5.515625,0 11.296875,1.640625 5.796875,1.640625 11.90625,4.953125 V 3.328125 Q 54.203125,0.984375 48,-0.21875 41.796875,-1.421875 35.59375,-1.421875 q -14.84375,0 -23.078125,7.546875 -8.21875,7.546875 -8.21875,21.171875 0,13.375 8.078125,21.03125 Q 20.453125,56 34.625,56 q 12.890625,0 20.625,-7.765625 7.734375,-7.75 7.734375,-20.75 z m -17.96875,5.8125 q 0,4.984375 -2.90625,8.03125 -2.90625,3.0625 -7.59375,3.0625 -5.078125,0 -8.25,-2.859375 Q 23.09375,38.671875 22.3125,33.296875 Z" | |
id="DejaVuSans-Bold-101" /> | |
<path | |
d="m 51.125,52.984375 v -13.28125 q -5.609375,2.34375 -10.84375,3.515625 -5.21875,1.171875 -9.859375,1.171875 -4.984375,0 -7.40625,-1.25 -2.40625,-1.25 -2.40625,-3.828125 0,-2.109375 1.828125,-3.234375 Q 24.265625,34.96875 29,34.421875 l 3.078125,-0.4375 q 13.4375,-1.703125 18.0625,-5.609375 4.640625,-3.90625 4.640625,-12.265625 0,-8.734375 -6.453125,-13.140625 -6.4375,-4.390625 -19.21875,-4.390625 -5.421875,0 -11.21875,0.859375 Q 12.109375,0.296875 6,2 v 13.28125 q 5.234375,-2.53125 10.71875,-3.8125 5.5,-1.265625 11.15625,-1.265625 5.140625,0 7.71875,1.40625 2.59375,1.421875 2.59375,4.21875 0,2.34375 -1.78125,3.484375 -1.78125,1.140625 -7.109375,1.78125 l -3.078125,0.390625 q -11.671875,1.46875 -16.359375,5.421875 -4.6875,3.953125 -4.6875,12.015625 0,8.6875 5.953125,12.875 Q 17.09375,56 29.390625,56 34.234375,56 39.546875,55.265625 44.875,54.546875 51.125,52.984375 Z" | |
id="DejaVuSans-Bold-115" /> | |
<path | |
id="DejaVuSans-Bold-32" | |
d="" /> | |
<path | |
d="m 67,4 q -5.1875,-2.6875 -10.796875,-4.046875 -5.609375,-1.375 -11.71875,-1.375 -18.21875,0 -28.859375,10.1875 Q 4.984375,18.953125 4.984375,36.375 q 0,17.484375 10.640625,27.65625 10.640625,10.1875 28.859375,10.1875 6.109375,0 11.71875,-1.375 Q 61.8125,71.484375 67,68.796875 V 53.71875 Q 61.765625,57.28125 56.6875,58.9375 51.609375,60.59375 46,60.59375 q -10.0625,0 -15.828125,-6.453125 -5.75,-6.4375 -5.75,-17.765625 0,-11.28125 5.75,-17.734375 5.765625,-6.4375 15.828125,-6.4375 5.609375,0 10.6875,1.65625 Q 61.765625,15.53125 67,19.09375 Z" | |
id="DejaVuSans-Bold-67" /> | |
<path | |
d="M 9.1875,72.90625 H 27.984375 V 29.203125 q 0,-9.03125 2.953125,-12.921875 2.953125,-3.875 9.640625,-3.875 6.734375,0 9.6875,3.875 2.953125,3.890625 2.953125,12.921875 V 72.90625 H 72.015625 V 29.203125 q 0,-15.484375 -7.765625,-23.0625 -7.75,-7.5625 -23.671875,-7.5625 -15.875,0 -23.640625,7.5625 -7.75,7.578125 -7.75,23.0625 z" | |
id="DejaVuSans-Bold-85" /> | |
</defs> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,243.4247,37.291304)" | |
id="g1876"> | |
<use | |
xlink:href="#DejaVuSans-Bold-98" | |
id="use1860" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="71.582031" | |
xlink:href="#DejaVuSans-Bold-101" | |
id="use1862" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="139.4043" | |
xlink:href="#DejaVuSans-Bold-115" | |
id="use1864" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="198.92578" | |
xlink:href="#DejaVuSans-Bold-116" | |
id="use1866" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="246.72852" | |
xlink:href="#DejaVuSans-Bold-32" | |
id="use1868" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="281.54297" | |
xlink:href="#DejaVuSans-Bold-67" | |
id="use1870" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="354.93164" | |
xlink:href="#DejaVuSans-Bold-80" | |
id="use1872" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="428.22266" | |
xlink:href="#DejaVuSans-Bold-85" | |
id="use1874" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_20"> | |
<!-- best GPU --> | |
<defs | |
id="defs1880"> | |
<path | |
d="M 74.703125,5.421875 Q 67.671875,2 60.109375,0.28125 q -7.5625,-1.703125 -15.625,-1.703125 -18.21875,0 -28.859375,10.1875 Q 4.984375,18.953125 4.984375,36.375 4.984375,54 15.8125,64.109375 26.65625,74.21875 45.515625,74.21875 q 7.265625,0 13.921875,-1.375 6.671875,-1.359375 12.578125,-4.046875 V 53.71875 q -6.09375,3.453125 -12.125,5.15625 -6.03125,1.71875 -12.09375,1.71875 -11.21875,0 -17.296875,-6.28125 -6.078125,-6.265625 -6.078125,-17.9375 0,-11.5625 5.859375,-17.875 5.859375,-6.296875 16.640625,-6.296875 2.9375,0 5.453125,0.359375 2.515625,0.375 4.515625,1.15625 V 27.875 H 45.40625 v 12.609375 h 29.296875 z" | |
id="DejaVuSans-Bold-71" /> | |
</defs> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,89.458168,37.291304)" | |
id="g1898"> | |
<use | |
xlink:href="#DejaVuSans-Bold-98" | |
id="use1882" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="71.582031" | |
xlink:href="#DejaVuSans-Bold-101" | |
id="use1884" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="139.4043" | |
xlink:href="#DejaVuSans-Bold-115" | |
id="use1886" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="198.92578" | |
xlink:href="#DejaVuSans-Bold-116" | |
id="use1888" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="246.72852" | |
xlink:href="#DejaVuSans-Bold-32" | |
id="use1890" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="281.54297" | |
xlink:href="#DejaVuSans-Bold-71" | |
id="use1892" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="363.62305" | |
xlink:href="#DejaVuSans-Bold-80" | |
id="use1894" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
x="436.91406" | |
xlink:href="#DejaVuSans-Bold-85" | |
id="use1896" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<defs | |
id="defs1906"> | |
<clipPath | |
id="pb1aa176d57"> | |
<rect | |
height="271.79999" | |
width="558" | |
x="90" | |
y="43.200001" | |
id="rect1903" /> | |
</clipPath> | |
</defs> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment