-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path100_no_nic.log
5011 lines (5009 loc) · 189 KB
/
100_no_nic.log
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
Starting server
Destination: 0.0.0.0:15744
Number of packets to send: 1024
Application delay: off
Packet dump: off
Started listening on port 15744.
Batch received in 0.358419179916 seconds.
Throughput: 0.0357235346696 Mbps
Average Throughput: 0.0357235346696 Mbps
Batch received in 0.328753948212 seconds.
Throughput: 0.0389470607719 Mbps
Average Throughput: 0.0372657179855 Mbps
Batch received in 0.300255060196 seconds.
Throughput: 0.0426437442608 Mbps
Average Throughput: 0.0389010567596 Mbps
Batch received in 0.299778938293 seconds.
Throughput: 0.0427114729036 Mbps
Average Throughput: 0.0397884683366 Mbps
Batch received in 0.30006480217 seconds.
Throughput: 0.0426707828023 Mbps
Average Throughput: 0.0403333536232 Mbps
Batch received in 0.299720048904 seconds.
Throughput: 0.0427198649099 Mbps
Average Throughput: 0.0407124147364 Mbps
Batch received in 0.299965143204 seconds.
Throughput: 0.0426849595365 Mbps
Average Throughput: 0.0409829708793 Mbps
Batch received in 0.299879074097 seconds.
Throughput: 0.0426972106626 Mbps
Average Throughput: 0.0411896851937 Mbps
Batch received in 0.300019979477 seconds.
Throughput: 0.0426771577757 Mbps
Average Throughput: 0.0413498195765 Mbps
Batch received in 0.29989695549 seconds.
Throughput: 0.042694664836 Mbps
Average Throughput: 0.0414804795231 Mbps
Batch received in 0.30002117157 seconds.
Throughput: 0.0426769882039 Mbps
Average Throughput: 0.0415864735765 Mbps
Batch received in 0.299912929535 seconds.
Throughput: 0.0426923908211 Mbps
Average Throughput: 0.0416764402213 Mbps
Batch received in 0.299890995026 seconds.
Throughput: 0.0426955134111 Mbps
Average Throughput: 0.0417531001676 Mbps
Batch received in 0.299833059311 seconds.
Throughput: 0.0427037633189 Mbps
Average Throughput: 0.0418195987423 Mbps
Batch received in 0.299911975861 seconds.
Throughput: 0.0426925265764 Mbps
Average Throughput: 0.0418766818341 Mbps
Batch received in 0.303960084915 seconds.
Throughput: 0.0421239519116 Mbps
Average Throughput: 0.0418920511345 Mbps
Batch received in 0.295962095261 seconds.
Throughput: 0.0432622967773 Mbps
Average Throughput: 0.0419702465797 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0420093554035 Mbps
Batch received in 0.299965858459 seconds.
Throughput: 0.042684857756 Mbps
Average Throughput: 0.0420443746925 Mbps
Batch received in 0.299950122833 seconds.
Throughput: 0.0426870970382 Mbps
Average Throughput: 0.042076050796 Mbps
Batch received in 0.299947023392 seconds.
Throughput: 0.0426875381366 Mbps
Average Throughput: 0.0421047717184 Mbps
Batch received in 0.299983024597 seconds.
Throughput: 0.0426824151706 Mbps
Average Throughput: 0.0421306888389 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.0421547240151 Mbps
Batch received in 0.300004005432 seconds.
Throughput: 0.0426794301681 Mbps
Average Throughput: 0.0421763290553 Mbps
Batch received in 0.29990196228 seconds.
Throughput: 0.042693952059 Mbps
Average Throughput: 0.0421967928725 Mbps
Batch received in 0.299988985062 seconds.
Throughput: 0.0426815671161 Mbps
Average Throughput: 0.0422152343212 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0422325565945 Mbps
Batch received in 0.300014019012 seconds.
Throughput: 0.042678005655 Mbps
Average Throughput: 0.042248305312 Mbps
Batch received in 0.299908161163 seconds.
Throughput: 0.0426930696062 Mbps
Average Throughput: 0.0422634876924 Mbps
Batch received in 0.299991846085 seconds.
Throughput: 0.0426811600619 Mbps
Average Throughput: 0.0422772783602 Mbps
Batch received in 0.299934864044 seconds.
Throughput: 0.0426892686877 Mbps
Average Throughput: 0.0422904442089 Mbps
Batch received in 0.299942016602 seconds.
Throughput: 0.0426882506995 Mbps
Average Throughput: 0.0423027634021 Mbps
Batch received in 0.299976110458 seconds.
Throughput: 0.0426833989561 Mbps
Average Throughput: 0.042314198043 Mbps
Batch received in 0.299956798553 seconds.
Throughput: 0.042686147011 Mbps
Average Throughput: 0.0423250451747 Mbps
Batch received in 0.299998044968 seconds.
Throughput: 0.0426802781377 Mbps
Average Throughput: 0.0423351126064 Mbps
Batch received in 0.29992890358 seconds.
Throughput: 0.0426901170483 Mbps
Average Throughput: 0.0423448940959 Mbps
Batch received in 0.299978017807 seconds.
Throughput: 0.0426831275625 Mbps
Average Throughput: 0.0423539650442 Mbps
Batch received in 0.300060033798 seconds.
Throughput: 0.0426714609004 Mbps
Average Throughput: 0.0423622596561 Mbps
Batch received in 0.29979300499 seconds.
Throughput: 0.0427094688231 Mbps
Average Throughput: 0.0423710919205 Mbps
Batch received in 0.299979925156 seconds.
Throughput: 0.0426828561723 Mbps
Average Throughput: 0.0423788305102 Mbps
Batch received in 0.299951076508 seconds.
Throughput: 0.0426869613174 Mbps
Average Throughput: 0.0423862929606 Mbps
Batch received in 0.300080060959 seconds.
Throughput: 0.0426686130331 Mbps
Average Throughput: 0.0423929714432 Mbps
Batch received in 0.299797058105 seconds.
Throughput: 0.0427088914111 Mbps
Average Throughput: 0.042400265328 Mbps
Batch received in 0.299921989441 seconds.
Throughput: 0.0426911011889 Mbps
Average Throughput: 0.0424068312201 Mbps
Batch received in 0.34002995491 seconds.
Throughput: 0.0376555059785 Mbps
Average Throughput: 0.0422882561105 Mbps
Batch received in 0.299916028976 seconds.
Throughput: 0.0426919496224 Mbps
Average Throughput: 0.0422969508587 Mbps
Batch received in 0.29997587204 seconds.
Throughput: 0.0426834328806 Mbps
Average Throughput: 0.0423051009943 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0423130075577 Mbps
Batch received in 0.300016880035 seconds.
Throughput: 0.0426775986687 Mbps
Average Throughput: 0.0423203859143 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.042327627688 Mbps
Batch received in 0.299957036972 seconds.
Throughput: 0.0426861130822 Mbps
Average Throughput: 0.0423345989295 Mbps
Batch received in 0.300051927567 seconds.
Throughput: 0.0426726137167 Mbps
Average Throughput: 0.0423410487068 Mbps
Batch received in 0.299864053726 seconds.
Throughput: 0.0426993493915 Mbps
Average Throughput: 0.0423477534305 Mbps
Batch received in 0.299877882004 seconds.
Throughput: 0.0426973803951 Mbps
Average Throughput: 0.0423541759609 Mbps
Batch received in 0.299986124039 seconds.
Throughput: 0.0426819741781 Mbps
Average Throughput: 0.0423600909818 Mbps
Batch received in 0.299986124039 seconds.
Throughput: 0.0426819741781 Mbps
Average Throughput: 0.0423657963168 Mbps
Batch received in 0.299921989441 seconds.
Throughput: 0.0426911011889 Mbps
Average Throughput: 0.0423714606892 Mbps
Batch received in 0.300005197525 seconds.
Throughput: 0.0426792605783 Mbps
Average Throughput: 0.042376729966 Mbps
Batch received in 0.299952983856 seconds.
Throughput: 0.0426866898785 Mbps
Average Throughput: 0.0423819460183 Mbps
Batch received in 0.299942970276 seconds.
Throughput: 0.0426881149714 Mbps
Average Throughput: 0.0423870128413 Mbps
Batch received in 0.299992084503 seconds.
Throughput: 0.0426811261411 Mbps
Average Throughput: 0.0423918016869 Mbps
Batch received in 0.299917936325 seconds.
Throughput: 0.04269167812 Mbps
Average Throughput: 0.0423966049735 Mbps
Batch received in 0.300332069397 seconds.
Throughput: 0.0426328098285 Mbps
Average Throughput: 0.0424003338121 Mbps
Batch received in 0.299557924271 seconds.
Throughput: 0.0427429854549 Mbps
Average Throughput: 0.0424056454892 Mbps
Batch received in 0.299930095673 seconds.
Throughput: 0.0426899473735 Mbps
Average Throughput: 0.0424099906809 Mbps
Batch received in 0.300314188004 seconds.
Throughput: 0.0426353482835 Mbps
Average Throughput: 0.042413387414 Mbps
Batch received in 0.299526929855 seconds.
Throughput: 0.0427474084089 Mbps
Average Throughput: 0.042418334424 Mbps
Batch received in 0.299986124039 seconds.
Throughput: 0.0426819741781 Mbps
Average Throughput: 0.0424221878813 Mbps
Batch received in 0.300009965897 seconds.
Throughput: 0.0426785822322 Mbps
Average Throughput: 0.0424258817398 Mbps
Batch received in 0.299912929535 seconds.
Throughput: 0.0426923908211 Mbps
Average Throughput: 0.0424296655827 Mbps
Batch received in 0.299949884415 seconds.
Throughput: 0.0426871309685 Mbps
Average Throughput: 0.0424332702903 Mbps
Batch received in 0.29989695549 seconds.
Throughput: 0.042694664836 Mbps
Average Throughput: 0.0424368788496 Mbps
Batch received in 0.299972057343 seconds.
Throughput: 0.042683975679 Mbps
Average Throughput: 0.0424402444095 Mbps
Batch received in 0.299987077713 seconds.
Throughput: 0.0426818384899 Mbps
Average Throughput: 0.0424434909629 Mbps
Batch received in 0.299964904785 seconds.
Throughput: 0.0426849934634 Mbps
Average Throughput: 0.0424466930196 Mbps
Batch received in 0.299953937531 seconds.
Throughput: 0.0426865541603 Mbps
Average Throughput: 0.0424498315849 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.0424529400676 Mbps
Batch received in 0.299957990646 seconds.
Throughput: 0.0426859773677 Mbps
Average Throughput: 0.0424559116227 Mbps
Batch received in 0.299962997437 seconds.
Throughput: 0.0426852648807 Mbps
Average Throughput: 0.0424587994256 Mbps
Batch received in 0.299971103668 seconds.
Throughput: 0.0426841113808 Mbps
Average Throughput: 0.0424616011433 Mbps
Batch received in 0.299957990646 seconds.
Throughput: 0.0426859773677 Mbps
Average Throughput: 0.0424643568382 Mbps
Batch received in 0.299963951111 seconds.
Throughput: 0.0426851291716 Mbps
Average Throughput: 0.0424670354276 Mbps
Batch received in 0.299936056137 seconds.
Throughput: 0.0426890990197 Mbps
Average Throughput: 0.0424696971419 Mbps
Batch received in 0.300027132034 seconds.
Throughput: 0.042676140365 Mbps
Average Throughput: 0.0424721430514 Mbps
Batch received in 0.300294876099 seconds.
Throughput: 0.0426380901544 Mbps
Average Throughput: 0.0424740878609 Mbps
Batch received in 0.299559831619 seconds.
Throughput: 0.042742713303 Mbps
Average Throughput: 0.0424771920088 Mbps
Batch received in 0.299966096878 seconds.
Throughput: 0.0426848238293 Mbps
Average Throughput: 0.0424795671052 Mbps
Batch received in 0.299975156784 seconds.
Throughput: 0.0426835346542 Mbps
Average Throughput: 0.0424818739677 Mbps
Batch received in 0.299997091293 seconds.
Throughput: 0.042680413816 Mbps
Average Throughput: 0.0424840944914 Mbps
Batch received in 0.299916028976 seconds.
Throughput: 0.0426919496224 Mbps
Average Throughput: 0.0424863928729 Mbps
Batch received in 0.299968004227 seconds.
Throughput: 0.0426845524175 Mbps
Average Throughput: 0.0424885604517 Mbps
Batch received in 0.299922943115 seconds.
Throughput: 0.0426909654427 Mbps
Average Throughput: 0.0424907501879 Mbps
Batch received in 0.300249814987 seconds.
Throughput: 0.0426444892249 Mbps
Average Throughput: 0.0424923974 Mbps
Batch received in 0.29971408844 seconds.
Throughput: 0.0427207144871 Mbps
Average Throughput: 0.0424948134615 Mbps
Batch received in 0.299890995026 seconds.
Throughput: 0.0426955134111 Mbps
Average Throughput: 0.0424969162657 Mbps
Batch received in 0.299988985062 seconds.
Throughput: 0.0426815671161 Mbps
Average Throughput: 0.0424988314771 Mbps
Batch received in 0.299940109253 seconds.
Throughput: 0.0426885221583 Mbps
Average Throughput: 0.0425007784505 Mbps
Batch received in 0.299962997437 seconds.
Throughput: 0.0426852648807 Mbps
Average Throughput: 0.0425026529115 Mbps
Batch received in 0.299947023392 seconds.
Throughput: 0.0426875381366 Mbps
Average Throughput: 0.0425045124319 Mbps
Batch received in 0.299986124039 seconds.
Throughput: 0.0426819741781 Mbps
Average Throughput: 0.0425062797444 Mbps
Batch received in 0.299932956696 seconds.
Throughput: 0.0426895401595 Mbps
Average Throughput: 0.0425080864915 Mbps
Batch received in 0.299949169159 seconds.
Throughput: 0.0426872327598 Mbps
Average Throughput: 0.0425098355286 Mbps
Batch received in 0.299980163574 seconds.
Throughput: 0.0426828222488 Mbps
Average Throughput: 0.0425115082704 Mbps
Batch received in 0.300003051758 seconds.
Throughput: 0.042679565841 Mbps
Average Throughput: 0.0425131179066 Mbps
Batch received in 0.300234079361 seconds.
Throughput: 0.0426467242734 Mbps
Average Throughput: 0.0425143863996 Mbps
Batch received in 0.299592018127 seconds.
Throughput: 0.0427381212625 Mbps
Average Throughput: 0.04251648616 Mbps
Batch received in 0.299927949905 seconds.
Throughput: 0.0426902527892 Mbps
Average Throughput: 0.0425181035984 Mbps
Batch received in 0.299962997437 seconds.
Throughput: 0.0426852648807 Mbps
Average Throughput: 0.0425196453826 Mbps
Batch received in 0.299983024597 seconds.
Throughput: 0.0426824151706 Mbps
Average Throughput: 0.0425211330408 Mbps
Batch received in 0.299941062927 seconds.
Throughput: 0.0426883864285 Mbps
Average Throughput: 0.0425226476228 Mbps
Batch received in 0.299956083298 seconds.
Throughput: 0.0426862487976 Mbps
Average Throughput: 0.042524115909 Mbps
Batch received in 0.299946784973 seconds.
Throughput: 0.0426875720676 Mbps
Average Throughput: 0.0425255698004 Mbps
Batch received in 0.300053119659 seconds.
Throughput: 0.042672444181 Mbps
Average Throughput: 0.0425268651394 Mbps
Batch received in 0.299957036972 seconds.
Throughput: 0.0426861130822 Mbps
Average Throughput: 0.0425282568853 Mbps
Batch received in 0.29984998703 seconds.
Throughput: 0.0427013525224 Mbps
Average Throughput: 0.0425297560162 Mbps
Batch received in 0.300062894821 seconds.
Throughput: 0.042671054039 Mbps
Average Throughput: 0.0425309701038 Mbps
Batch received in 0.299829959869 seconds.
Throughput: 0.0427042047619 Mbps
Average Throughput: 0.0425324447866 Mbps
Batch received in 0.300107002258 seconds.
Throughput: 0.042664782573 Mbps
Average Throughput: 0.042533562844 Mbps
Batch received in 0.299911022186 seconds.
Throughput: 0.0426926623325 Mbps
Average Throughput: 0.0425348948738 Mbps
Batch received in 0.299873113632 seconds.
Throughput: 0.0426980593389 Mbps
Average Throughput: 0.0425362494249 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.042537519854 Mbps
Batch received in 0.299947023392 seconds.
Throughput: 0.0426875381366 Mbps
Average Throughput: 0.0425387452259 Mbps
Batch received in 0.299952030182 seconds.
Throughput: 0.0426868255975 Mbps
Average Throughput: 0.0425399449889 Mbps
Batch received in 0.300014972687 seconds.
Throughput: 0.0426778699921 Mbps
Average Throughput: 0.0425410537215 Mbps
Batch received in 0.299890995026 seconds.
Throughput: 0.0426955134111 Mbps
Average Throughput: 0.0425422849643 Mbps
Batch received in 0.300040006638 seconds.
Throughput: 0.0426743091479 Mbps
Average Throughput: 0.0425433295593 Mbps
Batch received in 0.299889087677 seconds.
Throughput: 0.0426957849623 Mbps
Average Throughput: 0.0425445257427 Mbps
Batch received in 0.300000905991 seconds.
Throughput: 0.0426798711081 Mbps
Average Throughput: 0.0425455798013 Mbps
Batch received in 0.300143003464 seconds.
Throughput: 0.0426596650671 Mbps
Average Throughput: 0.0425464618364 Mbps
Batch received in 0.299755811691 seconds.
Throughput: 0.0427147681566 Mbps
Average Throughput: 0.0425477514382 Mbps
Batch received in 0.299970149994 seconds.
Throughput: 0.0426842470835 Mbps
Average Throughput: 0.0425487900831 Mbps
Batch received in 0.299947977066 seconds.
Throughput: 0.0426874024131 Mbps
Average Throughput: 0.0425498367925 Mbps
Batch received in 0.299934148788 seconds.
Throughput: 0.0426893704892 Mbps
Average Throughput: 0.0425508825146 Mbps
Batch received in 0.299968004227 seconds.
Throughput: 0.0426845524175 Mbps
Average Throughput: 0.0425518769505 Mbps
Batch received in 0.299941062927 seconds.
Throughput: 0.0426883864285 Mbps
Average Throughput: 0.0425528849222 Mbps
Batch received in 0.299976825714 seconds.
Throughput: 0.0426832971831 Mbps
Average Throughput: 0.0425538409275 Mbps
Batch received in 0.299957990646 seconds.
Throughput: 0.0426859773677 Mbps
Average Throughput: 0.0425548024631 Mbps
Batch received in 0.299918889999 seconds.
Throughput: 0.0426915423701 Mbps
Average Throughput: 0.0425557901812 Mbps
Batch received in 0.299983024597 seconds.
Throughput: 0.0426824151706 Mbps
Average Throughput: 0.0425566984692 Mbps
Batch received in 0.299949169159 seconds.
Throughput: 0.0426872327598 Mbps
Average Throughput: 0.0425576280261 Mbps
Batch received in 0.300086975098 seconds.
Throughput: 0.0426676299291 Mbps
Average Throughput: 0.0425584061844 Mbps
Batch received in 0.299856185913 seconds.
Throughput: 0.0427004697636 Mbps
Average Throughput: 0.042559403327 Mbps
Batch received in 0.29986000061 seconds.
Throughput: 0.0426999265455 Mbps
Average Throughput: 0.0425603827954 Mbps
Batch received in 0.300025939941 seconds.
Throughput: 0.0426763099301 Mbps
Average Throughput: 0.0425611856733 Mbps
Batch received in 0.299911022186 seconds.
Throughput: 0.0426926623325 Mbps
Average Throughput: 0.0425620896357 Mbps
Batch received in 0.299962043762 seconds.
Throughput: 0.0426854005907 Mbps
Average Throughput: 0.042562931808 Mbps
Batch received in 0.299927949905 seconds.
Throughput: 0.0426902527892 Mbps
Average Throughput: 0.0425637953715 Mbps
Batch received in 0.299987077713 seconds.
Throughput: 0.0426818384899 Mbps
Average Throughput: 0.0425645907691 Mbps
Batch received in 0.299999952316 seconds.
Throughput: 0.0426800067838 Mbps
Average Throughput: 0.0425653632926 Mbps
Batch received in 0.299901008606 seconds.
Throughput: 0.0426940878242 Mbps
Average Throughput: 0.0425662188859 Mbps
Batch received in 0.29992890358 seconds.
Throughput: 0.0426901170483 Mbps
Average Throughput: 0.0425670370379 Mbps
Batch received in 0.300004005432 seconds.
Throughput: 0.0426794301681 Mbps
Average Throughput: 0.0425677745319 Mbps
Batch received in 0.299930810928 seconds.
Throughput: 0.0426898455693 Mbps
Average Throughput: 0.0425685701153 Mbps
Batch received in 0.299942970276 seconds.
Throughput: 0.0426881149714 Mbps
Average Throughput: 0.0425693442208 Mbps
Batch received in 0.299985170364 seconds.
Throughput: 0.0426821098671 Mbps
Average Throughput: 0.0425700698314 Mbps
Batch received in 0.300096035004 seconds.
Throughput: 0.0426663417924 Mbps
Average Throughput: 0.0425706855757 Mbps
Batch received in 0.299772977829 seconds.
Throughput: 0.042712322147 Mbps
Average Throughput: 0.0425715847469 Mbps
Batch received in 0.299936056137 seconds.
Throughput: 0.0426890990197 Mbps
Average Throughput: 0.0425723264737 Mbps
Batch received in 0.300187110901 seconds.
Throughput: 0.0426533969482 Mbps
Average Throughput: 0.0425728353878 Mbps
Batch received in 0.29972910881 seconds.
Throughput: 0.0427185736174 Mbps
Average Throughput: 0.0425737431636 Mbps
Batch received in 0.30001115799 seconds.
Throughput: 0.0426784126491 Mbps
Average Throughput: 0.0425743917001 Mbps
Batch received in 0.299918174744 seconds.
Throughput: 0.0426916441824 Mbps
Average Throughput: 0.0425751135052 Mbps
Batch received in 0.300029993057 seconds.
Throughput: 0.0426757334143 Mbps
Average Throughput: 0.0425757293587 Mbps
Batch received in 0.300007104874 seconds.
Throughput: 0.0426789892372 Mbps
Average Throughput: 0.042576357478 Mbps
Batch received in 0.299830913544 seconds.
Throughput: 0.0427040689323 Mbps
Average Throughput: 0.0425771291861 Mbps
Batch received in 0.300053834915 seconds.
Throughput: 0.0426723424602 Mbps
Average Throughput: 0.0425777014879 Mbps
Batch received in 0.299874067307 seconds.
Throughput: 0.0426979235484 Mbps
Average Throughput: 0.0425784193656 Mbps
Batch received in 0.300181150436 seconds.
Throughput: 0.0426542438837 Mbps
Average Throughput: 0.0425788699045 Mbps
Batch received in 0.300063848495 seconds.
Throughput: 0.0426709184202 Mbps
Average Throughput: 0.0425794134023 Mbps
Batch received in 0.299665927887 seconds.
Throughput: 0.0427275803101 Mbps
Average Throughput: 0.0425802819677 Mbps
Batch received in 0.299890995026 seconds.
Throughput: 0.0426955134111 Mbps
Average Throughput: 0.0425809540277 Mbps
Batch received in 0.29997086525 seconds.
Throughput: 0.0426841453064 Mbps
Average Throughput: 0.042581552535 Mbps
Batch received in 0.299942970276 seconds.
Throughput: 0.0426881149714 Mbps
Average Throughput: 0.042582166974 Mbps
Batch received in 0.299993991852 seconds.
Throughput: 0.0426808547763 Mbps
Average Throughput: 0.0425827328414 Mbps
Batch received in 0.299932003021 seconds.
Throughput: 0.0426896758966 Mbps
Average Throughput: 0.0425833424224 Mbps
Batch received in 0.299976110458 seconds.
Throughput: 0.0426833989561 Mbps
Average Throughput: 0.0425839096003 Mbps
Batch received in 0.299924850464 seconds.
Throughput: 0.0426906939528 Mbps
Average Throughput: 0.0425845114012 Mbps
Batch received in 0.299966096878 seconds.
Throughput: 0.0426848238293 Mbps
Average Throughput: 0.0425850736372 Mbps
Batch received in 0.299919128418 seconds.
Throughput: 0.0426915084328 Mbps
Average Throughput: 0.0425856667708 Mbps
Batch received in 0.300273895264 seconds.
Throughput: 0.0426410693769 Mbps
Average Throughput: 0.0425859741654 Mbps
Batch received in 0.299699783325 seconds.
Throughput: 0.0427227536101 Mbps
Average Throughput: 0.0425867274469 Mbps
Batch received in 0.299905061722 seconds.
Throughput: 0.042693510828 Mbps
Average Throughput: 0.0425873127093 Mbps
Batch received in 0.299968957901 seconds.
Throughput: 0.042684416713 Mbps
Average Throughput: 0.0425878421317 Mbps
Batch received in 0.300035953522 seconds.
Throughput: 0.0426748856252 Mbps
Average Throughput: 0.0425883142345 Mbps
Batch received in 0.299868106842 seconds.
Throughput: 0.042698772253 Mbps
Average Throughput: 0.0425889097687 Mbps
Batch received in 0.299944877625 seconds.
Throughput: 0.0426878435178 Mbps
Average Throughput: 0.0425894404444 Mbps
Batch received in 0.315967082977 seconds.
Throughput: 0.040523208555 Mbps
Average Throughput: 0.042577830847 Mbps
Batch received in 0.299915790558 seconds.
Throughput: 0.0426919835604 Mbps
Average Throughput: 0.0425784364273 Mbps
Batch received in 0.300007104874 seconds.
Throughput: 0.0426789892372 Mbps
Average Throughput: 0.0425789672059 Mbps
Batch received in 0.299939870834 seconds.
Throughput: 0.0426885560909 Mbps
Average Throughput: 0.0425795425166 Mbps
Batch received in 0.299952030182 seconds.
Throughput: 0.0426868255975 Mbps
Average Throughput: 0.0425801028038 Mbps
Batch received in 0.299958944321 seconds.
Throughput: 0.0426858416541 Mbps
Average Throughput: 0.0425806521699 Mbps
Batch received in 0.300029039383 seconds.
Throughput: 0.0426758690637 Mbps
Average Throughput: 0.0425811444266 Mbps
Batch received in 0.299817085266 seconds.
Throughput: 0.0427060385456 Mbps
Average Throughput: 0.0425817863376 Mbps
Batch received in 0.30034995079 seconds.
Throughput: 0.0426302716758 Mbps
Average Throughput: 0.042582034699 Mbps
Batch received in 0.2995429039 seconds.
Throughput: 0.0427451287722 Mbps
Average Throughput: 0.0425828636529 Mbps
Batch received in 0.299968957901 seconds.
Throughput: 0.042684416713 Mbps
Average Throughput: 0.0425833779304 Mbps
Batch received in 0.299944877625 seconds.
Throughput: 0.0426878435178 Mbps
Average Throughput: 0.0425839042497 Mbps
Batch received in 0.300122022629 seconds.
Throughput: 0.0426626473054 Mbps
Average Throughput: 0.0425842992168 Mbps
Batch received in 0.29979801178 seconds.
Throughput: 0.0427087555517 Mbps
Average Throughput: 0.0425849196941 Mbps
Batch received in 0.300199985504 seconds.
Throughput: 0.0426515676824 Mbps
Average Throughput: 0.0425852507606 Mbps
Batch received in 0.299643993378 seconds.
Throughput: 0.0427307080501 Mbps
Average Throughput: 0.0425859684071 Mbps
Batch received in 0.300045967102 seconds.
Throughput: 0.0426734614155 Mbps
Average Throughput: 0.0425863985278 Mbps
Batch received in 0.300298929214 seconds.
Throughput: 0.0426375146708 Mbps
Average Throughput: 0.0425866487982 Mbps
Batch received in 0.299556970596 seconds.
Throughput: 0.0427431215321 Mbps
Average Throughput: 0.0425874092992 Mbps
Batch received in 0.299916982651 seconds.
Throughput: 0.0426918138707 Mbps
Average Throughput: 0.0425879148841 Mbps
Batch received in 0.300026893616 seconds.
Throughput: 0.0426761742779 Mbps
Average Throughput: 0.0425883403804 Mbps
Batch received in 0.29998588562 seconds.
Throughput: 0.0426820081003 Mbps
Average Throughput: 0.0425887897225 Mbps
Batch received in 0.299890995026 seconds.
Throughput: 0.0426955134111 Mbps
Average Throughput: 0.0425892990918 Mbps
Batch received in 0.300173044205 seconds.
Throughput: 0.0426553957699 Mbps
Average Throughput: 0.0425896133525 Mbps
Batch received in 0.00172185897827 seconds.
Throughput: 7.4361490468 Mbps
Average Throughput: 0.0427912539801 Mbps
Batch received in 0.00127601623535 seconds.
Throughput: 10.0343550852 Mbps
Average Throughput: 0.0429931872058 Mbps
Batch received in 0.296864032745 seconds.
Throughput: 0.0431308565123 Mbps
Average Throughput: 0.0429938314872 Mbps
Batch received in 0.299671173096 seconds.
Throughput: 0.0427268324401 Mbps
Average Throughput: 0.0429925760681 Mbps
Batch received in 0.299904823303 seconds.
Throughput: 0.0426935447685 Mbps
Average Throughput: 0.0429911755289 Mbps
Batch received in 0.300054073334 seconds.
Throughput: 0.0426723085534 Mbps
Average Throughput: 0.0429896883132 Mbps
Batch received in 0.299892902374 seconds.
Throughput: 0.0426952418634 Mbps
Average Throughput: 0.0429883221028 Mbps
Batch received in 0.299987077713 seconds.
Throughput: 0.0426818384899 Mbps
Average Throughput: 0.0429869061661 Mbps
Batch received in 0.299936056137 seconds.
Throughput: 0.0426890990197 Mbps
Average Throughput: 0.0429855368731 Mbps
Batch received in 0.29997587204 seconds.
Throughput: 0.0426834328806 Mbps
Average Throughput: 0.0429841539984 Mbps
Batch received in 0.299968004227 seconds.
Throughput: 0.0426845524175 Mbps
Average Throughput: 0.0429827888632 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0429814517623 Mbps
Batch received in 0.300029993057 seconds.
Throughput: 0.0426757334143 Mbps
Average Throughput: 0.0429800710514 Mbps
Batch received in 0.299895048141 seconds.
Throughput: 0.0426949363764 Mbps
Average Throughput: 0.0429787896658 Mbps
Batch received in 0.299977064133 seconds.
Throughput: 0.0426832632589 Mbps
Average Throughput: 0.0429774671619 Mbps
Batch received in 0.299907922745 seconds.
Throughput: 0.042693103546 Mbps
Average Throughput: 0.0429762005724 Mbps
Batch received in 0.300006866455 seconds.
Throughput: 0.0426790231547 Mbps
Average Throughput: 0.0429748823455 Mbps
Batch received in 0.300009965897 seconds.
Throughput: 0.0426785822322 Mbps
Average Throughput: 0.0429735738011 Mbps
Batch received in 0.299890041351 seconds.
Throughput: 0.0426956491863 Mbps
Average Throughput: 0.042972352291 Mbps
Batch received in 0.300067186356 seconds.
Throughput: 0.0426704437613 Mbps
Average Throughput: 0.0429710303985 Mbps
Batch received in 0.299882173538 seconds.
Throughput: 0.0426967693642 Mbps
Average Throughput: 0.0429698355281 Mbps
Batch received in 0.299934864044 seconds.
Throughput: 0.0426892686877 Mbps
Average Throughput: 0.0429686182746 Mbps
Batch received in 0.303973913193 seconds.
Throughput: 0.0421220356231 Mbps
Average Throughput: 0.042964912167 Mbps
Batch received in 0.351991891861 seconds.
Throughput: 0.0363758378987 Mbps
Average Throughput: 0.0429316788713 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.0429306469095 Mbps
Batch received in 0.300075054169 seconds.
Throughput: 0.0426693249643 Mbps
Average Throughput: 0.0429295328606 Mbps
Batch received in 0.299954891205 seconds.
Throughput: 0.042686418443 Mbps
Average Throughput: 0.0429285012438 Mbps
Batch received in 0.299798965454 seconds.
Throughput: 0.0427086196932 Mbps
Average Throughput: 0.0429275726354 Mbps
Batch received in 0.299952030182 seconds.
Throughput: 0.0426868255975 Mbps
Average Throughput: 0.0429265596685 Mbps
Batch received in 0.300108909607 seconds.
Throughput: 0.0426645114161 Mbps
Average Throughput: 0.0429254611225 Mbps
Batch received in 0.299746990204 seconds.
Throughput: 0.0427160252428 Mbps
Average Throughput: 0.0429245878509 Mbps
Batch received in 0.300029993057 seconds.
Throughput: 0.0426757334143 Mbps
Average Throughput: 0.0429235535553 Mbps
Batch received in 0.299918889999 seconds.
Throughput: 0.0426915423701 Mbps
Average Throughput: 0.0429225936094 Mbps
Batch received in 0.300019025803 seconds.
Throughput: 0.0426772934341 Mbps
Average Throughput: 0.0429215825262 Mbps
Batch received in 0.299896001816 seconds.
Throughput: 0.0426948006058 Mbps
Average Throughput: 0.0429206519891 Mbps
Batch received in 0.300027132034 seconds.
Throughput: 0.042676140365 Mbps
Average Throughput: 0.0429196523679 Mbps
Batch received in 0.299885988235 seconds.
Throughput: 0.0426962262403 Mbps
Average Throughput: 0.0429187430945 Mbps
Batch received in 0.299947977066 seconds.
Throughput: 0.0426874024131 Mbps
Average Throughput: 0.0429178052343 Mbps
Batch received in 0.299979925156 seconds.
Throughput: 0.0426828561723 Mbps
Average Throughput: 0.0429168564908 Mbps
Batch received in 0.299885034561 seconds.
Throughput: 0.04269636202 Mbps
Average Throughput: 0.0429159699765 Mbps
Batch received in 0.299996852875 seconds.
Throughput: 0.0426804477357 Mbps
Average Throughput: 0.0429150264836 Mbps
Batch received in 0.299924850464 seconds.
Throughput: 0.0426906939528 Mbps
Average Throughput: 0.0429141316159 Mbps
Batch received in 0.299968957901 seconds.
Throughput: 0.042684416713 Mbps
Average Throughput: 0.0429132187849 Mbps
Batch received in 0.299952030182 seconds.
Throughput: 0.0426868255975 Mbps
Average Throughput: 0.0429123227647 Mbps
Batch received in 0.299979925156 seconds.
Throughput: 0.0426828561723 Mbps
Average Throughput: 0.042911418077 Mbps
Batch received in 0.299973011017 seconds.
Throughput: 0.0426838399781 Mbps
Average Throughput: 0.0429105243789 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.0429096639532 Mbps
Batch received in 0.300178050995 seconds.
Throughput: 0.0426546843034 Mbps
Average Throughput: 0.0429086697752 Mbps
Batch received in 0.299738883972 seconds.
Throughput: 0.0427171804683 Mbps
Average Throughput: 0.0429079271328 Mbps
Batch received in 0.299941062927 seconds.
Throughput: 0.0426883864285 Mbps
Average Throughput: 0.0429070784197 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0429062346673 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0429053879685 Mbps
Batch received in 0.299932003021 seconds.
Throughput: 0.0426896758966 Mbps
Average Throughput: 0.0429045636419 Mbps
Batch received in 0.299974918365 seconds.
Throughput: 0.0426835685789 Mbps
Average Throughput: 0.0429037222218 Mbps
Batch received in 0.300034999847 seconds.
Throughput: 0.0426750212692 Mbps
Average Throughput: 0.0429028545918 Mbps
Batch received in 0.299885988235 seconds.
Throughput: 0.0426962262403 Mbps
Average Throughput: 0.0429020740484 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0429012681888 Mbps
Batch received in 0.299971103668 seconds.
Throughput: 0.0426841113808 Mbps
Average Throughput: 0.0429004537953 Mbps
Batch received in 0.299978971481 seconds.
Throughput: 0.042682991867 Mbps
Average Throughput: 0.0428996412833 Mbps
Batch received in 0.300086975098 seconds.
Throughput: 0.0426676299291 Mbps
Average Throughput: 0.0428987773268 Mbps
Batch received in 0.29981803894 seconds.
Throughput: 0.0427059027044 Mbps
Average Throughput: 0.0428980624099 Mbps
Batch received in 0.299921035767 seconds.
Throughput: 0.042691236936 Mbps
Average Throughput: 0.0428972983519 Mbps
Batch received in 0.299977779388 seconds.
Throughput: 0.0426831614865 Mbps
Average Throughput: 0.0428965100471 Mbps
Batch received in 0.299965858459 seconds.
Throughput: 0.042684857756 Mbps
Average Throughput: 0.0428957337773 Mbps
Batch received in 0.299963951111 seconds.
Throughput: 0.0426851291716 Mbps
Average Throughput: 0.0428949641777 Mbps
Batch received in 0.300010204315 seconds.
Throughput: 0.0426785483155 Mbps
Average Throughput: 0.0428941761006 Mbps
Batch received in 0.300018072128 seconds.
Throughput: 0.0426774290934 Mbps
Average Throughput: 0.0428933896608 Mbps
Batch received in 0.29986000061 seconds.
Throughput: 0.0426999265455 Mbps
Average Throughput: 0.0428926906087 Mbps
Batch received in 0.299963951111 seconds.
Throughput: 0.0426851291716 Mbps
Average Throughput: 0.0428919430564 Mbps
Batch received in 0.300045013428 seconds.
Throughput: 0.0426735970504 Mbps
Average Throughput: 0.0428911592736 Mbps
Batch received in 0.299823999405 seconds.
Throughput: 0.0427050537162 Mbps
Average Throughput: 0.0428904941003 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0428897725677 Mbps
Batch received in 0.299968004227 seconds.
Throughput: 0.0426845524175 Mbps
Average Throughput: 0.0428890439341 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0428883239537 Mbps
Batch received in 0.299968957901 seconds.
Throughput: 0.042684416713 Mbps
Average Throughput: 0.0428876050839 Mbps
Batch received in 0.299957990646 seconds.
Throughput: 0.0426859773677 Mbps
Average Throughput: 0.0428868967735 Mbps
Batch received in 0.299967050552 seconds.
Throughput: 0.042684688123 Mbps
Average Throughput: 0.0428861888878 Mbps
Batch received in 0.299988985062 seconds.
Throughput: 0.0426815671161 Mbps
Average Throughput: 0.0428854750012 Mbps
Batch received in 0.299951076508 seconds.
Throughput: 0.0426869613174 Mbps
Average Throughput: 0.0428847849194 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0428840946592 Mbps
Batch received in 0.299922943115 seconds.
Throughput: 0.0426909654427 Mbps
Average Throughput: 0.0428834279929 Mbps
Batch received in 0.299949884415 seconds.
Throughput: 0.0426871309685 Mbps
Average Throughput: 0.0428827526621 Mbps
Batch received in 0.299934148788 seconds.
Throughput: 0.0426893704892 Mbps
Average Throughput: 0.0428820896751 Mbps
Batch received in 0.300024986267 seconds.
Throughput: 0.0426764455831 Mbps
Average Throughput: 0.0428813868464 Mbps
Batch received in 0.299908876419 seconds.
Throughput: 0.042692967787 Mbps
Average Throughput: 0.0428807453285 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0428800828328 Mbps
Batch received in 0.299998044968 seconds.
Throughput: 0.0426802781377 Mbps
Average Throughput: 0.0428794069509 Mbps
Batch received in 0.300127983093 seconds.
Throughput: 0.0426618000362 Mbps
Average Throughput: 0.0428786730143 Mbps
Batch received in 0.299758195877 seconds.
Throughput: 0.0427144284163 Mbps
Average Throughput: 0.0428781215961 Mbps
Batch received in 0.300020933151 seconds.
Throughput: 0.0426770221181 Mbps
Average Throughput: 0.0428774481164 Mbps
Batch received in 0.299880981445 seconds.
Throughput: 0.0426969390933 Mbps
Average Throughput: 0.0428768458918 Mbps
Batch received in 0.299994945526 seconds.
Throughput: 0.0426807190953 Mbps
Average Throughput: 0.042876193491 Mbps
Batch received in 0.299931049347 seconds.
Throughput: 0.0426898116346 Mbps
Average Throughput: 0.0428755756927 Mbps
Batch received in 0.299953937531 seconds.
Throughput: 0.0426865541603 Mbps
Average Throughput: 0.0428749511671 Mbps
Batch received in 0.29989695549 seconds.
Throughput: 0.042694664836 Mbps
Average Throughput: 0.0428743575765 Mbps
Batch received in 0.300036907196 seconds.
Throughput: 0.0426747499821 Mbps
Average Throughput: 0.042873702223 Mbps
Batch received in 0.300005912781 seconds.
Throughput: 0.042679158825 Mbps
Average Throughput: 0.0428730656521 Mbps
Batch received in 0.299926042557 seconds.
Throughput: 0.0426905242734 Mbps
Average Throughput: 0.0428724704593 Mbps
Batch received in 0.299952030182 seconds.
Throughput: 0.0426868255975 Mbps
Average Throughput: 0.0428718670625 Mbps
Batch received in 0.299969911575 seconds.
Throughput: 0.0426842810092 Mbps
Average Throughput: 0.0428712592955 Mbps
Batch received in 0.299993038177 seconds.
Throughput: 0.0426809904583 Mbps
Average Throughput: 0.0428706447801 Mbps
Batch received in 0.299947977066 seconds.
Throughput: 0.0426874024131 Mbps
Average Throughput: 0.0428700549518 Mbps
Batch received in 0.299947977066 seconds.
Throughput: 0.0426874024131 Mbps
Average Throughput: 0.0428694689084 Mbps
Batch received in 0.299991846085 seconds.
Throughput: 0.0426811600619 Mbps
Average Throughput: 0.0428688665613 Mbps
Batch received in 0.29994392395 seconds.
Throughput: 0.0426879792442 Mbps
Average Throughput: 0.0428682898902 Mbps
Batch received in 0.299910068512 seconds.
Throughput: 0.0426927980895 Mbps
Average Throughput: 0.0428677322609 Mbps
Batch received in 0.299957036972 seconds.
Throughput: 0.0426861130822 Mbps
Average Throughput: 0.0428671568997 Mbps
Batch received in 0.300057172775 seconds.
Throughput: 0.0426718677696 Mbps
Average Throughput: 0.0428665399813 Mbps
Batch received in 0.29988193512 seconds.
Throughput: 0.0426968033099 Mbps
Average Throughput: 0.0428660057828 Mbps
Batch received in 0.30005812645 seconds.
Throughput: 0.0426717321457 Mbps
Average Throughput: 0.0428653959224 Mbps
Batch received in 0.299768924713 seconds.
Throughput: 0.0427128996518 Mbps
Average Throughput: 0.0428649191653 Mbps
Batch received in 0.299965858459 seconds.
Throughput: 0.042684857756 Mbps
Average Throughput: 0.0428643576169 Mbps
Batch received in 0.299954891205 seconds.
Throughput: 0.042686418443 Mbps
Average Throughput: 0.0428638044323 Mbps
Batch received in 0.299943208694 seconds.
Throughput: 0.0426880810395 Mbps
Average Throughput: 0.0428632598505 Mbps
Batch received in 0.300002098083 seconds.
Throughput: 0.0426797015147 Mbps
Average Throughput: 0.042862692634 Mbps
Batch received in 0.29993391037 seconds.
Throughput: 0.0426894044232 Mbps
Average Throughput: 0.042862158924 Mbps
Batch received in 0.299961090088 seconds.
Throughput: 0.0426855363016 Mbps
Average Throughput: 0.0428616165656 Mbps
Batch received in 0.300065040588 seconds.
Throughput: 0.042670748898 Mbps
Average Throughput: 0.042861032057 Mbps
Batch received in 0.300284862518 seconds.
Throughput: 0.0426395120041 Mbps
Average Throughput: 0.0428603552565 Mbps
Batch received in 0.299563884735 seconds.
Throughput: 0.0427421349917 Mbps
Average Throughput: 0.0428599960254 Mbps
Batch received in 0.299920082092 seconds.
Throughput: 0.0426913726839 Mbps
Average Throughput: 0.0428594845833 Mbps