-
Notifications
You must be signed in to change notification settings - Fork 3
/
outFLcvar_221014.txt
1920 lines (1920 loc) · 225 KB
/
outFLcvar_221014.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
1000
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_10.out:FinalReport: 14 627896.588835 627896.588835 0.000000 0 60030 167 342.793520
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_1.out:FinalReport: 14 632650.997415 632650.997415 0.000000 0 57382 166 349.940322
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_2.out:FinalReport: 16 630090.218843 630090.218843 0.000000 0 53468 176 334.589671
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_3.out:FinalReport: 14 627666.109088 627666.109088 0.000000 0 34742 109 208.224044
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_4.out:FinalReport: 15 637432.286014 637432.286014 0.000000 0 67934 167 385.480388
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_5.out:FinalReport: 16 630481.439891 630481.439891 0.000000 0 56770 165 340.153275
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_6.out:FinalReport: 14 633830.615948 633773.043791 0.000091 0 51333 172 277.322858
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_7.out:FinalReport: 12 633088.515425 633088.515425 0.000000 0 46611 136 274.317732
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_8.out:FinalReport: 13 629937.054661 629875.523761 0.000098 0 71415 171 417.269469
outFLCVAR221014/FLCVAR_cap41.txt_1000_a_9.out:FinalReport: 12 631275.340714 631275.340714 0.000000 0 71151 184 406.977849
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_10.out:FinalReport: 0 627896.588835 627896.588835 0.000000 0 0 0 275.153004
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_1.out:FinalReport: 0 632650.997415 632650.997415 0.000000 0 0 0 360.055199
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_2.out:FinalReport: 0 630090.218843 630076.166945 0.000022 0 0 0 311.233849
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_3.out:FinalReport: 0 627666.109088 627666.109088 0.000000 0 0 0 315.126586
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_4.out:FinalReport: 0 637432.286014 637432.286014 0.000000 0 0 0 279.374111
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_5.out:FinalReport: 0 630481.439891 630481.439891 0.000000 0 0 0 299.359952
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_6.out:FinalReport: 0 633830.615948 633830.615948 0.000000 0 0 0 292.988595
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_7.out:FinalReport: 0 633089.293370 633062.245960 0.000043 0 0 0 279.683104
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_8.out:FinalReport: 0 629937.054661 629937.054661 0.000000 0 0 0 312.070262
outFLCVAR221014/FLCVAR_cap41.txt_1000_f_9.out:FinalReport: 0 631275.340714 631275.340714 0.000000 0 0 0 325.067611
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_10.out:FinalReport: 1 627896.588835 627896.588835 0.000000 0 126489 1000 1203.977256
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_1.out:FinalReport: 1 632650.997415 632650.997415 0.000000 0 109045 1000 973.570662
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_2.out:FinalReport: 1 630090.218843 630090.218843 0.000000 0 92810 1000 910.786538
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_3.out:FinalReport: 1 627666.109088 627666.109088 0.000000 0 115701 1000 1182.422976
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_4.out:FinalReport: 1 637432.286014 637432.286014 0.000000 0 101155 1000 1066.796432
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_5.out:FinalReport: 1 630481.439891 630481.439891 0.000000 0 111661 1000 1086.257644
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_6.out:FinalReport: 1 633830.615948 633830.615948 0.000000 0 120999 1000 1175.989066
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_7.out:FinalReport: 1 633088.515425 633088.515425 0.000000 0 82905 1000 837.096706
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_8.out:FinalReport: 1 629937.054661 629937.054661 0.000000 0 120823 1000 1243.794807
outFLCVAR221014/FLCVAR_cap41.txt_1000_m_9.out:FinalReport: 1 631275.340714 631275.340714 0.000000 0 126240 1000 1334.178811
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_10.out:FinalReport: 1 627896.588835 627896.588835 0.000000 0 1815 1000 2489.781339
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_1.out:FinalReport: 1 632650.997415 632650.997415 0.000000 0 2315 1000 3356.832704
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_2.out:FinalReport: 1 630090.218843 630090.218843 0.000000 0 1627 1000 2367.045070
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_3.out:FinalReport: 1 627666.109088 627666.109088 0.000000 0 1899 1000 2719.019143
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_4.out:FinalReport: 1 637432.286014 637432.286014 0.000000 0 1595 1000 2205.013070
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_5.out:FinalReport: 1 630481.439891 630481.439891 0.000000 0 2141 1000 3117.820631
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_6.out:FinalReport: 1 633830.615948 633830.615948 0.000000 0 2152 1000 2936.358424
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_7.out:FinalReport: 1 633088.515425 633088.515425 0.000000 0 1936 1000 2778.081539
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_8.out:FinalReport: 1 629937.054661 629937.054661 0.000000 0 1741 1000 2510.113612
outFLCVAR221014/FLCVAR_cap41.txt_1000_s_9.out:FinalReport: 1 631275.340714 631275.340714 0.000000 0 1968 1000 2868.515775
outFLCVAR221014/FLCVAR_cap41.txt_100_a_10.out:FinalReport: 5 623409.200435 623409.200435 0.000000 0 5765 22 27.651078
outFLCVAR221014/FLCVAR_cap41.txt_100_a_1.out:FinalReport: 7 643401.317969 643401.317969 0.000000 0 6296 27 33.589583
outFLCVAR221014/FLCVAR_cap41.txt_100_a_2.out:FinalReport: 7 651937.501295 651937.501295 0.000000 0 9102 26 48.702482
outFLCVAR221014/FLCVAR_cap41.txt_100_a_3.out:FinalReport: 7 672092.385877 672092.385877 0.000000 0 5761 20 29.379294
outFLCVAR221014/FLCVAR_cap41.txt_100_a_4.out:FinalReport: 5 639805.722824 639805.722824 0.000000 0 6018 20 30.533296
outFLCVAR221014/FLCVAR_cap41.txt_100_a_5.out:FinalReport: 7 599747.547438 599747.547438 0.000000 0 6132 21 30.166126
outFLCVAR221014/FLCVAR_cap41.txt_100_a_6.out:FinalReport: 7 625751.156387 625751.156387 0.000000 0 6855 28 36.620903
outFLCVAR221014/FLCVAR_cap41.txt_100_a_7.out:FinalReport: 6 617376.969311 617376.969311 0.000000 0 5269 26 27.408946
outFLCVAR221014/FLCVAR_cap41.txt_100_a_8.out:FinalReport: 6 626813.966590 626758.424863 0.000089 0 5296 16 27.806130
outFLCVAR221014/FLCVAR_cap41.txt_100_a_9.out:FinalReport: 8 618691.545807 618691.545807 0.000000 0 5787 24 29.943188
outFLCVAR221014/FLCVAR_cap41.txt_100_f_10.out:FinalReport: 0 623409.200435 623409.200435 0.000000 0 0 0 13.114920
outFLCVAR221014/FLCVAR_cap41.txt_100_f_1.out:FinalReport: 0 643401.317969 643344.226242 0.000089 0 0 0 14.812750
outFLCVAR221014/FLCVAR_cap41.txt_100_f_2.out:FinalReport: 0 651937.501295 651937.501295 0.000000 0 0 0 13.264570
outFLCVAR221014/FLCVAR_cap41.txt_100_f_3.out:FinalReport: 0 672092.385877 672092.385877 0.000000 0 0 0 12.214569
outFLCVAR221014/FLCVAR_cap41.txt_100_f_4.out:FinalReport: 0 639805.722824 639805.722824 0.000000 0 0 0 11.423160
outFLCVAR221014/FLCVAR_cap41.txt_100_f_5.out:FinalReport: 0 599747.547438 599747.547438 0.000000 0 0 0 12.149827
outFLCVAR221014/FLCVAR_cap41.txt_100_f_6.out:FinalReport: 0 625751.156387 625751.156387 0.000000 0 0 0 12.650027
outFLCVAR221014/FLCVAR_cap41.txt_100_f_7.out:FinalReport: 0 617376.969311 617359.135175 0.000029 0 0 0 13.528055
outFLCVAR221014/FLCVAR_cap41.txt_100_f_8.out:FinalReport: 0 626813.966590 626813.966590 0.000000 0 0 0 13.024110
outFLCVAR221014/FLCVAR_cap41.txt_100_f_9.out:FinalReport: 0 618691.545807 618691.545807 0.000000 0 0 0 13.347561
outFLCVAR221014/FLCVAR_cap41.txt_100_m_10.out:FinalReport: 1 623409.200435 623409.200435 0.000000 0 12215 100 95.422091
outFLCVAR221014/FLCVAR_cap41.txt_100_m_1.out:FinalReport: 1 643401.317969 643401.317969 0.000000 0 8571 100 75.202280
outFLCVAR221014/FLCVAR_cap41.txt_100_m_2.out:FinalReport: 1 651937.501295 651937.501295 0.000000 0 9940 100 134.021072
outFLCVAR221014/FLCVAR_cap41.txt_100_m_3.out:FinalReport: 1 672092.385877 672092.385877 0.000000 0 6776 100 102.332724
outFLCVAR221014/FLCVAR_cap41.txt_100_m_4.out:FinalReport: 1 639805.722824 639805.722824 0.000000 0 7733 100 114.018121
outFLCVAR221014/FLCVAR_cap41.txt_100_m_5.out:FinalReport: 1 599747.547438 599747.547438 0.000000 0 16804 100 209.744576
outFLCVAR221014/FLCVAR_cap41.txt_100_m_6.out:FinalReport: 1 625751.156387 625751.156387 0.000000 0 15789 100 213.960418
outFLCVAR221014/FLCVAR_cap41.txt_100_m_7.out:FinalReport: 1 617376.969311 617376.969311 0.000000 0 11604 100 154.870975
outFLCVAR221014/FLCVAR_cap41.txt_100_m_8.out:FinalReport: 1 626813.966590 626813.966590 0.000000 0 12297 100 189.127342
outFLCVAR221014/FLCVAR_cap41.txt_100_m_9.out:FinalReport: 1 618691.545807 618691.545807 0.000000 0 10750 100 103.113123
outFLCVAR221014/FLCVAR_cap41.txt_100_s_10.out:FinalReport: 1 623409.200435 623409.200435 0.000000 0 1674 100 234.618205
outFLCVAR221014/FLCVAR_cap41.txt_100_s_1.out:FinalReport: 1 643401.317969 643401.317969 0.000000 0 1357 100 199.538036
outFLCVAR221014/FLCVAR_cap41.txt_100_s_2.out:FinalReport: 1 651937.501295 651937.501295 0.000000 0 1939 100 274.598984
outFLCVAR221014/FLCVAR_cap41.txt_100_s_3.out:FinalReport: 1 672092.385877 672092.385877 0.000000 0 1040 100 136.112470
outFLCVAR221014/FLCVAR_cap41.txt_100_s_4.out:FinalReport: 1 639805.722824 639805.722824 0.000000 0 1461 100 200.815306
outFLCVAR221014/FLCVAR_cap41.txt_100_s_5.out:FinalReport: 1 599747.547438 599747.547438 0.000000 0 1932 100 286.926346
outFLCVAR221014/FLCVAR_cap41.txt_100_s_6.out:FinalReport: 1 625751.156387 625751.156387 0.000000 0 1920 100 287.517799
outFLCVAR221014/FLCVAR_cap41.txt_100_s_7.out:FinalReport: 1 617376.969311 617376.969311 0.000000 0 1375 100 193.090528
outFLCVAR221014/FLCVAR_cap41.txt_100_s_8.out:FinalReport: 1 626813.966590 626813.966590 0.000000 0 1251 100 177.244244
outFLCVAR221014/FLCVAR_cap41.txt_100_s_9.out:FinalReport: 1 618691.545807 618691.545807 0.000000 0 1542 100 212.413104
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_10.out:FinalReport: 19 632890.268002 632890.268002 0.000000 0 162767 373 1129.346175
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_1.out:FinalReport: 17 630296.497307 630296.497307 0.000000 0 78248 221 602.995364
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_2.out:FinalReport: 21 631473.579986 631473.579986 0.000000 0 129830 383 873.050323
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_3.out:FinalReport: 14 637123.005711 637123.005711 0.000000 0 100114 252 700.155897
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_4.out:FinalReport: 18 631532.997381 631532.997381 0.000000 0 141903 384 1100.817268
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_5.out:FinalReport: 18 633745.796258 633745.796258 0.000000 0 161167 387 2003.079131
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_6.out:FinalReport: 22 631543.611680 631543.611680 0.000000 0 122475 357 848.011929
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_7.out:FinalReport: 17 634300.304840 634263.199588 0.000058 0 145133 336 983.957839
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_8.out:FinalReport: 19 630816.722178 630816.722178 0.000000 0 160087 419 1806.172263
outFLCVAR221014/FLCVAR_cap41.txt_2500_a_9.out:FinalReport: 20 635411.452759 635411.452759 0.000000 0 120818 391 754.491007
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_10.out:FinalReport: 0 632890.268002 632889.148734 0.000002 0 0 0 1898.451148
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_1.out:FinalReport: 0 630296.497307 630296.497307 0.000000 0 0 0 2777.216324
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_2.out:FinalReport: 0 631473.579986 631472.071817 0.000002 0 0 0 1975.392039
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_3.out:FinalReport: 0 637123.005711 637123.005711 0.000000 0 0 0 2704.559505
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_4.out:FinalReport: 0 631532.997381 631532.881140 0.000000 0 0 0 1749.779397
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_5.out:FinalReport: 0 633745.796258 633745.726407 0.000000 0 0 0 1577.527626
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_6.out:FinalReport: 0 631543.611680 631543.611680 0.000000 0 0 0 1547.824621
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_7.out:FinalReport: 0 634300.304840 634300.234079 0.000000 0 0 0 1977.903719
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_8.out:FinalReport: 0 630816.722178 630816.722178 0.000000 0 0 0 1613.802897
outFLCVAR221014/FLCVAR_cap41.txt_2500_f_9.out:FinalReport: 0 635411.452759 635411.452759 0.000000 0 0 0 1477.653362
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_10.out:FinalReport: 1 632890.268002 632890.268002 0.000000 0 241804 2500 2833.270283
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_1.out:FinalReport: 1 630296.497307 630296.497307 0.000000 0 295613 2500 3194.172950
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_2.out:FinalReport: 1 631473.579986 631473.579986 0.000000 0 264993 2500 3175.223189
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_3.out:FinalReport: 1 637123.005711 637123.005711 0.000000 0 259789 2500 2940.622216
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_4.out:FinalReport: 1 631532.997381 631532.997381 0.000000 0 307600 2500 3503.957774
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_5.out:FinalReport: 1 633745.796258 633745.796258 0.000000 0 266347 2500 2848.689658
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_6.out:FinalReport: 1 631543.611680 631543.611680 0.000000 0 419101 2500 5023.985493
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_7.out:FinalReport: 1 634300.304840 634300.304840 0.000000 0 381347 2500 4735.359609
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_8.out:FinalReport: 1 630816.722178 630816.722178 0.000000 0 436267 2500 5115.293159
outFLCVAR221014/FLCVAR_cap41.txt_2500_m_9.out:FinalReport: 1 635411.452759 635411.452759 0.000000 0 414098 2500 4882.631866
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_10.out:FinalReport: 1 632922.906221 632890.268002 0.000052 0 1792 2500 6152.633243
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_1.out:FinalReport: 1 630296.497307 630296.497307 0.000000 0 1648 2500 5966.989086
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_2.out:FinalReport: 1 631473.579986 631473.579986 0.000000 0 1841 2500 6648.963242
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_3.out:FinalReport: 1 637123.005711 637123.005711 0.000000 0 2062 2500 7375.220505
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_4.out:FinalReport: 1 631532.997381 631532.997381 0.000000 0 1642 2500 5852.937198
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_5.out:FinalReport: 1 633745.796258 633745.796258 0.000000 0 2237 2500 7819.484800
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_6.out:FinalReport: 1 631543.541641 631543.541641 0.000000 0 2285 2500 8189.983339
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_7.out:FinalReport: 1 634300.304840 634300.304840 0.000000 0 1731 2500 6100.298415
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_8.out:FinalReport: 1 630816.722178 630816.722178 0.000000 0 1922 2500 6389.782767
outFLCVAR221014/FLCVAR_cap41.txt_2500_s_9.out:FinalReport: 1 635411.452759 635411.452759 0.000000 0 1381 2500 4755.745579
outFLCVAR221014/FLCVAR_cap41.txt_500_a_10.out:FinalReport: 11 626988.108963 626988.108963 0.000000 0 30310 102 162.175612
outFLCVAR221014/FLCVAR_cap41.txt_500_a_1.out:FinalReport: 12 629661.109401 629661.109401 0.000000 0 23698 90 131.106893
outFLCVAR221014/FLCVAR_cap41.txt_500_a_2.out:FinalReport: 11 631817.765130 631802.922092 0.000023 0 34047 89 178.328262
outFLCVAR221014/FLCVAR_cap41.txt_500_a_3.out:FinalReport: 14 635161.748997 635161.748997 0.000000 0 29180 95 153.992461
outFLCVAR221014/FLCVAR_cap41.txt_500_a_4.out:FinalReport: 12 634436.622799 634436.622799 0.000000 0 24470 87 126.536371
outFLCVAR221014/FLCVAR_cap41.txt_500_a_5.out:FinalReport: 13 638277.224923 638277.224923 0.000000 0 22343 83 126.329418
outFLCVAR221014/FLCVAR_cap41.txt_500_a_6.out:FinalReport: 9 627925.718498 627925.718498 0.000000 0 28248 82 163.473155
outFLCVAR221014/FLCVAR_cap41.txt_500_a_7.out:FinalReport: 12 629128.621457 629078.956026 0.000079 0 31890 83 156.345436
outFLCVAR221014/FLCVAR_cap41.txt_500_a_8.out:FinalReport: 9 634204.256972 634204.256972 0.000000 0 27181 82 145.133063
outFLCVAR221014/FLCVAR_cap41.txt_500_a_9.out:FinalReport: 9 635955.320014 635955.320014 0.000000 0 32104 85 175.267388
outFLCVAR221014/FLCVAR_cap41.txt_500_f_10.out:FinalReport: 0 626988.108963 626988.108963 0.000000 0 0 0 108.033626
outFLCVAR221014/FLCVAR_cap41.txt_500_f_1.out:FinalReport: 0 629661.109401 629661.109401 0.000000 0 0 0 100.523065
outFLCVAR221014/FLCVAR_cap41.txt_500_f_2.out:FinalReport: 0 631817.765130 631817.765130 0.000000 0 0 0 105.334581
outFLCVAR221014/FLCVAR_cap41.txt_500_f_3.out:FinalReport: 0 635161.748997 635161.748997 0.000000 0 0 0 99.611102
outFLCVAR221014/FLCVAR_cap41.txt_500_f_4.out:FinalReport: 0 634436.622799 634431.027903 0.000009 0 0 0 109.504555
outFLCVAR221014/FLCVAR_cap41.txt_500_f_5.out:FinalReport: 0 638277.224923 638277.224923 0.000000 0 0 0 107.385593
outFLCVAR221014/FLCVAR_cap41.txt_500_f_6.out:FinalReport: 0 627925.718498 627925.718498 0.000000 0 0 0 106.322982
outFLCVAR221014/FLCVAR_cap41.txt_500_f_7.out:FinalReport: 0 629128.621457 629128.621457 0.000000 0 0 0 100.452701
outFLCVAR221014/FLCVAR_cap41.txt_500_f_8.out:FinalReport: 0 634204.256972 634204.256972 0.000000 0 0 0 123.645261
outFLCVAR221014/FLCVAR_cap41.txt_500_f_9.out:FinalReport: 0 635955.320014 635955.320014 0.000000 0 0 0 109.523722
outFLCVAR221014/FLCVAR_cap41.txt_500_m_10.out:FinalReport: 1 626988.108963 626988.108963 0.000000 0 89459 500 891.573617
outFLCVAR221014/FLCVAR_cap41.txt_500_m_1.out:FinalReport: 1 629661.109401 629661.109401 0.000000 0 45180 500 409.241321
outFLCVAR221014/FLCVAR_cap41.txt_500_m_2.out:FinalReport: 1 631817.765130 631817.765130 0.000000 0 52426 500 823.524439
outFLCVAR221014/FLCVAR_cap41.txt_500_m_3.out:FinalReport: 1 635161.748997 635161.748997 0.000000 0 51766 500 510.001287
outFLCVAR221014/FLCVAR_cap41.txt_500_m_4.out:FinalReport: 1 634436.622799 634436.622799 0.000000 0 38728 500 544.290761
outFLCVAR221014/FLCVAR_cap41.txt_500_m_5.out:FinalReport: 1 638277.224923 638277.224923 0.000000 0 81385 500 867.912647
outFLCVAR221014/FLCVAR_cap41.txt_500_m_6.out:FinalReport: 1 627925.718498 627925.718498 0.000000 0 56867 500 555.499801
outFLCVAR221014/FLCVAR_cap41.txt_500_m_7.out:FinalReport: 1 629128.621457 629128.621457 0.000000 0 59519 500 856.578459
outFLCVAR221014/FLCVAR_cap41.txt_500_m_8.out:FinalReport: 1 634204.256972 634204.256972 0.000000 0 46441 500 682.671054
outFLCVAR221014/FLCVAR_cap41.txt_500_m_9.out:FinalReport: 1 635955.320014 635955.320014 0.000000 0 41356 500 423.536863
outFLCVAR221014/FLCVAR_cap41.txt_500_s_10.out:FinalReport: 1 626988.108963 626988.108963 0.000000 0 1792 500 1283.686478
outFLCVAR221014/FLCVAR_cap41.txt_500_s_1.out:FinalReport: 1 629661.109401 629661.109401 0.000000 0 2299 500 1594.452088
outFLCVAR221014/FLCVAR_cap41.txt_500_s_2.out:FinalReport: 1 631817.765130 631817.765130 0.000000 0 2636 500 1929.709724
outFLCVAR221014/FLCVAR_cap41.txt_500_s_3.out:FinalReport: 1 635161.748997 635161.748997 0.000000 0 2037 500 1405.706169
outFLCVAR221014/FLCVAR_cap41.txt_500_s_4.out:FinalReport: 1 634436.622799 634436.622799 0.000000 0 2259 500 1620.532931
outFLCVAR221014/FLCVAR_cap41.txt_500_s_5.out:FinalReport: 1 638277.224923 638277.224923 0.000000 0 1565 500 1067.465218
outFLCVAR221014/FLCVAR_cap41.txt_500_s_6.out:FinalReport: 1 627925.718498 627925.718498 0.000000 0 1956 500 1353.016880
outFLCVAR221014/FLCVAR_cap41.txt_500_s_7.out:FinalReport: 1 629128.621457 629128.621457 0.000000 0 2451 500 1684.524992
outFLCVAR221014/FLCVAR_cap41.txt_500_s_8.out:FinalReport: 1 634204.256972 634204.256972 0.000000 0 1719 500 1797.384526
outFLCVAR221014/FLCVAR_cap41.txt_500_s_9.out:FinalReport: 1 635955.320014 635955.320014 0.000000 0 1691 500 1244.332334
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_10.out:FinalReport: 14 620844.590298 620844.590298 0.000000 0 73960 119 479.690826
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_1.out:FinalReport: 12 624680.991316 624680.991316 0.000000 0 67909 113 425.991615
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_2.out:FinalReport: 15 622461.833823 622461.833823 0.000000 0 61643 99 414.693282
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_3.out:FinalReport: 13 619290.661091 619290.661091 0.000000 0 128701 96 877.912311
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_4.out:FinalReport: 19 629330.242044 629327.880940 0.000004 0 119737 179 967.500283
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_5.out:FinalReport: 11 623295.098692 623295.098692 0.000000 0 61641 110 404.588907
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_6.out:FinalReport: 14 626220.163404 626220.163404 0.000000 0 87436 138 605.357112
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_7.out:FinalReport: 9 625051.384983 625042.861054 0.000014 0 42660 79 269.629871
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_8.out:FinalReport: 12 622479.452020 622479.452020 0.000000 0 54689 98 406.209823
outFLCVAR221014/FLCVAR_cap42.txt_1000_a_9.out:FinalReport: 12 623454.448163 623454.448163 0.000000 0 49126 90 293.896413
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_10.out:FinalReport: 0 620844.590298 620844.590298 0.000000 0 0 0 276.995398
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_1.out:FinalReport: 0 624680.991316 624680.991316 0.000000 0 0 0 316.385303
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_2.out:FinalReport: 0 622461.833823 622461.833823 0.000000 0 0 0 387.611609
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_3.out:FinalReport: 0 619290.661091 619290.661091 0.000000 0 0 0 312.580997
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_4.out:FinalReport: 0 629330.242044 629330.242044 0.000000 0 0 0 308.796746
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_5.out:FinalReport: 0 623295.098692 623295.098692 0.000000 0 0 0 301.984525
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_6.out:FinalReport: 0 626220.163404 626220.163404 0.000000 0 0 0 293.677930
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_7.out:FinalReport: 0 625051.384983 625045.180259 0.000010 0 0 0 288.665756
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_8.out:FinalReport: 0 622479.452020 622479.452020 0.000000 0 0 0 319.163413
outFLCVAR221014/FLCVAR_cap42.txt_1000_f_9.out:FinalReport: 0 623455.393833 623449.680580 0.000009 0 0 0 286.082114
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_10.out:FinalReport: 1 620844.590298 620844.590298 0.000000 0 171894 1000 1530.624290
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_1.out:FinalReport: 1 624680.991316 624680.991316 0.000000 0 213952 1000 2011.774052
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_2.out:FinalReport: 1 622461.833823 622461.833823 0.000000 0 164503 1000 1419.352808
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_3.out:FinalReport: 1 619290.661091 619290.661091 0.000000 0 145428 1000 1329.162225
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_4.out:FinalReport: 1 629330.242044 629330.242044 0.000000 0 150174 1000 1603.673935
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_5.out:FinalReport: 1 623295.098692 623295.098692 0.000000 0 154022 1000 1418.804416
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_6.out:FinalReport: 1 626220.163404 626220.163404 0.000000 0 196729 1000 1947.534954
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_7.out:FinalReport: 1 625051.384983 625051.384983 0.000000 0 129469 1000 1251.718050
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_8.out:FinalReport: 1 622479.452020 622479.452020 0.000000 0 172484 1000 1738.833780
outFLCVAR221014/FLCVAR_cap42.txt_1000_m_9.out:FinalReport: 1 623454.448163 623454.448163 0.000000 0 162602 1000 1469.592987
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_10.out:FinalReport: 1 620844.590298 620844.590298 0.000000 0 3545 1000 4782.198696
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_1.out:FinalReport: 1 624680.991316 624680.991316 0.000000 0 3142 1000 3978.501437
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_2.out:FinalReport: 1 622461.833823 622461.833823 0.000000 0 3431 1000 4484.553718
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_3.out:FinalReport: 1 619290.661091 619290.661091 0.000000 0 2947 1000 5577.027611
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_4.out:FinalReport: 1 629330.242044 629330.242044 0.000000 0 2771 1000 3506.028653
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_5.out:FinalReport: 1 623295.021946 623295.021946 0.000000 0 3082 1000 3779.779251
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_6.out:FinalReport: 1 626220.020505 626220.020505 0.000000 0 3178 1000 4317.980132
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_7.out:FinalReport: 1 625051.384983 625051.384983 0.000000 0 2790 1000 3440.626167
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_8.out:FinalReport: 1 622479.452020 622479.452020 0.000000 0 3454 1000 4537.168891
outFLCVAR221014/FLCVAR_cap42.txt_1000_s_9.out:FinalReport: 1 623454.448163 623454.448163 0.000000 0 2885 1000 3768.348443
outFLCVAR221014/FLCVAR_cap42.txt_100_a_10.out:FinalReport: 7 615184.647216 615184.647216 0.000000 0 10395 23 53.044862
outFLCVAR221014/FLCVAR_cap42.txt_100_a_1.out:FinalReport: 9 636969.879407 636969.879407 0.000000 0 12856 26 68.946388
outFLCVAR221014/FLCVAR_cap42.txt_100_a_2.out:FinalReport: 7 644176.806365 644176.806365 0.000000 0 11730 27 61.040522
outFLCVAR221014/FLCVAR_cap42.txt_100_a_3.out:FinalReport: 7 663130.132463 663130.132463 0.000000 0 7769 23 40.487551
outFLCVAR221014/FLCVAR_cap42.txt_100_a_4.out:FinalReport: 11 630554.340260 630554.340260 0.000000 0 12570 22 61.842438
outFLCVAR221014/FLCVAR_cap42.txt_100_a_5.out:FinalReport: 9 592922.945833 592922.945833 0.000000 0 13502 22 71.189999
outFLCVAR221014/FLCVAR_cap42.txt_100_a_6.out:FinalReport: 7 618213.061118 618213.061118 0.000000 0 43714 24 320.656628
outFLCVAR221014/FLCVAR_cap42.txt_100_a_7.out:FinalReport: 7 609427.484274 609427.484274 0.000000 0 10049 27 48.743952
outFLCVAR221014/FLCVAR_cap42.txt_100_a_8.out:FinalReport: 5 618453.451459 618453.451459 0.000000 0 6514 18 34.637589
outFLCVAR221014/FLCVAR_cap42.txt_100_a_9.out:FinalReport: 7 612092.071221 612092.071221 0.000000 0 10100 23 49.930479
outFLCVAR221014/FLCVAR_cap42.txt_100_f_10.out:FinalReport: 0 615184.647216 615184.647216 0.000000 0 0 0 16.188703
outFLCVAR221014/FLCVAR_cap42.txt_100_f_1.out:FinalReport: 0 636969.879407 636969.879407 0.000000 0 0 0 13.648402
outFLCVAR221014/FLCVAR_cap42.txt_100_f_2.out:FinalReport: 0 644176.806365 644174.443309 0.000004 0 0 0 14.318029
outFLCVAR221014/FLCVAR_cap42.txt_100_f_3.out:FinalReport: 0 663130.132463 663130.132463 0.000000 0 0 0 13.107240
outFLCVAR221014/FLCVAR_cap42.txt_100_f_4.out:FinalReport: 0 630554.340260 630554.340260 0.000000 0 0 0 12.775260
outFLCVAR221014/FLCVAR_cap42.txt_100_f_5.out:FinalReport: 0 592922.945833 592922.945833 0.000000 0 0 0 11.909994
outFLCVAR221014/FLCVAR_cap42.txt_100_f_6.out:FinalReport: 0 618213.061118 618213.061118 0.000000 0 0 0 11.326718
outFLCVAR221014/FLCVAR_cap42.txt_100_f_7.out:FinalReport: 0 609427.484274 609427.484274 0.000000 0 0 0 12.172912
outFLCVAR221014/FLCVAR_cap42.txt_100_f_8.out:FinalReport: 0 618453.451459 618453.451459 0.000000 0 0 0 13.168128
outFLCVAR221014/FLCVAR_cap42.txt_100_f_9.out:FinalReport: 0 612092.071221 612092.071221 0.000000 0 0 0 13.203615
outFLCVAR221014/FLCVAR_cap42.txt_100_m_10.out:FinalReport: 1 615184.647216 615184.647216 0.000000 0 21323 100 148.616687
outFLCVAR221014/FLCVAR_cap42.txt_100_m_1.out:FinalReport: 1 636969.879407 636969.879407 0.000000 0 16838 100 138.188068
outFLCVAR221014/FLCVAR_cap42.txt_100_m_2.out:FinalReport: 1 644176.806365 644176.806365 0.000000 0 14689 100 113.933293
outFLCVAR221014/FLCVAR_cap42.txt_100_m_3.out:FinalReport: 1 663130.132463 663130.132463 0.000000 0 10756 100 88.414116
outFLCVAR221014/FLCVAR_cap42.txt_100_m_4.out:FinalReport: 1 630554.340260 630554.340260 0.000000 0 18222 100 166.063570
outFLCVAR221014/FLCVAR_cap42.txt_100_m_5.out:FinalReport: 1 592922.945833 592872.847779 0.000084 0 18166 100 151.157113
outFLCVAR221014/FLCVAR_cap42.txt_100_m_6.out:FinalReport: 1 618213.061118 618213.061118 0.000000 0 15573 100 132.234133
outFLCVAR221014/FLCVAR_cap42.txt_100_m_7.out:FinalReport: 1 609427.484274 609427.484274 0.000000 0 18200 100 138.709108
outFLCVAR221014/FLCVAR_cap42.txt_100_m_8.out:FinalReport: 1 618453.451459 618453.451459 0.000000 0 11852 100 97.335857
outFLCVAR221014/FLCVAR_cap42.txt_100_m_9.out:FinalReport: 1 612092.071221 612092.071221 0.000000 0 16986 100 151.637626
outFLCVAR221014/FLCVAR_cap42.txt_100_s_10.out:FinalReport: 1 615184.647216 615184.647216 0.000000 0 2410 100 310.947015
outFLCVAR221014/FLCVAR_cap42.txt_100_s_1.out:FinalReport: 1 636988.782902 636969.879407 0.000030 0 1784 100 228.286916
outFLCVAR221014/FLCVAR_cap42.txt_100_s_2.out:FinalReport: 1 644176.806365 644176.806365 0.000000 0 2116 100 275.319126
outFLCVAR221014/FLCVAR_cap42.txt_100_s_3.out:FinalReport: 1 663130.132463 663130.132463 0.000000 0 2931 100 377.932291
outFLCVAR221014/FLCVAR_cap42.txt_100_s_4.out:FinalReport: 1 630554.340260 630554.340260 0.000000 0 1974 100 243.642354
outFLCVAR221014/FLCVAR_cap42.txt_100_s_5.out:FinalReport: 1 592922.945833 592922.945833 0.000000 0 2379 100 305.952527
outFLCVAR221014/FLCVAR_cap42.txt_100_s_6.out:FinalReport: 1 618213.061118 618213.061118 0.000000 0 2423 100 309.007661
outFLCVAR221014/FLCVAR_cap42.txt_100_s_7.out:FinalReport: 1 609427.484274 609427.484274 0.000000 0 2058 100 266.967314
outFLCVAR221014/FLCVAR_cap42.txt_100_s_8.out:FinalReport: 1 618453.451459 618453.451459 0.000000 0 1472 100 178.483032
outFLCVAR221014/FLCVAR_cap42.txt_100_s_9.out:FinalReport: 1 612092.071221 612092.071221 0.000000 0 2611 100 346.041707
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_10.out:FinalReport: 18 625302.028267 625302.028267 0.000000 0 183588 292 1465.740283
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_1.out:FinalReport: 19 622493.364143 622493.364143 0.000000 0 164078 267 1234.057589
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_2.out:FinalReport: 23 623775.170894 623775.170894 0.000000 0 194309 275 2744.033165
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_3.out:FinalReport: 18 629309.278499 629309.278499 0.000000 0 157582 309 1158.018327
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_4.out:FinalReport: 20 623775.305534 623775.305534 0.000000 0 314115 381 2728.848026
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_5.out:FinalReport: 17 625995.222757 625995.222757 0.000000 0 209484 339 1860.465856
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_6.out:FinalReport: 24 623443.374537 623443.374537 0.000000 0 186084 317 1433.074175
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_7.out:FinalReport: 22 626481.712914 626481.712914 0.000000 0 171404 318 1527.062489
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_8.out:FinalReport: 21 623098.958874 623098.958874 0.000000 0 226215 349 2145.732208
outFLCVAR221014/FLCVAR_cap42.txt_2500_a_9.out:FinalReport: 19 627537.704364 627521.896577 0.000025 0 221225 273 1847.847934
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_10.out:FinalReport: 0 625302.028267 625302.028267 0.000000 0 0 0 1703.036082
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_1.out:FinalReport: 0 622493.364143 622493.364143 0.000000 0 0 0 2333.864979
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_2.out:FinalReport: 0 623775.170894 623774.992899 0.000000 0 0 0 1744.161515
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_3.out:FinalReport: 0 629309.278499 629309.278499 0.000000 0 0 0 1498.730734
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_4.out:FinalReport: 0 623775.305534 623775.305534 0.000000 0 0 0 1565.713495
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_5.out:FinalReport: 0 625995.222757 625995.222757 0.000000 0 0 0 2650.444504
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_6.out:FinalReport: 0 623443.374537 623443.374537 0.000000 0 0 0 2688.605350
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_7.out:FinalReport: 0 626481.712914 626481.712914 0.000000 0 0 0 1434.763917
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_8.out:FinalReport: 0 623098.958874 623098.958874 0.000000 0 0 0 1652.113556
outFLCVAR221014/FLCVAR_cap42.txt_2500_f_9.out:FinalReport: 0 627537.704364 627537.704364 0.000000 0 0 0 1837.702436
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_10.out:FinalReport: 1 625302.028267 625264.322589 0.000060 0 556077 2500 6175.575097
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_1.out:FinalReport: 1 622493.364143 622493.364143 0.000000 0 360949 2500 4530.082193
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_2.out:FinalReport: 1 623775.170894 623761.129444 0.000023 0 629260 2500 6588.604591
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_3.out:FinalReport: 1 629309.278499 629309.278499 0.000000 0 380539 2500 3824.993791
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_4.out:FinalReport: 1 623775.305534 623775.305534 0.000000 0 389851 2500 4362.607370
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_5.out:FinalReport: 1 625995.222757 625995.222757 0.000000 0 304667 2500 3307.441566
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_6.out:FinalReport: 1 623443.374537 623443.374537 0.000000 0 343750 2500 3822.263247
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_7.out:FinalReport: 1 626481.712914 626481.712914 0.000000 0 418758 2500 5138.137087
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_8.out:FinalReport: 1 623098.958874 623093.596049 0.000009 0 567067 2500 6407.111251
outFLCVAR221014/FLCVAR_cap42.txt_2500_m_9.out:FinalReport: 1 627537.704364 627537.704364 0.000000 0 369376 2500 4255.847730
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_10.out:FinalReport: 1 625301.882620 625301.882620 0.000000 0 3602 2500 11750.083548
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_1.out:FinalReport: 1 622493.364143 622493.364143 0.000000 0 3325 2500 11174.964111
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_2.out:FinalReport: 1 623775.058366 623775.058366 0.000000 0 5885 2500 19680.410043
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_3.out:FinalReport: 1 629309.278499 629309.278499 0.000000 0 2863 2500 9386.103103
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_4.out:FinalReport: 1 623775.289091 623775.289091 0.000000 0 3357 2500 11564.736855
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_5.out:FinalReport: 1 625995.222757 625995.222757 0.000000 0 2824 2500 9565.696974
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_6.out:FinalReport: 1 623443.374537 623443.374537 0.000000 0 3364 2500 10399.843440
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_7.out:FinalReport: 1 626481.712914 626481.712914 0.000000 0 3896 2500 11904.908373
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_8.out:FinalReport: 1 623098.958874 623052.678538 0.000074 0 2894 2500 13746.997696
outFLCVAR221014/FLCVAR_cap42.txt_2500_s_9.out:FinalReport: 1 627537.669788 627537.669788 0.000000 0 4731 2500 15110.609186
outFLCVAR221014/FLCVAR_cap42.txt_500_a_10.out:FinalReport: 10 619557.064080 619557.064080 0.000000 0 56823 88 601.075567
outFLCVAR221014/FLCVAR_cap42.txt_500_a_1.out:FinalReport: 13 621570.884409 621570.884409 0.000000 0 69925 90 472.349184
outFLCVAR221014/FLCVAR_cap42.txt_500_a_2.out:FinalReport: 12 623883.022735 623883.022735 0.000000 0 54972 86 317.890989
outFLCVAR221014/FLCVAR_cap42.txt_500_a_3.out:FinalReport: 9 626989.835495 626989.835495 0.000000 0 37084 60 210.943988
outFLCVAR221014/FLCVAR_cap42.txt_500_a_4.out:FinalReport: 10 626350.518229 626350.518229 0.000000 0 96962 89 520.681093
outFLCVAR221014/FLCVAR_cap42.txt_500_a_5.out:FinalReport: 12 629871.066478 629871.066478 0.000000 0 43165 69 290.630860
outFLCVAR221014/FLCVAR_cap42.txt_500_a_6.out:FinalReport: 12 620137.478456 620137.478456 0.000000 0 36070 81 213.613456
outFLCVAR221014/FLCVAR_cap42.txt_500_a_7.out:FinalReport: 14 621925.550329 621925.550329 0.000000 0 56985 81 383.402091
outFLCVAR221014/FLCVAR_cap42.txt_500_a_8.out:FinalReport: 14 626663.759199 626663.759199 0.000000 0 65770 88 374.400904
outFLCVAR221014/FLCVAR_cap42.txt_500_a_9.out:FinalReport: 11 628523.506738 628493.476444 0.000048 0 41298 78 376.515862
outFLCVAR221014/FLCVAR_cap42.txt_500_f_10.out:FinalReport: 0 619557.064080 619557.064080 0.000000 0 0 0 108.052364
outFLCVAR221014/FLCVAR_cap42.txt_500_f_1.out:FinalReport: 0 621570.884409 621570.884409 0.000000 0 0 0 92.397676
outFLCVAR221014/FLCVAR_cap42.txt_500_f_2.out:FinalReport: 0 623883.022735 623883.022735 0.000000 0 0 0 110.650578
outFLCVAR221014/FLCVAR_cap42.txt_500_f_3.out:FinalReport: 0 626989.835495 626989.835495 0.000000 0 0 0 102.823622
outFLCVAR221014/FLCVAR_cap42.txt_500_f_4.out:FinalReport: 0 626350.518229 626350.518229 0.000000 0 0 0 105.873805
outFLCVAR221014/FLCVAR_cap42.txt_500_f_5.out:FinalReport: 0 629871.066478 629871.066478 0.000000 0 0 0 109.380718
outFLCVAR221014/FLCVAR_cap42.txt_500_f_6.out:FinalReport: 0 620137.478456 620137.478456 0.000000 0 0 0 106.311624
outFLCVAR221014/FLCVAR_cap42.txt_500_f_7.out:FinalReport: 0 621925.550329 621925.550329 0.000000 0 0 0 105.779104
outFLCVAR221014/FLCVAR_cap42.txt_500_f_8.out:FinalReport: 0 626663.759199 626663.759199 0.000000 0 0 0 100.124733
outFLCVAR221014/FLCVAR_cap42.txt_500_f_9.out:FinalReport: 0 628523.506738 628523.506738 0.000000 0 0 0 100.062146
outFLCVAR221014/FLCVAR_cap42.txt_500_m_10.out:FinalReport: 1 619557.064080 619557.064080 0.000000 0 67447 500 661.975679
outFLCVAR221014/FLCVAR_cap42.txt_500_m_1.out:FinalReport: 1 621570.884409 621570.884409 0.000000 0 297334 500 2954.165734
outFLCVAR221014/FLCVAR_cap42.txt_500_m_2.out:FinalReport: 1 623883.022735 623883.022735 0.000000 0 70351 500 990.239157
outFLCVAR221014/FLCVAR_cap42.txt_500_m_3.out:FinalReport: 1 626989.835495 626989.835495 0.000000 0 83757 500 734.534529
outFLCVAR221014/FLCVAR_cap42.txt_500_m_4.out:FinalReport: 1 626350.518229 626350.518229 0.000000 0 85718 500 806.920748
outFLCVAR221014/FLCVAR_cap42.txt_500_m_5.out:FinalReport: 1 629871.066478 629871.066478 0.000000 0 82965 500 669.431341
outFLCVAR221014/FLCVAR_cap42.txt_500_m_6.out:FinalReport: 1 620137.478456 620137.478456 0.000000 0 65740 500 608.158830
outFLCVAR221014/FLCVAR_cap42.txt_500_m_7.out:FinalReport: 1 621925.550329 621925.550329 0.000000 0 63930 500 529.908598
outFLCVAR221014/FLCVAR_cap42.txt_500_m_8.out:FinalReport: 1 626663.759199 626663.759199 0.000000 0 85893 500 738.800889
outFLCVAR221014/FLCVAR_cap42.txt_500_m_9.out:FinalReport: 1 628523.506738 628523.506738 0.000000 0 79924 500 740.072218
outFLCVAR221014/FLCVAR_cap42.txt_500_s_10.out:FinalReport: 1 619557.064080 619557.064080 0.000000 0 2860 500 1851.039394
outFLCVAR221014/FLCVAR_cap42.txt_500_s_1.out:FinalReport: 1 621570.884409 621570.884409 0.000000 0 3151 500 2045.662799
outFLCVAR221014/FLCVAR_cap42.txt_500_s_2.out:FinalReport: 1 623883.022735 623883.022735 0.000000 0 2695 500 2557.789144
outFLCVAR221014/FLCVAR_cap42.txt_500_s_3.out:FinalReport: 1 626989.835495 626989.835495 0.000000 0 2243 500 1468.954671
outFLCVAR221014/FLCVAR_cap42.txt_500_s_4.out:FinalReport: 1 626350.518229 626350.518229 0.000000 0 2477 500 2372.939571
outFLCVAR221014/FLCVAR_cap42.txt_500_s_5.out:FinalReport: 1 629871.066478 629871.066478 0.000000 0 2846 500 1840.872930
outFLCVAR221014/FLCVAR_cap42.txt_500_s_6.out:FinalReport: 1 620137.478456 620137.478456 0.000000 0 2569 500 1621.745785
outFLCVAR221014/FLCVAR_cap42.txt_500_s_7.out:FinalReport: 1 621925.550329 621925.550329 0.000000 0 2728 500 1748.722821
outFLCVAR221014/FLCVAR_cap42.txt_500_s_8.out:FinalReport: 1 626663.759199 626663.759199 0.000000 0 2768 500 1701.514245
outFLCVAR221014/FLCVAR_cap42.txt_500_s_9.out:FinalReport: 1 628523.506738 628523.506738 0.000000 0 2131 500 1318.599795
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_10.out:FinalReport: 25 620541.746715 620541.746715 0.000000 0 109738 124 734.175378
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_1.out:FinalReport: 21 624350.228608 624350.228608 0.000000 0 132755 163 891.246155
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_2.out:FinalReport: 18 622128.919742 622128.919742 0.000000 0 96825 106 1170.579296
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_3.out:FinalReport: 19 618907.174301 618907.174301 0.000000 0 144003 141 966.811367
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_4.out:FinalReport: 19 628926.771004 628926.771004 0.000000 0 173984 131 1958.261667
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_5.out:FinalReport: 21 623007.768187 623007.768187 0.000000 0 106199 149 723.846526
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_6.out:FinalReport: 25 625835.699625 625835.699625 0.000000 0 115963 124 860.874287
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_7.out:FinalReport: 21 624586.316677 624586.316677 0.000000 0 113532 124 823.177432
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_8.out:FinalReport: 23 622121.500243 622121.500243 0.000000 0 101961 122 804.252854
outFLCVAR221014/FLCVAR_cap43.txt_1000_a_9.out:FinalReport: 27 623102.937160 623102.937160 0.000000 0 144903 160 1151.830053
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_10.out:FinalReport: 0 620541.746715 620541.746715 0.000000 0 0 0 281.624761
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_1.out:FinalReport: 0 624350.228608 624350.228608 0.000000 0 0 0 512.666472
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_2.out:FinalReport: 0 622128.919742 622128.919742 0.000000 0 0 0 265.354367
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_3.out:FinalReport: 0 618907.174301 618907.174301 0.000000 0 0 0 291.784476
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_4.out:FinalReport: 0 628926.771004 628926.771004 0.000000 0 0 0 305.757547
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_5.out:FinalReport: 0 623007.768187 623007.768187 0.000000 0 0 0 325.655617
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_6.out:FinalReport: 0 625835.699625 625835.699625 0.000000 0 0 0 442.599413
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_7.out:FinalReport: 0 624589.895745 624560.396360 0.000047 0 0 0 326.647540
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_8.out:FinalReport: 0 622121.500243 622121.500243 0.000000 0 0 0 329.303399
outFLCVAR221014/FLCVAR_cap43.txt_1000_f_9.out:FinalReport: 0 623103.882830 623098.169577 0.000009 0 0 0 322.270159
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_10.out:FinalReport: 1 620541.746715 620541.746715 0.000000 0 285392 1000 2920.865323
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_1.out:FinalReport: 1 624350.228608 624350.228608 0.000000 0 237387 1000 2166.470934
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_2.out:FinalReport: 1 622128.919742 622071.775696 0.000092 0 236764 1000 2285.468421
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_3.out:FinalReport: 1 618907.174301 618907.174301 0.000000 0 285456 1000 2904.378705
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_4.out:FinalReport: 1 628926.771004 628926.771004 0.000000 0 255506 1000 2279.615767
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_5.out:FinalReport: 1 623007.768187 623007.768187 0.000000 0 214955 1000 3306.071309
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_6.out:FinalReport: 1 625835.699625 625835.699625 0.000000 0 299634 1000 3243.498089
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_7.out:FinalReport: 1 624586.316677 624586.316677 0.000000 0 213807 1000 2192.521795
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_8.out:FinalReport: 1 622121.500243 622121.500243 0.000000 0 226971 1000 2308.945287
outFLCVAR221014/FLCVAR_cap43.txt_1000_m_9.out:FinalReport: 1 623102.937160 623078.974521 0.000038 0 352485 1000 3531.309145
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_10.out:FinalReport: 1 620541.746715 620541.746715 0.000000 0 4841 1000 6538.636120
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_1.out:FinalReport: 1 624350.228608 624350.228608 0.000000 0 4035 1000 5134.059983
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_2.out:FinalReport: 1 622128.919742 622128.919742 0.000000 0 3998 1000 5129.181258
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_3.out:FinalReport: 1 618907.174301 618907.174301 0.000000 0 3995 1000 5100.567817
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_4.out:FinalReport: 1 628926.641247 628926.641247 0.000000 0 2941 1000 3697.510798
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_5.out:FinalReport: 1 623007.691441 623007.691441 0.000000 0 3826 1000 4730.839519
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_6.out:FinalReport: 1 625835.556726 625835.556726 0.000000 0 3464 1000 4478.225822
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_7.out:FinalReport: 1 624586.316677 624586.316677 0.000000 0 4106 1000 5057.662538
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_8.out:FinalReport: 1 622121.500243 622121.500243 0.000000 0 5505 1000 6753.951993
outFLCVAR221014/FLCVAR_cap43.txt_1000_s_9.out:FinalReport: 1 623103.882830 623102.937160 0.000002 0 3482 1000 4246.291299
outFLCVAR221014/FLCVAR_cap43.txt_100_a_10.out:FinalReport: 12 614967.418141 614967.418141 0.000000 0 21534 20 107.436359
outFLCVAR221014/FLCVAR_cap43.txt_100_a_1.out:FinalReport: 11 636955.307287 636955.307287 0.000000 0 17531 19 99.518577
outFLCVAR221014/FLCVAR_cap43.txt_100_a_2.out:FinalReport: 11 643675.941086 643675.941086 0.000000 0 16214 17 87.987381
outFLCVAR221014/FLCVAR_cap43.txt_100_a_3.out:FinalReport: 11 662586.881894 662586.881894 0.000000 0 15947 20 77.997019
outFLCVAR221014/FLCVAR_cap43.txt_100_a_4.out:FinalReport: 10 629928.916437 629928.916437 0.000000 0 13970 17 71.847255
outFLCVAR221014/FLCVAR_cap43.txt_100_a_5.out:FinalReport: 12 592922.945833 592922.945833 0.000000 0 24550 26 126.411580
outFLCVAR221014/FLCVAR_cap43.txt_100_a_6.out:FinalReport: 11 617820.294773 617820.294773 0.000000 0 18786 21 103.378872
outFLCVAR221014/FLCVAR_cap43.txt_100_a_7.out:FinalReport: 12 609321.280520 609321.280520 0.000000 0 18219 23 94.809818
outFLCVAR221014/FLCVAR_cap43.txt_100_a_8.out:FinalReport: 10 617952.856995 617952.856995 0.000000 0 11700 14 62.600651
outFLCVAR221014/FLCVAR_cap43.txt_100_a_9.out:FinalReport: 11 612034.187621 612034.187621 0.000000 0 14483 22 72.241156
outFLCVAR221014/FLCVAR_cap43.txt_100_f_10.out:FinalReport: 0 614967.418141 614967.418141 0.000000 0 0 0 16.508265
outFLCVAR221014/FLCVAR_cap43.txt_100_f_1.out:FinalReport: 0 636955.307287 636955.307287 0.000000 0 0 0 12.718781
outFLCVAR221014/FLCVAR_cap43.txt_100_f_2.out:FinalReport: 0 643675.941086 643675.941086 0.000000 0 0 0 13.386730
outFLCVAR221014/FLCVAR_cap43.txt_100_f_3.out:FinalReport: 0 662586.881894 662586.881894 0.000000 0 0 0 12.797471
outFLCVAR221014/FLCVAR_cap43.txt_100_f_4.out:FinalReport: 0 629928.916437 629928.916437 0.000000 0 0 0 12.338004
outFLCVAR221014/FLCVAR_cap43.txt_100_f_5.out:FinalReport: 0 592922.945833 592922.945833 0.000000 0 0 0 11.984127
outFLCVAR221014/FLCVAR_cap43.txt_100_f_6.out:FinalReport: 0 617820.294773 617820.294773 0.000000 0 0 0 12.160594
outFLCVAR221014/FLCVAR_cap43.txt_100_f_7.out:FinalReport: 0 609321.280520 609321.280520 0.000000 0 0 0 12.492373
outFLCVAR221014/FLCVAR_cap43.txt_100_f_8.out:FinalReport: 0 617952.856995 617952.856995 0.000000 0 0 0 13.344734
outFLCVAR221014/FLCVAR_cap43.txt_100_f_9.out:FinalReport: 0 612034.187621 612034.187621 0.000000 0 0 0 12.922739
outFLCVAR221014/FLCVAR_cap43.txt_100_m_10.out:FinalReport: 1 614967.418141 614967.418141 0.000000 0 32995 100 247.714444
outFLCVAR221014/FLCVAR_cap43.txt_100_m_1.out:FinalReport: 1 636955.307287 636955.307287 0.000000 0 25266 100 194.391327
outFLCVAR221014/FLCVAR_cap43.txt_100_m_2.out:FinalReport: 1 643675.941086 643675.941086 0.000000 0 22414 100 186.708263
outFLCVAR221014/FLCVAR_cap43.txt_100_m_3.out:FinalReport: 1 662586.881894 662586.881894 0.000000 0 19412 100 160.774836
outFLCVAR221014/FLCVAR_cap43.txt_100_m_4.out:FinalReport: 1 629928.916437 629928.916437 0.000000 0 21934 100 173.317067
outFLCVAR221014/FLCVAR_cap43.txt_100_m_5.out:FinalReport: 1 592922.945833 592922.945833 0.000000 0 32528 100 246.308433
outFLCVAR221014/FLCVAR_cap43.txt_100_m_6.out:FinalReport: 1 617820.294773 617820.294773 0.000000 0 29669 100 225.414829
outFLCVAR221014/FLCVAR_cap43.txt_100_m_7.out:FinalReport: 1 609321.280520 609321.280520 0.000000 0 29250 100 226.317314
outFLCVAR221014/FLCVAR_cap43.txt_100_m_8.out:FinalReport: 1 617952.856995 617952.856995 0.000000 0 29057 100 232.332124
outFLCVAR221014/FLCVAR_cap43.txt_100_m_9.out:FinalReport: 1 612034.187621 612034.187621 0.000000 0 29424 100 262.218023
outFLCVAR221014/FLCVAR_cap43.txt_100_s_10.out:FinalReport: 1 614967.418141 614967.418141 0.000000 0 3533 100 485.294966
outFLCVAR221014/FLCVAR_cap43.txt_100_s_1.out:FinalReport: 1 636955.307287 636946.782175 0.000013 0 2922 100 369.181362
outFLCVAR221014/FLCVAR_cap43.txt_100_s_2.out:FinalReport: 1 643675.941086 643675.941086 0.000000 0 3320 100 630.849399
outFLCVAR221014/FLCVAR_cap43.txt_100_s_3.out:FinalReport: 1 662586.881894 662527.553728 0.000090 0 3434 100 658.034030
outFLCVAR221014/FLCVAR_cap43.txt_100_s_4.out:FinalReport: 1 629928.916437 629928.916437 0.000000 0 3050 100 582.658940
outFLCVAR221014/FLCVAR_cap43.txt_100_s_5.out:FinalReport: 1 592922.945833 592922.945833 0.000000 0 3528 100 688.387041
outFLCVAR221014/FLCVAR_cap43.txt_100_s_6.out:FinalReport: 1 617820.294773 617820.294773 0.000000 0 3544 100 691.925381
outFLCVAR221014/FLCVAR_cap43.txt_100_s_7.out:FinalReport: 1 609321.280520 609321.280520 0.000000 0 3598 100 687.522854
outFLCVAR221014/FLCVAR_cap43.txt_100_s_8.out:FinalReport: 1 617952.856995 617952.856995 0.000000 0 3047 100 580.781819
outFLCVAR221014/FLCVAR_cap43.txt_100_s_9.out:FinalReport: 1 612034.187621 612034.187621 0.000000 0 3526 100 485.236732
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_10.out:FinalReport: 26 624945.108583 624945.108583 0.000000 0 236163 244 2344.443480
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_1.out:FinalReport: 26 622179.327150 622179.327150 0.000000 0 231845 267 2141.172293
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_2.out:FinalReport: 30 623478.710635 623478.710635 0.000000 0 186867 226 1804.465534
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_3.out:FinalReport: 27 628898.213378 628898.213378 0.000000 0 334193 296 3406.992465
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_4.out:FinalReport: 29 623462.663546 623423.351639 0.000063 0 246577 243 2101.030520
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_5.out:FinalReport: 29 625607.484336 625564.175010 0.000069 0 244550 242 2394.754228
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_6.out:FinalReport: 31 623055.573046 623055.573046 0.000000 0 244603 305 2229.599492
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_7.out:FinalReport: 22 626091.788187 626091.788187 0.000000 0 245614 244 2820.946373
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_8.out:FinalReport: 26 622718.152259 622718.152259 0.000000 0 190946 251 1838.765955
outFLCVAR221014/FLCVAR_cap43.txt_2500_a_9.out:FinalReport: 28 627212.009653 627212.009653 0.000000 0 211618 273 3174.997448
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_10.out:FinalReport: 0 624945.108583 624944.311270 0.000001 0 0 0 1524.192729
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_1.out:FinalReport: 0 622179.327150 622179.327150 0.000000 0 0 0 1458.780092
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_2.out:FinalReport: 0 623478.710635 623478.710635 0.000000 0 0 0 2438.417392
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_3.out:FinalReport: 0 628898.213378 628898.213378 0.000000 0 0 0 1444.403407
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_4.out:FinalReport: 0 623462.663546 623462.663546 0.000000 0 0 0 1636.234309
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_5.out:FinalReport: 0 625607.484336 625607.484336 0.000000 0 0 0 1520.254901
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_6.out:FinalReport: 0 623055.573046 623055.152936 0.000001 0 0 0 2785.821258
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_7.out:FinalReport: 0 626091.788187 626091.788187 0.000000 0 0 0 1448.929103
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_8.out:FinalReport: 0 622718.152259 622718.152259 0.000000 0 0 0 2559.672920
outFLCVAR221014/FLCVAR_cap43.txt_2500_f_9.out:FinalReport: 0 627212.009653 627212.009653 0.000000 0 0 0 1690.948905
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_10.out:FinalReport: 1 624945.108583 624945.108583 0.000000 0 694248 2500 8238.613849
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_1.out:FinalReport: 1 622179.327150 622179.327150 0.000000 0 647598 2500 7889.260929
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_2.out:FinalReport: 1 623478.710635 623478.710635 0.000000 0 571610 2500 6528.098310
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_3.out:FinalReport: 1 628898.213378 628898.213378 0.000000 0 744201 2500 8364.187011
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_4.out:FinalReport: 1 623462.663546 623462.663546 0.000000 0 670723 2500 6986.654187
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_5.out:FinalReport: 1 625607.484336 625607.484336 0.000000 0 784309 2500 9195.108383
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_6.out:FinalReport: 1 623055.573046 623055.573046 0.000000 0 727439 2500 8361.623391
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_7.out:FinalReport: 1 626091.788187 626091.788187 0.000000 0 658121 2500 7076.731145
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_8.out:FinalReport: 1 622718.152259 622718.152259 0.000000 0 565219 2500 6267.311724
outFLCVAR221014/FLCVAR_cap43.txt_2500_m_9.out:FinalReport: 1 627212.009653 627212.009653 0.000000 0 680293 2500 8053.769088
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_10.out:FinalReport: 1 624990.967480 624944.495160 0.000074 0 3769 2500 12444.820342
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_1.out:FinalReport: 1 622179.327150 622179.327150 0.000000 0 4202 2500 14249.256734
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_2.out:FinalReport: 1 623478.710635 623478.710635 0.000000 0 4834 2500 15671.404593
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_3.out:FinalReport: 1 628898.078697 628898.078697 0.000000 0 3738 2500 11689.230755
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_4.out:FinalReport: 1 623462.663546 623462.663546 0.000000 0 3702 2500 11311.707247
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_5.out:FinalReport: 1 625607.484336 625607.484336 0.000000 0 3866 2500 12586.926240
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_6.out:FinalReport: 1 623055.484935 623055.484935 0.000000 0 6856 2500 22766.788466
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_7.out:FinalReport: 1 626091.733822 626091.733822 0.000000 0 5481 2500 17992.553570
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_8.out:FinalReport: 1 622718.152259 622718.152259 0.000000 0 3788 2500 11983.075470
outFLCVAR221014/FLCVAR_cap43.txt_2500_s_9.out:FinalReport: 1 627211.868981 627211.868981 0.000000 0 4178 2500 13420.232249
outFLCVAR221014/FLCVAR_cap43.txt_500_a_10.out:FinalReport: 20 619430.351486 619430.351486 0.000000 0 58537 62 425.443824
outFLCVAR221014/FLCVAR_cap43.txt_500_a_1.out:FinalReport: 17 621157.253742 621157.253742 0.000000 0 44430 61 271.207524
outFLCVAR221014/FLCVAR_cap43.txt_500_a_2.out:FinalReport: 20 623483.482319 623483.482319 0.000000 0 42273 47 304.171212
outFLCVAR221014/FLCVAR_cap43.txt_500_a_3.out:FinalReport: 21 626533.930655 626533.930655 0.000000 0 45644 64 306.626300
outFLCVAR221014/FLCVAR_cap43.txt_500_a_4.out:FinalReport: 22 626121.672583 626121.672583 0.000000 0 49092 69 330.277205
outFLCVAR221014/FLCVAR_cap43.txt_500_a_5.out:FinalReport: 17 629533.606026 629533.606026 0.000000 0 70193 77 489.661649
outFLCVAR221014/FLCVAR_cap43.txt_500_a_6.out:FinalReport: 20 619747.571343 619747.571343 0.000000 0 62158 64 460.978325
outFLCVAR221014/FLCVAR_cap43.txt_500_a_7.out:FinalReport: 21 621740.678698 621740.678698 0.000000 0 59782 63 404.594982
outFLCVAR221014/FLCVAR_cap43.txt_500_a_8.out:FinalReport: 19 626465.866208 626465.866208 0.000000 0 49349 67 311.607213
outFLCVAR221014/FLCVAR_cap43.txt_500_a_9.out:FinalReport: 20 628215.682275 628215.682275 0.000000 0 61063 69 651.244662
outFLCVAR221014/FLCVAR_cap43.txt_500_f_10.out:FinalReport: 0 619430.351486 619430.351486 0.000000 0 0 0 108.287641
outFLCVAR221014/FLCVAR_cap43.txt_500_f_1.out:FinalReport: 0 621157.253742 621157.253742 0.000000 0 0 0 91.727396
outFLCVAR221014/FLCVAR_cap43.txt_500_f_2.out:FinalReport: 0 623483.482319 623483.482319 0.000000 0 0 0 104.076441
outFLCVAR221014/FLCVAR_cap43.txt_500_f_3.out:FinalReport: 0 626533.930655 626533.930655 0.000000 0 0 0 97.477517
outFLCVAR221014/FLCVAR_cap43.txt_500_f_4.out:FinalReport: 0 626121.672583 626121.672583 0.000000 0 0 0 108.216765
outFLCVAR221014/FLCVAR_cap43.txt_500_f_5.out:FinalReport: 0 629533.606026 629533.606026 0.000000 0 0 0 103.243944
outFLCVAR221014/FLCVAR_cap43.txt_500_f_6.out:FinalReport: 0 619747.571343 619747.571343 0.000000 0 0 0 109.044078
outFLCVAR221014/FLCVAR_cap43.txt_500_f_7.out:FinalReport: 0 621740.678698 621740.678698 0.000000 0 0 0 105.076199
outFLCVAR221014/FLCVAR_cap43.txt_500_f_8.out:FinalReport: 0 626465.866208 626465.866208 0.000000 0 0 0 99.270623
outFLCVAR221014/FLCVAR_cap43.txt_500_f_9.out:FinalReport: 0 628215.682275 628215.682275 0.000000 0 0 0 98.893208
outFLCVAR221014/FLCVAR_cap43.txt_500_m_10.out:FinalReport: 1 619430.351486 619430.351486 0.000000 0 136353 500 1238.410230
outFLCVAR221014/FLCVAR_cap43.txt_500_m_1.out:FinalReport: 1 621157.253742 621157.253742 0.000000 0 106816 500 919.622550
outFLCVAR221014/FLCVAR_cap43.txt_500_m_2.out:FinalReport: 1 623483.482319 623483.482319 0.000000 0 133860 500 1824.534347
outFLCVAR221014/FLCVAR_cap43.txt_500_m_3.out:FinalReport: 1 626533.930655 626533.930655 0.000000 0 199546 500 1892.655194
outFLCVAR221014/FLCVAR_cap43.txt_500_m_4.out:FinalReport: 1 626121.672583 626121.672583 0.000000 0 146771 500 1358.312031
outFLCVAR221014/FLCVAR_cap43.txt_500_m_5.out:FinalReport: 1 629533.606026 629533.606026 0.000000 0 148611 500 1371.605275
outFLCVAR221014/FLCVAR_cap43.txt_500_m_6.out:FinalReport: 1 619747.571343 619747.571343 0.000000 0 126793 500 1116.772545
outFLCVAR221014/FLCVAR_cap43.txt_500_m_7.out:FinalReport: 1 621740.678698 621740.678698 0.000000 0 146530 500 1251.408237
outFLCVAR221014/FLCVAR_cap43.txt_500_m_8.out:FinalReport: 1 626465.866208 626462.250756 0.000006 0 136036 500 1241.345120
outFLCVAR221014/FLCVAR_cap43.txt_500_m_9.out:FinalReport: 1 628215.682275 628215.682275 0.000000 0 124151 500 1146.849739
outFLCVAR221014/FLCVAR_cap43.txt_500_s_10.out:FinalReport: 1 619430.351486 619430.351486 0.000000 0 4317 500 2437.692872
outFLCVAR221014/FLCVAR_cap43.txt_500_s_1.out:FinalReport: 1 621157.253742 621157.253742 0.000000 0 3581 500 2337.449529
outFLCVAR221014/FLCVAR_cap43.txt_500_s_2.out:FinalReport: 1 623483.482319 623483.482319 0.000000 0 3267 500 1956.432045
outFLCVAR221014/FLCVAR_cap43.txt_500_s_3.out:FinalReport: 1 626533.930655 626533.930655 0.000000 0 3598 500 2400.895283
outFLCVAR221014/FLCVAR_cap43.txt_500_s_4.out:FinalReport: 1 626121.672583 626121.672583 0.000000 0 3330 500 2216.345974
outFLCVAR221014/FLCVAR_cap43.txt_500_s_5.out:FinalReport: 1 629533.606026 629533.606026 0.000000 0 4631 500 2870.299166
outFLCVAR221014/FLCVAR_cap43.txt_500_s_6.out:FinalReport: 1 619747.571343 619747.571343 0.000000 0 4759 500 4678.591700
outFLCVAR221014/FLCVAR_cap43.txt_500_s_7.out:FinalReport: 1 621740.678698 621740.678698 0.000000 0 4964 500 3070.702119
outFLCVAR221014/FLCVAR_cap43.txt_500_s_8.out:FinalReport: 1 626465.866208 626445.537775 0.000032 0 3430 500 2165.909402
outFLCVAR221014/FLCVAR_cap43.txt_500_s_9.out:FinalReport: 1 628215.682275 628215.682275 0.000000 0 3377 500 2078.828515
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_10.out:FinalReport: 21 620541.746715 620541.746715 0.000000 0 109351 118 983.129935
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_1.out:FinalReport: 34 624350.228608 624350.228608 0.000000 0 179509 146 1659.203023
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_2.out:FinalReport: 19 622128.919742 622128.919742 0.000000 0 143278 143 1827.867339
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_3.out:FinalReport: 19 618907.174301 618907.174301 0.000000 0 259497 153 1939.426824
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_4.out:FinalReport: 23 628926.771004 628926.771004 0.000000 0 121441 115 1055.579044
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_5.out:FinalReport: 25 623007.768187 623007.768187 0.000000 0 171990 110 1612.040440
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_6.out:FinalReport: 22 625835.699625 625835.699625 0.000000 0 108375 105 842.216978
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_7.out:FinalReport: 31 624586.316677 624586.316677 0.000000 0 208039 154 1645.199400
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_8.out:FinalReport: 24 622121.500243 622121.500243 0.000000 0 181069 149 1384.409873
outFLCVAR221014/FLCVAR_cap44.txt_1000_a_9.out:FinalReport: 20 623102.937160 623102.937160 0.000000 0 204847 139 1405.993328
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_10.out:FinalReport: 0 620541.746715 620541.746715 0.000000 0 0 0 287.229052
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_1.out:FinalReport: 0 624350.228608 624350.020195 0.000000 0 0 0 289.817049
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_2.out:FinalReport: 0 622128.919742 622128.919742 0.000000 0 0 0 267.936260
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_3.out:FinalReport: 0 618907.174301 618907.174301 0.000000 0 0 0 280.417296
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_4.out:FinalReport: 0 628926.771004 628926.771004 0.000000 0 0 0 272.941738
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_5.out:FinalReport: 0 623007.768187 623007.768187 0.000000 0 0 0 292.842222
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_6.out:FinalReport: 0 625835.699625 625835.699625 0.000000 0 0 0 302.438125
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_7.out:FinalReport: 0 624589.895745 624560.396360 0.000047 0 0 0 315.701610
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_8.out:FinalReport: 0 622121.500243 622121.500243 0.000000 0 0 0 286.229560
outFLCVAR221014/FLCVAR_cap44.txt_1000_f_9.out:FinalReport: 0 623103.882830 623098.169577 0.000009 0 0 0 298.617566
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_10.out:FinalReport: 1 620541.746715 620541.746715 0.000000 0 341662 1000 5021.454955
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_1.out:FinalReport: 1 624350.228608 624350.228608 0.000000 0 391255 1000 3585.040269
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_2.out:FinalReport: 1 622128.919742 622128.919742 0.000000 0 318733 1000 2850.533286
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_3.out:FinalReport: 1 618907.174301 618907.174301 0.000000 0 314788 1000 2968.815013
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_4.out:FinalReport: 1 628926.771004 628926.771004 0.000000 0 417770 1000 4073.800417
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_5.out:FinalReport: 1 623007.768187 623007.768187 0.000000 0 318088 1000 2789.150931
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_6.out:FinalReport: 1 625835.699625 625835.699625 0.000000 0 428866 1000 4404.549219
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_7.out:FinalReport: 1 624586.316677 624586.316677 0.000000 0 373764 1000 3558.555911
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_8.out:FinalReport: 1 622121.500243 622121.500243 0.000000 0 437826 1000 4705.476105
outFLCVAR221014/FLCVAR_cap44.txt_1000_m_9.out:FinalReport: 1 623102.937160 623102.937160 0.000000 0 466196 1000 6722.073513
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_10.out:FinalReport: 1 620541.746715 620541.746715 0.000000 0 5370 1000 7113.816466
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_1.out:FinalReport: 1 624350.228608 624350.228608 0.000000 0 5100 1000 6319.739869
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_2.out:FinalReport: 1 622128.919742 622128.919742 0.000000 0 4452 1000 8483.932557
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_3.out:FinalReport: 1 618907.174301 618907.174301 0.000000 0 5197 1000 6604.017201
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_4.out:FinalReport: 1 628926.641247 628926.641247 0.000000 0 5030 1000 6301.597984
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_5.out:FinalReport: 1 623007.691441 623007.691441 0.000000 0 5539 1000 8061.926560
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_6.out:FinalReport: 1 625835.699625 625835.699625 0.000000 0 6654 1000 8682.973783
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_7.out:FinalReport: 1 624586.316677 624586.316677 0.000000 0 3542 1000 6551.412224
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_8.out:FinalReport: 1 622121.500243 622121.500243 0.000000 0 5750 1000 11467.236596
outFLCVAR221014/FLCVAR_cap44.txt_1000_s_9.out:FinalReport: 1 623102.937160 623102.937160 0.000000 0 8495 1000 11532.386127
outFLCVAR221014/FLCVAR_cap44.txt_100_a_10.out:FinalReport: 8 614967.418141 614967.418141 0.000000 0 16879 18 90.060237
outFLCVAR221014/FLCVAR_cap44.txt_100_a_1.out:FinalReport: 10 636955.307287 636955.307287 0.000000 0 19555 21 113.085983
outFLCVAR221014/FLCVAR_cap44.txt_100_a_2.out:FinalReport: 9 643675.941086 643675.941086 0.000000 0 22778 21 130.903265
outFLCVAR221014/FLCVAR_cap44.txt_100_a_3.out:FinalReport: 7 662586.881894 662586.881894 0.000000 0 15185 17 84.330045
outFLCVAR221014/FLCVAR_cap44.txt_100_a_4.out:FinalReport: 8 629928.916437 629928.916437 0.000000 0 19349 18 108.173564
outFLCVAR221014/FLCVAR_cap44.txt_100_a_5.out:FinalReport: 10 592922.945833 592922.945833 0.000000 0 17906 20 107.578786
outFLCVAR221014/FLCVAR_cap44.txt_100_a_6.out:FinalReport: 10 617820.294773 617820.294773 0.000000 0 20832 22 115.465901
outFLCVAR221014/FLCVAR_cap44.txt_100_a_7.out:FinalReport: 10 609321.280520 609321.280520 0.000000 0 19112 23 99.797710
outFLCVAR221014/FLCVAR_cap44.txt_100_a_8.out:FinalReport: 9 617952.856995 617952.856995 0.000000 0 39247 15 230.926279
outFLCVAR221014/FLCVAR_cap44.txt_100_a_9.out:FinalReport: 12 612034.187621 612034.187621 0.000000 0 23772 21 125.095400
outFLCVAR221014/FLCVAR_cap44.txt_100_f_10.out:FinalReport: 0 614967.418141 614967.418141 0.000000 0 0 0 16.764642
outFLCVAR221014/FLCVAR_cap44.txt_100_f_1.out:FinalReport: 0 636955.307287 636955.307287 0.000000 0 0 0 13.286243
outFLCVAR221014/FLCVAR_cap44.txt_100_f_2.out:FinalReport: 0 643675.941086 643675.726341 0.000000 0 0 0 14.629937
outFLCVAR221014/FLCVAR_cap44.txt_100_f_3.out:FinalReport: 0 662586.881894 662586.881894 0.000000 0 0 0 14.037372
outFLCVAR221014/FLCVAR_cap44.txt_100_f_4.out:FinalReport: 0 629928.916437 629928.916437 0.000000 0 0 0 12.848516
outFLCVAR221014/FLCVAR_cap44.txt_100_f_5.out:FinalReport: 0 592922.945833 592922.945833 0.000000 0 0 0 13.205933
outFLCVAR221014/FLCVAR_cap44.txt_100_f_6.out:FinalReport: 0 617820.294773 617820.294773 0.000000 0 0 0 13.136122
outFLCVAR221014/FLCVAR_cap44.txt_100_f_7.out:FinalReport: 0 609321.280520 609321.280520 0.000000 0 0 0 13.256638
outFLCVAR221014/FLCVAR_cap44.txt_100_f_8.out:FinalReport: 0 617952.856995 617952.856995 0.000000 0 0 0 13.488446
outFLCVAR221014/FLCVAR_cap44.txt_100_f_9.out:FinalReport: 0 612034.187621 612021.756523 0.000020 0 0 0 12.907432
outFLCVAR221014/FLCVAR_cap44.txt_100_m_10.out:FinalReport: 1 614967.418141 614967.418141 0.000000 0 44375 100 294.482152
outFLCVAR221014/FLCVAR_cap44.txt_100_m_1.out:FinalReport: 1 636955.307287 636955.307287 0.000000 0 32206 100 251.205286
outFLCVAR221014/FLCVAR_cap44.txt_100_m_2.out:FinalReport: 1 643675.941086 643675.941086 0.000000 0 46881 100 470.755078
outFLCVAR221014/FLCVAR_cap44.txt_100_m_3.out:FinalReport: 1 662586.881894 662586.881894 0.000000 0 32990 100 270.541410
outFLCVAR221014/FLCVAR_cap44.txt_100_m_4.out:FinalReport: 1 629928.916437 629928.916437 0.000000 0 33256 100 246.406052
outFLCVAR221014/FLCVAR_cap44.txt_100_m_5.out:FinalReport: 1 592922.945833 592922.945833 0.000000 0 41459 100 298.260916
outFLCVAR221014/FLCVAR_cap44.txt_100_m_6.out:FinalReport: 1 617820.294773 617820.294773 0.000000 0 50857 100 409.250948
outFLCVAR221014/FLCVAR_cap44.txt_100_m_7.out:FinalReport: 1 609321.280520 609321.280520 0.000000 0 41236 100 304.795190
outFLCVAR221014/FLCVAR_cap44.txt_100_m_8.out:FinalReport: 1 617952.856995 617952.856995 0.000000 0 48839 100 346.642616
outFLCVAR221014/FLCVAR_cap44.txt_100_m_9.out:FinalReport: 1 612034.187621 612034.187621 0.000000 0 43110 100 305.648666
outFLCVAR221014/FLCVAR_cap44.txt_100_s_10.out:FinalReport: 1 614967.418141 614967.418141 0.000000 0 4806 100 641.795496
outFLCVAR221014/FLCVAR_cap44.txt_100_s_1.out:FinalReport: 1 636955.307287 636946.782175 0.000013 0 4480 100 574.680004
outFLCVAR221014/FLCVAR_cap44.txt_100_s_2.out:FinalReport: 1 643675.941086 643675.941086 0.000000 0 4751 100 672.706869
outFLCVAR221014/FLCVAR_cap44.txt_100_s_3.out:FinalReport: 1 662586.881894 662586.881894 0.000000 0 3041 100 360.674204
outFLCVAR221014/FLCVAR_cap44.txt_100_s_4.out:FinalReport: 1 629928.916437 629928.916437 0.000000 0 3299 100 437.355103
outFLCVAR221014/FLCVAR_cap44.txt_100_s_5.out:FinalReport: 1 592922.945833 592922.945833 0.000000 0 5831 100 813.579597
outFLCVAR221014/FLCVAR_cap44.txt_100_s_6.out:FinalReport: 1 617820.294773 617820.294773 0.000000 0 4678 100 768.184201
outFLCVAR221014/FLCVAR_cap44.txt_100_s_7.out:FinalReport: 1 609321.280520 609321.280520 0.000000 0 3391 100 409.283664
outFLCVAR221014/FLCVAR_cap44.txt_100_s_8.out:FinalReport: 1 617952.856995 617952.856995 0.000000 0 4542 100 643.956992
outFLCVAR221014/FLCVAR_cap44.txt_100_s_9.out:FinalReport: 1 612034.187621 611976.838456 0.000094 0 4288 100 630.648589
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_10.out:FinalReport: 32 624945.108583 624945.108583 0.000000 0 299495 246 2796.198959
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_1.out:FinalReport: 22 622179.327150 622179.327150 0.000000 0 286136 277 2492.833912
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_2.out:FinalReport: 36 623478.710635 623478.710635 0.000000 0 283225 310 3015.830871
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_3.out:FinalReport: 34 628898.213378 628898.213378 0.000000 0 256701 265 2654.800215
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_4.out:FinalReport: 26 623462.663546 623462.663546 0.000000 0 197146 219 1669.968826
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_5.out:FinalReport: 23 625607.484336 625607.484336 0.000000 0 196448 197 2997.698306
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_6.out:FinalReport: 34 623055.573046 623055.573046 0.000000 0 410065 289 3906.934101
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_7.out:FinalReport: 25 626091.788187 626091.788187 0.000000 0 227082 217 2342.383260
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_8.out:FinalReport: 26 622718.152259 622718.152259 0.000000 0 212349 197 3363.681804
outFLCVAR221014/FLCVAR_cap44.txt_2500_a_9.out:FinalReport: 31 627212.009653 627212.009653 0.000000 0 246402 253 2372.124581
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_10.out:FinalReport: 0 624945.108583 624944.311270 0.000001 0 0 0 1501.826738
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_1.out:FinalReport: 0 622179.327150 622179.327150 0.000000 0 0 0 1300.580508
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_2.out:FinalReport: 0 623478.710635 623478.710635 0.000000 0 0 0 1549.090417
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_3.out:FinalReport: 0 628898.213378 628898.213378 0.000000 0 0 0 1323.536360
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_4.out:FinalReport: 0 623462.663546 623462.663546 0.000000 0 0 0 1433.933115
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_5.out:FinalReport: 0 625607.484336 625607.478648 0.000000 0 0 0 1426.199498
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_6.out:FinalReport: 0 623055.573046 623055.573046 0.000000 0 0 0 1411.189315
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_7.out:FinalReport: 0 626091.788187 626091.788187 0.000000 0 0 0 1351.538093
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_8.out:FinalReport: 0 622718.152259 622718.152259 0.000000 0 0 0 1407.505177
outFLCVAR221014/FLCVAR_cap44.txt_2500_f_9.out:FinalReport: 0 627212.009653 627212.009653 0.000000 0 0 0 1450.409878
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_10.out:FinalReport: 1 624945.108583 624945.108583 0.000000 0 1049289 2500 11352.829228
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_1.out:FinalReport: 1 622179.327150 622179.327150 0.000000 0 730054 2500 8727.424796
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_2.out:FinalReport: 1 623478.710635 623478.710635 0.000000 0 994819 2500 19120.576297
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_3.out:FinalReport: 1 628898.213378 628898.213378 0.000000 0 833266 2500 9333.923134
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_4.out:FinalReport: 1 623462.663546 623462.663546 0.000000 0 1026272 2500 17353.413726
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_5.out:FinalReport: 1 625607.484336 625607.484336 0.000000 0 805931 2500 13457.268320
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_6.out:FinalReport: 1 623055.573046 623055.573046 0.000000 0 861807 2500 10000.055777
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_7.out:FinalReport: 1 626091.788187 626091.788187 0.000000 0 829538 2500 10092.372493
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_8.out:FinalReport: 1 622718.152259 622718.152259 0.000000 0 908970 2500 11420.563475
outFLCVAR221014/FLCVAR_cap44.txt_2500_m_9.out:FinalReport: 1 627212.009653 627212.009653 0.000000 0 1114531 2500 13646.204387
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_10.out:FinalReport: 1 624945.009958 624945.009958 0.000000 0 4897 2500 15974.601254
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_1.out:FinalReport: 1 622179.327150 622179.327150 0.000000 0 4581 2500 21994.819620
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_2.out:FinalReport: 1 623478.710635 623478.710635 0.000000 0 4384 2500 12866.980406
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_3.out:FinalReport: 1 628898.078697 628898.078697 0.000000 0 7444 2500 26871.868658
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_4.out:FinalReport: 1 623462.663546 623462.663546 0.000000 0 4962 2500 15942.941716
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_5.out:FinalReport: 1 625607.484336 625607.484336 0.000000 0 4820 2500 22872.476094
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_6.out:FinalReport: 1 623055.484935 623055.484935 0.000000 0 6072 2500 19273.466767
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_7.out:FinalReport: 1 626091.733822 626091.733822 0.000000 0 4652 2500 12630.261180
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_8.out:FinalReport: 1 622718.152259 622718.152259 0.000000 0 6096 2500 22373.497105
outFLCVAR221014/FLCVAR_cap44.txt_2500_s_9.out:FinalReport: 1 627211.868981 627211.868981 0.000000 0 5121 2500 16091.661378
outFLCVAR221014/FLCVAR_cap44.txt_500_a_10.out:FinalReport: 17 619430.351486 619430.351486 0.000000 0 54495 74 361.841046
outFLCVAR221014/FLCVAR_cap44.txt_500_a_1.out:FinalReport: 18 621157.253742 621157.253742 0.000000 0 74233 69 500.462095
outFLCVAR221014/FLCVAR_cap44.txt_500_a_2.out:FinalReport: 19 623483.482319 623483.482319 0.000000 0 60363 67 407.182624
outFLCVAR221014/FLCVAR_cap44.txt_500_a_3.out:FinalReport: 19 626533.930655 626533.930655 0.000000 0 66390 71 719.976972
outFLCVAR221014/FLCVAR_cap44.txt_500_a_4.out:FinalReport: 18 626121.672583 626121.672583 0.000000 0 116151 74 707.360237
outFLCVAR221014/FLCVAR_cap44.txt_500_a_5.out:FinalReport: 13 629533.606026 629533.606026 0.000000 0 69843 72 446.480085
outFLCVAR221014/FLCVAR_cap44.txt_500_a_6.out:FinalReport: 22 619747.571343 619695.670883 0.000084 0 74176 75 548.083869
outFLCVAR221014/FLCVAR_cap44.txt_500_a_7.out:FinalReport: 17 621740.678698 621740.678698 0.000000 0 87810 77 614.721903
outFLCVAR221014/FLCVAR_cap44.txt_500_a_8.out:FinalReport: 18 626465.866208 626465.866208 0.000000 0 85575 87 559.320801
outFLCVAR221014/FLCVAR_cap44.txt_500_a_9.out:FinalReport: 16 628215.682275 628215.682275 0.000000 0 53221 63 359.674376
outFLCVAR221014/FLCVAR_cap44.txt_500_f_10.out:FinalReport: 0 619430.351486 619430.351486 0.000000 0 0 0 107.694146
outFLCVAR221014/FLCVAR_cap44.txt_500_f_1.out:FinalReport: 0 621157.253742 621157.253742 0.000000 0 0 0 133.454963
outFLCVAR221014/FLCVAR_cap44.txt_500_f_2.out:FinalReport: 0 623483.482319 623483.482319 0.000000 0 0 0 101.553499
outFLCVAR221014/FLCVAR_cap44.txt_500_f_3.out:FinalReport: 0 626533.930655 626533.930655 0.000000 0 0 0 99.179589
outFLCVAR221014/FLCVAR_cap44.txt_500_f_4.out:FinalReport: 0 626121.672583 626121.672583 0.000000 0 0 0 113.586680
outFLCVAR221014/FLCVAR_cap44.txt_500_f_5.out:FinalReport: 0 629533.606026 629533.606026 0.000000 0 0 0 109.398671
outFLCVAR221014/FLCVAR_cap44.txt_500_f_6.out:FinalReport: 0 619747.571343 619747.571343 0.000000 0 0 0 98.536925
outFLCVAR221014/FLCVAR_cap44.txt_500_f_7.out:FinalReport: 0 621740.678698 621740.678698 0.000000 0 0 0 105.890359
outFLCVAR221014/FLCVAR_cap44.txt_500_f_8.out:FinalReport: 0 626465.866208 626465.866208 0.000000 0 0 0 103.974119
outFLCVAR221014/FLCVAR_cap44.txt_500_f_9.out:FinalReport: 0 628215.682275 628215.682275 0.000000 0 0 0 102.234248
outFLCVAR221014/FLCVAR_cap44.txt_500_m_10.out:FinalReport: 1 619430.351486 619404.052770 0.000042 0 374309 500 3812.114470
outFLCVAR221014/FLCVAR_cap44.txt_500_m_1.out:FinalReport: 1 621157.253742 621157.253742 0.000000 0 322124 500 3147.092950
outFLCVAR221014/FLCVAR_cap44.txt_500_m_2.out:FinalReport: 1 623483.482319 623483.482319 0.000000 0 178415 500 1533.895888
outFLCVAR221014/FLCVAR_cap44.txt_500_m_3.out:FinalReport: 1 626533.930655 626533.930655 0.000000 0 223360 500 1915.102415
outFLCVAR221014/FLCVAR_cap44.txt_500_m_4.out:FinalReport: 1 626121.672583 626121.672583 0.000000 0 157724 500 1294.683181
outFLCVAR221014/FLCVAR_cap44.txt_500_m_5.out:FinalReport: 1 629533.606026 629533.606026 0.000000 0 165664 500 1398.211270
outFLCVAR221014/FLCVAR_cap44.txt_500_m_6.out:FinalReport: 1 619747.571343 619747.571343 0.000000 0 163474 500 1391.630275
outFLCVAR221014/FLCVAR_cap44.txt_500_m_7.out:FinalReport: 1 621740.678698 621740.678698 0.000000 0 195836 500 1468.328608
outFLCVAR221014/FLCVAR_cap44.txt_500_m_8.out:FinalReport: 1 626465.866208 626465.866208 0.000000 0 164442 500 1385.077839
outFLCVAR221014/FLCVAR_cap44.txt_500_m_9.out:FinalReport: 1 628215.682275 628215.682275 0.000000 0 271921 500 2249.627770
outFLCVAR221014/FLCVAR_cap44.txt_500_s_10.out:FinalReport: 1 619430.351486 619430.351486 0.000000 0 8443 500 5780.288164
outFLCVAR221014/FLCVAR_cap44.txt_500_s_1.out:FinalReport: 1 621157.253742 621157.253742 0.000000 0 5836 500 3854.394749
outFLCVAR221014/FLCVAR_cap44.txt_500_s_2.out:FinalReport: 1 623483.482319 623483.482319 0.000000 0 3415 500 2119.924615
outFLCVAR221014/FLCVAR_cap44.txt_500_s_3.out:FinalReport: 1 626533.930655 626533.930655 0.000000 0 4073 500 2798.136382
outFLCVAR221014/FLCVAR_cap44.txt_500_s_4.out:FinalReport: 1 626121.672583 626121.672583 0.000000 0 5406 500 3391.030541
outFLCVAR221014/FLCVAR_cap44.txt_500_s_5.out:FinalReport: 1 629533.606026 629533.606026 0.000000 0 3727 500 2319.286381
outFLCVAR221014/FLCVAR_cap44.txt_500_s_6.out:FinalReport: 1 619747.571343 619747.571343 0.000000 0 4206 500 2312.059278
outFLCVAR221014/FLCVAR_cap44.txt_500_s_7.out:FinalReport: 1 621740.678698 621740.678698 0.000000 0 4193 500 2815.778925
outFLCVAR221014/FLCVAR_cap44.txt_500_s_8.out:FinalReport: 1 626465.866208 626465.866208 0.000000 0 4711 500 3215.648878
outFLCVAR221014/FLCVAR_cap44.txt_500_s_9.out:FinalReport: 1 628215.682275 628215.682275 0.000000 0 4691 500 3101.261794
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_10.out:FinalReport: 16 711336.507978 711336.507978 0.000000 0 86475 168 645.788576
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_1.out:FinalReport: 21 715127.035874 715127.035874 0.000000 0 65642 185 462.639130
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_2.out:FinalReport: 13 712984.371591 712984.371591 0.000000 0 51056 162 318.605101
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_3.out:FinalReport: 15 710996.844122 710996.844122 0.000000 0 49988 165 317.920084
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_4.out:FinalReport: 13 720432.394741 720432.394741 0.000000 0 62044 176 397.872413
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_5.out:FinalReport: 16 713851.705417 713851.705417 0.000000 0 64697 174 653.666325
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_6.out:FinalReport: 14 717150.724792 717150.724792 0.000000 0 55206 179 369.678248
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_7.out:FinalReport: 14 716457.967995 716457.967995 0.000000 0 51713 169 345.559030
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_8.out:FinalReport: 12 713171.146270 713171.146270 0.000000 0 62335 163 406.586183
outFLCVAR221014/FLCVAR_cap61.txt_1000_a_9.out:FinalReport: 18 714194.340123 714194.340123 0.000000 0 85452 169 567.542175
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_10.out:FinalReport: 0 711336.507978 711336.507978 0.000000 0 0 0 532.186943
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_1.out:FinalReport: 0 715127.035874 715127.035874 0.000000 0 0 0 592.046793
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_2.out:FinalReport: 0 712984.371591 712984.371591 0.000000 0 0 0 534.975296
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_3.out:FinalReport: 0 710996.844122 710926.902239 0.000098 0 0 0 540.650417
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_4.out:FinalReport: 0 720432.394741 720432.394741 0.000000 0 0 0 577.398717
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_5.out:FinalReport: 0 713851.705417 713851.705417 0.000000 0 0 0 545.559336
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_6.out:FinalReport: 0 717150.724792 717088.978365 0.000086 0 0 0 542.701373
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_7.out:FinalReport: 0 716457.967995 716457.967995 0.000000 0 0 0 529.605131
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_8.out:FinalReport: 0 713171.146270 713122.452222 0.000068 0 0 0 610.806449
outFLCVAR221014/FLCVAR_cap61.txt_1000_f_9.out:FinalReport: 0 714194.340123 714144.111317 0.000070 0 0 0 570.361810
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_10.out:FinalReport: 1 711336.507978 711336.507978 0.000000 0 103095 1000 1122.868583
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_1.out:FinalReport: 1 715127.035874 715127.035874 0.000000 0 100902 1000 1072.580932
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_2.out:FinalReport: 1 712984.371591 712984.371591 0.000000 0 90476 1000 963.139792
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_3.out:FinalReport: 1 710996.844122 710996.844122 0.000000 0 99433 1000 1155.874599
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_4.out:FinalReport: 1 720432.394741 720432.394741 0.000000 0 91700 1000 984.000026
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_5.out:FinalReport: 1 713851.705417 713787.247846 0.000090 0 98144 1000 992.994631
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_6.out:FinalReport: 1 717150.724792 717150.724792 0.000000 0 86491 1000 897.378976
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_7.out:FinalReport: 1 716457.967995 716457.967995 0.000000 0 93707 1000 976.814776
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_8.out:FinalReport: 1 713171.146270 713171.146270 0.000000 0 88955 1000 1054.354778
outFLCVAR221014/FLCVAR_cap61.txt_1000_m_9.out:FinalReport: 1 714194.340123 714194.340123 0.000000 0 118738 1000 1278.326320
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_10.out:FinalReport: 1 711336.507978 711336.507978 0.000000 0 2122 1000 3277.808105
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_1.out:FinalReport: 1 715126.922015 715126.922015 0.000000 0 1501 1000 2272.984256
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_2.out:FinalReport: 1 712984.371591 712984.371591 0.000000 0 1999 1000 2939.812961
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_3.out:FinalReport: 1 710996.844122 710996.844122 0.000000 0 2184 1000 3388.015394
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_4.out:FinalReport: 1 720432.394741 720432.394741 0.000000 0 1899 1000 2819.945112
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_5.out:FinalReport: 1 713851.705417 713851.705417 0.000000 0 1957 1000 2963.637141
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_6.out:FinalReport: 1 717150.724792 717150.724792 0.000000 0 1867 1000 2900.009423
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_7.out:FinalReport: 1 716457.967995 716457.967995 0.000000 0 2017 1000 2964.737816
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_8.out:FinalReport: 1 713171.146270 713171.146270 0.000000 0 2127 1000 3350.672920
outFLCVAR221014/FLCVAR_cap61.txt_1000_s_9.out:FinalReport: 1 714194.340123 714194.340123 0.000000 0 2059 1000 3393.880424
outFLCVAR221014/FLCVAR_cap61.txt_100_a_10.out:FinalReport: 4 704255.628829 704255.628829 0.000000 0 4197 21 20.252751
outFLCVAR221014/FLCVAR_cap61.txt_100_a_1.out:FinalReport: 7 726506.944115 726506.944115 0.000000 0 6951 28 40.573127
outFLCVAR221014/FLCVAR_cap61.txt_100_a_2.out:FinalReport: 7 735108.774703 735108.774703 0.000000 0 5783 26 30.712178
outFLCVAR221014/FLCVAR_cap61.txt_100_a_3.out:FinalReport: 7 754998.013902 754998.013902 0.000000 0 3393 19 17.631681
outFLCVAR221014/FLCVAR_cap61.txt_100_a_4.out:FinalReport: 6 723577.310068 723577.310068 0.000000 0 5469 21 29.705916
outFLCVAR221014/FLCVAR_cap61.txt_100_a_5.out:FinalReport: 7 682178.949203 682178.949203 0.000000 0 7968 26 40.341440
outFLCVAR221014/FLCVAR_cap61.txt_100_a_6.out:FinalReport: 7 708230.725379 708230.725379 0.000000 0 7524 28 42.269717
outFLCVAR221014/FLCVAR_cap61.txt_100_a_7.out:FinalReport: 7 702216.889363 702216.889363 0.000000 0 6321 28 35.210594
outFLCVAR221014/FLCVAR_cap61.txt_100_a_8.out:FinalReport: 7 709834.366214 709834.366214 0.000000 0 5172 18 28.245825
outFLCVAR221014/FLCVAR_cap61.txt_100_a_9.out:FinalReport: 8 702120.484303 702120.484303 0.000000 0 6109 24 32.330454
outFLCVAR221014/FLCVAR_cap61.txt_100_f_10.out:FinalReport: 0 704255.628829 704255.628829 0.000000 0 0 0 14.648982
outFLCVAR221014/FLCVAR_cap61.txt_100_f_1.out:FinalReport: 0 726506.944115 726506.944115 0.000000 0 0 0 15.787709
outFLCVAR221014/FLCVAR_cap61.txt_100_f_2.out:FinalReport: 0 735108.774703 735047.983529 0.000083 0 0 0 17.188701
outFLCVAR221014/FLCVAR_cap61.txt_100_f_3.out:FinalReport: 0 754998.013902 754998.013902 0.000000 0 0 0 15.053439
outFLCVAR221014/FLCVAR_cap61.txt_100_f_4.out:FinalReport: 0 723577.310068 723577.310068 0.000000 0 0 0 14.037750
outFLCVAR221014/FLCVAR_cap61.txt_100_f_5.out:FinalReport: 0 682178.949203 682178.949203 0.000000 0 0 0 14.448227
outFLCVAR221014/FLCVAR_cap61.txt_100_f_6.out:FinalReport: 0 708230.725379 708201.531906 0.000041 0 0 0 14.340215
outFLCVAR221014/FLCVAR_cap61.txt_100_f_7.out:FinalReport: 0 702216.889363 702216.889363 0.000000 0 0 0 16.204068
outFLCVAR221014/FLCVAR_cap61.txt_100_f_8.out:FinalReport: 0 709834.366214 709834.366214 0.000000 0 0 0 14.057725
outFLCVAR221014/FLCVAR_cap61.txt_100_f_9.out:FinalReport: 0 702120.484303 702120.484303 0.000000 0 0 0 16.761849
outFLCVAR221014/FLCVAR_cap61.txt_100_m_10.out:FinalReport: 1 704255.628829 704255.628829 0.000000 0 10364 100 75.993269
outFLCVAR221014/FLCVAR_cap61.txt_100_m_1.out:FinalReport: 1 726506.944115 726506.944115 0.000000 0 9114 100 74.772760
outFLCVAR221014/FLCVAR_cap61.txt_100_m_2.out:FinalReport: 1 735108.774703 735108.774703 0.000000 0 9944 100 84.058985
outFLCVAR221014/FLCVAR_cap61.txt_100_m_3.out:FinalReport: 1 754998.013902 754998.013902 0.000000 0 9591 100 93.849022
outFLCVAR221014/FLCVAR_cap61.txt_100_m_4.out:FinalReport: 1 723577.310068 723577.310068 0.000000 0 7397 100 108.627921
outFLCVAR221014/FLCVAR_cap61.txt_100_m_5.out:FinalReport: 1 682178.949203 682178.949203 0.000000 0 11527 100 91.787677
outFLCVAR221014/FLCVAR_cap61.txt_100_m_6.out:FinalReport: 1 708230.725379 708230.725379 0.000000 0 13220 100 121.295672
outFLCVAR221014/FLCVAR_cap61.txt_100_m_7.out:FinalReport: 1 702216.889363 702216.889363 0.000000 0 10186 100 82.235450
outFLCVAR221014/FLCVAR_cap61.txt_100_m_8.out:FinalReport: 1 709834.366214 709834.366214 0.000000 0 9179 100 81.675176
outFLCVAR221014/FLCVAR_cap61.txt_100_m_9.out:FinalReport: 1 702120.484303 702120.484303 0.000000 0 8580 100 76.572942
outFLCVAR221014/FLCVAR_cap61.txt_100_s_10.out:FinalReport: 1 704255.628829 704255.628829 0.000000 0 1857 100 285.103984
outFLCVAR221014/FLCVAR_cap61.txt_100_s_1.out:FinalReport: 1 726506.944115 726506.944115 0.000000 0 2045 100 320.355455
outFLCVAR221014/FLCVAR_cap61.txt_100_s_2.out:FinalReport: 1 735108.774703 735108.774703 0.000000 0 1897 100 308.200570
outFLCVAR221014/FLCVAR_cap61.txt_100_s_3.out:FinalReport: 1 754998.013902 754998.013902 0.000000 0 1078 100 151.291055
outFLCVAR221014/FLCVAR_cap61.txt_100_s_4.out:FinalReport: 1 723577.310068 723577.310068 0.000000 0 1464 100 206.330323
outFLCVAR221014/FLCVAR_cap61.txt_100_s_5.out:FinalReport: 1 682178.949203 682178.949203 0.000000 0 2132 100 323.259146
outFLCVAR221014/FLCVAR_cap61.txt_100_s_6.out:FinalReport: 1 708230.725379 708230.725379 0.000000 0 2256 100 469.251308
outFLCVAR221014/FLCVAR_cap61.txt_100_s_7.out:FinalReport: 1 702216.889363 702216.889363 0.000000 0 1941 100 377.157380
outFLCVAR221014/FLCVAR_cap61.txt_100_s_8.out:FinalReport: 1 709834.366214 709821.319340 0.000018 0 1549 100 339.516710
outFLCVAR221014/FLCVAR_cap61.txt_100_s_9.out:FinalReport: 1 702120.484303 702120.484303 0.000000 0 2137 100 337.531536
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_10.out:FinalReport: 23 715974.246334 715974.246334 0.000000 0 115977 340 969.128047
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_1.out:FinalReport: 12 713361.542277 713361.542277 0.000000 0 110565 337 1502.862677
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_2.out:FinalReport: 16 714835.670174 714835.670174 0.000000 0 138051 360 1398.640271
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_3.out:FinalReport: 18 720046.429759 720046.429759 0.000000 0 103009 326 910.722325
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_4.out:FinalReport: 17 714868.330135 714868.330135 0.000000 0 121685 333 922.411874
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_5.out:FinalReport: 26 717189.834561 717189.834561 0.000000 0 138801 366 1490.310098
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_6.out:FinalReport: 26 714610.528678 714610.528678 0.000000 0 105653 323 976.776026
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_7.out:FinalReport: 13 717194.591372 717194.591372 0.000000 0 116313 327 892.751499
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_8.out:FinalReport: 17 713956.076568 713956.076568 0.000000 0 134681 373 1217.229888
outFLCVAR221014/FLCVAR_cap61.txt_2500_a_9.out:FinalReport: 20 718697.728923 718697.728923 0.000000 0 123056 395 1668.452563
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_10.out:FinalReport: 0 715974.246334 715974.246334 0.000000 0 0 0 3836.221741
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_1.out:FinalReport: 0 713361.542277 713361.542277 0.000000 0 0 0 3390.976136
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_2.out:FinalReport: 0 714835.670174 714835.670174 0.000000 0 0 0 4577.659178
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_3.out:FinalReport: 0 720046.429759 720046.429759 0.000000 0 0 0 4753.371235
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_4.out:FinalReport: 0 714868.330135 714868.330135 0.000000 0 0 0 4752.536282
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_5.out:FinalReport: 0 717189.834561 717189.834561 0.000000 0 0 0 4531.379650
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_6.out:FinalReport: 0 714610.528678 714575.440707 0.000049 0 0 0 4154.646578
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_7.out:FinalReport: 0 717194.591372 717194.591372 0.000000 0 0 0 4203.718481
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_8.out:FinalReport: 0 713956.076568 713931.078516 0.000035 0 0 0 4109.206188
outFLCVAR221014/FLCVAR_cap61.txt_2500_f_9.out:FinalReport: 0 718697.728923 718697.728923 0.000000 0 0 0 4942.838193
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_10.out:FinalReport: 1 715974.246334 715974.246334 0.000000 0 233682 2500 2854.618638
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_1.out:FinalReport: 1 713361.542277 713361.542277 0.000000 0 226853 2500 2732.830729
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_2.out:FinalReport: 1 714835.670174 714835.670174 0.000000 0 286750 2500 3538.765620
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_3.out:FinalReport: 1 720046.429759 720046.429759 0.000000 0 237453 2500 2962.968454
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_4.out:FinalReport: 1 714868.330135 714868.330135 0.000000 0 242037 2500 3072.691317
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_5.out:FinalReport: 1 717189.834561 717189.834561 0.000000 0 224297 2500 4826.659571
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_6.out:FinalReport: 1 714610.528678 714610.528678 0.000000 0 226219 2500 3122.407222
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_7.out:FinalReport: 1 717194.591372 717194.591372 0.000000 0 195747 2500 2157.387837
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_8.out:FinalReport: 1 713956.076568 713956.076568 0.000000 0 245552 2500 3119.864780
outFLCVAR221014/FLCVAR_cap61.txt_2500_m_9.out:FinalReport: 1 718697.728923 718697.728923 0.000000 0 210117 2500 2395.392095
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_10.out:FinalReport: 1 715974.127618 715974.127618 0.000000 0 2252 2500 8655.481562
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_1.out:FinalReport: 1 713361.542277 713361.542277 0.000000 0 1948 2500 7455.448795
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_2.out:FinalReport: 1 714835.670174 714835.670174 0.000000 0 1818 2500 6971.096652
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_3.out:FinalReport: 1 720046.429759 720046.429759 0.000000 0 1422 2500 6146.154243
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_4.out:FinalReport: 1 714868.330135 714868.330135 0.000000 0 1861 2500 7110.576568
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_5.out:FinalReport: 1 717189.784490 717189.784490 0.000000 0 1622 2500 6532.852878
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_6.out:FinalReport: 1 714610.528678 714610.528678 0.000000 0 1804 2500 7038.602125
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_7.out:FinalReport: 1 717194.441089 717194.441089 0.000000 0 1436 2500 8651.636121
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_8.out:FinalReport: 1 713956.076568 713956.076568 0.000000 0 1522 2500 9341.858208
outFLCVAR221014/FLCVAR_cap61.txt_2500_s_9.out:FinalReport: 1 718697.569514 718697.569514 0.000000 0 1924 2500 8145.475834
outFLCVAR221014/FLCVAR_cap61.txt_500_a_10.out:FinalReport: 11 710254.782691 710254.782691 0.000000 0 41480 107 250.042599
outFLCVAR221014/FLCVAR_cap61.txt_500_a_1.out:FinalReport: 11 713305.284596 713305.284596 0.000000 0 21327 79 138.036821
outFLCVAR221014/FLCVAR_cap61.txt_500_a_2.out:FinalReport: 13 715137.805139 715137.805139 0.000000 0 27036 93 163.148680
outFLCVAR221014/FLCVAR_cap61.txt_500_a_3.out:FinalReport: 16 717972.247862 717972.247862 0.000000 0 27615 92 162.577722
outFLCVAR221014/FLCVAR_cap61.txt_500_a_4.out:FinalReport: 15 718347.583827 718347.583827 0.000000 0 24118 90 224.584120
outFLCVAR221014/FLCVAR_cap61.txt_500_a_5.out:FinalReport: 11 721770.265875 721770.265875 0.000000 0 25776 98 151.831302
outFLCVAR221014/FLCVAR_cap61.txt_500_a_6.out:FinalReport: 10 711077.571663 711077.571663 0.000000 0 35997 94 205.985615
outFLCVAR221014/FLCVAR_cap61.txt_500_a_7.out:FinalReport: 13 712900.044635 712900.044635 0.000000 0 26940 86 165.836800
outFLCVAR221014/FLCVAR_cap61.txt_500_a_8.out:FinalReport: 12 717286.551403 717286.551403 0.000000 0 31499 89 199.728096
outFLCVAR221014/FLCVAR_cap61.txt_500_a_9.out:FinalReport: 11 719634.846505 719634.846505 0.000000 0 31516 89 198.413861
outFLCVAR221014/FLCVAR_cap61.txt_500_f_10.out:FinalReport: 0 710254.782691 710254.782691 0.000000 0 0 0 153.101543
outFLCVAR221014/FLCVAR_cap61.txt_500_f_1.out:FinalReport: 0 713305.284596 713305.284596 0.000000 0 0 0 165.587911
outFLCVAR221014/FLCVAR_cap61.txt_500_f_2.out:FinalReport: 0 715137.805139 715137.805139 0.000000 0 0 0 173.529788
outFLCVAR221014/FLCVAR_cap61.txt_500_f_3.out:FinalReport: 0 717972.247862 717972.247862 0.000000 0 0 0 130.661806
outFLCVAR221014/FLCVAR_cap61.txt_500_f_4.out:FinalReport: 0 718347.583827 718347.583827 0.000000 0 0 0 153.380684
outFLCVAR221014/FLCVAR_cap61.txt_500_f_5.out:FinalReport: 0 721770.265875 721770.265875 0.000000 0 0 0 232.718477
outFLCVAR221014/FLCVAR_cap61.txt_500_f_6.out:FinalReport: 0 711077.571663 711077.571663 0.000000 0 0 0 153.818969
outFLCVAR221014/FLCVAR_cap61.txt_500_f_7.out:FinalReport: 0 712900.044635 712836.101153 0.000090 0 0 0 155.479244
outFLCVAR221014/FLCVAR_cap61.txt_500_f_8.out:FinalReport: 0 717286.551403 717286.551403 0.000000 0 0 0 142.430851
outFLCVAR221014/FLCVAR_cap61.txt_500_f_9.out:FinalReport: 0 719634.846505 719580.711210 0.000075 0 0 0 184.594733
outFLCVAR221014/FLCVAR_cap61.txt_500_m_10.out:FinalReport: 1 710254.782691 710254.782691 0.000000 0 54042 500 534.961525
outFLCVAR221014/FLCVAR_cap61.txt_500_m_1.out:FinalReport: 1 713305.284596 713244.938975 0.000085 0 48805 500 454.878757
outFLCVAR221014/FLCVAR_cap61.txt_500_m_2.out:FinalReport: 1 715137.805139 715137.805139 0.000000 0 39292 500 550.735421
outFLCVAR221014/FLCVAR_cap61.txt_500_m_3.out:FinalReport: 1 717972.247862 717972.247862 0.000000 0 49415 500 439.473345
outFLCVAR221014/FLCVAR_cap61.txt_500_m_4.out:FinalReport: 1 718347.583827 718347.583827 0.000000 0 50783 500 455.931282
outFLCVAR221014/FLCVAR_cap61.txt_500_m_5.out:FinalReport: 1 721770.265875 721770.265875 0.000000 0 48333 500 468.585509
outFLCVAR221014/FLCVAR_cap61.txt_500_m_6.out:FinalReport: 1 711077.571663 711077.571663 0.000000 0 46291 500 418.388862
outFLCVAR221014/FLCVAR_cap61.txt_500_m_7.out:FinalReport: 1 712900.044635 712900.044635 0.000000 0 44476 500 396.760438
outFLCVAR221014/FLCVAR_cap61.txt_500_m_8.out:FinalReport: 1 717286.551403 717286.551403 0.000000 0 41594 500 387.627098
outFLCVAR221014/FLCVAR_cap61.txt_500_m_9.out:FinalReport: 1 719634.846505 719634.846505 0.000000 0 44619 500 454.683539
outFLCVAR221014/FLCVAR_cap61.txt_500_s_10.out:FinalReport: 1 710254.782691 710254.782691 0.000000 0 1842 500 2043.505873
outFLCVAR221014/FLCVAR_cap61.txt_500_s_1.out:FinalReport: 1 713305.284596 713305.284596 0.000000 0 1755 500 1921.768965
outFLCVAR221014/FLCVAR_cap61.txt_500_s_2.out:FinalReport: 1 715137.805139 715137.805139 0.000000 0 1709 500 1303.746414
outFLCVAR221014/FLCVAR_cap61.txt_500_s_3.out:FinalReport: 1 717972.247862 717972.247862 0.000000 0 2607 500 1959.790243
outFLCVAR221014/FLCVAR_cap61.txt_500_s_4.out:FinalReport: 1 718347.583827 718347.583827 0.000000 0 1834 500 1400.666376
outFLCVAR221014/FLCVAR_cap61.txt_500_s_5.out:FinalReport: 1 721770.265875 721770.265875 0.000000 0 2099 500 1589.374947
outFLCVAR221014/FLCVAR_cap61.txt_500_s_6.out:FinalReport: 1 711077.571663 711077.571663 0.000000 0 2879 500 2179.873594
outFLCVAR221014/FLCVAR_cap61.txt_500_s_7.out:FinalReport: 1 712900.044635 712900.044635 0.000000 0 1967 500 1505.648980
outFLCVAR221014/FLCVAR_cap61.txt_500_s_8.out:FinalReport: 1 717286.551403 717286.551403 0.000000 0 2242 500 1736.745023
outFLCVAR221014/FLCVAR_cap61.txt_500_s_9.out:FinalReport: 1 719634.846505 719634.846505 0.000000 0 2549 500 1862.386774
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_10.out:FinalReport: 13 691855.110734 691855.110734 0.000000 0 149737 115 1522.611321
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_1.out:FinalReport: 16 695307.941681 695307.941681 0.000000 0 158165 109 1639.469037
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_2.out:FinalReport: 20 693805.832767 693805.832767 0.000000 0 179321 130 1806.280157
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_3.out:FinalReport: 15 689533.412882 689533.412882 0.000000 0 80275 171 1178.781090
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_4.out:FinalReport: 13 699672.279115 699672.279115 0.000000 0 87203 168 863.522780
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_5.out:FinalReport: 16 694239.995199 694239.995199 0.000000 0 128216 112 1487.547092
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_6.out:FinalReport: 19 695868.719140 695868.719140 0.000000 0 172718 133 1796.968099
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_7.out:FinalReport: 16 695545.632315 695545.632315 0.000000 0 61211 123 836.974633
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_8.out:FinalReport: 16 692937.669182 692937.669182 0.000000 0 76943 159 1129.284870
outFLCVAR221014/FLCVAR_cap62.txt_1000_a_9.out:FinalReport: 16 693419.598364 693419.598364 0.000000 0 87327 148 815.201978
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_10.out:FinalReport: 0 691855.110734 691793.666022 0.000089 0 0 0 1884.487292
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_1.out:FinalReport: 0 695307.941681 695307.941681 0.000000 0 0 0 1411.182292
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_2.out:FinalReport: 0 693805.832767 693766.991768 0.000056 0 0 0 1723.726599
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_3.out:FinalReport: 0 689533.412882 689490.820865 0.000062 0 0 0 1399.280453
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_4.out:FinalReport: 0 699672.279115 699603.108560 0.000099 0 0 0 1626.660426
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_5.out:FinalReport: 0 694239.995199 694236.902107 0.000004 0 0 0 1809.424175
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_6.out:FinalReport: 0 695868.719140 695854.827613 0.000020 0 0 0 2154.067057
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_7.out:FinalReport: 0 695545.632315 695529.515542 0.000023 0 0 0 1677.324775
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_8.out:FinalReport: 0 692937.669182 692874.127341 0.000092 0 0 0 1579.610542
outFLCVAR221014/FLCVAR_cap62.txt_1000_f_9.out:FinalReport: 0 693419.598364 693419.598364 0.000000 0 0 0 2203.323357
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_10.out:FinalReport: 1 691855.110734 691855.110734 0.000000 0 284258 1000 3319.100385
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_1.out:FinalReport: 1 695307.941681 695307.941681 0.000000 0 162085 1000 2694.456874
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_2.out:FinalReport: 1 693805.832767 693805.832767 0.000000 0 175581 1000 2368.208049
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_3.out:FinalReport: 1 689533.412882 689533.412882 0.000000 0 168643 1000 1778.490438
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_4.out:FinalReport: 1 699672.279115 699672.279115 0.000000 0 155437 1000 1585.872539
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_5.out:FinalReport: 1 694239.995199 694239.995199 0.000000 0 189419 1000 3173.575062
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_6.out:FinalReport: 1 695868.719140 695868.719140 0.000000 0 163178 1000 2522.847295
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_7.out:FinalReport: 1 695545.632315 695545.632315 0.000000 0 171018 1000 1786.789561
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_8.out:FinalReport: 1 692937.669182 692937.669182 0.000000 0 157991 1000 1845.421125
outFLCVAR221014/FLCVAR_cap62.txt_1000_m_9.out:FinalReport: 1 693419.598364 693419.598364 0.000000 0 163568 1000 1632.986778
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_10.out:FinalReport: 1 691855.110734 691855.110734 0.000000 0 3926 1000 5160.844948
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_1.out:FinalReport: 1 695307.941681 695307.941681 0.000000 0 3218 1000 6911.810821
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_2.out:FinalReport: 1 693805.832767 693805.832767 0.000000 0 4213 1000 5956.498956
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_3.out:FinalReport: 1 689533.239831 689533.239831 0.000000 0 3691 1000 5059.796790
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_4.out:FinalReport: 1 699672.279115 699672.279115 0.000000 0 3013 1000 4277.437627
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_5.out:FinalReport: 1 694239.995199 694187.767697 0.000075 0 3034 1000 4264.389514
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_6.out:FinalReport: 1 695868.719140 695868.719140 0.000000 0 2724 1000 3572.857296
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_7.out:FinalReport: 1 695545.632315 695545.632315 0.000000 0 2662 1000 3361.046723
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_8.out:FinalReport: 1 692937.535320 692937.535320 0.000000 0 3704 1000 6048.590178
outFLCVAR221014/FLCVAR_cap62.txt_1000_s_9.out:FinalReport: 1 693419.282816 693419.282816 0.000000 0 2637 1000 3207.961699
outFLCVAR221014/FLCVAR_cap62.txt_100_a_10.out:FinalReport: 7 681273.055961 681273.055961 0.000000 0 8135 23 45.914149
outFLCVAR221014/FLCVAR_cap62.txt_100_a_1.out:FinalReport: 9 709702.913791 709702.913791 0.000000 0 11136 25 63.199463
outFLCVAR221014/FLCVAR_cap62.txt_100_a_2.out:FinalReport: 8 711919.551804 711850.722016 0.000097 0 11287 28 62.096677
outFLCVAR221014/FLCVAR_cap62.txt_100_a_3.out:FinalReport: 9 733659.005403 733659.005403 0.000000 0 7926 25 43.559953
outFLCVAR221014/FLCVAR_cap62.txt_100_a_4.out:FinalReport: 11 702608.757050 702608.757050 0.000000 0 7980 22 45.713751
outFLCVAR221014/FLCVAR_cap62.txt_100_a_5.out:FinalReport: 8 662772.038144 662772.038144 0.000000 0 8142 22 45.191097
outFLCVAR221014/FLCVAR_cap62.txt_100_a_6.out:FinalReport: 7 687405.584441 687405.584441 0.000000 0 8894 24 52.216588
outFLCVAR221014/FLCVAR_cap62.txt_100_a_7.out:FinalReport: 8 682083.352949 682083.352949 0.000000 0 10550 27 61.297227
outFLCVAR221014/FLCVAR_cap62.txt_100_a_8.out:FinalReport: 7 690551.079571 690551.079571 0.000000 0 11374 23 75.098454
outFLCVAR221014/FLCVAR_cap62.txt_100_a_9.out:FinalReport: 7 684462.986077 684462.986077 0.000000 0 11093 24 65.354833
outFLCVAR221014/FLCVAR_cap62.txt_100_f_10.out:FinalReport: 0 681273.055961 681273.055961 0.000000 0 0 0 19.565598
outFLCVAR221014/FLCVAR_cap62.txt_100_f_1.out:FinalReport: 0 709702.913791 709664.240407 0.000054 0 0 0 39.183020
outFLCVAR221014/FLCVAR_cap62.txt_100_f_2.out:FinalReport: 0 711919.551804 711919.551804 0.000000 0 0 0 21.775501
outFLCVAR221014/FLCVAR_cap62.txt_100_f_3.out:FinalReport: 0 733659.005403 733640.903323 0.000025 0 0 0 21.522010
outFLCVAR221014/FLCVAR_cap62.txt_100_f_4.out:FinalReport: 0 702608.757050 702570.856535 0.000054 0 0 0 21.719286
outFLCVAR221014/FLCVAR_cap62.txt_100_f_5.out:FinalReport: 0 662772.038144 662772.038144 0.000000 0 0 0 21.917577
outFLCVAR221014/FLCVAR_cap62.txt_100_f_6.out:FinalReport: 0 687405.584441 687405.584441 0.000000 0 0 0 30.574325
outFLCVAR221014/FLCVAR_cap62.txt_100_f_7.out:FinalReport: 0 682083.352949 682083.352949 0.000000 0 0 0 26.862383
outFLCVAR221014/FLCVAR_cap62.txt_100_f_8.out:FinalReport: 0 690551.079571 690551.079571 0.000000 0 0 0 39.201033
outFLCVAR221014/FLCVAR_cap62.txt_100_f_9.out:FinalReport: 0 684462.986077 684462.986077 0.000000 0 0 0 35.404258
outFLCVAR221014/FLCVAR_cap62.txt_100_m_10.out:FinalReport: 1 681273.055961 681273.055961 0.000000 0 17956 100 183.906324
outFLCVAR221014/FLCVAR_cap62.txt_100_m_1.out:FinalReport: 1 709702.913791 709702.913791 0.000000 0 20188 100 166.081814
outFLCVAR221014/FLCVAR_cap62.txt_100_m_2.out:FinalReport: 1 711919.551804 711919.551804 0.000000 0 15359 100 126.057136
outFLCVAR221014/FLCVAR_cap62.txt_100_m_3.out:FinalReport: 1 733659.005403 733659.005403 0.000000 0 12142 100 102.595830
outFLCVAR221014/FLCVAR_cap62.txt_100_m_4.out:FinalReport: 1 702608.757050 702608.757050 0.000000 0 13556 100 114.129630
outFLCVAR221014/FLCVAR_cap62.txt_100_m_5.out:FinalReport: 1 662772.038144 662772.038144 0.000000 0 20255 100 144.011979
outFLCVAR221014/FLCVAR_cap62.txt_100_m_6.out:FinalReport: 1 687405.584441 687405.584441 0.000000 0 18979 100 151.090693
outFLCVAR221014/FLCVAR_cap62.txt_100_m_7.out:FinalReport: 1 682083.352949 682083.352949 0.000000 0 19150 100 144.955443
outFLCVAR221014/FLCVAR_cap62.txt_100_m_8.out:FinalReport: 1 690551.079571 690551.079571 0.000000 0 13093 100 99.355774
outFLCVAR221014/FLCVAR_cap62.txt_100_m_9.out:FinalReport: 1 684462.986077 684462.986077 0.000000 0 14597 100 123.777349
outFLCVAR221014/FLCVAR_cap62.txt_100_s_10.out:FinalReport: 1 681273.055961 681273.055961 0.000000 0 2284 100 463.770446
outFLCVAR221014/FLCVAR_cap62.txt_100_s_1.out:FinalReport: 1 709702.913791 709702.913791 0.000000 0 2751 100 380.761891
outFLCVAR221014/FLCVAR_cap62.txt_100_s_2.out:FinalReport: 1 711919.551804 711919.551804 0.000000 0 2262 100 401.969448
outFLCVAR221014/FLCVAR_cap62.txt_100_s_3.out:FinalReport: 1 733659.005403 733659.005403 0.000000 0 3704 100 649.933247
outFLCVAR221014/FLCVAR_cap62.txt_100_s_4.out:FinalReport: 1 702608.757050 702608.757050 0.000000 0 2981 100 413.214501
outFLCVAR221014/FLCVAR_cap62.txt_100_s_5.out:FinalReport: 1 662772.038144 662772.038144 0.000000 0 2286 100 306.115927
outFLCVAR221014/FLCVAR_cap62.txt_100_s_6.out:FinalReport: 1 687405.584441 687405.584441 0.000000 0 3817 100 794.719312
outFLCVAR221014/FLCVAR_cap62.txt_100_s_7.out:FinalReport: 1 682083.352949 682083.352949 0.000000 0 2407 100 342.907742
outFLCVAR221014/FLCVAR_cap62.txt_100_s_8.out:FinalReport: 1 690551.079571 690551.079571 0.000000 0 2257 100 312.850505
outFLCVAR221014/FLCVAR_cap62.txt_100_s_9.out:FinalReport: 1 684462.986077 684462.986077 0.000000 0 2587 100 384.593037
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_10.out:FinalReport: 24 695276.126055 695276.126055 0.000000 0 242369 366 4205.152759
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_1.out:FinalReport: 26 692534.376962 692534.376962 0.000000 0 270319 454 3875.708525
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_2.out:FinalReport: 24 693988.419767 693988.419767 0.000000 0 155043 308 1838.125133
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_3.out:FinalReport: 24 699340.168011 699340.168011 0.000000 0 130547 260 1351.736973
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_4.out:FinalReport: 15 694298.485783 694298.485783 0.000000 0 215218 328 2688.982117
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_5.out:FinalReport: 20 697762.158148 697762.158148 0.000000 0 251326 257 2913.469716
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_6.out:FinalReport: 26 693985.718707 693985.718707 0.000000 0 250959 400 2912.875812
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_7.out:FinalReport: 15 696602.523473 696602.523473 0.000000 0 144240 251 1447.688472
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_8.out:FinalReport: 25 693225.143644 693225.143644 0.000000 0 233001 421 4720.727732
outFLCVAR221014/FLCVAR_cap62.txt_2500_a_9.out:FinalReport: 21 698374.800373 698374.800373 0.000000 0 207329 374 2662.736241
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_10.out:FinalReport: 0 695276.126055 695264.275469 0.000017 0 0 0 13795.181613
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_1.out:FinalReport: 0 692534.376962 692534.376962 0.000000 0 0 0 10546.088309
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_2.out:FinalReport: 0 693988.419767 693956.409547 0.000046 0 0 0 13165.644945
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_3.out:FinalReport: 0 699340.168011 699336.752323 0.000005 0 0 0 11316.760125
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_4.out:FinalReport: 0 694298.485783 694282.411105 0.000023 0 0 0 14328.967003
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_5.out:FinalReport: 0 697762.158148 697719.360637 0.000061 0 0 0 13076.270938
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_6.out:FinalReport: 0 693985.718707 693970.365435 0.000022 0 0 0 12758.866220
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_7.out:FinalReport: 0 696602.523473 696564.767190 0.000054 0 0 0 14281.862366
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_8.out:FinalReport: 0 693225.143644 693205.516695 0.000028 0 0 0 12858.232051
outFLCVAR221014/FLCVAR_cap62.txt_2500_f_9.out:FinalReport: 0 698374.800373 698321.480107 0.000076 0 0 0 14146.708066
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_10.out:FinalReport: 1 695276.126055 695276.126055 0.000000 0 366193 2500 4974.112103
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_1.out:FinalReport: 1 692534.376962 692534.376962 0.000000 0 399128 2500 5682.458880
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_2.out:FinalReport: 1 693988.419767 693988.419767 0.000000 0 365347 2500 4699.315833
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_3.out:FinalReport: 1 699340.168011 699340.168011 0.000000 0 403278 2500 5754.138317
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_4.out:FinalReport: 1 694298.485783 694252.387017 0.000066 0 437122 2500 6331.576404
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_5.out:FinalReport: 1 697762.158148 697762.158148 0.000000 0 524429 2500 7513.801677
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_6.out:FinalReport: 1 693985.718707 693985.718707 0.000000 0 395109 2500 6322.069215
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_7.out:FinalReport: 1 696602.523473 696602.523473 0.000000 0 426626 2500 7054.325380
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_8.out:FinalReport: 1 693225.143644 693225.143644 0.000000 0 532278 2500 8441.903970
outFLCVAR221014/FLCVAR_cap62.txt_2500_m_9.out:FinalReport: 1 698374.800373 698374.800373 0.000000 0 412918 2500 7058.973300
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_10.out:FinalReport: 1 695276.126056 695276.126056 0.000000 0 3593 2500 15053.564339
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_1.out:FinalReport: 1 692534.376962 692534.376962 0.000000 0 3350 2500 10344.911869
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_2.out:FinalReport: 1 693988.419767 693988.419767 0.000000 0 3036 2500 10797.645851
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_3.out:FinalReport: 1 699339.985795 699339.985795 0.000000 0 2486 2500 8069.450603
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_4.out:FinalReport: 1 694298.485783 694298.485783 0.000000 0 3335 2500 16300.853241
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_5.out:FinalReport: 1 697762.158148 697762.158148 0.000000 0 3364 2500 12186.389920
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_6.out:FinalReport: 1 693985.718707 693985.718707 0.000000 0 3177 2500 17866.634781
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_7.out:FinalReport: 1 696602.227333 696602.227333 0.000000 0 2238 2500 10675.240993
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_8.out:FinalReport: 1 693225.143644 693225.143644 0.000000 0 4777 2500 25539.657542
outFLCVAR221014/FLCVAR_cap62.txt_2500_s_9.out:FinalReport: 1 698374.722886 698374.722886 0.000000 0 3589 2500 11895.354033
outFLCVAR221014/FLCVAR_cap62.txt_500_a_10.out:FinalReport: 17 690377.905187 690377.905187 0.000000 0 43748 93 299.670223
outFLCVAR221014/FLCVAR_cap62.txt_500_a_1.out:FinalReport: 13 693889.441524 693889.441524 0.000000 0 32303 78 331.216013
outFLCVAR221014/FLCVAR_cap62.txt_500_a_2.out:FinalReport: 12 695570.723014 695570.723014 0.000000 0 44472 84 392.729087
outFLCVAR221014/FLCVAR_cap62.txt_500_a_3.out:FinalReport: 14 696668.135504 696668.135504 0.000000 0 46146 83 350.645992
outFLCVAR221014/FLCVAR_cap62.txt_500_a_4.out:FinalReport: 14 698655.683225 698655.683225 0.000000 0 50249 92 494.961956
outFLCVAR221014/FLCVAR_cap62.txt_500_a_5.out:FinalReport: 14 700409.013841 700409.013841 0.000000 0 45247 98 331.988073
outFLCVAR221014/FLCVAR_cap62.txt_500_a_6.out:FinalReport: 14 689606.628597 689606.628597 0.000000 0 37310 84 251.571858
outFLCVAR221014/FLCVAR_cap62.txt_500_a_7.out:FinalReport: 14 692679.234686 692679.234686 0.000000 0 55542 82 583.311013
outFLCVAR221014/FLCVAR_cap62.txt_500_a_8.out:FinalReport: 13 697232.366856 697232.366856 0.000000 0 62886 85 437.521557
outFLCVAR221014/FLCVAR_cap62.txt_500_a_9.out:FinalReport: 13 699013.356319 699013.356319 0.000000 0 30706 72 195.453109
outFLCVAR221014/FLCVAR_cap62.txt_500_f_10.out:FinalReport: 0 690377.905187 690323.895143 0.000078 0 0 0 413.067027
outFLCVAR221014/FLCVAR_cap62.txt_500_f_1.out:FinalReport: 0 693889.441524 693889.441524 0.000000 0 0 0 410.193634
outFLCVAR221014/FLCVAR_cap62.txt_500_f_2.out:FinalReport: 0 695570.723014 695570.723014 0.000000 0 0 0 360.656484
outFLCVAR221014/FLCVAR_cap62.txt_500_f_3.out:FinalReport: 0 696668.135504 696650.261455 0.000026 0 0 0 382.281734
outFLCVAR221014/FLCVAR_cap62.txt_500_f_4.out:FinalReport: 0 698655.683225 698632.535688 0.000033 0 0 0 472.337770
outFLCVAR221014/FLCVAR_cap62.txt_500_f_5.out:FinalReport: 0 700409.013841 700401.196678 0.000011 0 0 0 305.569628
outFLCVAR221014/FLCVAR_cap62.txt_500_f_6.out:FinalReport: 0 689606.628597 689588.201153 0.000027 0 0 0 410.766794
outFLCVAR221014/FLCVAR_cap62.txt_500_f_7.out:FinalReport: 0 692679.234686 692673.334525 0.000009 0 0 0 371.481272
outFLCVAR221014/FLCVAR_cap62.txt_500_f_8.out:FinalReport: 0 697232.366856 697227.273940 0.000007 0 0 0 328.211847
outFLCVAR221014/FLCVAR_cap62.txt_500_f_9.out:FinalReport: 0 699013.356319 699012.794196 0.000001 0 0 0 331.125671
outFLCVAR221014/FLCVAR_cap62.txt_500_m_10.out:FinalReport: 1 690377.905187 690377.905187 0.000000 0 103028 500 944.516825
outFLCVAR221014/FLCVAR_cap62.txt_500_m_1.out:FinalReport: 1 693889.441524 693889.441524 0.000000 0 79613 500 1168.554737
outFLCVAR221014/FLCVAR_cap62.txt_500_m_2.out:FinalReport: 1 695570.723014 695570.723014 0.000000 0 86919 500 833.572950
outFLCVAR221014/FLCVAR_cap62.txt_500_m_3.out:FinalReport: 1 696668.135504 696668.135504 0.000000 0 80218 500 1037.611454
outFLCVAR221014/FLCVAR_cap62.txt_500_m_4.out:FinalReport: 1 698655.683225 698655.683225 0.000000 0 89817 500 832.744674
outFLCVAR221014/FLCVAR_cap62.txt_500_m_5.out:FinalReport: 1 700409.013841 700409.013841 0.000000 0 88509 500 831.425699
outFLCVAR221014/FLCVAR_cap62.txt_500_m_6.out:FinalReport: 1 689606.628597 689606.628597 0.000000 0 76948 500 1108.752375
outFLCVAR221014/FLCVAR_cap62.txt_500_m_7.out:FinalReport: 1 692679.234686 692679.234686 0.000000 0 77661 500 679.731699
outFLCVAR221014/FLCVAR_cap62.txt_500_m_8.out:FinalReport: 1 697232.366856 697232.366856 0.000000 0 74456 500 846.306908
outFLCVAR221014/FLCVAR_cap62.txt_500_m_9.out:FinalReport: 1 699013.356319 699013.356319 0.000000 0 73866 500 722.763424
outFLCVAR221014/FLCVAR_cap62.txt_500_s_10.out:FinalReport: 1 690377.905187 690377.905187 0.000000 0 3758 500 3996.941532
outFLCVAR221014/FLCVAR_cap62.txt_500_s_1.out:FinalReport: 1 693889.441524 693889.441524 0.000000 0 3777 500 2783.067826
outFLCVAR221014/FLCVAR_cap62.txt_500_s_2.out:FinalReport: 1 695570.723014 695570.723014 0.000000 0 2770 500 1667.807846
outFLCVAR221014/FLCVAR_cap62.txt_500_s_3.out:FinalReport: 1 696668.135504 696668.135504 0.000000 0 3551 500 2565.417875
outFLCVAR221014/FLCVAR_cap62.txt_500_s_4.out:FinalReport: 1 698655.683225 698655.683225 0.000000 0 3709 500 2694.529813
outFLCVAR221014/FLCVAR_cap62.txt_500_s_5.out:FinalReport: 1 700409.013841 700409.013841 0.000000 0 3132 500 2124.653844
outFLCVAR221014/FLCVAR_cap62.txt_500_s_6.out:FinalReport: 1 689606.628597 689606.628597 0.000000 0 3237 500 2104.485214
outFLCVAR221014/FLCVAR_cap62.txt_500_s_7.out:FinalReport: 1 692679.234686 692679.234686 0.000000 0 3358 500 2234.022241
outFLCVAR221014/FLCVAR_cap62.txt_500_s_8.out:FinalReport: 1 697232.366856 697232.366856 0.000000 0 3158 500 2186.197296
outFLCVAR221014/FLCVAR_cap62.txt_500_s_9.out:FinalReport: 1 699013.356319 699013.356319 0.000000 0 3709 500 2518.147331
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_10.out:FinalReport: 19 686604.209414 686604.209414 0.000000 0 56256 100 462.217683
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_1.out:FinalReport: 20 690686.444361 690686.444361 0.000000 0 82943 153 780.645920
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_2.out:FinalReport: 23 688769.053385 688769.053385 0.000000 0 62445 94 604.756761
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_3.out:FinalReport: 24 684454.810094 684454.810094 0.000000 0 118723 149 1189.992514
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_4.out:FinalReport: 21 695001.326770 695001.326770 0.000000 0 78932 113 718.017589
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_5.out:FinalReport: 24 690569.360006 690569.360006 0.000000 0 111505 155 1580.101557
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_6.out:FinalReport: 21 691334.989851 691334.989851 0.000000 0 77720 130 722.728053
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_7.out:FinalReport: 22 691144.070174 691144.070174 0.000000 0 51003 75 475.527405
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_8.out:FinalReport: 23 687939.637705 687939.637705 0.000000 0 71322 135 644.744915
outFLCVAR221014/FLCVAR_cap63.txt_1000_a_9.out:FinalReport: 23 688900.695856 688900.695856 0.000000 0 99760 153 1104.227921
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_10.out:FinalReport: 0 686604.209414 686604.209414 0.000000 0 0 0 1593.967599
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_1.out:FinalReport: 0 690686.444361 690686.444361 0.000000 0 0 0 1597.039550
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_2.out:FinalReport: 0 688769.053385 688739.890354 0.000042 0 0 0 1504.735926
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_3.out:FinalReport: 0 684454.810094 684447.718660 0.000010 0 0 0 1893.123371
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_4.out:FinalReport: 0 695001.326770 694949.458865 0.000075 0 0 0 2558.259218
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_5.out:FinalReport: 0 690569.360006 690567.310986 0.000003 0 0 0 1587.045112
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_6.out:FinalReport: 0 691334.989851 691317.535809 0.000025 0 0 0 1541.893043
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_7.out:FinalReport: 0 691144.070174 691144.070174 0.000000 0 0 0 1462.185532
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_8.out:FinalReport: 0 687939.637705 687904.746915 0.000051 0 0 0 1826.068118
outFLCVAR221014/FLCVAR_cap63.txt_1000_f_9.out:FinalReport: 0 688900.695856 688892.924240 0.000011 0 0 0 1399.950096
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_10.out:FinalReport: 1 686604.209414 686604.209414 0.000000 0 245189 1000 2240.995134
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_1.out:FinalReport: 1 690686.444361 690686.444361 0.000000 0 251747 1000 2559.181807
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_2.out:FinalReport: 1 688769.053385 688769.053385 0.000000 0 491977 1000 5978.788692
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_3.out:FinalReport: 1 684454.810094 684454.810094 0.000000 0 287399 1000 3107.591176
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_4.out:FinalReport: 1 695001.326770 695001.326770 0.000000 0 207281 1000 1822.011094
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_5.out:FinalReport: 1 690569.360006 690569.360006 0.000000 0 312248 1000 3207.717583
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_6.out:FinalReport: 1 691334.989851 691334.989851 0.000000 0 227497 1000 2405.656514
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_7.out:FinalReport: 1 691144.070174 691144.070174 0.000000 0 281675 1000 2812.731640
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_8.out:FinalReport: 1 687939.637705 687939.637705 0.000000 0 238644 1000 2530.738459
outFLCVAR221014/FLCVAR_cap63.txt_1000_m_9.out:FinalReport: 1 688900.695856 688900.695856 0.000000 0 260915 1000 3414.286796
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_10.out:FinalReport: 1 686604.209414 686604.209414 0.000000 0 3190 1000 3625.155495
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_1.out:FinalReport: 1 690686.444361 690686.444361 0.000000 0 5600 1000 10657.261583
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_2.out:FinalReport: 1 688769.053385 688769.053385 0.000000 0 5397 1000 6838.697018
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_3.out:FinalReport: 1 684454.810094 684454.810094 0.000000 0 4574 1000 9277.653945
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_4.out:FinalReport: 1 695001.326770 695001.326770 0.000000 0 3603 1000 5120.718023
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_5.out:FinalReport: 1 690569.164706 690569.164706 0.000000 0 4572 1000 9461.020194
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_6.out:FinalReport: 1 691334.989851 691334.989851 0.000000 0 3279 1000 3939.059476
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_7.out:FinalReport: 1 691144.070174 691144.070174 0.000000 0 4413 1000 6049.570585
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_8.out:FinalReport: 1 687939.547395 687918.269588 0.000031 0 5261 1000 7151.165578
outFLCVAR221014/FLCVAR_cap63.txt_1000_s_9.out:FinalReport: 1 688900.695856 688900.695856 0.000000 0 4334 1000 5483.118449