-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstat_result.txt
999 lines (999 loc) · 60.1 KB
/
stat_result.txt
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
1: qp=20 ref=5 subme=0 threads=10 input_file=2 status='fail'
2: qp=5 ref=5 subme=6 threads=9 input_file=2 status='fail'
3: qp=20 ref=2 subme=4 threads=9 input_file=2 status='fail'
4: qp=16 ref=5 subme=0 threads=8 input_file=2 status='fail'
5: qp=1 ref=6 subme=7 threads=8 input_file=2 status='fail'
6: qp=13 ref=2 subme=2 threads=7 input_file=2 status='fail'
7: qp=14 ref=5 subme=4 threads=4 input_file=2 status='fail'
8: qp=14 ref=9 subme=2 threads=9 input_file=2 status='fail'
9: qp=4 ref=8 subme=5 threads=5 input_file=2 status='fail'
10: qp=11 ref=8 subme=7 threads=4 input_file=2 status='fail'
11: qp=16 ref=1 subme=3 threads=2 input_file=2 status='pass'
12: qp=7 ref=9 subme=3 threads=8 input_file=2 status='fail'
13: qp=13 ref=4 subme=5 threads=8 input_file=2 status='fail'
14: qp=19 ref=4 subme=5 threads=5 input_file=2 status='fail'
15: qp=15 ref=5 subme=6 threads=4 input_file=2 status='fail'
16: qp=9 ref=4 subme=8 threads=3 input_file=2 status='fail'
17: qp=12 ref=6 subme=4 threads=7 input_file=2 status='fail'
18: qp=18 ref=1 subme=9 threads=7 input_file=2 status='fail'
19: qp=15 ref=1 subme=8 threads=9 input_file=2 status='fail'
20: qp=12 ref=1 subme=1 threads=3 input_file=2 status='pass'
21: qp=11 ref=4 subme=6 threads=6 input_file=2 status='fail'
22: qp=17 ref=10 subme=5 threads=5 input_file=2 status='fail'
23: qp=7 ref=5 subme=8 threads=7 input_file=2 status='fail'
24: qp=6 ref=1 subme=2 threads=3 input_file=2 status='fail'
25: qp=8 ref=8 subme=5 threads=3 input_file=2 status='pass'
26: qp=2 ref=3 subme=0 threads=2 input_file=2 status='fail'
27: qp=18 ref=8 subme=1 threads=5 input_file=2 status='fail'
28: qp=11 ref=7 subme=6 threads=3 input_file=2 status='fail'
29: qp=13 ref=8 subme=9 threads=4 input_file=2 status='fail'
30: qp=3 ref=3 subme=8 threads=2 input_file=2 status='fail'
31: qp=5 ref=7 subme=8 threads=4 input_file=2 status='fail'
32: qp=12 ref=5 subme=1 threads=9 input_file=2 status='fail'
33: qp=13 ref=10 subme=9 threads=6 input_file=2 status='fail'
34: qp=2 ref=6 subme=8 threads=6 input_file=2 status='fail'
35: qp=4 ref=6 subme=1 threads=7 input_file=2 status='fail'
36: qp=6 ref=2 subme=5 threads=6 input_file=2 status='fail'
37: qp=10 ref=7 subme=0 threads=3 input_file=2 status='fail'
38: qp=2 ref=8 subme=6 threads=7 input_file=2 status='fail'
39: qp=15 ref=7 subme=7 threads=3 input_file=2 status='fail'
40: qp=11 ref=10 subme=9 threads=2 input_file=2 status='fail'
41: qp=6 ref=8 subme=5 threads=7 input_file=2 status='fail'
42: qp=0 ref=8 subme=3 threads=8 input_file=2 status='fail'
43: qp=5 ref=10 subme=0 threads=6 input_file=2 status='fail'
44: qp=14 ref=3 subme=2 threads=7 input_file=2 status='fail'
45: qp=16 ref=8 subme=3 threads=2 input_file=2 status='pass'
46: qp=10 ref=8 subme=3 threads=3 input_file=2 status='fail'
47: qp=2 ref=8 subme=1 threads=10 input_file=2 status='fail'
48: qp=6 ref=8 subme=4 threads=5 input_file=2 status='fail'
49: qp=5 ref=2 subme=0 threads=6 input_file=2 status='fail'
50: qp=5 ref=5 subme=9 threads=2 input_file=2 status='pass'
51: qp=1 ref=8 subme=1 threads=8 input_file=2 status='fail'
52: qp=16 ref=2 subme=0 threads=3 input_file=2 status='fail'
53: qp=11 ref=2 subme=8 threads=8 input_file=2 status='fail'
54: qp=3 ref=5 subme=1 threads=6 input_file=2 status='fail'
55: qp=6 ref=1 subme=1 threads=6 input_file=2 status='fail'
56: qp=20 ref=9 subme=3 threads=4 input_file=2 status='fail'
57: qp=18 ref=4 subme=4 threads=2 input_file=2 status='fail'
58: qp=14 ref=2 subme=3 threads=2 input_file=2 status='pass'
59: qp=11 ref=3 subme=1 threads=5 input_file=2 status='fail'
60: qp=17 ref=2 subme=0 threads=6 input_file=2 status='fail'
61: qp=11 ref=3 subme=4 threads=5 input_file=2 status='fail'
62: qp=3 ref=7 subme=8 threads=9 input_file=2 status='fail'
63: qp=0 ref=6 subme=7 threads=6 input_file=2 status='fail'
64: qp=3 ref=2 subme=1 threads=6 input_file=2 status='fail'
65: qp=2 ref=6 subme=0 threads=9 input_file=2 status='fail'
66: qp=10 ref=5 subme=0 threads=5 input_file=2 status='fail'
67: qp=13 ref=8 subme=2 threads=7 input_file=2 status='fail'
68: qp=20 ref=2 subme=5 threads=7 input_file=2 status='fail'
69: qp=19 ref=3 subme=4 threads=7 input_file=2 status='fail'
70: qp=13 ref=8 subme=1 threads=6 input_file=2 status='fail'
71: qp=14 ref=7 subme=5 threads=2 input_file=2 status='pass'
72: qp=9 ref=6 subme=0 threads=7 input_file=2 status='fail'
73: qp=8 ref=8 subme=7 threads=6 input_file=2 status='fail'
74: qp=1 ref=9 subme=2 threads=4 input_file=2 status='fail'
75: qp=1 ref=6 subme=5 threads=5 input_file=2 status='fail'
76: qp=13 ref=9 subme=5 threads=9 input_file=2 status='fail'
77: qp=10 ref=10 subme=2 threads=3 input_file=2 status='fail'
78: qp=18 ref=5 subme=3 threads=7 input_file=2 status='fail'
79: qp=3 ref=3 subme=8 threads=7 input_file=2 status='fail'
80: qp=4 ref=1 subme=9 threads=6 input_file=2 status='fail'
81: qp=11 ref=7 subme=1 threads=6 input_file=2 status='fail'
82: qp=8 ref=9 subme=6 threads=10 input_file=2 status='fail'
83: qp=13 ref=1 subme=3 threads=3 input_file=2 status='fail'
84: qp=7 ref=3 subme=9 threads=6 input_file=2 status='fail'
85: qp=14 ref=7 subme=6 threads=8 input_file=2 status='fail'
86: qp=1 ref=6 subme=4 threads=9 input_file=2 status='fail'
87: qp=19 ref=10 subme=4 threads=3 input_file=2 status='fail'
88: qp=7 ref=2 subme=2 threads=5 input_file=2 status='fail'
89: qp=6 ref=7 subme=3 threads=2 input_file=2 status='pass'
90: qp=18 ref=10 subme=7 threads=9 input_file=2 status='fail'
91: qp=12 ref=8 subme=2 threads=10 input_file=2 status='fail'
92: qp=15 ref=2 subme=4 threads=6 input_file=2 status='fail'
93: qp=2 ref=1 subme=0 threads=10 input_file=2 status='fail'
94: qp=2 ref=10 subme=6 threads=7 input_file=2 status='fail'
95: qp=15 ref=10 subme=3 threads=10 input_file=2 status='fail'
96: qp=16 ref=3 subme=7 threads=3 input_file=2 status='fail'
97: qp=15 ref=9 subme=0 threads=5 input_file=2 status='fail'
98: qp=1 ref=1 subme=0 threads=9 input_file=2 status='fail'
99: qp=13 ref=2 subme=9 threads=2 input_file=2 status='fail'
100: qp=3 ref=4 subme=5 threads=9 input_file=2 status='fail'
101: qp=13 ref=1 subme=5 threads=5 input_file=2 status='fail'
102: qp=1 ref=2 subme=8 threads=10 input_file=2 status='fail'
103: qp=18 ref=10 subme=9 threads=2 input_file=2 status='fail'
104: qp=1 ref=3 subme=7 threads=4 input_file=2 status='fail'
105: qp=20 ref=4 subme=7 threads=10 input_file=2 status='fail'
106: qp=16 ref=7 subme=5 threads=5 input_file=2 status='fail'
107: qp=20 ref=10 subme=0 threads=6 input_file=2 status='fail'
108: qp=10 ref=2 subme=4 threads=9 input_file=2 status='fail'
109: qp=4 ref=10 subme=6 threads=3 input_file=2 status='fail'
110: qp=11 ref=9 subme=0 threads=9 input_file=2 status='fail'
111: qp=2 ref=7 subme=1 threads=10 input_file=2 status='fail'
112: qp=3 ref=5 subme=3 threads=3 input_file=2 status='fail'
113: qp=4 ref=7 subme=1 threads=3 input_file=2 status='fail'
114: qp=17 ref=1 subme=7 threads=9 input_file=2 status='fail'
115: qp=16 ref=6 subme=9 threads=5 input_file=2 status='fail'
116: qp=15 ref=1 subme=1 threads=4 input_file=2 status='fail'
117: qp=17 ref=2 subme=5 threads=5 input_file=2 status='fail'
118: qp=12 ref=3 subme=5 threads=10 input_file=2 status='fail'
119: qp=15 ref=8 subme=9 threads=9 input_file=2 status='fail'
120: qp=9 ref=8 subme=8 threads=2 input_file=2 status='pass'
121: qp=13 ref=5 subme=7 threads=10 input_file=2 status='fail'
122: qp=5 ref=4 subme=6 threads=3 input_file=2 status='fail'
123: qp=5 ref=7 subme=2 threads=8 input_file=2 status='fail'
124: qp=5 ref=4 subme=8 threads=10 input_file=2 status='fail'
125: qp=9 ref=9 subme=5 threads=3 input_file=2 status='fail'
126: qp=13 ref=3 subme=6 threads=5 input_file=2 status='fail'
127: qp=16 ref=1 subme=9 threads=3 input_file=2 status='fail'
128: qp=1 ref=6 subme=7 threads=3 input_file=2 status='fail'
129: qp=13 ref=1 subme=0 threads=2 input_file=2 status='pass'
130: qp=18 ref=2 subme=0 threads=2 input_file=2 status='fail'
131: qp=5 ref=3 subme=0 threads=9 input_file=2 status='fail'
132: qp=8 ref=4 subme=8 threads=3 input_file=2 status='fail'
133: qp=14 ref=1 subme=1 threads=8 input_file=2 status='fail'
134: qp=6 ref=4 subme=0 threads=4 input_file=2 status='fail'
135: qp=7 ref=8 subme=4 threads=4 input_file=2 status='fail'
136: qp=9 ref=2 subme=2 threads=4 input_file=2 status='fail'
137: qp=1 ref=7 subme=0 threads=4 input_file=2 status='fail'
138: qp=20 ref=5 subme=9 threads=7 input_file=2 status='fail'
139: qp=17 ref=2 subme=4 threads=8 input_file=2 status='fail'
140: qp=15 ref=2 subme=7 threads=8 input_file=2 status='fail'
141: qp=13 ref=10 subme=0 threads=8 input_file=2 status='fail'
142: qp=10 ref=7 subme=8 threads=4 input_file=2 status='fail'
143: qp=20 ref=4 subme=4 threads=2 input_file=2 status='fail'
144: qp=5 ref=7 subme=8 threads=6 input_file=2 status='fail'
145: qp=1 ref=9 subme=1 threads=3 input_file=2 status='fail'
146: qp=12 ref=9 subme=6 threads=4 input_file=2 status='pass'
147: qp=6 ref=8 subme=1 threads=3 input_file=2 status='fail'
148: qp=4 ref=7 subme=8 threads=8 input_file=2 status='fail'
149: qp=7 ref=3 subme=8 threads=5 input_file=2 status='fail'
150: qp=7 ref=3 subme=0 threads=9 input_file=2 status='fail'
151: qp=5 ref=7 subme=7 threads=10 input_file=2 status='fail'
152: qp=18 ref=10 subme=0 threads=10 input_file=2 status='fail'
153: qp=16 ref=7 subme=8 threads=3 input_file=2 status='fail'
154: qp=2 ref=7 subme=6 threads=10 input_file=2 status='fail'
155: qp=7 ref=5 subme=7 threads=2 input_file=2 status='pass'
156: qp=14 ref=7 subme=5 threads=2 input_file=2 status='pass'
157: qp=0 ref=6 subme=9 threads=6 input_file=2 status='fail'
158: qp=2 ref=6 subme=3 threads=5 input_file=2 status='fail'
159: qp=17 ref=7 subme=0 threads=7 input_file=2 status='fail'
160: qp=17 ref=6 subme=6 threads=3 input_file=2 status='fail'
161: qp=3 ref=3 subme=1 threads=10 input_file=2 status='fail'
162: qp=9 ref=4 subme=3 threads=8 input_file=2 status='fail'
163: qp=7 ref=3 subme=0 threads=2 input_file=2 status='fail'
164: qp=13 ref=10 subme=2 threads=3 input_file=2 status='fail'
165: qp=13 ref=7 subme=8 threads=6 input_file=2 status='fail'
166: qp=6 ref=2 subme=8 threads=2 input_file=2 status='fail'
167: qp=3 ref=4 subme=6 threads=2 input_file=2 status='pass'
168: qp=14 ref=3 subme=2 threads=8 input_file=2 status='fail'
169: qp=9 ref=4 subme=8 threads=2 input_file=2 status='fail'
170: qp=7 ref=3 subme=9 threads=7 input_file=2 status='fail'
171: qp=14 ref=3 subme=3 threads=9 input_file=2 status='fail'
172: qp=19 ref=7 subme=3 threads=10 input_file=2 status='fail'
173: qp=1 ref=5 subme=7 threads=7 input_file=2 status='fail'
174: qp=8 ref=5 subme=0 threads=6 input_file=2 status='fail'
175: qp=20 ref=9 subme=1 threads=2 input_file=2 status='pass'
176: qp=5 ref=2 subme=4 threads=3 input_file=2 status='fail'
177: qp=2 ref=1 subme=6 threads=2 input_file=2 status='fail'
178: qp=16 ref=7 subme=0 threads=9 input_file=2 status='fail'
179: qp=4 ref=5 subme=9 threads=5 input_file=2 status='fail'
180: qp=11 ref=2 subme=6 threads=3 input_file=2 status='fail'
181: qp=2 ref=1 subme=5 threads=3 input_file=2 status='fail'
182: qp=20 ref=7 subme=6 threads=10 input_file=2 status='fail'
183: qp=20 ref=9 subme=5 threads=10 input_file=2 status='fail'
184: qp=20 ref=6 subme=4 threads=2 input_file=2 status='pass'
185: qp=12 ref=5 subme=6 threads=8 input_file=2 status='fail'
186: qp=12 ref=8 subme=8 threads=8 input_file=2 status='fail'
187: qp=15 ref=5 subme=1 threads=2 input_file=2 status='pass'
188: qp=12 ref=5 subme=0 threads=6 input_file=2 status='fail'
189: qp=1 ref=6 subme=9 threads=3 input_file=2 status='fail'
190: qp=3 ref=7 subme=2 threads=7 input_file=2 status='fail'
191: qp=16 ref=7 subme=7 threads=7 input_file=2 status='fail'
192: qp=12 ref=5 subme=1 threads=5 input_file=2 status='fail'
193: qp=7 ref=10 subme=7 threads=9 input_file=2 status='fail'
194: qp=8 ref=4 subme=5 threads=8 input_file=2 status='fail'
195: qp=16 ref=6 subme=3 threads=9 input_file=2 status='fail'
196: qp=19 ref=10 subme=0 threads=10 input_file=2 status='fail'
197: qp=16 ref=4 subme=9 threads=4 input_file=2 status='fail'
198: qp=15 ref=10 subme=8 threads=8 input_file=2 status='fail'
199: qp=19 ref=3 subme=7 threads=10 input_file=2 status='fail'
200: qp=5 ref=4 subme=2 threads=6 input_file=2 status='fail'
201: qp=14 ref=7 subme=8 threads=5 input_file=2 status='fail'
202: qp=14 ref=6 subme=2 threads=2 input_file=2 status='pass'
203: qp=11 ref=7 subme=9 threads=2 input_file=2 status='fail'
204: qp=5 ref=9 subme=4 threads=4 input_file=2 status='fail'
205: qp=5 ref=1 subme=3 threads=6 input_file=2 status='fail'
206: qp=1 ref=6 subme=8 threads=8 input_file=2 status='fail'
207: qp=8 ref=6 subme=3 threads=3 input_file=2 status='fail'
208: qp=7 ref=7 subme=4 threads=6 input_file=2 status='fail'
209: qp=12 ref=1 subme=6 threads=5 input_file=2 status='fail'
210: qp=18 ref=4 subme=5 threads=7 input_file=2 status='fail'
211: qp=20 ref=4 subme=4 threads=6 input_file=2 status='fail'
212: qp=16 ref=10 subme=5 threads=7 input_file=2 status='fail'
213: qp=7 ref=8 subme=8 threads=3 input_file=2 status='fail'
214: qp=4 ref=9 subme=7 threads=5 input_file=2 status='fail'
215: qp=13 ref=2 subme=5 threads=3 input_file=2 status='fail'
216: qp=4 ref=5 subme=4 threads=3 input_file=2 status='fail'
217: qp=0 ref=9 subme=8 threads=3 input_file=2 status='pass'
218: qp=18 ref=6 subme=6 threads=7 input_file=2 status='fail'
219: qp=18 ref=6 subme=2 threads=4 input_file=2 status='fail'
220: qp=15 ref=9 subme=8 threads=3 input_file=2 status='fail'
221: qp=19 ref=5 subme=3 threads=10 input_file=2 status='fail'
222: qp=12 ref=9 subme=9 threads=8 input_file=2 status='fail'
223: qp=17 ref=7 subme=3 threads=6 input_file=2 status='fail'
224: qp=13 ref=6 subme=4 threads=4 input_file=2 status='fail'
225: qp=20 ref=4 subme=4 threads=5 input_file=2 status='fail'
226: qp=10 ref=8 subme=6 threads=7 input_file=2 status='fail'
227: qp=7 ref=5 subme=6 threads=6 input_file=2 status='fail'
228: qp=3 ref=9 subme=3 threads=2 input_file=2 status='fail'
229: qp=0 ref=1 subme=7 threads=10 input_file=2 status='fail'
230: qp=17 ref=4 subme=0 threads=9 input_file=2 status='fail'
231: qp=1 ref=9 subme=9 threads=5 input_file=2 status='fail'
232: qp=19 ref=1 subme=8 threads=3 input_file=2 status='fail'
233: qp=4 ref=5 subme=0 threads=7 input_file=2 status='fail'
234: qp=16 ref=3 subme=8 threads=6 input_file=2 status='fail'
235: qp=8 ref=2 subme=8 threads=5 input_file=2 status='fail'
236: qp=20 ref=7 subme=4 threads=8 input_file=2 status='fail'
237: qp=18 ref=7 subme=1 threads=7 input_file=2 status='fail'
238: qp=11 ref=1 subme=9 threads=3 input_file=2 status='fail'
239: qp=3 ref=10 subme=4 threads=2 input_file=2 status='fail'
240: qp=16 ref=7 subme=3 threads=9 input_file=2 status='fail'
241: qp=20 ref=5 subme=0 threads=9 input_file=2 status='fail'
242: qp=10 ref=8 subme=6 threads=10 input_file=2 status='fail'
243: qp=3 ref=3 subme=8 threads=8 input_file=2 status='fail'
244: qp=9 ref=6 subme=7 threads=10 input_file=2 status='fail'
245: qp=3 ref=8 subme=2 threads=9 input_file=2 status='fail'
246: qp=6 ref=4 subme=0 threads=8 input_file=2 status='fail'
247: qp=8 ref=3 subme=0 threads=4 input_file=2 status='fail'
248: qp=13 ref=3 subme=9 threads=7 input_file=2 status='fail'
249: qp=0 ref=5 subme=4 threads=8 input_file=2 status='fail'
250: qp=3 ref=8 subme=9 threads=10 input_file=2 status='fail'
251: qp=4 ref=9 subme=4 threads=10 input_file=2 status='fail'
252: qp=8 ref=3 subme=5 threads=6 input_file=2 status='fail'
253: qp=4 ref=2 subme=8 threads=3 input_file=2 status='fail'
254: qp=15 ref=7 subme=8 threads=9 input_file=2 status='fail'
255: qp=6 ref=1 subme=3 threads=2 input_file=2 status='fail'
256: qp=13 ref=9 subme=8 threads=2 input_file=2 status='fail'
257: qp=20 ref=9 subme=0 threads=9 input_file=2 status='fail'
258: qp=19 ref=7 subme=6 threads=3 input_file=2 status='fail'
259: qp=3 ref=3 subme=7 threads=4 input_file=2 status='fail'
260: qp=2 ref=7 subme=9 threads=6 input_file=2 status='fail'
261: qp=3 ref=5 subme=3 threads=4 input_file=2 status='fail'
262: qp=6 ref=6 subme=2 threads=7 input_file=2 status='fail'
263: qp=11 ref=2 subme=2 threads=5 input_file=2 status='fail'
264: qp=11 ref=2 subme=7 threads=4 input_file=2 status='fail'
265: qp=18 ref=5 subme=7 threads=3 input_file=2 status='fail'
266: qp=10 ref=3 subme=5 threads=10 input_file=2 status='fail'
267: qp=13 ref=5 subme=6 threads=3 input_file=2 status='fail'
268: qp=8 ref=6 subme=4 threads=6 input_file=2 status='fail'
269: qp=19 ref=5 subme=4 threads=7 input_file=2 status='fail'
270: qp=12 ref=9 subme=8 threads=3 input_file=2 status='fail'
271: qp=5 ref=7 subme=4 threads=6 input_file=2 status='fail'
272: qp=17 ref=5 subme=0 threads=7 input_file=2 status='fail'
273: qp=12 ref=4 subme=1 threads=9 input_file=2 status='fail'
274: qp=9 ref=3 subme=6 threads=2 input_file=2 status='pass'
275: qp=17 ref=2 subme=0 threads=5 input_file=2 status='fail'
276: qp=17 ref=6 subme=1 threads=2 input_file=2 status='pass'
277: qp=8 ref=9 subme=9 threads=8 input_file=2 status='fail'
278: qp=8 ref=7 subme=5 threads=4 input_file=2 status='pass'
279: qp=20 ref=1 subme=3 threads=3 input_file=2 status='fail'
280: qp=18 ref=3 subme=4 threads=10 input_file=2 status='fail'
281: qp=5 ref=4 subme=5 threads=6 input_file=2 status='fail'
282: qp=17 ref=4 subme=5 threads=4 input_file=2 status='fail'
283: qp=19 ref=1 subme=2 threads=10 input_file=2 status='fail'
284: qp=19 ref=1 subme=0 threads=9 input_file=2 status='fail'
285: qp=17 ref=4 subme=6 threads=9 input_file=2 status='fail'
286: qp=9 ref=7 subme=6 threads=8 input_file=2 status='fail'
287: qp=14 ref=8 subme=2 threads=2 input_file=2 status='pass'
288: qp=12 ref=6 subme=9 threads=7 input_file=2 status='fail'
289: qp=8 ref=3 subme=4 threads=9 input_file=2 status='fail'
290: qp=10 ref=8 subme=5 threads=7 input_file=2 status='fail'
291: qp=11 ref=1 subme=2 threads=3 input_file=2 status='fail'
292: qp=9 ref=10 subme=9 threads=7 input_file=2 status='fail'
293: qp=17 ref=6 subme=6 threads=2 input_file=2 status='pass'
294: qp=2 ref=2 subme=9 threads=5 input_file=2 status='fail'
295: qp=17 ref=1 subme=3 threads=8 input_file=2 status='fail'
296: qp=11 ref=3 subme=5 threads=7 input_file=2 status='fail'
297: qp=9 ref=1 subme=2 threads=3 input_file=2 status='fail'
298: qp=18 ref=7 subme=2 threads=8 input_file=2 status='fail'
299: qp=15 ref=3 subme=7 threads=2 input_file=2 status='pass'
300: qp=7 ref=7 subme=0 threads=4 input_file=2 status='fail'
301: qp=7 ref=8 subme=1 threads=9 input_file=2 status='fail'
302: qp=13 ref=9 subme=1 threads=5 input_file=2 status='fail'
303: qp=20 ref=8 subme=7 threads=7 input_file=2 status='fail'
304: qp=6 ref=4 subme=0 threads=4 input_file=2 status='fail'
305: qp=12 ref=3 subme=9 threads=6 input_file=2 status='fail'
306: qp=4 ref=3 subme=4 threads=2 input_file=2 status='pass'
307: qp=6 ref=1 subme=1 threads=5 input_file=2 status='fail'
308: qp=18 ref=8 subme=8 threads=7 input_file=2 status='fail'
309: qp=13 ref=9 subme=8 threads=4 input_file=2 status='fail'
310: qp=18 ref=7 subme=2 threads=10 input_file=2 status='fail'
311: qp=5 ref=2 subme=0 threads=2 input_file=2 status='fail'
312: qp=11 ref=3 subme=8 threads=3 input_file=2 status='fail'
313: qp=2 ref=9 subme=1 threads=9 input_file=2 status='fail'
314: qp=18 ref=9 subme=0 threads=7 input_file=2 status='fail'
315: qp=13 ref=5 subme=5 threads=8 input_file=2 status='fail'
316: qp=6 ref=10 subme=4 threads=7 input_file=2 status='fail'
317: qp=4 ref=10 subme=6 threads=5 input_file=2 status='fail'
318: qp=8 ref=6 subme=6 threads=2 input_file=2 status='pass'
319: qp=8 ref=1 subme=8 threads=2 input_file=2 status='pass'
320: qp=6 ref=9 subme=4 threads=2 input_file=2 status='fail'
321: qp=20 ref=9 subme=9 threads=4 input_file=2 status='fail'
322: qp=9 ref=4 subme=1 threads=7 input_file=2 status='fail'
323: qp=9 ref=2 subme=6 threads=6 input_file=2 status='fail'
324: qp=14 ref=2 subme=2 threads=4 input_file=2 status='pass'
325: qp=0 ref=3 subme=3 threads=6 input_file=2 status='fail'
326: qp=14 ref=5 subme=4 threads=6 input_file=2 status='fail'
327: qp=4 ref=2 subme=8 threads=2 input_file=2 status='pass'
328: qp=16 ref=3 subme=6 threads=6 input_file=2 status='fail'
329: qp=11 ref=6 subme=6 threads=9 input_file=2 status='fail'
330: qp=19 ref=7 subme=3 threads=2 input_file=2 status='pass'
331: qp=1 ref=2 subme=9 threads=8 input_file=2 status='fail'
332: qp=5 ref=5 subme=1 threads=8 input_file=2 status='fail'
333: qp=15 ref=1 subme=1 threads=4 input_file=2 status='fail'
334: qp=6 ref=3 subme=2 threads=2 input_file=2 status='fail'
335: qp=9 ref=8 subme=7 threads=3 input_file=2 status='fail'
336: qp=5 ref=9 subme=2 threads=10 input_file=2 status='fail'
337: qp=7 ref=5 subme=4 threads=6 input_file=2 status='fail'
338: qp=5 ref=8 subme=2 threads=6 input_file=2 status='fail'
339: qp=0 ref=5 subme=4 threads=10 input_file=2 status='fail'
340: qp=14 ref=9 subme=0 threads=5 input_file=2 status='fail'
341: qp=18 ref=10 subme=6 threads=9 input_file=2 status='fail'
342: qp=0 ref=2 subme=7 threads=6 input_file=2 status='fail'
343: qp=18 ref=6 subme=3 threads=2 input_file=2 status='pass'
344: qp=6 ref=9 subme=8 threads=8 input_file=2 status='fail'
345: qp=7 ref=7 subme=2 threads=5 input_file=2 status='fail'
346: qp=6 ref=6 subme=4 threads=7 input_file=2 status='fail'
347: qp=0 ref=9 subme=9 threads=6 input_file=2 status='fail'
348: qp=8 ref=4 subme=2 threads=7 input_file=2 status='fail'
349: qp=4 ref=4 subme=5 threads=7 input_file=2 status='fail'
350: qp=2 ref=1 subme=3 threads=3 input_file=2 status='fail'
351: qp=11 ref=3 subme=5 threads=10 input_file=2 status='fail'
352: qp=10 ref=6 subme=3 threads=3 input_file=2 status='fail'
353: qp=0 ref=5 subme=1 threads=7 input_file=2 status='fail'
354: qp=4 ref=9 subme=1 threads=7 input_file=2 status='fail'
355: qp=20 ref=7 subme=5 threads=3 input_file=2 status='fail'
356: qp=16 ref=10 subme=6 threads=10 input_file=2 status='fail'
357: qp=15 ref=2 subme=0 threads=2 input_file=2 status='pass'
358: qp=3 ref=6 subme=6 threads=10 input_file=2 status='fail'
359: qp=12 ref=5 subme=3 threads=2 input_file=2 status='pass'
360: qp=11 ref=4 subme=8 threads=10 input_file=2 status='fail'
361: qp=5 ref=9 subme=9 threads=5 input_file=2 status='fail'
362: qp=14 ref=3 subme=3 threads=6 input_file=2 status='fail'
363: qp=2 ref=4 subme=4 threads=9 input_file=2 status='fail'
364: qp=13 ref=3 subme=7 threads=5 input_file=2 status='fail'
365: qp=19 ref=6 subme=1 threads=9 input_file=2 status='fail'
366: qp=13 ref=2 subme=8 threads=3 input_file=2 status='fail'
367: qp=1 ref=1 subme=5 threads=10 input_file=2 status='fail'
368: qp=16 ref=9 subme=0 threads=5 input_file=2 status='fail'
369: qp=6 ref=2 subme=3 threads=4 input_file=2 status='fail'
370: qp=6 ref=8 subme=2 threads=7 input_file=2 status='fail'
371: qp=20 ref=8 subme=4 threads=6 input_file=2 status='fail'
372: qp=1 ref=5 subme=0 threads=3 input_file=2 status='fail'
373: qp=19 ref=9 subme=5 threads=6 input_file=2 status='fail'
374: qp=7 ref=6 subme=1 threads=7 input_file=2 status='fail'
375: qp=19 ref=2 subme=9 threads=6 input_file=2 status='fail'
376: qp=7 ref=7 subme=2 threads=5 input_file=2 status='fail'
377: qp=19 ref=5 subme=6 threads=8 input_file=2 status='fail'
378: qp=14 ref=3 subme=9 threads=6 input_file=2 status='fail'
379: qp=4 ref=8 subme=9 threads=6 input_file=2 status='fail'
380: qp=3 ref=9 subme=1 threads=2 input_file=2 status='pass'
381: qp=16 ref=9 subme=5 threads=2 input_file=2 status='pass'
382: qp=1 ref=3 subme=3 threads=4 input_file=2 status='fail'
383: qp=0 ref=6 subme=6 threads=9 input_file=2 status='fail'
384: qp=14 ref=3 subme=9 threads=7 input_file=2 status='fail'
385: qp=15 ref=3 subme=2 threads=7 input_file=2 status='fail'
386: qp=17 ref=1 subme=6 threads=2 input_file=2 status='pass'
387: qp=11 ref=3 subme=9 threads=8 input_file=2 status='fail'
388: qp=3 ref=3 subme=7 threads=4 input_file=2 status='fail'
389: qp=3 ref=5 subme=0 threads=9 input_file=2 status='fail'
390: qp=10 ref=6 subme=8 threads=5 input_file=2 status='fail'
391: qp=16 ref=5 subme=8 threads=5 input_file=2 status='fail'
392: qp=18 ref=6 subme=7 threads=6 input_file=2 status='pass'
393: qp=1 ref=3 subme=5 threads=7 input_file=2 status='fail'
394: qp=4 ref=2 subme=5 threads=9 input_file=2 status='fail'
395: qp=14 ref=5 subme=1 threads=2 input_file=2 status='pass'
396: qp=6 ref=9 subme=0 threads=8 input_file=2 status='fail'
397: qp=10 ref=10 subme=7 threads=3 input_file=2 status='fail'
398: qp=7 ref=9 subme=3 threads=4 input_file=2 status='pass'
399: qp=14 ref=8 subme=7 threads=3 input_file=2 status='fail'
400: qp=12 ref=3 subme=8 threads=6 input_file=2 status='fail'
401: qp=10 ref=4 subme=2 threads=2 input_file=2 status='pass'
402: qp=14 ref=3 subme=1 threads=9 input_file=2 status='fail'
403: qp=5 ref=10 subme=3 threads=7 input_file=2 status='fail'
404: qp=17 ref=1 subme=5 threads=6 input_file=2 status='fail'
405: qp=14 ref=2 subme=1 threads=2 input_file=2 status='fail'
406: qp=12 ref=10 subme=5 threads=8 input_file=2 status='fail'
407: qp=18 ref=2 subme=6 threads=3 input_file=2 status='fail'
408: qp=7 ref=9 subme=7 threads=2 input_file=2 status='pass'
409: qp=2 ref=9 subme=2 threads=4 input_file=2 status='fail'
410: qp=2 ref=10 subme=3 threads=2 input_file=2 status='pass'
411: qp=8 ref=6 subme=6 threads=3 input_file=2 status='pass'
412: qp=7 ref=1 subme=0 threads=5 input_file=2 status='fail'
413: qp=16 ref=7 subme=7 threads=3 input_file=2 status='fail'
414: qp=1 ref=3 subme=0 threads=7 input_file=2 status='fail'
415: qp=6 ref=5 subme=2 threads=4 input_file=2 status='fail'
416: qp=20 ref=10 subme=5 threads=2 input_file=2 status='pass'
417: qp=17 ref=3 subme=7 threads=6 input_file=2 status='fail'
418: qp=12 ref=6 subme=3 threads=5 input_file=2 status='fail'
419: qp=1 ref=8 subme=8 threads=6 input_file=2 status='fail'
420: qp=4 ref=10 subme=6 threads=2 input_file=2 status='fail'
421: qp=11 ref=7 subme=1 threads=9 input_file=2 status='fail'
422: qp=9 ref=8 subme=7 threads=3 input_file=2 status='fail'
423: qp=5 ref=3 subme=1 threads=5 input_file=2 status='fail'
424: qp=11 ref=2 subme=2 threads=7 input_file=2 status='fail'
425: qp=19 ref=3 subme=4 threads=7 input_file=2 status='fail'
426: qp=5 ref=4 subme=9 threads=4 input_file=2 status='fail'
427: qp=13 ref=7 subme=8 threads=6 input_file=2 status='fail'
428: qp=6 ref=3 subme=7 threads=6 input_file=2 status='fail'
429: qp=4 ref=7 subme=0 threads=10 input_file=2 status='fail'
430: qp=6 ref=8 subme=8 threads=9 input_file=2 status='fail'
431: qp=15 ref=2 subme=9 threads=3 input_file=2 status='fail'
432: qp=6 ref=6 subme=7 threads=3 input_file=2 status='fail'
433: qp=9 ref=3 subme=4 threads=2 input_file=2 status='pass'
434: qp=20 ref=2 subme=4 threads=9 input_file=2 status='fail'
435: qp=0 ref=1 subme=9 threads=3 input_file=2 status='fail'
436: qp=2 ref=3 subme=4 threads=3 input_file=2 status='fail'
437: qp=18 ref=3 subme=5 threads=6 input_file=2 status='fail'
438: qp=1 ref=4 subme=9 threads=8 input_file=2 status='fail'
439: qp=10 ref=8 subme=9 threads=10 input_file=2 status='fail'
440: qp=4 ref=7 subme=4 threads=8 input_file=2 status='fail'
441: qp=3 ref=4 subme=7 threads=2 input_file=2 status='pass'
442: qp=16 ref=7 subme=8 threads=7 input_file=2 status='fail'
443: qp=13 ref=7 subme=7 threads=10 input_file=2 status='fail'
444: qp=12 ref=3 subme=0 threads=4 input_file=2 status='fail'
445: qp=11 ref=2 subme=3 threads=5 input_file=2 status='fail'
446: qp=12 ref=3 subme=7 threads=10 input_file=2 status='fail'
447: qp=7 ref=10 subme=5 threads=9 input_file=2 status='fail'
448: qp=5 ref=3 subme=8 threads=2 input_file=2 status='pass'
449: qp=2 ref=2 subme=3 threads=5 input_file=2 status='fail'
450: qp=18 ref=3 subme=4 threads=9 input_file=2 status='fail'
451: qp=19 ref=1 subme=2 threads=6 input_file=2 status='fail'
452: qp=11 ref=8 subme=3 threads=9 input_file=2 status='fail'
453: qp=8 ref=8 subme=6 threads=6 input_file=2 status='fail'
454: qp=8 ref=1 subme=8 threads=6 input_file=2 status='fail'
455: qp=1 ref=9 subme=5 threads=2 input_file=2 status='fail'
456: qp=8 ref=7 subme=1 threads=10 input_file=2 status='fail'
457: qp=1 ref=1 subme=2 threads=4 input_file=2 status='fail'
458: qp=5 ref=1 subme=7 threads=8 input_file=2 status='fail'
459: qp=5 ref=7 subme=7 threads=2 input_file=2 status='fail'
460: qp=11 ref=8 subme=6 threads=2 input_file=2 status='fail'
461: qp=6 ref=1 subme=0 threads=3 input_file=2 status='fail'
462: qp=20 ref=8 subme=2 threads=10 input_file=2 status='fail'
463: qp=4 ref=2 subme=1 threads=9 input_file=2 status='fail'
464: qp=18 ref=3 subme=5 threads=9 input_file=2 status='fail'
465: qp=13 ref=8 subme=8 threads=8 input_file=2 status='fail'
466: qp=3 ref=6 subme=9 threads=2 input_file=2 status='pass'
467: qp=4 ref=7 subme=3 threads=8 input_file=2 status='fail'
468: qp=14 ref=2 subme=0 threads=2 input_file=2 status='fail'
469: qp=19 ref=3 subme=3 threads=9 input_file=2 status='fail'
470: qp=2 ref=7 subme=0 threads=5 input_file=2 status='fail'
471: qp=9 ref=3 subme=1 threads=10 input_file=2 status='fail'
472: qp=8 ref=10 subme=8 threads=2 input_file=2 status='pass'
473: qp=9 ref=10 subme=3 threads=8 input_file=2 status='fail'
474: qp=6 ref=4 subme=9 threads=2 input_file=2 status='pass'
475: qp=19 ref=3 subme=6 threads=9 input_file=2 status='fail'
476: qp=1 ref=8 subme=7 threads=3 input_file=2 status='fail'
477: qp=17 ref=1 subme=3 threads=7 input_file=2 status='fail'
478: qp=19 ref=1 subme=1 threads=7 input_file=2 status='fail'
479: qp=1 ref=9 subme=1 threads=2 input_file=2 status='fail'
480: qp=18 ref=3 subme=0 threads=6 input_file=2 status='fail'
481: qp=17 ref=7 subme=5 threads=9 input_file=2 status='fail'
482: qp=7 ref=5 subme=8 threads=6 input_file=2 status='fail'
483: qp=2 ref=1 subme=1 threads=10 input_file=2 status='fail'
484: qp=1 ref=4 subme=9 threads=8 input_file=2 status='fail'
485: qp=13 ref=5 subme=2 threads=10 input_file=2 status='fail'
486: qp=11 ref=9 subme=2 threads=4 input_file=2 status='fail'
487: qp=8 ref=6 subme=3 threads=8 input_file=2 status='fail'
488: qp=7 ref=6 subme=6 threads=8 input_file=2 status='fail'
489: qp=19 ref=8 subme=9 threads=10 input_file=2 status='fail'
490: qp=1 ref=10 subme=2 threads=9 input_file=2 status='fail'
491: qp=10 ref=7 subme=5 threads=2 input_file=2 status='pass'
492: qp=15 ref=2 subme=6 threads=8 input_file=2 status='fail'
493: qp=9 ref=7 subme=6 threads=3 input_file=2 status='fail'
494: qp=3 ref=6 subme=8 threads=8 input_file=2 status='fail'
495: qp=15 ref=3 subme=1 threads=6 input_file=2 status='fail'
496: qp=19 ref=5 subme=1 threads=3 input_file=2 status='fail'
497: qp=4 ref=2 subme=2 threads=7 input_file=2 status='fail'
498: qp=8 ref=1 subme=9 threads=7 input_file=2 status='fail'
499: qp=9 ref=3 subme=4 threads=9 input_file=2 status='fail'
500: qp=15 ref=9 subme=5 threads=3 input_file=2 status='fail'
501: qp=3 ref=1 subme=1 threads=3 input_file=2 status='fail'
502: qp=2 ref=9 subme=0 threads=8 input_file=2 status='fail'
503: qp=13 ref=4 subme=6 threads=2 input_file=2 status='fail'
504: qp=19 ref=4 subme=9 threads=7 input_file=2 status='fail'
505: qp=0 ref=3 subme=1 threads=6 input_file=2 status='fail'
506: qp=18 ref=9 subme=2 threads=3 input_file=2 status='fail'
507: qp=10 ref=9 subme=3 threads=8 input_file=2 status='fail'
508: qp=3 ref=10 subme=0 threads=10 input_file=2 status='fail'
509: qp=18 ref=10 subme=3 threads=2 input_file=2 status='pass'
510: qp=15 ref=3 subme=1 threads=7 input_file=2 status='fail'
511: qp=12 ref=8 subme=4 threads=3 input_file=2 status='fail'
512: qp=9 ref=1 subme=3 threads=3 input_file=2 status='fail'
513: qp=4 ref=1 subme=2 threads=2 input_file=2 status='fail'
514: qp=20 ref=5 subme=2 threads=5 input_file=2 status='fail'
515: qp=8 ref=9 subme=9 threads=3 input_file=2 status='fail'
516: qp=2 ref=9 subme=1 threads=3 input_file=2 status='pass'
517: qp=15 ref=6 subme=5 threads=6 input_file=2 status='fail'
518: qp=13 ref=5 subme=2 threads=5 input_file=2 status='fail'
519: qp=5 ref=1 subme=9 threads=6 input_file=2 status='fail'
520: qp=13 ref=9 subme=3 threads=9 input_file=2 status='fail'
521: qp=12 ref=6 subme=6 threads=10 input_file=2 status='fail'
522: qp=18 ref=3 subme=1 threads=6 input_file=2 status='fail'
523: qp=5 ref=4 subme=1 threads=8 input_file=2 status='fail'
524: qp=12 ref=5 subme=2 threads=6 input_file=2 status='fail'
525: qp=13 ref=10 subme=4 threads=6 input_file=2 status='fail'
526: qp=12 ref=8 subme=3 threads=6 input_file=2 status='fail'
527: qp=12 ref=8 subme=7 threads=3 input_file=2 status='fail'
528: qp=7 ref=4 subme=4 threads=5 input_file=2 status='fail'
529: qp=12 ref=10 subme=0 threads=8 input_file=2 status='fail'
530: qp=5 ref=2 subme=6 threads=5 input_file=2 status='fail'
531: qp=13 ref=2 subme=9 threads=7 input_file=2 status='fail'
532: qp=1 ref=3 subme=2 threads=5 input_file=2 status='fail'
533: qp=10 ref=10 subme=2 threads=4 input_file=2 status='fail'
534: qp=19 ref=9 subme=8 threads=2 input_file=2 status='pass'
535: qp=18 ref=2 subme=0 threads=7 input_file=2 status='fail'
536: qp=13 ref=8 subme=5 threads=6 input_file=2 status='fail'
537: qp=11 ref=9 subme=2 threads=4 input_file=2 status='fail'
538: qp=20 ref=4 subme=4 threads=9 input_file=2 status='fail'
539: qp=13 ref=1 subme=6 threads=8 input_file=2 status='fail'
540: qp=0 ref=5 subme=9 threads=10 input_file=2 status='fail'
541: qp=8 ref=5 subme=4 threads=4 input_file=2 status='fail'
542: qp=20 ref=9 subme=2 threads=2 input_file=2 status='pass'
543: qp=18 ref=7 subme=5 threads=2 input_file=2 status='pass'
544: qp=16 ref=5 subme=2 threads=6 input_file=2 status='fail'
545: qp=3 ref=9 subme=7 threads=5 input_file=2 status='fail'
546: qp=19 ref=4 subme=6 threads=9 input_file=2 status='fail'
547: qp=2 ref=8 subme=2 threads=6 input_file=2 status='fail'
548: qp=3 ref=8 subme=2 threads=3 input_file=2 status='fail'
549: qp=14 ref=7 subme=4 threads=4 input_file=2 status='fail'
550: qp=8 ref=6 subme=2 threads=3 input_file=2 status='fail'
551: qp=17 ref=8 subme=3 threads=7 input_file=2 status='fail'
552: qp=8 ref=8 subme=9 threads=5 input_file=2 status='fail'
553: qp=3 ref=5 subme=5 threads=9 input_file=2 status='fail'
554: qp=17 ref=9 subme=2 threads=2 input_file=2 status='pass'
555: qp=4 ref=2 subme=6 threads=6 input_file=2 status='fail'
556: qp=8 ref=2 subme=9 threads=4 input_file=2 status='fail'
557: qp=8 ref=9 subme=5 threads=2 input_file=2 status='pass'
558: qp=16 ref=3 subme=4 threads=4 input_file=2 status='fail'
559: qp=11 ref=6 subme=4 threads=6 input_file=2 status='fail'
560: qp=8 ref=8 subme=1 threads=6 input_file=2 status='fail'
561: qp=17 ref=3 subme=9 threads=4 input_file=2 status='fail'
562: qp=1 ref=6 subme=6 threads=2 input_file=2 status='pass'
563: qp=19 ref=4 subme=6 threads=3 input_file=2 status='fail'
564: qp=3 ref=6 subme=9 threads=6 input_file=2 status='fail'
565: qp=3 ref=5 subme=0 threads=8 input_file=2 status='fail'
566: qp=13 ref=2 subme=1 threads=8 input_file=2 status='fail'
567: qp=4 ref=6 subme=3 threads=8 input_file=2 status='fail'
568: qp=11 ref=4 subme=6 threads=6 input_file=2 status='fail'
569: qp=6 ref=7 subme=5 threads=4 input_file=2 status='fail'
570: qp=8 ref=8 subme=0 threads=7 input_file=2 status='fail'
571: qp=9 ref=3 subme=6 threads=3 input_file=2 status='fail'
572: qp=18 ref=1 subme=3 threads=7 input_file=2 status='fail'
573: qp=13 ref=3 subme=2 threads=6 input_file=2 status='fail'
574: qp=17 ref=10 subme=6 threads=4 input_file=2 status='fail'
575: qp=4 ref=2 subme=9 threads=10 input_file=2 status='fail'
576: qp=1 ref=4 subme=9 threads=9 input_file=2 status='fail'
577: qp=10 ref=1 subme=3 threads=10 input_file=2 status='fail'
578: qp=9 ref=4 subme=2 threads=6 input_file=2 status='fail'
579: qp=12 ref=8 subme=0 threads=7 input_file=2 status='fail'
580: qp=9 ref=4 subme=8 threads=4 input_file=2 status='pass'
581: qp=0 ref=1 subme=9 threads=7 input_file=2 status='fail'
582: qp=4 ref=1 subme=4 threads=3 input_file=2 status='fail'
583: qp=1 ref=7 subme=7 threads=7 input_file=2 status='fail'
584: qp=18 ref=2 subme=1 threads=10 input_file=2 status='fail'
585: qp=10 ref=4 subme=4 threads=2 input_file=2 status='pass'
586: qp=8 ref=2 subme=5 threads=10 input_file=2 status='fail'
587: qp=11 ref=3 subme=7 threads=9 input_file=2 status='fail'
588: qp=3 ref=8 subme=0 threads=9 input_file=2 status='fail'
589: qp=1 ref=4 subme=3 threads=3 input_file=2 status='fail'
590: qp=16 ref=2 subme=5 threads=8 input_file=2 status='fail'
591: qp=10 ref=7 subme=2 threads=6 input_file=2 status='fail'
592: qp=18 ref=3 subme=5 threads=4 input_file=2 status='fail'
593: qp=15 ref=3 subme=7 threads=3 input_file=2 status='pass'
594: qp=8 ref=4 subme=1 threads=10 input_file=2 status='fail'
595: qp=14 ref=5 subme=6 threads=6 input_file=2 status='fail'
596: qp=4 ref=6 subme=3 threads=8 input_file=2 status='fail'
597: qp=12 ref=5 subme=2 threads=3 input_file=2 status='fail'
598: qp=12 ref=4 subme=3 threads=6 input_file=2 status='fail'
599: qp=19 ref=3 subme=5 threads=7 input_file=2 status='fail'
600: qp=10 ref=6 subme=2 threads=10 input_file=2 status='fail'
601: qp=14 ref=1 subme=9 threads=4 input_file=2 status='fail'
602: qp=10 ref=5 subme=6 threads=7 input_file=2 status='fail'
603: qp=11 ref=6 subme=1 threads=3 input_file=2 status='fail'
604: qp=7 ref=6 subme=2 threads=2 input_file=2 status='fail'
605: qp=1 ref=9 subme=5 threads=4 input_file=2 status='fail'
606: qp=18 ref=9 subme=1 threads=8 input_file=2 status='fail'
607: qp=17 ref=9 subme=8 threads=3 input_file=2 status='fail'
608: qp=17 ref=6 subme=3 threads=8 input_file=2 status='fail'
609: qp=1 ref=6 subme=7 threads=10 input_file=2 status='fail'
610: qp=5 ref=5 subme=2 threads=10 input_file=2 status='fail'
611: qp=4 ref=2 subme=6 threads=4 input_file=2 status='fail'
612: qp=13 ref=9 subme=7 threads=4 input_file=2 status='fail'
613: qp=8 ref=1 subme=0 threads=6 input_file=2 status='fail'
614: qp=13 ref=7 subme=7 threads=9 input_file=2 status='fail'
615: qp=18 ref=8 subme=2 threads=9 input_file=2 status='fail'
616: qp=16 ref=9 subme=0 threads=7 input_file=2 status='fail'
617: qp=17 ref=7 subme=8 threads=5 input_file=2 status='fail'
618: qp=6 ref=4 subme=8 threads=3 input_file=2 status='fail'
619: qp=20 ref=9 subme=8 threads=10 input_file=2 status='fail'
620: qp=2 ref=2 subme=1 threads=2 input_file=2 status='pass'
621: qp=0 ref=2 subme=9 threads=5 input_file=2 status='fail'
622: qp=13 ref=4 subme=3 threads=7 input_file=2 status='fail'
623: qp=16 ref=5 subme=4 threads=5 input_file=2 status='fail'
624: qp=3 ref=9 subme=9 threads=10 input_file=2 status='fail'
625: qp=16 ref=2 subme=5 threads=7 input_file=2 status='fail'
626: qp=19 ref=6 subme=2 threads=6 input_file=2 status='fail'
627: qp=9 ref=5 subme=7 threads=2 input_file=2 status='pass'
628: qp=1 ref=7 subme=0 threads=10 input_file=2 status='fail'
629: qp=12 ref=4 subme=6 threads=4 input_file=2 status='fail'
630: qp=9 ref=1 subme=8 threads=2 input_file=2 status='pass'
631: qp=18 ref=1 subme=9 threads=5 input_file=2 status='fail'
632: qp=16 ref=1 subme=9 threads=6 input_file=2 status='fail'
633: qp=17 ref=1 subme=6 threads=10 input_file=2 status='fail'
634: qp=2 ref=1 subme=8 threads=5 input_file=2 status='fail'
635: qp=14 ref=4 subme=3 threads=8 input_file=2 status='fail'
636: qp=1 ref=2 subme=9 threads=5 input_file=2 status='fail'
637: qp=10 ref=1 subme=5 threads=7 input_file=2 status='fail'
638: qp=14 ref=1 subme=6 threads=6 input_file=2 status='fail'
639: qp=20 ref=5 subme=7 threads=8 input_file=2 status='fail'
640: qp=13 ref=9 subme=8 threads=7 input_file=2 status='fail'
641: qp=0 ref=2 subme=7 threads=3 input_file=2 status='fail'
642: qp=14 ref=10 subme=8 threads=3 input_file=2 status='fail'
643: qp=19 ref=7 subme=9 threads=10 input_file=2 status='fail'
644: qp=20 ref=4 subme=0 threads=10 input_file=2 status='fail'
645: qp=14 ref=9 subme=2 threads=3 input_file=2 status='fail'
646: qp=19 ref=5 subme=3 threads=4 input_file=2 status='fail'
647: qp=11 ref=1 subme=1 threads=5 input_file=2 status='fail'
648: qp=14 ref=5 subme=3 threads=6 input_file=2 status='fail'
649: qp=12 ref=1 subme=5 threads=3 input_file=2 status='fail'
650: qp=9 ref=10 subme=5 threads=4 input_file=2 status='pass'
651: qp=10 ref=5 subme=9 threads=2 input_file=2 status='fail'
652: qp=16 ref=10 subme=4 threads=10 input_file=2 status='fail'
653: qp=4 ref=3 subme=8 threads=6 input_file=2 status='fail'
654: qp=20 ref=1 subme=0 threads=8 input_file=2 status='fail'
655: qp=20 ref=5 subme=6 threads=2 input_file=2 status='pass'
656: qp=18 ref=2 subme=3 threads=10 input_file=2 status='fail'
657: qp=3 ref=9 subme=3 threads=4 input_file=2 status='fail'
658: qp=11 ref=1 subme=2 threads=6 input_file=2 status='fail'
659: qp=6 ref=9 subme=3 threads=6 input_file=2 status='fail'
660: qp=3 ref=8 subme=1 threads=4 input_file=2 status='fail'
661: qp=11 ref=6 subme=0 threads=8 input_file=2 status='fail'
662: qp=2 ref=2 subme=3 threads=10 input_file=2 status='fail'
663: qp=16 ref=2 subme=3 threads=7 input_file=2 status='fail'
664: qp=1 ref=3 subme=6 threads=9 input_file=2 status='fail'
665: qp=13 ref=5 subme=7 threads=7 input_file=2 status='fail'
666: qp=18 ref=2 subme=5 threads=3 input_file=2 status='pass'
667: qp=16 ref=9 subme=6 threads=9 input_file=2 status='fail'
668: qp=6 ref=10 subme=5 threads=2 input_file=2 status='pass'
669: qp=18 ref=7 subme=3 threads=6 input_file=2 status='fail'
670: qp=17 ref=3 subme=7 threads=3 input_file=2 status='fail'
671: qp=18 ref=6 subme=8 threads=3 input_file=2 status='fail'
672: qp=4 ref=10 subme=2 threads=8 input_file=2 status='fail'
673: qp=7 ref=2 subme=6 threads=5 input_file=2 status='fail'
674: qp=6 ref=3 subme=7 threads=9 input_file=2 status='fail'
675: qp=5 ref=3 subme=0 threads=4 input_file=2 status='fail'
676: qp=16 ref=3 subme=7 threads=8 input_file=2 status='fail'
677: qp=1 ref=10 subme=8 threads=5 input_file=2 status='fail'
678: qp=12 ref=10 subme=3 threads=3 input_file=2 status='fail'
679: qp=14 ref=3 subme=7 threads=7 input_file=2 status='fail'
680: qp=13 ref=5 subme=8 threads=7 input_file=2 status='fail'
681: qp=19 ref=3 subme=3 threads=7 input_file=2 status='fail'
682: qp=0 ref=5 subme=3 threads=7 input_file=2 status='fail'
683: qp=6 ref=1 subme=3 threads=6 input_file=2 status='fail'
684: qp=4 ref=5 subme=2 threads=4 input_file=2 status='fail'
685: qp=11 ref=10 subme=9 threads=6 input_file=2 status='fail'
686: qp=12 ref=1 subme=3 threads=9 input_file=2 status='fail'
687: qp=9 ref=4 subme=2 threads=7 input_file=2 status='fail'
688: qp=2 ref=3 subme=0 threads=5 input_file=2 status='fail'
689: qp=9 ref=10 subme=5 threads=8 input_file=2 status='fail'
690: qp=7 ref=6 subme=7 threads=9 input_file=2 status='fail'
691: qp=8 ref=1 subme=3 threads=4 input_file=2 status='fail'
692: qp=17 ref=5 subme=1 threads=3 input_file=2 status='fail'
693: qp=9 ref=8 subme=4 threads=4 input_file=2 status='fail'
694: qp=8 ref=6 subme=7 threads=6 input_file=2 status='fail'
695: qp=10 ref=9 subme=7 threads=9 input_file=2 status='fail'
696: qp=12 ref=7 subme=7 threads=8 input_file=2 status='fail'
697: qp=16 ref=3 subme=1 threads=5 input_file=2 status='fail'
698: qp=18 ref=2 subme=7 threads=6 input_file=2 status='fail'
699: qp=8 ref=1 subme=4 threads=10 input_file=2 status='fail'
700: qp=16 ref=8 subme=5 threads=4 input_file=2 status='pass'
701: qp=6 ref=1 subme=8 threads=8 input_file=2 status='fail'
702: qp=18 ref=1 subme=3 threads=7 input_file=2 status='fail'
703: qp=18 ref=5 subme=9 threads=4 input_file=2 status='fail'
704: qp=9 ref=1 subme=6 threads=8 input_file=2 status='fail'
705: qp=15 ref=1 subme=4 threads=3 input_file=2 status='fail'
706: qp=15 ref=3 subme=0 threads=3 input_file=2 status='fail'
707: qp=10 ref=9 subme=3 threads=8 input_file=2 status='fail'
708: qp=8 ref=8 subme=2 threads=2 input_file=2 status='pass'
709: qp=3 ref=9 subme=4 threads=4 input_file=2 status='pass'
710: qp=3 ref=1 subme=8 threads=3 input_file=2 status='fail'
711: qp=15 ref=8 subme=8 threads=8 input_file=2 status='fail'
712: qp=13 ref=8 subme=3 threads=7 input_file=2 status='fail'
713: qp=9 ref=2 subme=7 threads=9 input_file=2 status='fail'
714: qp=17 ref=8 subme=9 threads=6 input_file=2 status='fail'
715: qp=7 ref=10 subme=9 threads=5 input_file=2 status='fail'
716: qp=5 ref=8 subme=6 threads=6 input_file=2 status='fail'
717: qp=2 ref=7 subme=2 threads=7 input_file=2 status='fail'
718: qp=9 ref=6 subme=1 threads=5 input_file=2 status='fail'
719: qp=11 ref=4 subme=3 threads=7 input_file=2 status='fail'
720: qp=5 ref=5 subme=8 threads=6 input_file=2 status='fail'
721: qp=0 ref=7 subme=3 threads=4 input_file=2 status='pass'
722: qp=0 ref=4 subme=9 threads=10 input_file=2 status='fail'
723: qp=11 ref=8 subme=7 threads=3 input_file=2 status='fail'
724: qp=10 ref=8 subme=3 threads=2 input_file=2 status='pass'
725: qp=5 ref=8 subme=4 threads=9 input_file=2 status='fail'
726: qp=1 ref=5 subme=1 threads=6 input_file=2 status='fail'
727: qp=1 ref=1 subme=5 threads=8 input_file=2 status='fail'
728: qp=12 ref=6 subme=0 threads=6 input_file=2 status='fail'
729: qp=20 ref=4 subme=8 threads=5 input_file=2 status='fail'
730: qp=11 ref=2 subme=8 threads=5 input_file=2 status='fail'
731: qp=0 ref=3 subme=2 threads=7 input_file=2 status='fail'
732: qp=6 ref=8 subme=5 threads=10 input_file=2 status='fail'
733: qp=19 ref=8 subme=7 threads=8 input_file=2 status='fail'
734: qp=19 ref=6 subme=8 threads=4 input_file=2 status='fail'
735: qp=3 ref=4 subme=9 threads=6 input_file=2 status='fail'
736: qp=1 ref=9 subme=7 threads=3 input_file=2 status='fail'
737: qp=0 ref=5 subme=1 threads=9 input_file=2 status='fail'
738: qp=1 ref=4 subme=1 threads=7 input_file=2 status='fail'
739: qp=0 ref=8 subme=5 threads=9 input_file=2 status='fail'
740: qp=4 ref=8 subme=3 threads=3 input_file=2 status='fail'
741: qp=17 ref=8 subme=8 threads=10 input_file=2 status='fail'
742: qp=17 ref=7 subme=3 threads=10 input_file=2 status='fail'
743: qp=6 ref=3 subme=2 threads=8 input_file=2 status='fail'
744: qp=6 ref=6 subme=7 threads=5 input_file=2 status='fail'
745: qp=3 ref=9 subme=6 threads=3 input_file=2 status='fail'
746: qp=2 ref=5 subme=1 threads=6 input_file=2 status='fail'
747: qp=4 ref=6 subme=4 threads=6 input_file=2 status='fail'
748: qp=19 ref=2 subme=5 threads=8 input_file=2 status='fail'
749: qp=4 ref=2 subme=4 threads=8 input_file=2 status='fail'
750: qp=2 ref=1 subme=9 threads=2 input_file=2 status='fail'
751: qp=0 ref=6 subme=7 threads=2 input_file=2 status='pass'
752: qp=12 ref=9 subme=1 threads=6 input_file=2 status='fail'
753: qp=20 ref=9 subme=4 threads=7 input_file=2 status='fail'
754: qp=13 ref=1 subme=9 threads=7 input_file=2 status='fail'
755: qp=19 ref=4 subme=5 threads=4 input_file=2 status='fail'
756: qp=7 ref=1 subme=9 threads=2 input_file=2 status='fail'
757: qp=5 ref=5 subme=8 threads=2 input_file=2 status='pass'
758: qp=6 ref=3 subme=6 threads=3 input_file=2 status='fail'
759: qp=6 ref=9 subme=6 threads=6 input_file=2 status='fail'
760: qp=13 ref=9 subme=4 threads=7 input_file=2 status='fail'
761: qp=12 ref=10 subme=6 threads=7 input_file=2 status='fail'
762: qp=14 ref=7 subme=3 threads=10 input_file=2 status='fail'
763: qp=13 ref=4 subme=4 threads=4 input_file=2 status='fail'
764: qp=16 ref=4 subme=4 threads=8 input_file=2 status='fail'
765: qp=7 ref=3 subme=8 threads=7 input_file=2 status='fail'
766: qp=8 ref=2 subme=7 threads=2 input_file=2 status='pass'
767: qp=14 ref=10 subme=9 threads=9 input_file=2 status='fail'
768: qp=9 ref=7 subme=4 threads=10 input_file=2 status='fail'
769: qp=10 ref=1 subme=2 threads=6 input_file=2 status='fail'
770: qp=6 ref=2 subme=4 threads=2 input_file=2 status='pass'
771: qp=5 ref=4 subme=1 threads=3 input_file=2 status='pass'
772: qp=14 ref=9 subme=8 threads=4 input_file=2 status='fail'
773: qp=4 ref=4 subme=9 threads=4 input_file=2 status='fail'
774: qp=6 ref=10 subme=6 threads=8 input_file=2 status='fail'
775: qp=7 ref=9 subme=4 threads=5 input_file=2 status='fail'
776: qp=18 ref=2 subme=8 threads=8 input_file=2 status='fail'
777: qp=8 ref=4 subme=1 threads=8 input_file=2 status='fail'
778: qp=5 ref=4 subme=5 threads=4 input_file=2 status='pass'
779: qp=19 ref=7 subme=6 threads=4 input_file=2 status='fail'
780: qp=19 ref=3 subme=8 threads=10 input_file=2 status='fail'
781: qp=4 ref=6 subme=3 threads=2 input_file=2 status='pass'
782: qp=4 ref=8 subme=3 threads=7 input_file=2 status='fail'
783: qp=12 ref=6 subme=7 threads=6 input_file=2 status='fail'
784: qp=8 ref=2 subme=4 threads=6 input_file=2 status='fail'
785: qp=15 ref=9 subme=4 threads=3 input_file=2 status='fail'
786: qp=10 ref=8 subme=6 threads=4 input_file=2 status='fail'
787: qp=2 ref=8 subme=6 threads=7 input_file=2 status='fail'
788: qp=17 ref=5 subme=8 threads=7 input_file=2 status='fail'
789: qp=17 ref=3 subme=7 threads=5 input_file=2 status='fail'
790: qp=7 ref=1 subme=6 threads=4 input_file=2 status='fail'
791: qp=17 ref=10 subme=4 threads=8 input_file=2 status='fail'
792: qp=9 ref=7 subme=4 threads=3 input_file=2 status='fail'
793: qp=10 ref=10 subme=8 threads=2 input_file=2 status='pass'
794: qp=14 ref=7 subme=2 threads=8 input_file=2 status='fail'
795: qp=8 ref=4 subme=4 threads=4 input_file=2 status='fail'
796: qp=13 ref=5 subme=5 threads=9 input_file=2 status='fail'
797: qp=10 ref=1 subme=7 threads=5 input_file=2 status='fail'
798: qp=17 ref=4 subme=5 threads=6 input_file=2 status='fail'
799: qp=16 ref=1 subme=6 threads=9 input_file=2 status='fail'
800: qp=1 ref=2 subme=6 threads=5 input_file=2 status='fail'
801: qp=4 ref=6 subme=4 threads=7 input_file=2 status='fail'
802: qp=6 ref=7 subme=8 threads=6 input_file=2 status='fail'
803: qp=2 ref=5 subme=6 threads=5 input_file=2 status='fail'
804: qp=2 ref=9 subme=3 threads=2 input_file=2 status='pass'
805: qp=8 ref=10 subme=6 threads=4 input_file=2 status='fail'
806: qp=6 ref=5 subme=3 threads=8 input_file=2 status='fail'
807: qp=14 ref=3 subme=1 threads=6 input_file=2 status='fail'
808: qp=15 ref=1 subme=1 threads=10 input_file=2 status='fail'
809: qp=18 ref=7 subme=2 threads=7 input_file=2 status='fail'
810: qp=3 ref=3 subme=5 threads=6 input_file=2 status='fail'
811: qp=18 ref=2 subme=4 threads=7 input_file=2 status='fail'
812: qp=0 ref=7 subme=6 threads=6 input_file=2 status='fail'
813: qp=1 ref=8 subme=0 threads=8 input_file=2 status='fail'
814: qp=5 ref=3 subme=1 threads=4 input_file=2 status='fail'
815: qp=5 ref=8 subme=0 threads=3 input_file=2 status='fail'
816: qp=18 ref=2 subme=7 threads=8 input_file=2 status='fail'
817: qp=7 ref=3 subme=7 threads=9 input_file=2 status='fail'
818: qp=10 ref=7 subme=0 threads=4 input_file=2 status='fail'
819: qp=14 ref=7 subme=5 threads=8 input_file=2 status='fail'
820: qp=5 ref=3 subme=1 threads=6 input_file=2 status='fail'
821: qp=10 ref=6 subme=1 threads=8 input_file=2 status='fail'
822: qp=11 ref=10 subme=9 threads=10 input_file=2 status='fail'
823: qp=1 ref=10 subme=8 threads=5 input_file=2 status='fail'
824: qp=7 ref=8 subme=7 threads=2 input_file=2 status='fail'
825: qp=20 ref=8 subme=7 threads=7 input_file=2 status='fail'
826: qp=0 ref=10 subme=7 threads=8 input_file=2 status='fail'
827: qp=14 ref=2 subme=7 threads=6 input_file=2 status='fail'
828: qp=14 ref=1 subme=2 threads=7 input_file=2 status='fail'
829: qp=17 ref=9 subme=3 threads=10 input_file=2 status='fail'
830: qp=9 ref=10 subme=3 threads=10 input_file=2 status='fail'
831: qp=4 ref=7 subme=9 threads=9 input_file=2 status='fail'
832: qp=13 ref=9 subme=3 threads=7 input_file=2 status='fail'
833: qp=5 ref=3 subme=1 threads=8 input_file=2 status='fail'
834: qp=10 ref=5 subme=9 threads=5 input_file=2 status='fail'
835: qp=3 ref=1 subme=6 threads=9 input_file=2 status='fail'
836: qp=5 ref=4 subme=1 threads=9 input_file=2 status='fail'
837: qp=6 ref=6 subme=3 threads=10 input_file=2 status='fail'
838: qp=18 ref=2 subme=5 threads=5 input_file=2 status='fail'
839: qp=7 ref=10 subme=8 threads=9 input_file=2 status='fail'
840: qp=18 ref=6 subme=5 threads=6 input_file=2 status='fail'
841: qp=3 ref=1 subme=3 threads=8 input_file=2 status='fail'
842: qp=16 ref=4 subme=3 threads=8 input_file=2 status='fail'
843: qp=9 ref=4 subme=9 threads=9 input_file=2 status='fail'
844: qp=10 ref=7 subme=5 threads=10 input_file=2 status='fail'
845: qp=20 ref=9 subme=2 threads=3 input_file=2 status='fail'
846: qp=2 ref=2 subme=4 threads=5 input_file=2 status='fail'
847: qp=20 ref=10 subme=6 threads=6 input_file=2 status='fail'
848: qp=2 ref=3 subme=8 threads=9 input_file=2 status='fail'
849: qp=2 ref=6 subme=5 threads=8 input_file=2 status='fail'
850: qp=19 ref=3 subme=7 threads=8 input_file=2 status='fail'
851: qp=14 ref=9 subme=5 threads=7 input_file=2 status='fail'
852: qp=7 ref=8 subme=5 threads=4 input_file=2 status='fail'
853: qp=13 ref=7 subme=2 threads=2 input_file=2 status='fail'
854: qp=17 ref=2 subme=4 threads=6 input_file=2 status='fail'
855: qp=15 ref=5 subme=3 threads=8 input_file=2 status='fail'
856: qp=19 ref=9 subme=2 threads=5 input_file=2 status='fail'
857: qp=13 ref=8 subme=5 threads=4 input_file=2 status='fail'
858: qp=20 ref=2 subme=7 threads=3 input_file=2 status='fail'
859: qp=12 ref=1 subme=1 threads=6 input_file=2 status='fail'
860: qp=18 ref=4 subme=0 threads=3 input_file=2 status='fail'
861: qp=4 ref=2 subme=1 threads=9 input_file=2 status='fail'
862: qp=12 ref=5 subme=8 threads=10 input_file=2 status='fail'
863: qp=12 ref=6 subme=8 threads=4 input_file=2 status='fail'
864: qp=16 ref=4 subme=0 threads=4 input_file=2 status='fail'
865: qp=9 ref=3 subme=7 threads=3 input_file=2 status='fail'
866: qp=9 ref=10 subme=4 threads=7 input_file=2 status='fail'
867: qp=4 ref=7 subme=3 threads=9 input_file=2 status='fail'
868: qp=19 ref=4 subme=2 threads=7 input_file=2 status='fail'
869: qp=13 ref=9 subme=8 threads=8 input_file=2 status='fail'
870: qp=2 ref=8 subme=7 threads=2 input_file=2 status='pass'
871: qp=13 ref=10 subme=3 threads=3 input_file=2 status='fail'
872: qp=12 ref=4 subme=5 threads=8 input_file=2 status='fail'
873: qp=11 ref=5 subme=7 threads=2 input_file=2 status='pass'
874: qp=18 ref=10 subme=0 threads=2 input_file=2 status='pass'
875: qp=11 ref=6 subme=7 threads=4 input_file=2 status='fail'
876: qp=15 ref=8 subme=5 threads=4 input_file=2 status='fail'
877: qp=7 ref=6 subme=3 threads=6 input_file=2 status='fail'
878: qp=18 ref=10 subme=9 threads=8 input_file=2 status='fail'
879: qp=2 ref=1 subme=9 threads=8 input_file=2 status='fail'
880: qp=7 ref=9 subme=1 threads=10 input_file=2 status='fail'
881: qp=18 ref=6 subme=3 threads=9 input_file=2 status='fail'
882: qp=2 ref=5 subme=1 threads=2 input_file=2 status='pass'
883: qp=13 ref=8 subme=4 threads=9 input_file=2 status='fail'
884: qp=15 ref=2 subme=5 threads=4 input_file=2 status='fail'
885: qp=4 ref=10 subme=3 threads=4 input_file=2 status='fail'
886: qp=8 ref=7 subme=5 threads=10 input_file=2 status='fail'
887: qp=0 ref=5 subme=3 threads=10 input_file=2 status='fail'
888: qp=11 ref=8 subme=9 threads=9 input_file=2 status='fail'
889: qp=16 ref=4 subme=4 threads=2 input_file=2 status='fail'
890: qp=11 ref=5 subme=9 threads=10 input_file=2 status='fail'
891: qp=16 ref=3 subme=0 threads=6 input_file=2 status='fail'
892: qp=10 ref=1 subme=4 threads=5 input_file=2 status='fail'
893: qp=9 ref=1 subme=1 threads=5 input_file=2 status='fail'
894: qp=15 ref=8 subme=8 threads=7 input_file=2 status='fail'
895: qp=18 ref=10 subme=7 threads=3 input_file=2 status='fail'
896: qp=16 ref=3 subme=2 threads=5 input_file=2 status='fail'
897: qp=19 ref=9 subme=7 threads=7 input_file=2 status='fail'
898: qp=9 ref=9 subme=2 threads=3 input_file=2 status='fail'
899: qp=7 ref=2 subme=2 threads=4 input_file=2 status='fail'
900: qp=2 ref=5 subme=5 threads=3 input_file=2 status='fail'
901: qp=9 ref=6 subme=3 threads=10 input_file=2 status='fail'
902: qp=19 ref=9 subme=8 threads=8 input_file=2 status='fail'
903: qp=2 ref=4 subme=0 threads=9 input_file=2 status='fail'
904: qp=8 ref=1 subme=9 threads=6 input_file=2 status='fail'
905: qp=3 ref=6 subme=3 threads=5 input_file=2 status='fail'
906: qp=8 ref=3 subme=5 threads=5 input_file=2 status='fail'
907: qp=14 ref=2 subme=9 threads=5 input_file=2 status='fail'
908: qp=12 ref=10 subme=1 threads=7 input_file=2 status='fail'
909: qp=17 ref=4 subme=1 threads=6 input_file=2 status='fail'
910: qp=15 ref=9 subme=6 threads=4 input_file=2 status='fail'
911: qp=4 ref=6 subme=3 threads=5 input_file=2 status='fail'
912: qp=19 ref=7 subme=9 threads=4 input_file=2 status='fail'
913: qp=12 ref=4 subme=9 threads=3 input_file=2 status='fail'
914: qp=3 ref=10 subme=1 threads=10 input_file=2 status='fail'
915: qp=8 ref=10 subme=3 threads=10 input_file=2 status='fail'
916: qp=4 ref=9 subme=0 threads=7 input_file=2 status='fail'
917: qp=10 ref=3 subme=8 threads=2 input_file=2 status='pass'
918: qp=9 ref=1 subme=6 threads=3 input_file=2 status='fail'
919: qp=11 ref=5 subme=6 threads=9 input_file=2 status='fail'
920: qp=12 ref=2 subme=6 threads=5 input_file=2 status='fail'
921: qp=11 ref=8 subme=3 threads=8 input_file=2 status='fail'
922: qp=19 ref=10 subme=5 threads=9 input_file=2 status='fail'
923: qp=7 ref=10 subme=8 threads=4 input_file=2 status='fail'
924: qp=17 ref=6 subme=1 threads=3 input_file=2 status='pass'
925: qp=3 ref=2 subme=7 threads=8 input_file=2 status='fail'
926: qp=10 ref=2 subme=3 threads=3 input_file=2 status='fail'
927: qp=17 ref=2 subme=6 threads=5 input_file=2 status='fail'
928: qp=1 ref=8 subme=0 threads=7 input_file=2 status='fail'
929: qp=11 ref=6 subme=7 threads=4 input_file=2 status='fail'
930: qp=2 ref=3 subme=7 threads=2 input_file=2 status='pass'
931: qp=15 ref=1 subme=3 threads=3 input_file=2 status='fail'
932: qp=19 ref=4 subme=6 threads=9 input_file=2 status='fail'
933: qp=11 ref=10 subme=6 threads=6 input_file=2 status='fail'
934: qp=14 ref=8 subme=9 threads=7 input_file=2 status='fail'
935: qp=3 ref=1 subme=6 threads=6 input_file=2 status='fail'
936: qp=18 ref=9 subme=0 threads=10 input_file=2 status='fail'
937: qp=2 ref=1 subme=7 threads=5 input_file=2 status='fail'
938: qp=4 ref=4 subme=4 threads=9 input_file=2 status='fail'
939: qp=3 ref=2 subme=3 threads=10 input_file=2 status='fail'
940: qp=11 ref=8 subme=0 threads=8 input_file=2 status='fail'
941: qp=15 ref=9 subme=4 threads=10 input_file=2 status='fail'
942: qp=19 ref=2 subme=4 threads=8 input_file=2 status='fail'
943: qp=14 ref=8 subme=7 threads=5 input_file=2 status='fail'
944: qp=0 ref=7 subme=7 threads=6 input_file=2 status='fail'
945: qp=15 ref=8 subme=2 threads=4 input_file=2 status='fail'
946: qp=12 ref=4 subme=2 threads=6 input_file=2 status='fail'
947: qp=10 ref=4 subme=1 threads=5 input_file=2 status='fail'
948: qp=10 ref=5 subme=9 threads=2 input_file=2 status='fail'
949: qp=4 ref=7 subme=7 threads=9 input_file=2 status='fail'
950: qp=0 ref=5 subme=2 threads=6 input_file=2 status='fail'
951: qp=18 ref=5 subme=0 threads=9 input_file=2 status='fail'
952: qp=14 ref=9 subme=7 threads=4 input_file=2 status='fail'
953: qp=15 ref=4 subme=8 threads=4 input_file=2 status='fail'
954: qp=5 ref=2 subme=0 threads=2 input_file=2 status='fail'
955: qp=3 ref=5 subme=0 threads=4 input_file=2 status='pass'
956: qp=15 ref=8 subme=9 threads=2 input_file=2 status='pass'
957: qp=10 ref=10 subme=8 threads=3 input_file=2 status='fail'
958: qp=19 ref=7 subme=9 threads=10 input_file=2 status='fail'
959: qp=7 ref=4 subme=5 threads=5 input_file=2 status='fail'
960: qp=10 ref=2 subme=0 threads=7 input_file=2 status='fail'
961: qp=9 ref=1 subme=1 threads=2 input_file=2 status='pass'
962: qp=7 ref=1 subme=4 threads=10 input_file=2 status='fail'
963: qp=7 ref=1 subme=1 threads=8 input_file=2 status='fail'
964: qp=6 ref=2 subme=0 threads=7 input_file=2 status='fail'
965: qp=1 ref=8 subme=2 threads=3 input_file=2 status='fail'
966: qp=18 ref=4 subme=2 threads=6 input_file=2 status='fail'
967: qp=17 ref=2 subme=5 threads=5 input_file=2 status='fail'
968: qp=19 ref=2 subme=2 threads=3 input_file=2 status='fail'
969: qp=20 ref=4 subme=4 threads=3 input_file=2 status='fail'
970: qp=9 ref=1 subme=2 threads=3 input_file=2 status='fail'
971: qp=4 ref=6 subme=0 threads=10 input_file=2 status='fail'
972: qp=11 ref=3 subme=5 threads=4 input_file=2 status='fail'
973: qp=4 ref=2 subme=9 threads=8 input_file=2 status='fail'
974: qp=14 ref=9 subme=2 threads=9 input_file=2 status='fail'
975: qp=0 ref=7 subme=3 threads=5 input_file=2 status='fail'
976: qp=16 ref=4 subme=8 threads=6 input_file=2 status='fail'
977: qp=19 ref=10 subme=1 threads=7 input_file=2 status='fail'
978: qp=14 ref=6 subme=1 threads=5 input_file=2 status='fail'
979: qp=1 ref=7 subme=9 threads=2 input_file=2 status='pass'
980: qp=16 ref=1 subme=4 threads=5 input_file=2 status='fail'
981: qp=6 ref=4 subme=0 threads=4 input_file=2 status='fail'
982: qp=13 ref=3 subme=9 threads=8 input_file=2 status='fail'
983: qp=11 ref=2 subme=6 threads=9 input_file=2 status='fail'
984: qp=19 ref=3 subme=1 threads=8 input_file=2 status='fail'
985: qp=7 ref=8 subme=0 threads=5 input_file=2 status='fail'
986: qp=0 ref=3 subme=9 threads=10 input_file=2 status='fail'
987: qp=7 ref=9 subme=7 threads=7 input_file=2 status='fail'
988: qp=1 ref=5 subme=6 threads=3 input_file=2 status='fail'
989: qp=15 ref=5 subme=8 threads=7 input_file=2 status='fail'
990: qp=1 ref=6 subme=2 threads=5 input_file=2 status='fail'
991: qp=17 ref=3 subme=3 threads=6 input_file=2 status='fail'
992: qp=7 ref=1 subme=3 threads=7 input_file=2 status='fail'
993: qp=11 ref=7 subme=7 threads=9 input_file=2 status='fail'
994: qp=12 ref=4 subme=9 threads=3 input_file=2 status='fail'
995: qp=3 ref=3 subme=7 threads=9 input_file=2 status='fail'
996: qp=4 ref=7 subme=6 threads=9 input_file=2 status='fail'
997: qp=6 ref=5 subme=2 threads=9 input_file=2 status='fail'
998: qp=8 ref=6 subme=7 threads=7 input_file=2 status='fail'
999: qp=1 ref=3 subme=8 threads=10 input_file=2 status='fail'