1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="534.0183pt" height="237.198pt" viewBox="0 0 534.0183 237.198" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2026-08-29T20:40:15.057227</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.10.8, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 237.198
L 534.0183 237.198
L 534.0183 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 40.990313 182.098
L 254.27683 182.098
L 254.27683 63.414
L 40.990313 63.414
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path id="m9e96a9dae0" d="M 0 0
L 0 3.5
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m9e96a9dae0" x="50.685154" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_1">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="50.685154" y="195.17675" transform="rotate(-0 50.685154 195.17675)">32</text>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use xlink:href="#m9e96a9dae0" x="115.317432" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_2">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="115.317432" y="195.17675" transform="rotate(-0 115.317432 195.17675)">128</text>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use xlink:href="#m9e96a9dae0" x="153.124891" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_3">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="153.124891" y="195.17675" transform="rotate(-0 153.124891 195.17675)">288</text>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<g>
<use xlink:href="#m9e96a9dae0" x="179.94971" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_4">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="179.94971" y="195.17675" transform="rotate(-0 179.94971 195.17675)">512</text>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use xlink:href="#m9e96a9dae0" x="217.75717" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_5">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="217.75717" y="195.17675" transform="rotate(-0 217.75717 195.17675)">1.2k</text>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use xlink:href="#m9e96a9dae0" x="244.581989" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_6">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="244.581989" y="195.17675" transform="rotate(-0 244.581989 195.17675)">2.0k</text>
</g>
</g>
<g id="text_7">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="147.633571" y="207.679094" transform="rotate(-0 147.633571 207.679094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_7">
<path d="M 40.990313 120.575252
L 254.27683 120.575252
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_8">
<defs>
<path id="m3c6ff06a67" d="M 0 0
L -3.5 0
" style="stroke: #000000; stroke-width: 0.8"/>
</defs>
<g>
<use xlink:href="#m3c6ff06a67" x="40.990313" y="120.575252" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_8">
<!-- $\mathdefault{10^{3}}$ -->
<g transform="translate(19.910313 123.614627)">
<text>
<tspan x="0" y="-0.78125" style="font-size: 8px; font-family: 'DejaVu Sans'">1</tspan>
<tspan x="5.089844" y="-0.78125" style="font-size: 8px; font-family: 'DejaVu Sans'">0</tspan>
<tspan x="10.25625" y="-3.84375" style="font-size: 5.6px; font-family: 'DejaVu Sans'">3</tspan>
</text>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_9">
<defs>
<path id="m8384d7e2da" d="M 0 0
L -2 0
" style="stroke: #000000; stroke-width: 0.6"/>
</defs>
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="173.688961" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_10">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="160.308043" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_11">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="150.814132" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_12">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="143.450081" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_13">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="137.433214" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_14">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="132.346026" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_8">
<g id="line2d_15">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="127.939303" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_9">
<g id="line2d_16">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="124.052297" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_10">
<g id="line2d_17">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="97.700423" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_11">
<g id="line2d_18">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="84.319506" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_12">
<g id="line2d_19">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="74.825594" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_13">
<g id="line2d_20">
<g>
<use xlink:href="#m8384d7e2da" x="40.990313" y="67.461544" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="text_9">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="14.038594" y="122.756" transform="rotate(-90 14.038594 122.756)">Local updates to stable zero error</text>
</g>
</g>
<g id="LineCollection_1">
<path d="M 50.685154 173.854382
L 50.685154 139.523095
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 115.317432 147.970147
L 115.317432 112.428524
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 153.124891 139.013258
L 153.124891 105.731191
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 179.94971 119.98651
L 179.94971 94.886729
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 217.75717 103.219443
L 217.75717 86.738106
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 244.581989 81.53613
L 244.581989 77.078892
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_21">
<defs>
<path id="m8955857049" d="M 2 0
L -2 -0
" style="stroke: #222222"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m8955857049" x="50.685154" y="173.854382" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="115.317432" y="147.970147" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="153.124891" y="139.013258" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="179.94971" y="119.98651" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="217.75717" y="103.219443" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="244.581989" y="81.53613" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_22">
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m8955857049" x="50.685154" y="139.523095" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="115.317432" y="112.428524" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="153.124891" y="105.731191" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="179.94971" y="94.886729" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="217.75717" y="86.738106" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="244.581989" y="77.078892" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_2">
<path d="M 50.685154 149.075278
L 50.685154 112.201258
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 115.317432 110.899417
L 115.317432 90.717368
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 153.124891 85.208766
L 153.124891 76.633639
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 179.94971 75.438021
L 179.94971 71.597104
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 217.75717 70.089494
L 217.75717 69.150184
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 244.581989 69.880499
L 244.581989 68.918916
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_23">
<defs>
<path id="m66d7922e6d" d="M 2 0
L -2 -0
" style="stroke: #cc79a7"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m66d7922e6d" x="50.685154" y="149.075278" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="115.317432" y="110.899417" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="153.124891" y="85.208766" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="179.94971" y="75.438021" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="217.75717" y="70.089494" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="244.581989" y="69.880499" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_24">
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m66d7922e6d" x="50.685154" y="112.201258" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="115.317432" y="90.717368" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="153.124891" y="76.633639" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="179.94971" y="71.597104" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="217.75717" y="69.150184" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="244.581989" y="68.918916" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="LineCollection_3">
<path d="M 50.685154 83.856917
L 50.685154 77.738125
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 115.317432 79.738046
L 115.317432 74.234796
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 153.124891 72.248817
L 153.124891 70.080724
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 179.94971 71.712076
L 179.94971 70.306825
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 217.75717 68.808727
L 217.75717 68.808727
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 244.581989 68.808727
L 244.581989 68.808727
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
</g>
<g id="line2d_25">
<defs>
<path id="m23e1cef07c" d="M 2 0
L -2 -0
" style="stroke: #d55e00"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m23e1cef07c" x="50.685154" y="83.856917" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="115.317432" y="79.738046" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="153.124891" y="72.248817" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="179.94971" y="71.712076" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="217.75717" y="68.808727" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="244.581989" y="68.808727" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_26">
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m23e1cef07c" x="50.685154" y="77.738125" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="115.317432" y="74.234796" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="153.124891" y="70.080724" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="179.94971" y="70.306825" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="217.75717" y="68.808727" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="244.581989" y="68.808727" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="LineCollection_4">
<path d="M 50.685154 127.682498
L 50.685154 101.009144
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 115.317432 119.055699
L 115.317432 96.150418
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 153.124891 118.757058
L 153.124891 95.397879
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 179.94971 97.152641
L 179.94971 83.10187
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 217.75717 81.1476
L 217.75717 74.117441
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 244.581989 71.416272
L 244.581989 69.85163
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_27">
<defs>
<path id="m12a4d27d6e" d="M 2 0
L -2 -0
" style="stroke: #666666"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m12a4d27d6e" x="50.685154" y="127.682498" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="115.317432" y="119.055699" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="153.124891" y="118.757058" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="179.94971" y="97.152641" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="217.75717" y="81.1476" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="244.581989" y="71.416272" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_28">
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m12a4d27d6e" x="50.685154" y="101.009144" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="115.317432" y="96.150418" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="153.124891" y="95.397879" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="179.94971" y="83.10187" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="217.75717" y="74.117441" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="244.581989" y="69.85163" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="LineCollection_5">
<path d="M 50.685154 176.703273
L 50.685154 142.875714
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 115.317432 148.325277
L 115.317432 112.58315
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 153.124891 140.105307
L 153.124891 105.703141
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 179.94971 119.98651
L 179.94971 94.987645
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 217.75717 103.037903
L 217.75717 86.928043
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 244.581989 81.59685
L 244.581989 77.196881
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_29">
<defs>
<path id="m0a42b65256" d="M 2 0
L -2 -0
" style="stroke: #0072b2"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m0a42b65256" x="50.685154" y="176.703273" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="115.317432" y="148.325277" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="153.124891" y="140.105307" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="179.94971" y="119.98651" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="217.75717" y="103.037903" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="244.581989" y="81.59685" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_30">
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m0a42b65256" x="50.685154" y="142.875714" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="115.317432" y="112.58315" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="153.124891" y="105.703141" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="179.94971" y="94.987645" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="217.75717" y="86.928043" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="244.581989" y="77.196881" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_31">
<path d="M 50.685154 154.488859
L 115.317432 127.285788
L 153.124891 119.471858
L 179.94971 105.479591
L 217.75717 94.167324
L 244.581989 79.28894
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<defs>
<path id="mae20972eeb" d="M 0 -2.25
L -2.25 2.25
L 2.25 2.25
z
" style="stroke: #222222; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#mae20972eeb" x="50.685154" y="154.488859" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="115.317432" y="127.285788" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="153.124891" y="119.471858" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="179.94971" y="105.479591" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="217.75717" y="94.167324" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="244.581989" y="79.28894" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_32">
<path d="M 50.685154 127.055396
L 115.317432 99.60547
L 153.124891 80.463398
L 179.94971 73.358044
L 217.75717 69.563139
L 244.581989 69.321636
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
<defs>
<path id="m53eeeb15d8" d="M -0 3.181981
L 3.181981 0
L 0 -3.181981
L -3.181981 -0
z
" style="stroke: #cc79a7; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#m53eeeb15d8" x="50.685154" y="127.055396" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="115.317432" y="99.60547" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="153.124891" y="80.463398" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="179.94971" y="73.358044" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="217.75717" y="69.563139" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="244.581989" y="69.321636" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_33">
<path d="M 50.685154 80.602426
L 115.317432 76.800932
L 153.124891 71.068835
L 179.94971 70.968426
L 217.75717 68.808727
L 244.581989 68.808727
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
<defs>
<path id="mf21b2d8758" d="M -1.125 2.25
L 0 1.125
L 1.125 2.25
L 2.25 1.125
L 1.125 0
L 2.25 -1.125
L 1.125 -2.25
L 0 -1.125
L -1.125 -2.25
L -2.25 -1.125
L -1.125 0
L -2.25 1.125
z
" style="stroke: #d55e00; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#mf21b2d8758" x="50.685154" y="80.602426" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="115.317432" y="76.800932" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="153.124891" y="71.068835" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="179.94971" y="70.968426" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="217.75717" y="68.808727" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="244.581989" y="68.808727" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_34">
<path d="M 50.685154 112.197721
L 115.317432 105.981897
L 153.124891 105.4923
L 179.94971 89.413372
L 217.75717 77.344146
L 244.581989 70.588438
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
<defs>
<path id="mc3f80339ae" d="M -2.25 2.25
L 2.25 2.25
L 2.25 -2.25
L -2.25 -2.25
z
" style="stroke: #666666; stroke-linejoin: miter"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#mc3f80339ae" x="50.685154" y="112.197721" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="115.317432" y="105.981897" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="153.124891" y="105.4923" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="179.94971" y="89.413372" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="217.75717" y="77.344146" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="244.581989" y="70.588438" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_35">
<path d="M 50.685154 157.709706
L 115.317432 127.447957
L 153.124891 119.706744
L 179.94971 105.507452
L 217.75717 94.196988
L 244.581989 79.358277
" clip-path="url(#p2a9d37320b)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<defs>
<path id="mdb30404a38" d="M 0 2.25
C 0.596707 2.25 1.169055 2.012926 1.59099 1.59099
C 2.012926 1.169055 2.25 0.596707 2.25 0
C 2.25 -0.596707 2.012926 -1.169055 1.59099 -1.59099
C 1.169055 -2.012926 0.596707 -2.25 0 -2.25
C -0.596707 -2.25 -1.169055 -2.012926 -1.59099 -1.59099
C -2.012926 -1.169055 -2.25 -0.596707 -2.25 0
C -2.25 0.596707 -2.012926 1.169055 -1.59099 1.59099
C -1.169055 2.012926 -0.596707 2.25 0 2.25
z
" style="stroke: #0072b2"/>
</defs>
<g clip-path="url(#p2a9d37320b)">
<use xlink:href="#mdb30404a38" x="50.685154" y="157.709706" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="115.317432" y="127.447957" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="153.124891" y="119.706744" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="179.94971" y="105.507452" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="217.75717" y="94.196988" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="244.581989" y="79.358277" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_3">
<path d="M 40.990313 182.098
L 40.990313 63.414
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_4">
<path d="M 40.990312 182.098
L 254.27683 182.098
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_10">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(83.496696 46.776078)">(a) Censored cost to target</text>
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(67.444665 57.414)">SDIL/static = 0.77 at 2,048 edges</text>
</g>
</g>
<g id="axes_2">
<g id="patch_5">
<path d="M 306.817187 182.098
L 520.103705 182.098
L 520.103705 63.414
L 306.817187 63.414
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_3">
<g id="xtick_7">
<g id="line2d_36">
<g>
<use xlink:href="#m9e96a9dae0" x="316.512029" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_11">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="316.512029" y="195.17675" transform="rotate(-0 316.512029 195.17675)">32</text>
</g>
</g>
<g id="xtick_8">
<g id="line2d_37">
<g>
<use xlink:href="#m9e96a9dae0" x="381.144307" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_12">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="381.144307" y="195.17675" transform="rotate(-0 381.144307 195.17675)">128</text>
</g>
</g>
<g id="xtick_9">
<g id="line2d_38">
<g>
<use xlink:href="#m9e96a9dae0" x="418.951766" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_13">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="418.951766" y="195.17675" transform="rotate(-0 418.951766 195.17675)">288</text>
</g>
</g>
<g id="xtick_10">
<g id="line2d_39">
<g>
<use xlink:href="#m9e96a9dae0" x="445.776585" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_14">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="445.776585" y="195.17675" transform="rotate(-0 445.776585 195.17675)">512</text>
</g>
</g>
<g id="xtick_11">
<g id="line2d_40">
<g>
<use xlink:href="#m9e96a9dae0" x="483.584045" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_15">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="483.584045" y="195.17675" transform="rotate(-0 483.584045 195.17675)">1.2k</text>
</g>
</g>
<g id="xtick_12">
<g id="line2d_41">
<g>
<use xlink:href="#m9e96a9dae0" x="510.408864" y="182.098" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_16">
<text style="font-size: 8px; font-family: 'DejaVu Sans'; text-anchor: middle" x="510.408864" y="195.17675" transform="rotate(-0 510.408864 195.17675)">2.0k</text>
</g>
</g>
<g id="text_17">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="413.460446" y="207.679094" transform="rotate(-0 413.460446 207.679094)">Learnable edges</text>
</g>
</g>
<g id="matplotlib.axis_4">
<g id="ytick_14">
<g id="line2d_42">
<path d="M 306.817187 170.427834
L 520.103705 170.427834
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_43">
<g>
<use xlink:href="#m3c6ff06a67" x="306.817187" y="170.427834" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_18">
<!-- $\mathdefault{10^{4}}$ -->
<g transform="translate(285.737188 173.467209)">
<text>
<tspan x="0" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">1</tspan>
<tspan x="5.089844" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">0</tspan>
<tspan x="10.25625" y="-3.920313" style="font-size: 5.6px; font-family: 'DejaVu Sans'">4</tspan>
</text>
</g>
</g>
</g>
<g id="ytick_15">
<g id="line2d_44">
<path d="M 306.817187 138.500504
L 520.103705 138.500504
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_45">
<g>
<use xlink:href="#m3c6ff06a67" x="306.817187" y="138.500504" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_19">
<!-- $\mathdefault{10^{5}}$ -->
<g transform="translate(285.737188 141.539879)">
<text>
<tspan x="0" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">1</tspan>
<tspan x="5.089844" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">0</tspan>
<tspan x="10.25625" y="-3.920313" style="font-size: 5.6px; font-family: 'DejaVu Sans'">5</tspan>
</text>
</g>
</g>
</g>
<g id="ytick_16">
<g id="line2d_46">
<path d="M 306.817187 106.573173
L 520.103705 106.573173
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_47">
<g>
<use xlink:href="#m3c6ff06a67" x="306.817187" y="106.573173" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_20">
<!-- $\mathdefault{10^{6}}$ -->
<g transform="translate(285.737188 109.612548)">
<text>
<tspan x="0" y="-0.78125" style="font-size: 8px; font-family: 'DejaVu Sans'">1</tspan>
<tspan x="5.089844" y="-0.78125" style="font-size: 8px; font-family: 'DejaVu Sans'">0</tspan>
<tspan x="10.25625" y="-3.84375" style="font-size: 5.6px; font-family: 'DejaVu Sans'">6</tspan>
</text>
</g>
</g>
</g>
<g id="ytick_17">
<g id="line2d_48">
<path d="M 306.817187 74.645843
L 520.103705 74.645843
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d9d9d9; stroke-opacity: 0.8; stroke-width: 0.55; stroke-linecap: square"/>
</g>
<g id="line2d_49">
<g>
<use xlink:href="#m3c6ff06a67" x="306.817187" y="74.645843" style="stroke: #000000; stroke-width: 0.8"/>
</g>
</g>
<g id="text_21">
<!-- $\mathdefault{10^{7}}$ -->
<g transform="translate(285.737188 77.685218)">
<text>
<tspan x="0" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">1</tspan>
<tspan x="5.089844" y="-0.857813" style="font-size: 8px; font-family: 'DejaVu Sans'">0</tspan>
<tspan x="10.25625" y="-3.920313" style="font-size: 5.6px; font-family: 'DejaVu Sans'">7</tspan>
</text>
</g>
</g>
</g>
<g id="ytick_18">
<g id="line2d_50">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="180.038918" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_19">
<g id="line2d_51">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="177.510873" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_20">
<g id="line2d_52">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="175.37344" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_21">
<g id="line2d_53">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="173.521912" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_22">
<g id="line2d_54">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="171.888749" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_23">
<g id="line2d_55">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="160.81675" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_24">
<g id="line2d_56">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="155.194626" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_25">
<g id="line2d_57">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="151.205666" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_26">
<g id="line2d_58">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="148.111588" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_27">
<g id="line2d_59">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="145.583542" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_28">
<g id="line2d_60">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="143.44611" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_29">
<g id="line2d_61">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="141.594582" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_30">
<g id="line2d_62">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="139.961418" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_31">
<g id="line2d_63">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="128.88942" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_32">
<g id="line2d_64">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="123.267296" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_33">
<g id="line2d_65">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="119.278336" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_34">
<g id="line2d_66">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="116.184258" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_35">
<g id="line2d_67">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="113.656212" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_36">
<g id="line2d_68">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="111.51878" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_37">
<g id="line2d_69">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="109.667251" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_38">
<g id="line2d_70">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="108.034088" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_39">
<g id="line2d_71">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="96.962089" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_40">
<g id="line2d_72">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="91.339966" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_41">
<g id="line2d_73">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="87.351005" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_42">
<g id="line2d_74">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="84.256927" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_43">
<g id="line2d_75">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="81.728881" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_44">
<g id="line2d_76">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="79.591449" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_45">
<g id="line2d_77">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="77.739921" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_46">
<g id="line2d_78">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="76.106758" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="ytick_47">
<g id="line2d_79">
<g>
<use xlink:href="#m8384d7e2da" x="306.817187" y="65.034759" style="stroke: #000000; stroke-width: 0.6"/>
</g>
</g>
</g>
<g id="text_22">
<text style="font-size: 9px; font-family: 'DejaVu Sans'; text-anchor: middle" x="279.865469" y="122.756" transform="rotate(-90 279.865469 122.756)">Local scalar reads to stable zero error</text>
</g>
</g>
<g id="LineCollection_6">
<path d="M 316.512029 176.703273
L 316.512029 162.324549
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 381.144307 146.52435
L 381.144307 131.698046
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 418.951766 131.823579
L 418.951766 117.561123
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 445.776585 115.690008
L 445.776585 105.087611
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 483.584045 97.318946
L 483.584045 90.45396
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
<path d="M 510.408864 80.222075
L 510.408864 78.35763
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_80">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m8955857049" x="316.512029" y="176.703273" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="381.144307" y="146.52435" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="418.951766" y="131.823579" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="445.776585" y="115.690008" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="483.584045" y="97.318946" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="510.408864" y="80.222075" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_81">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m8955857049" x="316.512029" y="162.324549" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="381.144307" y="131.698046" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="418.951766" y="117.561123" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="445.776585" y="105.087611" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="483.584045" y="90.45396" style="fill: #222222; stroke: #222222"/>
<use xlink:href="#m8955857049" x="510.408864" y="78.35763" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="LineCollection_7">
<path d="M 316.512029 166.337401
L 316.512029 150.690071
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 381.144307 130.917366
L 381.144307 122.60118
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 418.951766 108.959196
L 418.951766 105.329804
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 445.776585 96.878558
L 445.776585 95.278139
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 483.584045 83.397598
L 483.584045 83.004289
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
<path d="M 510.408864 75.339163
L 510.408864 74.92739
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_82">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m66d7922e6d" x="316.512029" y="166.337401" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="381.144307" y="130.917366" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="418.951766" y="108.959196" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="445.776585" y="96.878558" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="483.584045" y="83.397598" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="510.408864" y="75.339163" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_83">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m66d7922e6d" x="316.512029" y="150.690071" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="381.144307" y="122.60118" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="418.951766" y="105.329804" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="445.776585" y="95.278139" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="483.584045" y="83.004289" style="fill: #cc79a7; stroke: #cc79a7"/>
<use xlink:href="#m66d7922e6d" x="510.408864" y="74.92739" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="LineCollection_8">
<path d="M 316.512029 138.902638
L 316.512029 136.290949
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 381.144307 117.910371
L 381.144307 115.632031
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 418.951766 103.528695
L 418.951766 102.621189
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 445.776585 95.32251
L 445.776585 94.730778
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 483.584045 82.860946
L 483.584045 82.860946
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
<path d="M 510.408864 74.883025
L 510.408864 74.883025
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
</g>
<g id="line2d_84">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m23e1cef07c" x="316.512029" y="138.902638" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="381.144307" y="117.910371" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="418.951766" y="103.528695" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="445.776585" y="95.32251" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="483.584045" y="82.860946" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="510.408864" y="74.883025" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_85">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m23e1cef07c" x="316.512029" y="136.290949" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="381.144307" y="115.632031" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="418.951766" y="102.621189" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="445.776585" y="94.730778" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="483.584045" y="82.860946" style="fill: #d55e00; stroke: #d55e00"/>
<use xlink:href="#m23e1cef07c" x="510.408864" y="74.883025" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="LineCollection_9">
<path d="M 316.512029 156.910057
L 316.512029 145.991205
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 381.144307 134.157227
L 381.144307 124.782742
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 418.951766 123.035014
L 418.951766 113.129988
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 445.776585 105.902126
L 445.776585 100.076278
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 483.584045 88.00302
L 483.584045 85.057223
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
<path d="M 510.408864 75.926604
L 510.408864 75.269678
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_86">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m12a4d27d6e" x="316.512029" y="156.910057" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="381.144307" y="134.157227" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="418.951766" y="123.035014" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="445.776585" y="105.902126" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="483.584045" y="88.00302" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="510.408864" y="75.926604" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_87">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m12a4d27d6e" x="316.512029" y="145.991205" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="381.144307" y="124.782742" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="418.951766" y="113.129988" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="445.776585" y="100.076278" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="483.584045" y="85.057223" style="fill: #666666; stroke: #666666"/>
<use xlink:href="#m12a4d27d6e" x="510.408864" y="75.269678" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="LineCollection_10">
<path d="M 316.512029 168.452395
L 316.512029 153.924211
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 381.144307 136.976726
L 381.144307 122.014706
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 418.951766 122.494973
L 418.951766 108.020635
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 445.776585 105.951856
L 445.776585 95.531913
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 483.584045 87.647896
L 483.584045 80.832807
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
<path d="M 510.408864 70.645067
L 510.408864 68.808727
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_88">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m0a42b65256" x="316.512029" y="168.452395" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="381.144307" y="136.976726" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="418.951766" y="122.494973" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="445.776585" y="105.951856" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="483.584045" y="87.647896" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="510.408864" y="70.645067" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_89">
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m0a42b65256" x="316.512029" y="153.924211" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="381.144307" y="122.014706" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="418.951766" y="108.020635" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="445.776585" y="95.531913" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="483.584045" y="80.832807" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#m0a42b65256" x="510.408864" y="68.808727" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_90">
<path d="M 316.512029 168.548879
L 381.144307 137.897073
L 418.951766 123.369726
L 445.776585 109.512817
L 483.584045 93.515609
L 510.408864 79.286389
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#mae20972eeb" x="316.512029" y="168.548879" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="381.144307" y="137.897073" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="418.951766" y="123.369726" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="445.776585" y="109.512817" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="483.584045" y="93.515609" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
<use xlink:href="#mae20972eeb" x="510.408864" y="79.286389" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_91">
<path d="M 316.512029 157.02244
L 381.144307 126.266916
L 418.951766 106.979938
L 445.776585 96.016633
L 483.584045 83.177919
L 510.408864 75.098529
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#m53eeeb15d8" x="316.512029" y="157.02244" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="381.144307" y="126.266916" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="418.951766" y="106.979938" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="445.776585" y="96.016633" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="483.584045" y="83.177919" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
<use xlink:href="#m53eeeb15d8" x="510.408864" y="75.098529" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_92">
<path d="M 316.512029 137.504768
L 381.144307 116.685365
L 418.951766 103.03272
L 445.776585 95.012612
L 483.584045 82.860946
L 510.408864 74.883025
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#mf21b2d8758" x="316.512029" y="137.504768" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="381.144307" y="116.685365" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="418.951766" y="103.03272" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="445.776585" y="95.012612" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="483.584045" y="82.860946" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
<use xlink:href="#mf21b2d8758" x="510.408864" y="74.883025" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_93">
<path d="M 316.512029 150.608786
L 381.144307 128.804195
L 418.951766 117.356316
L 445.776585 102.676411
L 483.584045 86.387453
L 510.408864 75.582093
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#mc3f80339ae" x="316.512029" y="150.608786" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="381.144307" y="128.804195" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="418.951766" y="117.356316" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="445.776585" y="102.676411" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="483.584045" y="86.387453" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
<use xlink:href="#mc3f80339ae" x="510.408864" y="75.582093" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="line2d_94">
<path d="M 316.512029 160.291065
L 381.144307 128.354126
L 418.951766 113.857332
L 445.776585 99.913439
L 483.584045 83.916989
L 510.408864 69.704438
" clip-path="url(#p26edfe43c9)" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
<g clip-path="url(#p26edfe43c9)">
<use xlink:href="#mdb30404a38" x="316.512029" y="160.291065" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="381.144307" y="128.354126" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="418.951766" y="113.857332" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="445.776585" y="99.913439" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="483.584045" y="83.916989" style="fill: #0072b2; stroke: #0072b2"/>
<use xlink:href="#mdb30404a38" x="510.408864" y="69.704438" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="patch_6">
<path d="M 306.817187 182.098
L 306.817187 63.414
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_7">
<path d="M 306.817187 182.098
L 520.103705 182.098
" style="fill: none; stroke: #000000; stroke-width: 0.8; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_23">
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(349.218923 46.776078)">(b) Censored cost to target</text>
<text style="font-size: 9.5px; font-family: 'DejaVu Sans'" transform="translate(333.27154 57.414)">SDIL/static = 1.53 at 2,048 edges</text>
</g>
</g>
<g id="text_24">
<text style="font-size: 7px; font-family: 'DejaVu Sans'; text-anchor: end; fill: #666666" x="526.8183" y="228.542219" transform="rotate(-0 526.8183 228.542219)">Non-successes receive the 600-epoch horizon; SDIL counts task + neutral reads; static calibration includes 16 edgewise reads.</text>
</g>
<g id="legend_1">
<g id="LineCollection_11">
<path d="M 72.960816 17.023828
L 72.960816 9.523828
" style="fill: none; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_95">
<g>
<use xlink:href="#m8955857049" x="72.960816" y="17.023828" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_96">
<g>
<use xlink:href="#m8955857049" x="72.960816" y="9.523828" style="fill: #222222; stroke: #222222"/>
</g>
</g>
<g id="line2d_97">
<path d="M 65.460816 13.273828
L 80.460816 13.273828
" style="fill: none; stroke-dasharray: 1.15,1.8975; stroke-dashoffset: 0; stroke: #222222; stroke-width: 1.15"/>
</g>
<g id="line2d_98">
<g>
<use xlink:href="#mae20972eeb" x="72.960816" y="13.273828" style="fill: #222222; stroke: #222222; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_25">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="86.460816" y="15.898828" transform="rotate(-0 86.460816 15.898828)">Clean</text>
</g>
<g id="LineCollection_12">
<path d="M 130.245582 17.023828
L 130.245582 9.523828
" style="fill: none; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_99">
<g>
<use xlink:href="#m66d7922e6d" x="130.245582" y="17.023828" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_100">
<g>
<use xlink:href="#m66d7922e6d" x="130.245582" y="9.523828" style="fill: #cc79a7; stroke: #cc79a7"/>
</g>
</g>
<g id="line2d_101">
<path d="M 122.745582 13.273828
L 137.745582 13.273828
" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #cc79a7; stroke-width: 1.15"/>
</g>
<g id="line2d_102">
<g>
<use xlink:href="#m53eeeb15d8" x="130.245582" y="13.273828" style="fill: #cc79a7; stroke: #cc79a7; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_26">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="143.745582" y="15.898828" transform="rotate(-0 143.745582 15.898828)">Same-RMS noise</text>
</g>
<g id="LineCollection_13">
<path d="M 229.004175 17.023828
L 229.004175 9.523828
" style="fill: none; stroke: #d55e00; stroke-width: 1.15"/>
</g>
<g id="line2d_103">
<g>
<use xlink:href="#m23e1cef07c" x="229.004175" y="17.023828" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_104">
<g>
<use xlink:href="#m23e1cef07c" x="229.004175" y="9.523828" style="fill: #d55e00; stroke: #d55e00"/>
</g>
</g>
<g id="line2d_105">
<path d="M 221.504175 13.273828
L 236.504175 13.273828
" style="fill: none; stroke: #d55e00; stroke-width: 1.15; stroke-linecap: square"/>
</g>
<g id="line2d_106">
<g>
<use xlink:href="#mf21b2d8758" x="229.004175" y="13.273828" style="fill: #d55e00; stroke: #d55e00; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_27">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="242.504175" y="15.898828" transform="rotate(-0 242.504175 15.898828)">Raw imperfection</text>
</g>
<g id="LineCollection_14">
<path d="M 330.753394 17.023828
L 330.753394 9.523828
" style="fill: none; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_107">
<g>
<use xlink:href="#m12a4d27d6e" x="330.753394" y="17.023828" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_108">
<g>
<use xlink:href="#m12a4d27d6e" x="330.753394" y="9.523828" style="fill: #666666; stroke: #666666"/>
</g>
</g>
<g id="line2d_109">
<path d="M 323.253394 13.273828
L 338.253394 13.273828
" style="fill: none; stroke-dasharray: 4.255,1.84; stroke-dashoffset: 0; stroke: #666666; stroke-width: 1.15"/>
</g>
<g id="line2d_110">
<g>
<use xlink:href="#mc3f80339ae" x="330.753394" y="13.273828" style="fill: #666666; stroke: #666666; stroke-linejoin: miter"/>
</g>
</g>
<g id="text_28">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="344.253394" y="15.898828" transform="rotate(-0 344.253394 15.898828)">Static calibration</text>
</g>
<g id="LineCollection_15">
<path d="M 430.27605 17.023828
L 430.27605 9.523828
" style="fill: none; stroke: #0072b2; stroke-width: 1.7"/>
</g>
<g id="line2d_111">
<g>
<use xlink:href="#m0a42b65256" x="430.27605" y="17.023828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_112">
<g>
<use xlink:href="#m0a42b65256" x="430.27605" y="9.523828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="line2d_113">
<path d="M 422.77605 13.273828
L 437.77605 13.273828
" style="fill: none; stroke: #0072b2; stroke-width: 1.7; stroke-linecap: square"/>
</g>
<g id="line2d_114">
<g>
<use xlink:href="#mdb30404a38" x="430.27605" y="13.273828" style="fill: #0072b2; stroke: #0072b2"/>
</g>
</g>
<g id="text_29">
<text style="font-size: 7.5px; font-family: 'DejaVu Sans'; text-anchor: start" x="443.77605" y="15.898828" transform="rotate(-0 443.77605 15.898828)">SDIL</text>
</g>
</g>
</g>
<defs>
<clipPath id="p2a9d37320b">
<rect x="40.990313" y="63.414" width="213.286518" height="118.684"/>
</clipPath>
<clipPath id="p26edfe43c9">
<rect x="306.817187" y="63.414" width="213.286518" height="118.684"/>
</clipPath>
</defs>
</svg>
|