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"?> | |
<svg | |
width="953.50623pt" | |
height="325.66339pt" | |
viewBox="0 0 953.50623 325.66339" | |
version="1.1" | |
id="svg1868" | |
sodipodi:docname="mandelbrot-on-all-accelerators.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" | |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
xmlns:cc="http://creativecommons.org/ns#" | |
xmlns:dc="http://purl.org/dc/elements/1.1/"> | |
<sodipodi:namedview | |
id="namedview1870" | |
pagecolor="#ffffff" | |
bordercolor="#666666" | |
borderopacity="1.0" | |
inkscape:pageshadow="2" | |
inkscape:pageopacity="0.0" | |
inkscape:pagecheckerboard="0" | |
inkscape:document-units="pt" | |
showgrid="false" | |
fit-margin-top="5" | |
fit-margin-left="5" | |
fit-margin-right="5" | |
fit-margin-bottom="5" | |
inkscape:zoom="0.64166667" | |
inkscape:cx="688.83117" | |
inkscape:cy="727.79221" | |
inkscape:window-width="2560" | |
inkscape:window-height="1371" | |
inkscape:window-x="1920" | |
inkscape:window-y="32" | |
inkscape:window-maximized="1" | |
inkscape:current-layer="svg1868" /> | |
<metadata | |
id="metadata2"> | |
<rdf:RDF> | |
<cc:Work> | |
<dc:type | |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> | |
<dc:date>2022-06-13T22:37:59.719016</dc:date> | |
<dc:format>image/svg+xml</dc:format> | |
<dc:creator> | |
<cc:Agent> | |
<dc:title>Matplotlib v3.5.2, https://matplotlib.org/</dc:title> | |
</cc:Agent> | |
</dc:creator> | |
</cc:Work> | |
</rdf:RDF> | |
</metadata> | |
<defs | |
id="defs6"> | |
<style | |
type="text/css" | |
id="style4">*{stroke-linejoin: round; stroke-linecap: butt}</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="path11" /> | |
</g> | |
<g | |
id="patch_3"> | |
<path | |
d="M -129594.85,306.72783 H 127.13622 V 287.82 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path14" /> | |
</g> | |
<g | |
id="patch_4"> | |
<path | |
d="M -129594.85,283.09304 H 115.36364 V 264.18522 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path17" /> | |
</g> | |
<g | |
id="patch_5"> | |
<path | |
d="M -129594.85,259.45826 H 121.94823 V 240.55043 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path20" /> | |
</g> | |
<g | |
id="patch_6"> | |
<path | |
d="M -129594.85,235.82348 H 276.5022 V 216.91565 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path23" /> | |
</g> | |
<g | |
id="patch_7"> | |
<path | |
d="M -129594.85,212.1887 H 301.09055 V 193.28087 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path26" /> | |
</g> | |
<g | |
id="patch_8"> | |
<path | |
d="M -129594.85,188.55391 H 321.63894 V 169.64609 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path29" /> | |
</g> | |
<g | |
id="patch_9"> | |
<path | |
d="M -129594.85,164.91913 H 319.79528 V 146.0113 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path32" /> | |
</g> | |
<g | |
id="patch_10"> | |
<path | |
d="M -129594.85,141.28435 H 324.56381 V 122.37652 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path35" /> | |
</g> | |
<g | |
id="patch_11"> | |
<path | |
d="M -129594.85,117.64956 H 327.28967 V 98.741739 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path38" /> | |
</g> | |
<g | |
id="patch_12"> | |
<path | |
d="M -129594.85,94.014783 H 436.85475 V 75.106957 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path41" /> | |
</g> | |
<g | |
id="patch_13"> | |
<path | |
d="M -129594.85,70.38 H 621.6864 V 51.472174 H -129594.85 Z" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:#1f77b4" | |
id="path44" /> | |
</g> | |
<g | |
id="matplotlib.axis_1"> | |
<g | |
id="xtick_1"> | |
<g | |
id="line2d_1"> | |
<defs | |
id="defs48"> | |
<path | |
id="mc0479d77a8" | |
d="M 0,0 V 3.5" | |
style="stroke:#000000;stroke-width:0.8" /> | |
</defs> | |
<g | |
id="g52"> | |
<use | |
xlink:href="#mc0479d77a8" | |
x="181.7924" | |
y="315" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use50" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_1"> | |
<!-- $\mathdefault{10^{1}}$ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,172.99241,329.59844)" | |
id="g65"> | |
<defs | |
id="defs57"> | |
<path | |
id="DejaVuSans-31" | |
d="M 794,531 H 1825 V 4091 L 703,3866 v 575 l 1116,225 h 631 V 531 H 3481 V 0 H 794 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-30" | |
d="m 2034,4250 q -487,0 -733,-480 -245,-479 -245,-1442 0,-959 245,-1439 246,-480 733,-480 491,0 736,480 246,480 246,1439 0,963 -246,1442 -245,480 -736,480 z m 0,500 q 785,0 1199,-621 414,-620 414,-1801 0,-1178 -414,-1799 -414,-620 -1199,-620 -784,0 -1198,620 -414,621 -414,1799 0,1181 414,1801 414,621 1198,621 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-31" | |
transform="translate(0,0.684375)" | |
id="use59" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
transform="translate(63.623047,0.684375)" | |
id="use61" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-31" | |
transform="matrix(0.7,0,0,0.7,128.20312,38.965625)" | |
id="use63" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_2"> | |
<g | |
id="line2d_2"> | |
<g | |
id="g71"> | |
<use | |
xlink:href="#mc0479d77a8" | |
x="311.43939" | |
y="315" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use69" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_2"> | |
<!-- $\mathdefault{10^{2}}$ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,302.6394,329.59844)" | |
id="g83"> | |
<defs | |
id="defs75"> | |
<path | |
id="DejaVuSans-32" | |
d="M 1228,531 H 3431 V 0 H 469 v 531 q 359,372 979,998 621,627 780,809 303,340 423,576 121,236 121,464 0,372 -261,606 -261,235 -680,235 -297,0 -627,-103 -329,-103 -704,-313 v 638 q 381,153 712,231 332,78 607,78 725,0 1156,-363 431,-362 431,-968 0,-288 -108,-546 -107,-257 -392,-607 -78,-91 -497,-524 Q 1991,1309 1228,531 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-31" | |
transform="translate(0,0.765625)" | |
id="use77" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
transform="translate(63.623047,0.765625)" | |
id="use79" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-32" | |
transform="matrix(0.7,0,0,0.7,128.20312,39.046875)" | |
id="use81" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_3"> | |
<g | |
id="line2d_3"> | |
<g | |
id="g89"> | |
<use | |
xlink:href="#mc0479d77a8" | |
x="441.0864" | |
y="315" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use87" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_3"> | |
<!-- $\mathdefault{10^{3}}$ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,432.2864,329.59844)" | |
id="g101"> | |
<defs | |
id="defs93"> | |
<path | |
id="DejaVuSans-33" | |
d="m 2597,2516 q 453,-97 707,-404 255,-306 255,-756 0,-690 -475,-1069 -475,-378 -1350,-378 -293,0 -604,58 -311,58 -642,174 v 609 q 262,-153 574,-231 313,-78 654,-78 593,0 904,234 311,234 311,681 0,413 -289,645 -289,233 -804,233 h -544 v 519 h 569 q 465,0 712,186 247,186 247,536 0,359 -255,551 -254,193 -729,193 -260,0 -557,-57 -297,-56 -653,-174 v 562 q 360,100 674,150 314,50 592,50 719,0 1137,-327 419,-326 419,-882 0,-388 -222,-655 -222,-267 -631,-370 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-31" | |
transform="translate(0,0.765625)" | |
id="use95" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
transform="translate(63.623047,0.765625)" | |
id="use97" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-33" | |
transform="matrix(0.7,0,0,0.7,128.20312,39.046875)" | |
id="use99" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_4"> | |
<g | |
id="line2d_4"> | |
<g | |
id="g107"> | |
<use | |
xlink:href="#mc0479d77a8" | |
x="570.7334" | |
y="315" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use105" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_4"> | |
<!-- $\mathdefault{10^{4}}$ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,561.9334,329.59844)" | |
id="g119"> | |
<defs | |
id="defs111"> | |
<path | |
id="DejaVuSans-34" | |
d="M 2419,4116 825,1625 h 1594 z m -166,550 h 794 V 1625 h 666 V 1100 H 3047 V 0 H 2419 V 1100 H 313 v 609 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-31" | |
transform="translate(0,0.684375)" | |
id="use113" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
transform="translate(63.623047,0.684375)" | |
id="use115" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-34" | |
transform="matrix(0.7,0,0,0.7,128.20312,38.965625)" | |
id="use117" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_5"> | |
<g | |
id="line2d_5"> | |
<defs | |
id="defs124"> | |
<path | |
id="m8dfa57dee7" | |
d="M 0,0 V 2" | |
style="stroke:#000000;stroke-width:0.6" /> | |
</defs> | |
<g | |
id="g128"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="91.17305" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use126" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_6"> | |
<g | |
id="line2d_6"> | |
<g | |
id="g134"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="114.00275" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use132" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_7"> | |
<g | |
id="line2d_7"> | |
<g | |
id="g140"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="130.20068" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use138" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_8"> | |
<g | |
id="line2d_8"> | |
<g | |
id="g146"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="142.76477" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use144" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_9"> | |
<g | |
id="line2d_9"> | |
<g | |
id="g152"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="153.03038" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use150" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_10"> | |
<g | |
id="line2d_10"> | |
<g | |
id="g158"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="161.70984" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use156" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_11"> | |
<g | |
id="line2d_11"> | |
<g | |
id="g164"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="169.22832" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use162" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_12"> | |
<g | |
id="line2d_12"> | |
<g | |
id="g170"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="175.86009" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use168" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_13"> | |
<g | |
id="line2d_13"> | |
<g | |
id="g176"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="220.82004" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use174" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_14"> | |
<g | |
id="line2d_14"> | |
<g | |
id="g182"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="243.64975" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use180" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_15"> | |
<g | |
id="line2d_15"> | |
<g | |
id="g188"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="259.84769" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use186" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_16"> | |
<g | |
id="line2d_16"> | |
<g | |
id="g194"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="272.41177" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use192" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_17"> | |
<g | |
id="line2d_17"> | |
<g | |
id="g200"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="282.67737" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use198" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_18"> | |
<g | |
id="line2d_18"> | |
<g | |
id="g206"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="291.35684" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use204" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_19"> | |
<g | |
id="line2d_19"> | |
<g | |
id="g212"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="298.87531" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use210" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_20"> | |
<g | |
id="line2d_20"> | |
<g | |
id="g218"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="305.50708" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use216" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_21"> | |
<g | |
id="line2d_21"> | |
<g | |
id="g224"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="350.46704" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use222" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_22"> | |
<g | |
id="line2d_22"> | |
<g | |
id="g230"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="373.29675" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use228" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_23"> | |
<g | |
id="line2d_23"> | |
<g | |
id="g236"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="389.49466" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use234" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_24"> | |
<g | |
id="line2d_24"> | |
<g | |
id="g242"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="402.05878" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use240" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_25"> | |
<g | |
id="line2d_25"> | |
<g | |
id="g248"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="412.32437" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use246" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_26"> | |
<g | |
id="line2d_26"> | |
<g | |
id="g254"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="421.00381" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use252" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_27"> | |
<g | |
id="line2d_27"> | |
<g | |
id="g260"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="428.52231" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use258" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_28"> | |
<g | |
id="line2d_28"> | |
<g | |
id="g266"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="435.15408" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use264" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_29"> | |
<g | |
id="line2d_29"> | |
<g | |
id="g272"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="480.11404" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use270" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_30"> | |
<g | |
id="line2d_30"> | |
<g | |
id="g278"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="502.94373" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use276" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_31"> | |
<g | |
id="line2d_31"> | |
<g | |
id="g284"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="519.14166" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use282" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_32"> | |
<g | |
id="line2d_32"> | |
<g | |
id="g290"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="531.70575" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use288" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_33"> | |
<g | |
id="line2d_33"> | |
<g | |
id="g296"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="541.97137" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use294" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_34"> | |
<g | |
id="line2d_34"> | |
<g | |
id="g302"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="550.65082" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use300" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_35"> | |
<g | |
id="line2d_35"> | |
<g | |
id="g308"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="558.16931" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use306" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_36"> | |
<g | |
id="line2d_36"> | |
<g | |
id="g314"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="564.80109" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use312" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_37"> | |
<g | |
id="line2d_37"> | |
<g | |
id="g320"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="609.76105" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use318" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="xtick_38"> | |
<g | |
id="line2d_38"> | |
<g | |
id="g326"> | |
<use | |
xlink:href="#m8dfa57dee7" | |
x="632.59076" | |
y="315" | |
style="stroke:#000000;stroke-width:0.6" | |
id="use324" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="text_5"> | |
<!-- time for 2000×3000 pixels (ms), smaller is better --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,244.91719,343.27656)" | |
id="g448"> | |
<defs | |
id="defs348"> | |
<path | |
id="DejaVuSans-74" | |
d="M 1172,4494 V 3500 H 2356 V 3053 H 1172 V 1153 q 0,-428 117,-550 117,-122 477,-122 h 590 V 0 H 1766 Q 1100,0 847,248 594,497 594,1153 V 3053 H 172 v 447 h 422 v 994 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-69" | |
d="m 603,3500 h 575 V 0 H 603 Z m 0,1363 h 575 V 4134 H 603 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-6d" | |
d="m 3328,2828 q 216,388 516,572 300,184 706,184 547,0 844,-383 297,-382 297,-1088 V 0 h -578 v 2094 q 0,503 -179,746 -178,244 -543,244 -447,0 -707,-297 -259,-296 -259,-809 V 0 h -578 v 2094 q 0,506 -178,748 -178,242 -550,242 -441,0 -701,-298 -259,-298 -259,-808 V 0 H 581 v 3500 h 578 v -544 q 197,322 472,475 275,153 653,153 382,0 649,-194 267,-193 395,-562 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-65" | |
d="M 3597,1894 V 1613 H 953 q 38,-594 358,-905 320,-311 892,-311 331,0 642,81 311,81 618,244 V 178 Q 3153,47 2828,-22 2503,-91 2169,-91 1331,-91 842,396 353,884 353,1716 q 0,859 464,1363 464,505 1252,505 706,0 1117,-455 411,-454 411,-1235 z m -575,169 q -6,471 -264,752 -258,282 -683,282 -481,0 -770,-272 -289,-272 -333,-766 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-20" | |
transform="scale(0.015625)" | |
d="" /> | |
<path | |
id="DejaVuSans-66" | |
d="m 2375,4863 v -479 h -550 q -309,0 -430,-125 -120,-125 -120,-450 v -309 h 947 V 3053 H 1275 V 0 H 697 V 3053 H 147 v 447 h 550 v 244 q 0,584 272,851 272,268 862,268 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-6f" | |
d="m 1959,3097 q -462,0 -731,-361 -269,-361 -269,-989 0,-628 267,-989 268,-361 733,-361 460,0 728,362 269,363 269,988 0,622 -269,986 -268,364 -728,364 z m 0,487 q 750,0 1178,-488 429,-487 429,-1349 Q 3566,888 3137,398 2709,-91 1959,-91 1206,-91 779,398 353,888 353,1747 q 0,862 426,1349 427,488 1180,488 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-72" | |
d="m 2631,2963 q -97,56 -211,82 -114,27 -251,27 -488,0 -749,-317 -261,-317 -261,-911 V 0 H 581 v 3500 h 578 v -544 q 182,319 472,473 291,155 707,155 59,0 131,-8 72,-7 159,-23 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-d7" | |
d="M 4488,3438 3059,2003 4488,575 4116,197 2681,1631 1247,197 878,575 2303,2003 878,3438 1247,3816 2681,2381 4116,3816 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-70" | |
d="M 1159,525 V -1331 H 581 v 4831 h 578 v -531 q 182,312 458,463 277,152 661,152 638,0 1036,-506 399,-506 399,-1331 0,-825 -399,-1332 -398,-506 -1036,-506 -384,0 -661,152 -276,152 -458,464 z m 1957,1222 q 0,634 -261,995 -261,361 -717,361 -457,0 -718,-361 -261,-361 -261,-995 0,-634 261,-995 261,-361 718,-361 456,0 717,361 261,361 261,995 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-78" | |
d="M 3513,3500 2247,1797 3578,0 H 2900 L 1881,1375 863,0 H 184 L 1544,1831 300,3500 h 678 l 928,-1247 928,1247 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-6c" | |
d="m 603,4863 h 575 V 0 H 603 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-73" | |
d="m 2834,3397 v -544 q -243,125 -506,187 -262,63 -544,63 -428,0 -642,-131 -214,-131 -214,-394 0,-200 153,-314 153,-114 616,-217 l 197,-44 q 612,-131 870,-370 258,-239 258,-667 0,-488 -386,-773 Q 2250,-91 1575,-91 1294,-91 989,-36 684,19 347,128 v 594 q 319,-166 628,-249 309,-82 613,-82 406,0 624,139 219,139 219,392 0,234 -158,359 -157,125 -692,241 l -200,47 q -534,112 -772,345 -237,233 -237,639 0,494 350,762 350,269 994,269 318,0 599,-47 282,-46 519,-140 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-28" | |
d="m 1984,4856 q -418,-718 -622,-1422 -203,-703 -203,-1425 0,-721 205,-1429 205,-708 620,-1424 h -500 q -468,735 -701,1444 -233,709 -233,1409 0,697 231,1403 232,707 703,1444 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-29" | |
d="m 513,4856 h 500 q 468,-737 701,-1444 233,-706 233,-1403 0,-700 -233,-1409 -233,-709 -701,-1444 H 513 q 415,716 620,1424 205,708 205,1429 0,722 -205,1425 -205,704 -620,1422 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-2c" | |
d="m 750,794 h 659 V 256 L 897,-744 H 494 L 750,256 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-61" | |
d="m 2194,1759 q -697,0 -966,-159 -269,-159 -269,-544 0,-306 202,-486 202,-179 548,-179 479,0 768,339 289,339 289,901 v 128 z m 1147,238 V 0 H 2766 V 531 Q 2569,213 2275,61 1981,-91 1556,-91 q -537,0 -855,302 -317,302 -317,808 0,590 395,890 396,300 1180,300 h 807 v 57 q 0,397 -261,614 -261,217 -733,217 -300,0 -585,-72 -284,-72 -546,-216 v 532 q 315,122 612,182 297,61 578,61 760,0 1135,-394 375,-393 375,-1193 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-62" | |
d="m 3116,1747 q 0,634 -261,995 -261,361 -717,361 -457,0 -718,-361 -261,-361 -261,-995 0,-634 261,-995 261,-361 718,-361 456,0 717,361 261,361 261,995 z M 1159,2969 q 182,312 458,463 277,152 661,152 638,0 1036,-506 399,-506 399,-1331 Q 3713,922 3314,415 2916,-91 2278,-91 1894,-91 1617,61 1341,213 1159,525 V 0 H 581 v 4863 h 578 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-74" | |
id="use350" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="39.208984" | |
id="use352" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="66.992188" | |
id="use354" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="164.4043" | |
id="use356" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="225.92773" | |
id="use358" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-66" | |
x="257.71484" | |
id="use360" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="292.91992" | |
id="use362" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="354.10156" | |
id="use364" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="395.21484" | |
id="use366" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-32" | |
x="427.00195" | |
id="use368" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="490.625" | |
id="use370" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="554.24805" | |
id="use372" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="617.87109" | |
id="use374" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-d7" | |
x="681.49414" | |
id="use376" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-33" | |
x="765.2832" | |
id="use378" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="828.90625" | |
id="use380" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="892.5293" | |
id="use382" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-30" | |
x="956.15234" | |
id="use384" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1019.7754" | |
id="use386" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1051.5625" | |
id="use388" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1115.0391" | |
id="use390" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-78" | |
x="1142.8223" | |
id="use392" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1198.877" | |
id="use394" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1260.4004" | |
id="use396" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1288.1836" | |
id="use398" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1340.2832" | |
id="use400" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-28" | |
x="1372.0703" | |
id="use402" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1411.084" | |
id="use404" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1508.4961" | |
id="use406" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-29" | |
x="1560.5957" | |
id="use408" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2c" | |
x="1599.6094" | |
id="use410" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1631.3965" | |
id="use412" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1663.1836" | |
id="use414" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1715.2832" | |
id="use416" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1812.6953" | |
id="use418" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1873.9746" | |
id="use420" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1901.7578" | |
id="use422" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1929.541" | |
id="use424" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1991.0645" | |
id="use426" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2032.1777" | |
id="use428" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2063.9648" | |
id="use430" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="2091.748" | |
id="use432" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2143.8477" | |
id="use434" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="2175.6348" | |
id="use436" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2239.1113" | |
id="use438" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2300.6348" | |
id="use440" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2339.8438" | |
id="use442" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2379.0527" | |
id="use444" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2440.5762" | |
id="use446" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="matplotlib.axis_2"> | |
<g | |
id="ytick_1"> | |
<g | |
id="line2d_39"> | |
<defs | |
id="defs453"> | |
<path | |
id="m4339e72c67" | |
d="M 0,0 H -3.5" | |
style="stroke:#000000;stroke-width:0.8" /> | |
</defs> | |
<g | |
id="g457"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="297.27393" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use455" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_6"> | |
<!-- JAX: array-oriented with automatic fusion into JIT-compiled routines on GPU --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-293.20156,301.07313)" | |
id="g629"> | |
<defs | |
id="defs477"> | |
<path | |
id="DejaVuSans-4a" | |
d="m 628,4666 h 631 V 325 q 0,-844 -320,-1225 -320,-381 -1030,-381 h -240 v 531 h 197 q 418,0 590,235 172,234 172,840 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-41" | |
d="M 2188,4044 1331,1722 h 1716 z m -357,622 h 716 L 4325,0 H 3669 L 3244,1197 H 1141 L 716,0 H 50 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-58" | |
d="m 403,4666 h 678 L 2241,2931 3406,4666 h 678 L 2584,2425 4184,0 H 3506 L 2194,1984 872,0 H 191 l 1665,2491 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-3a" | |
d="m 750,794 h 659 V 0 H 750 Z m 0,2515 h 659 V 2516 H 750 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-79" | |
d="m 2059,-325 q -243,-625 -475,-815 -231,-191 -618,-191 H 506 v 481 h 338 q 237,0 368,113 132,112 291,531 L 1606,56 191,3500 H 800 L 1894,763 2988,3500 h 609 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-2d" | |
d="M 313,2009 H 1997 V 1497 H 313 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-6e" | |
d="M 3513,2113 V 0 h -575 v 2094 q 0,497 -194,743 -194,247 -581,247 -466,0 -735,-297 -269,-296 -269,-809 V 0 H 581 v 3500 h 578 v -544 q 207,316 486,472 280,156 646,156 603,0 912,-373 310,-373 310,-1098 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-64" | |
d="m 2906,2969 v 1894 h 575 V 0 H 2906 V 525 Q 2725,213 2448,61 2172,-91 1784,-91 1150,-91 751,415 353,922 353,1747 q 0,825 398,1331 399,506 1033,506 388,0 664,-152 277,-151 458,-463 z M 947,1747 q 0,-634 261,-995 261,-361 717,-361 456,0 718,361 263,361 263,995 0,634 -263,995 -262,361 -718,361 -456,0 -717,-361 -261,-361 -261,-995 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-77" | |
d="m 269,3500 h 575 l 719,-2731 715,2731 h 678 l 719,-2731 716,2731 h 575 L 4050,0 H 3372 L 2619,2869 1863,0 h -679 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-68" | |
d="M 3513,2113 V 0 h -575 v 2094 q 0,497 -194,743 -194,247 -581,247 -466,0 -735,-297 -269,-296 -269,-809 V 0 H 581 v 4863 h 578 V 2956 q 207,316 486,472 280,156 646,156 603,0 912,-373 310,-373 310,-1098 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-75" | |
d="m 544,1381 v 2119 h 575 V 1403 q 0,-497 193,-746 194,-248 582,-248 465,0 735,297 271,297 271,810 v 1984 h 575 V 0 H 2900 V 538 Q 2691,219 2414,64 2138,-91 1772,-91 1169,-91 856,284 544,659 544,1381 Z m 1447,2203 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-63" | |
d="m 3122,3366 v -538 q -244,135 -489,202 -245,67 -495,67 -560,0 -870,-355 -309,-354 -309,-995 0,-641 309,-996 310,-354 870,-354 250,0 495,67 245,67 489,202 V 134 Q 2881,22 2623,-34 2366,-91 2075,-91 1284,-91 818,406 353,903 353,1747 q 0,856 470,1346 471,491 1290,491 265,0 518,-55 253,-54 491,-163 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-49" | |
d="m 628,4666 h 631 V 0 H 628 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-54" | |
d="M -19,4666 H 3928 V 4134 H 2272 V 0 H 1638 V 4134 H -19 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-47" | |
d="M 3809,666 V 1919 H 2778 v 519 H 4434 V 434 Q 4069,175 3628,42 3188,-91 2688,-91 1594,-91 976,548 359,1188 359,2328 q 0,1144 617,1783 618,639 1712,639 456,0 867,-113 411,-112 758,-331 v -672 q -350,297 -744,447 -394,150 -828,150 -857,0 -1287,-478 -429,-478 -429,-1425 0,-944 429,-1422 430,-478 1287,-478 334,0 596,58 263,58 472,180 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-50" | |
d="M 1259,4147 V 2394 h 794 q 441,0 681,228 241,228 241,650 0,419 -241,647 -240,228 -681,228 z m -631,519 h 1425 q 785,0 1186,-355 402,-355 402,-1039 0,-691 -402,-1044 -401,-353 -1186,-353 H 1259 V 0 H 628 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-55" | |
d="m 556,4666 h 635 V 1831 q 0,-750 271,-1080 272,-329 882,-329 606,0 878,329 272,330 272,1080 v 2835 h 634 V 1753 Q 4128,841 3676,375 3225,-91 2344,-91 1459,-91 1007,375 556,841 556,1753 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-4a" | |
id="use479" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-41" | |
x="27.742188" | |
id="use481" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-58" | |
x="96.150391" | |
id="use483" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="164.65625" | |
id="use485" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="198.34766" | |
id="use487" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="230.13477" | |
id="use489" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="291.41406" | |
id="use491" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="330.77734" | |
id="use493" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="371.89062" | |
id="use495" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="433.16992" | |
id="use497" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="490.59961" | |
id="use499" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="528.55859" | |
id="use501" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="589.74023" | |
id="use503" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="630.85352" | |
id="use505" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="658.63672" | |
id="use507" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="720.16016" | |
id="use509" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="783.53906" | |
id="use511" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="822.74805" | |
id="use513" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="884.27148" | |
id="use515" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="947.74805" | |
id="use517" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-77" | |
x="979.53516" | |
id="use519" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1061.3223" | |
id="use521" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1089.1055" | |
id="use523" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="1128.3145" | |
id="use525" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1191.6934" | |
id="use527" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1223.4805" | |
id="use529" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="1284.7598" | |
id="use531" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1348.1387" | |
id="use533" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1387.3477" | |
id="use535" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1448.5293" | |
id="use537" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1545.9414" | |
id="use539" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1607.2207" | |
id="use541" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1646.4297" | |
id="use543" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="1674.2129" | |
id="use545" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1729.1934" | |
id="use547" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-66" | |
x="1760.9805" | |
id="use549" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="1796.1855" | |
id="use551" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1859.5645" | |
id="use553" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1911.6641" | |
id="use555" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1939.4473" | |
id="use557" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2000.6289" | |
id="use559" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2064.0078" | |
id="use561" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2095.7949" | |
id="use563" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2123.5781" | |
id="use565" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2186.957" | |
id="use567" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2226.166" | |
id="use569" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2287.3477" | |
id="use571" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-4a" | |
x="2319.1348" | |
id="use573" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-49" | |
x="2348.627" | |
id="use575" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-54" | |
x="2378.1191" | |
id="use577" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="2430.0781" | |
id="use579" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="2466.1621" | |
id="use581" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2521.1426" | |
id="use583" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="2582.3242" | |
id="use585" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="2679.7363" | |
id="use587" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2743.2129" | |
id="use589" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="2770.9961" | |
id="use591" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2798.7793" | |
id="use593" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="2860.3027" | |
id="use595" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2923.7793" | |
id="use597" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2955.5664" | |
id="use599" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2994.4297" | |
id="use601" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="3055.6113" | |
id="use603" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="3118.9902" | |
id="use605" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="3158.1992" | |
id="use607" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="3185.9824" | |
id="use609" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3249.3613" | |
id="use611" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="3310.8848" | |
id="use613" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3362.9844" | |
id="use615" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="3394.7715" | |
id="use617" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="3455.9531" | |
id="use619" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3519.332" | |
id="use621" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-47" | |
x="3551.1191" | |
id="use623" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="3628.6094" | |
id="use625" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-55" | |
x="3688.9121" | |
id="use627" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_2"> | |
<g | |
id="line2d_40"> | |
<g | |
id="g635"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="273.63913" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use633" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_7"> | |
<!-- Numba-CUDA: imperative per pixel, array-oriented in the large --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-230.86875,277.43835)" | |
id="g767"> | |
<defs | |
id="defs643"> | |
<path | |
id="DejaVuSans-4e" | |
d="m 628,4666 h 850 L 3547,763 v 3903 h 612 V 0 H 3309 L 1241,3903 V 0 H 628 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-43" | |
d="m 4122,4306 v -665 q -319,297 -680,443 -361,147 -767,147 -800,0 -1225,-489 -425,-489 -425,-1414 0,-922 425,-1411 425,-489 1225,-489 406,0 767,147 361,147 680,444 V 359 Q 3791,134 3420,21 3050,-91 2638,-91 1578,-91 968,557 359,1206 359,2328 q 0,1125 609,1773 610,649 1670,649 418,0 788,-111 371,-111 696,-333 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-44" | |
d="M 1259,4147 V 519 h 763 q 966,0 1414,437 448,438 448,1382 0,937 -448,1373 -448,436 -1414,436 z m -631,519 h 1297 q 1356,0 1990,-564 635,-564 635,-1764 Q 4550,1131 3912,565 3275,0 1925,0 H 628 Z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-76" | |
d="M 191,3500 H 800 L 1894,563 2988,3500 h 609 L 2284,0 h -781 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-67" | |
d="m 2906,1791 q 0,625 -258,968 -257,344 -723,344 -462,0 -720,-344 -258,-343 -258,-968 0,-622 258,-966 258,-344 720,-344 466,0 723,344 258,344 258,966 z M 3481,434 q 0,-893 -397,-1329 -396,-436 -1215,-436 -303,0 -572,45 -269,45 -522,139 v 559 q 253,-137 500,-202 247,-66 503,-66 566,0 847,295 281,295 281,892 V 616 Q 2728,306 2450,153 2172,0 1784,0 1141,0 747,490 353,981 353,1791 q 0,812 394,1302 394,491 1037,491 388,0 666,-153 278,-153 456,-462 v 531 h 575 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-4e" | |
id="use645" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="74.804688" | |
id="use647" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="138.18359" | |
id="use649" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="235.5957" | |
id="use651" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="299.07227" | |
id="use653" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="360.35156" | |
id="use655" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-43" | |
x="396.43555" | |
id="use657" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-55" | |
x="466.25977" | |
id="use659" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-44" | |
x="539.45312" | |
id="use661" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-41" | |
x="614.70508" | |
id="use663" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="681.36328" | |
id="use665" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="715.05469" | |
id="use667" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="746.8418" | |
id="use669" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="774.625" | |
id="use671" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="872.03711" | |
id="use673" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="935.51367" | |
id="use675" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="997.03711" | |
id="use677" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1038.1504" | |
id="use679" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1099.4297" | |
id="use681" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1138.6387" | |
id="use683" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="1166.4219" | |
id="use685" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1225.6016" | |
id="use687" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1287.125" | |
id="use689" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1318.9121" | |
id="use691" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1382.3887" | |
id="use693" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1443.9121" | |
id="use695" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1485.0254" | |
id="use697" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1516.8125" | |
id="use699" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1580.2891" | |
id="use701" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-78" | |
x="1608.0723" | |
id="use703" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1664.127" | |
id="use705" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1725.6504" | |
id="use707" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2c" | |
x="1753.4336" | |
id="use709" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1785.2207" | |
id="use711" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1817.0078" | |
id="use713" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1878.2871" | |
id="use715" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1917.6504" | |
id="use717" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1958.7637" | |
id="use719" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="2020.043" | |
id="use721" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="2077.4727" | |
id="use723" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2115.4316" | |
id="use725" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2176.6133" | |
id="use727" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2217.7266" | |
id="use729" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2245.5098" | |
id="use731" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2307.0332" | |
id="use733" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2370.4121" | |
id="use735" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2409.6211" | |
id="use737" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="2471.1445" | |
id="use739" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2534.6211" | |
id="use741" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2566.4082" | |
id="use743" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2594.1914" | |
id="use745" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2657.5703" | |
id="use747" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2689.3574" | |
id="use749" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="2728.5664" | |
id="use751" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2791.9453" | |
id="use753" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2853.4688" | |
id="use755" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="2885.2559" | |
id="use757" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="2913.0391" | |
id="use759" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2974.3184" | |
id="use761" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-67" | |
x="3013.6816" | |
id="use763" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3077.1582" | |
id="use765" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_3"> | |
<g | |
id="line2d_41"> | |
<g | |
id="g773"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="250.00435" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use771" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_8"> | |
<!-- CuPy with a custom kernel: imperative per pixel, array-oriented in the large --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-295.66719,253.80357)" | |
id="g931"> | |
<defs | |
id="defs777"> | |
<path | |
id="DejaVuSans-6b" | |
d="m 581,4863 h 578 V 1991 l 1716,1509 h 734 L 1753,1863 3688,0 H 2938 L 1159,1709 V 0 H 581 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-43" | |
id="use779" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="69.824219" | |
id="use781" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="133.20312" | |
id="use783" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="193.50586" | |
id="use785" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="252.68555" | |
id="use787" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-77" | |
x="284.47266" | |
id="use789" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="366.25977" | |
id="use791" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="394.04297" | |
id="use793" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="433.25195" | |
id="use795" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="496.63086" | |
id="use797" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="528.41797" | |
id="use799" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="589.69727" | |
id="use801" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="621.48438" | |
id="use803" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="676.46484" | |
id="use805" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="739.84375" | |
id="use807" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="791.94336" | |
id="use809" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="831.15234" | |
id="use811" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="892.33398" | |
id="use813" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="989.74609" | |
id="use815" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6b" | |
x="1021.5332" | |
id="use817" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1075.8184" | |
id="use819" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1137.3418" | |
id="use821" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1176.7051" | |
id="use823" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1240.084" | |
id="use825" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1301.6074" | |
id="use827" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="1329.3906" | |
id="use829" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1363.082" | |
id="use831" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1394.8691" | |
id="use833" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1422.6523" | |
id="use835" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1520.0645" | |
id="use837" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1583.541" | |
id="use839" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1645.0645" | |
id="use841" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1686.1777" | |
id="use843" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1747.457" | |
id="use845" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1786.666" | |
id="use847" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="1814.4492" | |
id="use849" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1873.6289" | |
id="use851" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1935.1523" | |
id="use853" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1966.9395" | |
id="use855" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2030.416" | |
id="use857" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2091.9395" | |
id="use859" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2133.0527" | |
id="use861" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="2164.8398" | |
id="use863" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2228.3164" | |
id="use865" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-78" | |
x="2256.0996" | |
id="use867" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2312.1543" | |
id="use869" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="2373.6777" | |
id="use871" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2c" | |
x="2401.4609" | |
id="use873" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2433.248" | |
id="use875" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="2465.0352" | |
id="use877" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2526.3145" | |
id="use879" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2565.6777" | |
id="use881" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="2606.791" | |
id="use883" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="2668.0703" | |
id="use885" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="2725.5" | |
id="use887" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2763.459" | |
id="use889" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2824.6406" | |
id="use891" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2865.7539" | |
id="use893" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2893.5371" | |
id="use895" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2955.0605" | |
id="use897" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="3018.4395" | |
id="use899" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3057.6484" | |
id="use901" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="3119.1719" | |
id="use903" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3182.6484" | |
id="use905" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="3214.4355" | |
id="use907" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="3242.2188" | |
id="use909" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3305.5977" | |
id="use911" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="3337.3848" | |
id="use913" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="3376.5938" | |
id="use915" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3439.9727" | |
id="use917" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3501.4961" | |
id="use919" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="3533.2832" | |
id="use921" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="3561.0664" | |
id="use923" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="3622.3457" | |
id="use925" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-67" | |
x="3661.709" | |
id="use927" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3725.1855" | |
id="use929" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_4"> | |
<g | |
id="line2d_42"> | |
<g | |
id="g937"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="226.36957" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use935" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_9"> | |
<!-- CuPy: array-oriented on a GPU --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-69.06875,230.16878)" | |
id="g998"> | |
<use | |
xlink:href="#DejaVuSans-43" | |
id="use940" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="69.824219" | |
id="use942" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="133.20312" | |
id="use944" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="193.50586" | |
id="use946" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="245.43555" | |
id="use948" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="279.12695" | |
id="use950" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="310.91406" | |
id="use952" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="372.19336" | |
id="use954" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="411.55664" | |
id="use956" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="452.66992" | |
id="use958" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="513.94922" | |
id="use960" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="571.37891" | |
id="use962" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="609.33789" | |
id="use964" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="670.51953" | |
id="use966" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="711.63281" | |
id="use968" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="739.41602" | |
id="use970" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="800.93945" | |
id="use972" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="864.31836" | |
id="use974" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="903.52734" | |
id="use976" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="965.05078" | |
id="use978" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1028.5273" | |
id="use980" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1060.3145" | |
id="use982" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1121.4961" | |
id="use984" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1184.875" | |
id="use986" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1216.6621" | |
id="use988" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1277.9414" | |
id="use990" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-47" | |
x="1309.7285" | |
id="use992" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="1387.2188" | |
id="use994" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-55" | |
x="1447.5215" | |
id="use996" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_5"> | |
<g | |
id="line2d_43"> | |
<g | |
id="g1004"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="202.73479" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1002" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_10"> | |
<!-- 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="g1157"> | |
<use | |
xlink:href="#DejaVuSans-4a" | |
id="use1007" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-41" | |
x="27.742188" | |
id="use1009" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-58" | |
x="96.150391" | |
id="use1011" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="164.65625" | |
id="use1013" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="198.34766" | |
id="use1015" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="230.13477" | |
id="use1017" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="291.41406" | |
id="use1019" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="330.77734" | |
id="use1021" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="371.89062" | |
id="use1023" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="433.16992" | |
id="use1025" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="490.59961" | |
id="use1027" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="528.55859" | |
id="use1029" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="589.74023" | |
id="use1031" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="630.85352" | |
id="use1033" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="658.63672" | |
id="use1035" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="720.16016" | |
id="use1037" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="783.53906" | |
id="use1039" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="822.74805" | |
id="use1041" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="884.27148" | |
id="use1043" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="947.74805" | |
id="use1045" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-77" | |
x="979.53516" | |
id="use1047" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1061.3223" | |
id="use1049" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1089.1055" | |
id="use1051" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="1128.3145" | |
id="use1053" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1191.6934" | |
id="use1055" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1223.4805" | |
id="use1057" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="1284.7598" | |
id="use1059" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1348.1387" | |
id="use1061" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1387.3477" | |
id="use1063" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1448.5293" | |
id="use1065" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1545.9414" | |
id="use1067" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1607.2207" | |
id="use1069" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1646.4297" | |
id="use1071" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="1674.2129" | |
id="use1073" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1729.1934" | |
id="use1075" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-66" | |
x="1760.9805" | |
id="use1077" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="1796.1855" | |
id="use1079" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1859.5645" | |
id="use1081" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1911.6641" | |
id="use1083" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1939.4473" | |
id="use1085" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2000.6289" | |
id="use1087" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2064.0078" | |
id="use1089" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2095.7949" | |
id="use1091" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2123.5781" | |
id="use1093" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2186.957" | |
id="use1095" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2226.166" | |
id="use1097" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2287.3477" | |
id="use1099" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-4a" | |
x="2319.1348" | |
id="use1101" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-49" | |
x="2348.627" | |
id="use1103" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-54" | |
x="2378.1191" | |
id="use1105" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="2430.0781" | |
id="use1107" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="2466.1621" | |
id="use1109" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2521.1426" | |
id="use1111" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="2582.3242" | |
id="use1113" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="2679.7363" | |
id="use1115" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2743.2129" | |
id="use1117" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="2770.9961" | |
id="use1119" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2798.7793" | |
id="use1121" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="2860.3027" | |
id="use1123" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2923.7793" | |
id="use1125" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2955.5664" | |
id="use1127" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2994.4297" | |
id="use1129" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="3055.6113" | |
id="use1131" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="3118.9902" | |
id="use1133" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="3158.1992" | |
id="use1135" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="3185.9824" | |
id="use1137" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3249.3613" | |
id="use1139" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="3310.8848" | |
id="use1141" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3362.9844" | |
id="use1143" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="3394.7715" | |
id="use1145" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="3455.9531" | |
id="use1147" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3519.332" | |
id="use1149" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-43" | |
x="3551.1191" | |
id="use1151" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="3620.9434" | |
id="use1153" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-55" | |
x="3681.2461" | |
id="use1155" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_6"> | |
<g | |
id="line2d_44"> | |
<g | |
id="g1163"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="179.10001" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1161" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_11"> | |
<!-- Numba vectorize: imperative per pixel, array-oriented in the large --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-247.84687,182.89922)" | |
id="g1301"> | |
<defs | |
id="defs1167"> | |
<path | |
id="DejaVuSans-7a" | |
d="M 353,3500 H 3084 V 2975 L 922,459 H 3084 V 0 H 275 V 525 L 2438,3041 H 353 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-4e" | |
id="use1169" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="74.804688" | |
id="use1171" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="138.18359" | |
id="use1173" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="235.5957" | |
id="use1175" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="299.07227" | |
id="use1177" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="360.35156" | |
id="use1179" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="392.13867" | |
id="use1181" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="451.31836" | |
id="use1183" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="512.8418" | |
id="use1185" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="567.82227" | |
id="use1187" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="607.03125" | |
id="use1189" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="668.21289" | |
id="use1191" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="709.32617" | |
id="use1193" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-7a" | |
x="737.10938" | |
id="use1195" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="789.59961" | |
id="use1197" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="851.12305" | |
id="use1199" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="884.81445" | |
id="use1201" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="916.60156" | |
id="use1203" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="944.38477" | |
id="use1205" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1041.7969" | |
id="use1207" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1105.2734" | |
id="use1209" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1166.7969" | |
id="use1211" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1207.9102" | |
id="use1213" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1269.1895" | |
id="use1215" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1308.3984" | |
id="use1217" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="1336.1816" | |
id="use1219" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1395.3613" | |
id="use1221" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1456.8848" | |
id="use1223" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1488.6719" | |
id="use1225" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1552.1484" | |
id="use1227" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1613.6719" | |
id="use1229" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1654.7852" | |
id="use1231" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1686.5723" | |
id="use1233" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1750.0488" | |
id="use1235" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-78" | |
x="1777.832" | |
id="use1237" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1833.8867" | |
id="use1239" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1895.4102" | |
id="use1241" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2c" | |
x="1923.1934" | |
id="use1243" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1954.9805" | |
id="use1245" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1986.7676" | |
id="use1247" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2048.0469" | |
id="use1249" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2087.4102" | |
id="use1251" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="2128.5234" | |
id="use1253" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="2189.8027" | |
id="use1255" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="2247.2324" | |
id="use1257" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2285.1914" | |
id="use1259" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2346.373" | |
id="use1261" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2387.4863" | |
id="use1263" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2415.2695" | |
id="use1265" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2476.793" | |
id="use1267" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2540.1719" | |
id="use1269" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2579.3809" | |
id="use1271" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="2640.9043" | |
id="use1273" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2704.3809" | |
id="use1275" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2736.168" | |
id="use1277" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2763.9512" | |
id="use1279" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2827.3301" | |
id="use1281" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2859.1172" | |
id="use1283" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="2898.3262" | |
id="use1285" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="2961.7051" | |
id="use1287" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="3023.2285" | |
id="use1289" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="3055.0156" | |
id="use1291" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="3082.7988" | |
id="use1293" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="3144.0781" | |
id="use1295" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-67" | |
x="3183.4414" | |
id="use1297" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="3246.918" | |
id="use1299" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_7"> | |
<g | |
id="line2d_45"> | |
<g | |
id="g1307"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="155.46521" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1305" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_12"> | |
<!-- Numba: imperative in a compiled subset of Python --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-171.16875,159.26444)" | |
id="g1406"> | |
<use | |
xlink:href="#DejaVuSans-4e" | |
id="use1310" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="74.804688" | |
id="use1312" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="138.18359" | |
id="use1314" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="235.5957" | |
id="use1316" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="299.07227" | |
id="use1318" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="360.35156" | |
id="use1320" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="394.04297" | |
id="use1322" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="425.83008" | |
id="use1324" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="453.61328" | |
id="use1326" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="551.02539" | |
id="use1328" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="614.50195" | |
id="use1330" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="676.02539" | |
id="use1332" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="717.13867" | |
id="use1334" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="778.41797" | |
id="use1336" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="817.62695" | |
id="use1338" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="845.41016" | |
id="use1340" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="904.58984" | |
id="use1342" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="966.11328" | |
id="use1344" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="997.90039" | |
id="use1346" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1025.6836" | |
id="use1348" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1089.0625" | |
id="use1350" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1120.8496" | |
id="use1352" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1182.1289" | |
id="use1354" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-63" | |
x="1213.916" | |
id="use1356" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1268.8965" | |
id="use1358" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="1330.0781" | |
id="use1360" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1427.4902" | |
id="use1362" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1490.9668" | |
id="use1364" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="1518.75" | |
id="use1366" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1546.5332" | |
id="use1368" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="1608.0566" | |
id="use1370" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1671.5332" | |
id="use1372" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1703.3203" | |
id="use1374" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="1755.4199" | |
id="use1376" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="1818.7988" | |
id="use1378" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="1882.2754" | |
id="use1380" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1934.375" | |
id="use1382" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1995.8984" | |
id="use1384" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2035.1074" | |
id="use1386" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2066.8945" | |
id="use1388" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-66" | |
x="2128.0762" | |
id="use1390" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="2163.2812" | |
id="use1392" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="2195.0684" | |
id="use1394" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="2255.3711" | |
id="use1396" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="2314.5508" | |
id="use1398" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="2353.7598" | |
id="use1400" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="2417.1387" | |
id="use1402" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="2478.3203" | |
id="use1404" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_8"> | |
<g | |
id="line2d_46"> | |
<g | |
id="g1412"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="131.83043" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1410" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_13"> | |
<!-- Cython: imperative in a C++/Python hybrid --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-134.76406,135.62965)" | |
id="g1501"> | |
<defs | |
id="defs1417"> | |
<path | |
id="DejaVuSans-2b" | |
d="M 2944,4013 V 2272 H 4684 V 1741 H 2944 V 0 H 2419 V 1741 H 678 v 531 h 1741 v 1741 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-2f" | |
d="m 1625,4666 h 531 L 531,-594 H 0 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-43" | |
id="use1419" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="69.824219" | |
id="use1421" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="129.00391" | |
id="use1423" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="168.21289" | |
id="use1425" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="231.5918" | |
id="use1427" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="292.77344" | |
id="use1429" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="356.15234" | |
id="use1431" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="389.84375" | |
id="use1433" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="421.63086" | |
id="use1435" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="449.41406" | |
id="use1437" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="546.82617" | |
id="use1439" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="610.30273" | |
id="use1441" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="671.82617" | |
id="use1443" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="712.93945" | |
id="use1445" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="774.21875" | |
id="use1447" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="813.42773" | |
id="use1449" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="841.21094" | |
id="use1451" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="900.39062" | |
id="use1453" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="961.91406" | |
id="use1455" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="993.70117" | |
id="use1457" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1021.4844" | |
id="use1459" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1084.8633" | |
id="use1461" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1116.6504" | |
id="use1463" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1177.9297" | |
id="use1465" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-43" | |
x="1209.7168" | |
id="use1467" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2b" | |
x="1279.541" | |
id="use1469" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2b" | |
x="1363.3301" | |
id="use1471" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2f" | |
x="1447.1191" | |
id="use1473" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="1480.8105" | |
id="use1475" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="1541.1133" | |
id="use1477" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1600.293" | |
id="use1479" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="1639.502" | |
id="use1481" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="1702.8809" | |
id="use1483" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1764.0625" | |
id="use1485" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1827.4414" | |
id="use1487" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="1859.2285" | |
id="use1489" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="1922.6074" | |
id="use1491" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="1981.7871" | |
id="use1493" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="2045.2637" | |
id="use1495" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="2086.377" | |
id="use1497" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="2114.1602" | |
id="use1499" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_9"> | |
<g | |
id="line2d_47"> | |
<g | |
id="g1507"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="108.19565" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1505" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_14"> | |
<!-- pybind11: imperative in C++ --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-63.595313,111.99487)" | |
id="g1564"> | |
<use | |
xlink:href="#DejaVuSans-70" | |
id="use1510" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="63.476562" | |
id="use1512" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-62" | |
x="122.65625" | |
id="use1514" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="186.13281" | |
id="use1516" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="213.91602" | |
id="use1518" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="277.29492" | |
id="use1520" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-31" | |
x="340.77148" | |
id="use1522" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-31" | |
x="404.39453" | |
id="use1524" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="468.01758" | |
id="use1526" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="501.70898" | |
id="use1528" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="533.49609" | |
id="use1530" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="561.2793" | |
id="use1532" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="658.69141" | |
id="use1534" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="722.16797" | |
id="use1536" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="783.69141" | |
id="use1538" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="824.80469" | |
id="use1540" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="886.08398" | |
id="use1542" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="925.29297" | |
id="use1544" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="953.07617" | |
id="use1546" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1012.2559" | |
id="use1548" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1073.7793" | |
id="use1550" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1105.5664" | |
id="use1552" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="1133.3496" | |
id="use1554" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="1196.7285" | |
id="use1556" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-43" | |
x="1228.5156" | |
id="use1558" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2b" | |
x="1298.3398" | |
id="use1560" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2b" | |
x="1382.1289" | |
id="use1562" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_10"> | |
<g | |
id="line2d_48"> | |
<g | |
id="g1570"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="84.560867" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1568" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_15"> | |
<!-- NumPy: array-oriented --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-30.092188,88.360088)" | |
id="g1615"> | |
<use | |
xlink:href="#DejaVuSans-4e" | |
id="use1573" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-75" | |
x="74.804688" | |
id="use1575" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="138.18359" | |
id="use1577" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-50" | |
x="235.5957" | |
id="use1579" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="295.89844" | |
id="use1581" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="347.82812" | |
id="use1583" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="381.51953" | |
id="use1585" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="413.30664" | |
id="use1587" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="474.58594" | |
id="use1589" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="513.94922" | |
id="use1591" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="555.0625" | |
id="use1593" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="616.3418" | |
id="use1595" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-2d" | |
x="673.77148" | |
id="use1597" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="711.73047" | |
id="use1599" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="772.91211" | |
id="use1601" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="814.02539" | |
id="use1603" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="841.80859" | |
id="use1605" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="903.33203" | |
id="use1607" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="966.71094" | |
id="use1609" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1005.9199" | |
id="use1611" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-64" | |
x="1067.4434" | |
id="use1613" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<g | |
id="ytick_11"> | |
<g | |
id="line2d_49"> | |
<g | |
id="g1621"> | |
<use | |
xlink:href="#m4339e72c67" | |
x="90" | |
y="60.926086" | |
style="stroke:#000000;stroke-width:0.8" | |
id="use1619" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_16"> | |
<!-- Python "for" loops: imperative --> | |
<g | |
transform="matrix(0.1,0,0,-0.1,-68.11875,64.725306)" | |
id="g1687"> | |
<defs | |
id="defs1625"> | |
<path | |
id="DejaVuSans-22" | |
d="M 1147,4666 V 2931 H 616 v 1735 z m 1181,0 V 2931 h -531 v 1735 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-50" | |
id="use1627" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-79" | |
x="60.302734" | |
id="use1629" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="119.48242" | |
id="use1631" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-68" | |
x="158.69141" | |
id="use1633" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="222.07031" | |
id="use1635" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6e" | |
x="283.25195" | |
id="use1637" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="346.63086" | |
id="use1639" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-22" | |
x="378.41797" | |
id="use1641" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-66" | |
x="424.41406" | |
id="use1643" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="459.61914" | |
id="use1645" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="520.80078" | |
id="use1647" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-22" | |
x="561.91406" | |
id="use1649" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="607.91016" | |
id="use1651" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6c" | |
x="639.69727" | |
id="use1653" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="667.48047" | |
id="use1655" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6f" | |
x="728.66211" | |
id="use1657" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="789.84375" | |
id="use1659" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-73" | |
x="853.32031" | |
id="use1661" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-3a" | |
x="905.41992" | |
id="use1663" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-20" | |
x="939.11133" | |
id="use1665" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="970.89844" | |
id="use1667" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-6d" | |
x="998.68164" | |
id="use1669" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-70" | |
x="1096.0938" | |
id="use1671" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1159.5703" | |
id="use1673" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-72" | |
x="1221.0938" | |
id="use1675" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-61" | |
x="1262.207" | |
id="use1677" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-74" | |
x="1323.4863" | |
id="use1679" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-69" | |
x="1362.6953" | |
id="use1681" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-76" | |
x="1390.4785" | |
id="use1683" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-65" | |
x="1449.6582" | |
id="use1685" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
</g> | |
<g | |
id="line2d_50"> | |
<path | |
d="M 621.6864,315 V 43.2" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1692" /> | |
</g> | |
<g | |
id="line2d_51"> | |
<path | |
d="M 301.09055,315 V 43.2" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1695" /> | |
</g> | |
<g | |
id="line2d_52"> | |
<path | |
d="M 115.36364,315 V 43.2" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#ff8c00;stroke-width:1.5;stroke-dasharray:5.55, 2.4;stroke-dashoffset:0" | |
id="path1698" /> | |
</g> | |
<g | |
id="LineCollection_1"> | |
<path | |
d="m 127.13622,297.27391 h 3.50593" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1701" /> | |
<path | |
d="m 115.36364,273.63913 h 4.53912" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1703" /> | |
<path | |
d="m 121.94823,250.00435 h 0.43135" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1705" /> | |
<path | |
d="m 276.5022,226.36956 h 0.39941" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1707" /> | |
<path | |
d="m 301.09055,202.73478 h 2.1294" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1709" /> | |
<path | |
d="m 321.63894,179.1 h 1.52503" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1711" /> | |
<path | |
d="m 319.79528,155.46522 h 1.48306" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1713" /> | |
<path | |
d="m 324.56381,131.83043 h 1.17015" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1715" /> | |
<path | |
d="m 327.28967,108.19565 h 1.08391" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1717" /> | |
<path | |
d="m 436.85475,84.56087 h 1.63456" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1719" /> | |
<path | |
d="m 621.6864,60.926087 h 0.94996" | |
clip-path="url(#p4f7e9a6580)" | |
style="fill:none;stroke:#1f77b4;stroke-width:1.5" | |
id="path1721" /> | |
</g> | |
<g | |
id="line2d_53"> | |
<defs | |
id="defs1725"> | |
<path | |
id="m0b3b5ee58e" | |
d="M 0,5 V -5" | |
style="stroke:#1f77b4" /> | |
</defs> | |
<g | |
clip-path="url(#p4f7e9a6580)" | |
id="g1749"> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="127.13622" | |
y="297.27393" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1727" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="115.36363" | |
y="273.63913" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1729" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="121.94823" | |
y="250.00435" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1731" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="276.5022" | |
y="226.36957" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1733" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="301.09055" | |
y="202.73479" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1735" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="321.63895" | |
y="179.10001" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1737" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="319.79529" | |
y="155.46521" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1739" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="324.56381" | |
y="131.83043" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1741" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="327.28967" | |
y="108.19565" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1743" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="436.85477" | |
y="84.560867" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1745" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="621.6864" | |
y="60.926086" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1747" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="line2d_54"> | |
<g | |
clip-path="url(#p4f7e9a6580)" | |
id="g1774"> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="130.64215" | |
y="297.27393" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1752" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="119.90276" | |
y="273.63913" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1754" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="122.37959" | |
y="250.00435" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1756" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="276.90161" | |
y="226.36957" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1758" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="303.21994" | |
y="202.73479" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1760" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="323.16397" | |
y="179.10001" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1762" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="321.27835" | |
y="155.46521" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1764" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="325.73395" | |
y="131.83043" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1766" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="328.3736" | |
y="108.19565" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1768" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="438.48932" | |
y="84.560867" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1770" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#m0b3b5ee58e" | |
x="622.63635" | |
y="60.926086" | |
style="fill:#1f77b4;stroke:#1f77b4" | |
id="use1772" | |
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="path1777" /> | |
</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="path1780" /> | |
</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="path1783" /> | |
</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="path1786" /> | |
</g> | |
<g | |
id="text_17"> | |
<!-- Python --> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,601.72468,37.291304)" | |
id="g1809"> | |
<defs | |
id="defs1795"> | |
<path | |
id="DejaVuSans-Bold-50" | |
d="m 588,4666 h 1996 q 891,0 1367,-396 477,-395 477,-1126 0,-735 -477,-1130 -476,-395 -1367,-395 H 1791 V 0 H 588 Z M 1791,3794 V 2491 h 665 q 350,0 541,170 191,170 191,483 0,312 -191,481 -191,169 -541,169 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-79" | |
d="m 78,3500 h 1119 l 941,-2375 800,2375 H 4056 L 2584,-331 q -221,-585 -517,-817 -295,-233 -779,-233 H 641 v 734 h 350 q 284,0 413,91 130,90 202,325 l 32,97 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-74" | |
d="M 1759,4494 V 3500 H 2913 V 2700 H 1759 V 1216 q 0,-244 97,-330 97,-86 385,-86 h 575 V 0 H 1856 Q 1194,0 917,276 641,553 641,1216 V 2700 H 84 v 800 h 557 v 994 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-68" | |
d="M 4056,2131 V 0 H 2931 v 347 1278 q 0,459 -20,631 -20,172 -70,253 -66,110 -179,171 -112,61 -256,61 -350,0 -550,-271 -200,-270 -200,-748 V 0 H 538 V 4863 H 1656 V 2988 q 253,306 537,451 285,145 629,145 606,0 920,-372 314,-371 314,-1081 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-6f" | |
d="m 2203,2784 q -372,0 -567,-267 -195,-267 -195,-770 0,-503 195,-771 195,-267 567,-267 366,0 559,267 194,268 194,771 0,503 -194,770 -193,267 -559,267 z m 0,800 q 903,0 1411,-488 508,-487 508,-1349 Q 4122,884 3614,396 3106,-91 2203,-91 1297,-91 786,396 275,884 275,1747 q 0,862 511,1349 511,488 1417,488 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-6e" | |
d="M 4056,2131 V 0 H 2931 v 347 1284 q 0,453 -20,625 -20,172 -70,253 -66,110 -179,171 -112,61 -256,61 -350,0 -550,-271 -200,-270 -200,-748 V 0 H 538 v 3500 h 1118 v -512 q 253,306 537,451 285,145 629,145 606,0 920,-372 314,-371 314,-1081 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-Bold-50" | |
id="use1797" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-79" | |
x="75.166016" | |
id="use1799" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-74" | |
x="140.35156" | |
id="use1801" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-68" | |
x="188.1543" | |
id="use1803" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-6f" | |
x="259.3457" | |
id="use1805" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-6e" | |
x="328.04688" | |
id="use1807" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_18"> | |
<!-- best CPU --> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,275.61945,37.291304)" | |
id="g1836"> | |
<defs | |
id="defs1818"> | |
<path | |
id="DejaVuSans-Bold-62" | |
d="m 2400,722 q 359,0 548,262 190,263 190,763 0,500 -190,762 -189,263 -548,263 -359,0 -552,-264 -192,-264 -192,-761 0,-497 192,-761 193,-264 552,-264 z m -744,2266 q 232,306 513,451 281,145 647,145 647,0 1062,-514 416,-514 416,-1323 Q 4294,938 3878,423 3463,-91 2816,-91 2450,-91 2169,54 1888,200 1656,506 V 0 H 538 v 4863 h 1118 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-65" | |
d="M 4031,1759 V 1441 H 1416 q 40,-394 284,-591 244,-197 681,-197 353,0 723,105 371,105 762,317 V 213 Q 3469,63 3072,-14 2675,-91 2278,-91 1328,-91 801,392 275,875 275,1747 q 0,856 517,1346 517,491 1424,491 825,0 1320,-497 495,-496 495,-1328 z m -1150,372 q 0,319 -186,514 -186,196 -486,196 -325,0 -528,-183 -203,-183 -253,-527 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-73" | |
d="m 3272,3391 v -850 q -359,150 -694,225 -334,75 -631,75 -319,0 -474,-80 -154,-80 -154,-245 0,-135 117,-207 117,-71 420,-106 l 197,-28 q 860,-109 1156,-359 297,-250 297,-785 0,-559 -413,-841 -412,-281 -1230,-281 -347,0 -718,55 -370,55 -761,164 v 850 q 335,-162 686,-244 352,-81 714,-81 329,0 494,90 166,91 166,270 0,150 -114,223 -114,73 -455,114 l -197,25 q -747,94 -1047,347 -300,253 -300,769 0,556 381,824 382,269 1169,269 310,0 650,-47 341,-46 741,-146 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-20" | |
transform="scale(0.015625)" | |
d="" /> | |
<path | |
id="DejaVuSans-Bold-43" | |
d="M 4288,256 Q 3956,84 3597,-3 3238,-91 2847,-91 1681,-91 1000,561 319,1213 319,2328 q 0,1119 681,1770 681,652 1847,652 391,0 750,-88 359,-87 691,-259 v -965 q -335,228 -660,334 -325,106 -684,106 -644,0 -1013,-413 -368,-412 -368,-1137 0,-722 368,-1135 369,-412 1013,-412 359,0 684,106 325,107 660,335 z" | |
transform="scale(0.015625)" /> | |
<path | |
id="DejaVuSans-Bold-55" | |
d="M 588,4666 H 1791 V 1869 q 0,-578 189,-827 189,-248 617,-248 431,0 620,248 189,249 189,827 V 4666 H 4609 V 1869 Q 4609,878 4112,393 3616,-91 2597,-91 1581,-91 1084,393 588,878 588,1869 Z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-Bold-62" | |
id="use1820" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-65" | |
x="71.582031" | |
id="use1822" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-73" | |
x="139.4043" | |
id="use1824" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-74" | |
x="198.92578" | |
id="use1826" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-20" | |
x="246.72852" | |
id="use1828" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-43" | |
x="281.54297" | |
id="use1830" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-50" | |
x="354.93164" | |
id="use1832" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-55" | |
x="428.22266" | |
id="use1834" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
<g | |
id="text_19"> | |
<!-- best GPU --> | |
<g | |
style="fill:#ff8c00" | |
transform="matrix(0.1,0,0,-0.1,89.458168,37.291304)" | |
id="g1858"> | |
<defs | |
id="defs1840"> | |
<path | |
id="DejaVuSans-Bold-47" | |
d="M 4781,347 Q 4331,128 3847,18 3363,-91 2847,-91 1681,-91 1000,561 319,1213 319,2328 q 0,1128 693,1775 694,647 1901,647 465,0 891,-88 427,-87 805,-259 v -965 q -390,221 -776,330 -386,110 -774,110 -718,0 -1107,-402 -389,-401 -389,-1148 0,-740 375,-1144 375,-403 1065,-403 188,0 349,23 161,24 289,74 v 906 h -735 v 807 h 1875 z" | |
transform="scale(0.015625)" /> | |
</defs> | |
<use | |
xlink:href="#DejaVuSans-Bold-62" | |
id="use1842" | |
x="0" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-65" | |
x="71.582031" | |
id="use1844" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-73" | |
x="139.4043" | |
id="use1846" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-74" | |
x="198.92578" | |
id="use1848" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-20" | |
x="246.72852" | |
id="use1850" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-47" | |
x="281.54297" | |
id="use1852" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-50" | |
x="363.62305" | |
id="use1854" | |
y="0" | |
width="100%" | |
height="100%" /> | |
<use | |
xlink:href="#DejaVuSans-Bold-55" | |
x="436.91406" | |
id="use1856" | |
y="0" | |
width="100%" | |
height="100%" /> | |
</g> | |
</g> | |
</g> | |
<defs | |
id="defs1866"> | |
<clipPath | |
id="p4f7e9a6580"> | |
<rect | |
x="90" | |
y="43.200001" | |
width="558" | |
height="271.79999" | |
id="rect1863" /> | |
</clipPath> | |
</defs> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment