-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleTrace.csv
We can't make this file beautiful and searchable because it's too large.
4176 lines (4176 loc) · 581 KB
/
sampleTrace.csv
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
"No.","Time","Source","Destination","Protocol","Length","Info"
"1","0.000000","146.164.69.8","192.150.187.11","TCP","60","33397 > http [SYN] Seq=0 Win=5840 Len=0 MSS=1460 SACK_PERM=1 TSval=46734052 TSecr=0 WS=1"
"2","0.000235","192.150.187.11","146.164.69.8","TCP","60","http > 33397 [SYN, ACK] Seq=0 Ack=1 Win=65535 Len=0 MSS=1460 WS=2 TSval=595546348 TSecr=46734052"
"3","0.209878","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=1 Ack=1 Win=5840 Len=0 TSval=46734073 TSecr=595546348"
"4","0.248596","146.164.69.8","192.150.187.11","HTTP","430","Continuation or non-HTTP traffic[Packet size limited during capture]"
"5","0.250791","192.150.187.11","146.164.69.8","HTTP","1500","HTTP/1.1 200 OK [Packet size limited during capture]"
"6","0.252026","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"7","0.741214","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=1449 Win=8688 Len=0 TSval=46734096 TSecr=595546373"
"8","0.741287","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=2897 Win=11584 Len=0 TSval=46734096 TSecr=595546373"
"9","0.742599","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"10","0.743933","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"11","0.745166","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"12","0.745337","192.150.187.11","146.164.69.8","HTTP","187","Continuation or non-HTTP traffic[Packet size limited during capture]"
"13","1.021623","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=4345 Win=14480 Len=0 TSval=46734146 TSecr=595546422"
"14","1.021631","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=5793 Win=17376 Len=0 TSval=46734146 TSecr=595546422"
"15","1.021636","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=7241 Win=20272 Len=0 TSval=46734147 TSecr=595546422"
"16","1.021641","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=379 Ack=7376 Win=20272 Len=0 TSval=46734147 TSecr=595546422"
"17","9.316850","146.164.69.8","192.150.187.11","HTTP","421","Continuation or non-HTTP traffic[Packet size limited during capture]"
"18","9.329150","192.150.187.11","146.164.69.8","HTTP","1500","HTTP/1.1 200 OK [Packet size limited during capture]"
"19","9.330378","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"20","9.331619","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"21","9.332849","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"22","9.334083","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"23","9.335323","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"24","9.336555","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"25","9.337796","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"26","9.586526","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=8824 Win=23168 Len=0 TSval=46735004 TSecr=595547281"
"27","9.587895","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"28","9.588354","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=10272 Win=26064 Len=0 TSval=46735005 TSecr=595547281"
"29","9.588451","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=11720 Win=28960 Len=0 TSval=46735005 TSecr=595547281"
"30","9.589816","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"31","9.591052","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"32","9.592287","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"33","9.593518","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"34","9.594753","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"35","9.691875","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=13168 Win=31856 Len=0 TSval=46735005 TSecr=595547281"
"36","9.693231","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"37","9.693355","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=14616 Win=34752 Len=0 TSval=46735005 TSecr=595547281"
"38","9.693451","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=16064 Win=37648 Len=0 TSval=46735005 TSecr=595547281"
"39","9.693548","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=17512 Win=40544 Len=0 TSval=46735006 TSecr=595547281"
"40","9.693621","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=18960 Win=43440 Len=0 TSval=46735006 TSecr=595547281"
"41","9.694869","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"42","9.696105","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"43","9.697356","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"44","9.698581","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"45","9.699819","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"46","9.701047","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"47","9.702281","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"48","9.703587","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"49","9.704825","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"50","9.805418","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=20408 Win=46336 Len=0 TSval=46735030 TSecr=595547307"
"51","9.805533","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=21856 Win=49232 Len=0 TSval=46735030 TSecr=595547307"
"52","9.806802","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"53","9.808061","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"54","9.809362","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"55","9.810617","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"56","9.810680","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=23304 Win=50680 Len=0 TSval=46735030 TSecr=595547307"
"57","9.810751","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=24752 Win=49232 Len=0 TSval=46735030 TSecr=595547307"
"58","9.810826","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=26200 Win=47784 Len=0 TSval=46735030 TSecr=595547307"
"59","9.811091","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=27648 Win=46336 Len=0 TSval=46735031 TSecr=595547307"
"60","9.812523","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"61","9.813750","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"62","9.814986","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"63","9.816228","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"64","9.817477","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"65","9.818698","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"66","9.819937","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"67","9.821165","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"68","10.063796","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=29096 Win=46336 Len=0 TSval=46735042 TSecr=595547317"
"69","10.065192","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"70","10.066429","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"71","10.066499","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=30544 Win=44888 Len=0 TSval=46735042 TSecr=595547317"
"72","10.066568","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=31992 Win=43440 Len=0 TSval=46735042 TSecr=595547317"
"73","10.067950","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"74","10.069186","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"75","10.069248","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=42128 Win=34752 Len=0 TSval=46735046 TSecr=595547317"
"76","10.069326","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=59504 Win=18824 Len=0 TSval=46735058 TSecr=595547328"
"77","10.070666","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"78","10.071896","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"79","10.073133","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"80","10.074372","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"81","10.075606","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"82","10.076229","192.150.187.11","146.164.69.8","HTTP","752","Continuation or non-HTTP traffic[Packet size limited during capture]"
"83","10.077473","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"84","10.078703","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"85","10.079939","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"86","10.425064","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=74684 Win=5792 Len=0 TSval=46735081 TSecr=595547354"
"87","10.426437","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"88","10.426673","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=77580 Win=2896 Len=0 TSval=46735085 TSecr=595547355"
"89","10.427919","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Window Full] Continuation or non-HTTP traffic[Packet size limited during capture]"
"90","10.679342","146.164.69.8","192.150.187.11","TCP","52","[TCP ZeroWindow] 33397 > http [ACK] Seq=748 Ack=80476 Win=0 Len=0 TSval=46735120 TSecr=595547390"
"91","15.676300","192.150.187.11","146.164.69.8","TCP","53","[TCP ZeroWindowProbe] [TCP segment of a reassembled PDU]"
"92","15.858843","146.164.69.8","192.150.187.11","TCP","52","[TCP ZeroWindowProbeAck] [TCP ZeroWindow] 33397 > http [ACK] Seq=748 Ack=80476 Win=0 Len=0 TSval=46735638 TSecr=595547916"
"93","20.618910","146.164.69.8","192.150.187.11","TCP","52","[TCP Window Update] 33397 > http [ACK] Seq=748 Ack=80476 Win=10136 Len=0 TSval=46736112 TSecr=595547916"
"94","20.620275","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"95","20.620336","146.164.69.8","192.150.187.11","TCP","52","[TCP Window Update] 33397 > http [ACK] Seq=748 Ack=80476 Win=20272 Len=0 TSval=46736114 TSecr=595547916"
"96","20.620404","146.164.69.8","192.150.187.11","TCP","52","[TCP Window Update] 33397 > http [ACK] Seq=748 Ack=80476 Win=46336 Len=0 TSval=46736114 TSecr=595547916"
"97","20.948890","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=81924 Win=55024 Len=0 TSval=46736135 TSecr=595548410"
"98","20.950251","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"99","20.951478","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"100","21.299953","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=83372 Win=57920 Len=0 TSval=46736169 TSecr=595548443"
"101","21.301334","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"102","21.302571","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"103","21.593925","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 100#1] 33397 > http [ACK] Seq=748 Ack=83372 Win=57920 Len=0 TSval=46736201 TSecr=595548443"
"104","21.594540","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 100#2] 33397 > http [ACK] Seq=748 Ack=83372 Win=57920 Len=0 TSval=46736201 TSecr=595548443"
"105","22.297527","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"106","22.583977","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=87716 Win=60816 Len=0 TSval=46736300 TSecr=595548578"
"107","22.585347","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"108","22.586568","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"109","23.162170","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=89164 Win=63712 Len=0 TSval=46736330 TSecr=595548606"
"110","23.163531","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"111","23.163685","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=90612 Win=63712 Len=0 TSval=46736330 TSecr=595548606"
"112","23.164923","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"113","23.166157","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"114","23.353087","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=92060 Win=63712 Len=0 TSval=46736387 TSecr=595548664"
"115","23.354440","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"116","23.431401","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=93508 Win=63712 Len=0 TSval=46736388 TSecr=595548664"
"117","23.431517","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=94956 Win=62264 Len=0 TSval=46736388 TSecr=595548664"
"118","23.432770","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"119","23.434000","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"120","23.435234","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"121","23.740072","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=96404 Win=63712 Len=0 TSval=46736407 TSecr=595548683"
"122","23.741431","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"123","23.742487","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=97852 Win=63712 Len=0 TSval=46736415 TSecr=595548691"
"124","23.742565","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=99300 Win=63712 Len=0 TSval=46736415 TSecr=595548691"
"125","23.742633","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=100748 Win=63712 Len=0 TSval=46736416 TSecr=595548691"
"126","23.743879","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"127","23.745113","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"128","23.746352","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"129","23.747592","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"130","23.930583","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=102196 Win=63712 Len=0 TSval=46736445 TSecr=595548722"
"131","23.931935","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"132","23.939428","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=103644 Win=63712 Len=0 TSval=46736446 TSecr=595548722"
"133","23.939503","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=105092 Win=63712 Len=0 TSval=46736446 TSecr=595548722"
"134","23.940770","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"135","23.942001","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"136","24.051664","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=106540 Win=63712 Len=0 TSval=46736447 TSecr=595548722"
"137","24.051729","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=107988 Win=63712 Len=0 TSval=46736448 TSecr=595548722"
"138","24.053043","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"139","24.054279","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"140","24.157874","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=109436 Win=63712 Len=0 TSval=46736464 TSecr=595548741"
"141","24.157989","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=110884 Win=63712 Len=0 TSval=46736465 TSecr=595548742"
"142","24.158062","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=112332 Win=63712 Len=0 TSval=46736466 TSecr=595548742"
"143","24.159307","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"144","24.160544","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"145","24.161780","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"146","24.163016","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"147","24.250070","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=113780 Win=63712 Len=0 TSval=46736476 TSecr=595548753"
"148","24.251429","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"149","24.291576","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=115228 Win=63712 Len=0 TSval=46736480 TSecr=595548753"
"150","24.292929","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"151","24.452575","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=118124 Win=63712 Len=0 TSval=46736487 TSecr=595548764"
"152","24.453928","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"153","24.454016","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=121020 Win=63712 Len=0 TSval=46736487 TSecr=595548764"
"154","24.455266","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"155","24.456498","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"156","24.457757","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"157","24.458991","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"158","24.473882","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=122468 Win=63712 Len=0 TSval=46736500 TSecr=595548773"
"159","24.475216","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"160","25.055195","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=126812 Win=63712 Len=0 TSval=46736519 TSecr=595548793"
"161","25.055256","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=129708 Win=63712 Len=0 TSval=46736519 TSecr=595548793"
"162","25.055329","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=132604 Win=63712 Len=0 TSval=46736522 TSecr=595548793"
"163","25.056589","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"164","25.057826","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"165","25.059061","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"166","25.060299","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"167","25.061544","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"168","25.062762","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"169","25.063995","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"170","25.284564","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=135500 Win=63712 Len=0 TSval=46736580 TSecr=595548853"
"171","25.285923","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"172","25.287157","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"173","25.343923","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=138396 Win=63712 Len=0 TSval=46736580 TSecr=595548853"
"174","25.345267","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"175","25.346524","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"176","25.346587","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=141292 Win=63712 Len=0 TSval=46736581 TSecr=595548853"
"177","25.346659","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=142740 Win=63712 Len=0 TSval=46736585 TSecr=595548853"
"178","25.347996","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"179","25.349237","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"180","25.350465","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"181","25.351695","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"182","25.525580","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=145636 Win=63712 Len=0 TSval=46736600 TSecr=595548876"
"183","25.526924","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"184","25.528161","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"185","25.609133","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=148532 Win=63712 Len=0 TSval=46736606 TSecr=595548882"
"186","25.610485","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"187","25.610569","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=151428 Win=63712 Len=0 TSval=46736607 TSecr=595548883"
"188","25.610817","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=154324 Win=63712 Len=0 TSval=46736607 TSecr=595548883"
"189","25.612260","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"190","25.613485","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"191","25.614717","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"192","25.615950","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"193","25.617186","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"194","25.716617","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=157220 Win=63712 Len=0 TSval=46736624 TSecr=595548900"
"195","25.717957","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"196","25.719192","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"197","25.940747","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=160116 Win=63712 Len=0 TSval=46736632 TSecr=595548909"
"198","25.940815","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=163012 Win=63712 Len=0 TSval=46736632 TSecr=595548909"
"199","25.940905","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=165908 Win=63712 Len=0 TSval=46736632 TSecr=595548909"
"200","25.942151","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"201","25.943390","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"202","25.944623","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"203","25.945858","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"204","25.947095","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"205","25.948328","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"206","25.949565","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"207","26.250579","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=168804 Win=63712 Len=0 TSval=46736643 TSecr=595548920"
"208","26.251941","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"209","26.253170","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"210","26.256995","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=171700 Win=63712 Len=0 TSval=46736665 TSecr=595548942"
"211","26.258338","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"212","26.259573","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"213","26.260557","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=174596 Win=63712 Len=0 TSval=46736666 TSecr=595548942"
"214","26.261893","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"215","26.262079","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=177492 Win=63712 Len=0 TSval=46736668 TSecr=595548942"
"216","26.262152","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=178940 Win=63712 Len=0 TSval=46736672 TSecr=595548942"
"217","26.263397","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"218","26.264632","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"219","26.265882","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"220","26.267110","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"221","26.440790","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=181836 Win=63712 Len=0 TSval=46736696 TSecr=595548973"
"222","26.442147","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"223","26.443384","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"224","26.502595","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=184732 Win=63712 Len=0 TSval=46736697 TSecr=595548974"
"225","26.503935","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"226","26.504170","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=187628 Win=63712 Len=0 TSval=46736697 TSecr=595548974"
"227","26.504268","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=190524 Win=63712 Len=0 TSval=46736697 TSecr=595548974"
"228","26.505786","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"229","26.507019","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"230","26.508262","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"231","26.508498","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=191972 Win=63712 Len=0 TSval=46736701 TSecr=595548974"
"232","26.509746","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"233","26.510978","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"234","26.512216","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"235","26.513454","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"236","26.632337","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=194868 Win=63712 Len=0 TSval=46736715 TSecr=595548992"
"237","26.633685","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"238","26.634910","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"239","26.704415","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=197764 Win=63712 Len=0 TSval=46736721 TSecr=595548998"
"240","26.705785","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"241","26.707011","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"242","26.895773","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=200660 Win=63712 Len=0 TSval=46736722 TSecr=595548998"
"243","26.895842","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=203556 Win=63712 Len=0 TSval=46736722 TSecr=595548998"
"244","26.897146","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"245","26.897233","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=206452 Win=63712 Len=0 TSval=46736722 TSecr=595548998"
"246","26.897403","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=209348 Win=63712 Len=0 TSval=46736736 TSecr=595549011"
"247","26.898911","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"248","26.900148","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"249","26.901384","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"250","26.902617","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"251","26.903854","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"252","26.905089","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"253","26.906326","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"254","27.008988","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=212244 Win=63712 Len=0 TSval=46736741 TSecr=595549018"
"255","27.010346","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"256","27.011573","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"257","27.370426","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=215140 Win=63712 Len=0 TSval=46736763 TSecr=595549037"
"258","27.370490","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=218036 Win=63712 Len=0 TSval=46736763 TSecr=595549037"
"259","27.370564","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=220932 Win=63712 Len=0 TSval=46736764 TSecr=595549038"
"260","27.371832","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"261","27.373086","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"262","27.374344","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"263","27.375641","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"264","27.376912","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"265","27.378200","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"266","27.379433","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"267","27.379496","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=223828 Win=63712 Len=0 TSval=46736764 TSecr=595549038"
"268","27.379568","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=226724 Win=63712 Len=0 TSval=46736772 TSecr=595549049"
"269","27.380908","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"270","27.382162","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"271","27.383384","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"272","27.384616","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"273","27.684846","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=229620 Win=63712 Len=0 TSval=46736808 TSecr=595549085"
"274","27.684902","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=232516 Win=63712 Len=0 TSval=46736810 TSecr=595549085"
"275","27.684994","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=235412 Win=63712 Len=0 TSval=46736811 TSecr=595549085"
"276","27.686241","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"277","27.687471","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"278","27.687557","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=238308 Win=63712 Len=0 TSval=46736811 TSecr=595549085"
"279","27.688805","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"280","27.690062","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"281","27.691318","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"282","27.692573","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"283","27.693871","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"284","27.695179","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"285","27.695252","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=241204 Win=63712 Len=0 TSval=46736811 TSecr=595549086"
"286","27.695314","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=242652 Win=63712 Len=0 TSval=46736815 TSecr=595549086"
"287","27.696582","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"288","27.697827","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"289","27.699056","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"290","27.990881","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=245548 Win=63712 Len=0 TSval=46736840 TSecr=595549116"
"291","27.990953","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=248444 Win=63712 Len=0 TSval=46736841 TSecr=595549116"
"292","27.991026","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=251340 Win=63712 Len=0 TSval=46736841 TSecr=595549116"
"293","27.992276","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"294","27.993507","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"295","27.994826","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"296","27.996083","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"297","27.997380","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"298","27.998642","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"299","27.999895","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"300","28.001474","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=254236 Win=63712 Len=0 TSval=46736841 TSecr=595549117"
"301","28.001547","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=257132 Win=63712 Len=0 TSval=46736841 TSecr=595549117"
"302","28.001620","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=258580 Win=63712 Len=0 TSval=46736846 TSecr=595549117"
"303","28.002866","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"304","28.004102","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"305","28.005337","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"306","28.006573","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"307","28.007808","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"308","28.501424","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=261476 Win=63712 Len=0 TSval=46736870 TSecr=595549147"
"309","28.501481","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=264372 Win=63712 Len=0 TSval=46736870 TSecr=595549147"
"310","28.502832","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"311","28.502905","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=267268 Win=63712 Len=0 TSval=46736871 TSecr=595549147"
"312","28.503157","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=270164 Win=63712 Len=0 TSval=46736872 TSecr=595549147"
"313","28.503224","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=273060 Win=63712 Len=0 TSval=46736872 TSecr=595549148"
"314","28.503298","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=275956 Win=63712 Len=0 TSval=46736873 TSecr=595549148"
"315","28.504580","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"316","28.505834","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"317","28.507056","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"318","28.508291","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"319","28.509526","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"320","28.510761","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"321","28.512019","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"322","28.513237","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"323","28.514469","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"324","28.515701","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"325","28.516939","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"326","28.701308","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=278852 Win=63712 Len=0 TSval=46736921 TSecr=595549198"
"327","28.702663","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"328","28.703898","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"329","28.726201","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=281748 Win=63712 Len=0 TSval=46736924 TSecr=595549198"
"330","28.727552","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"331","28.728779","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"332","29.050655","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=287540 Win=63712 Len=0 TSval=46736925 TSecr=595549198"
"333","29.051985","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"334","29.053222","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"335","29.054703","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"336","29.056014","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"337","29.056065","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=290436 Win=63712 Len=0 TSval=46736925 TSecr=595549198"
"338","29.057455","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"339","29.058799","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"340","29.060055","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"341","29.072728","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=293332 Win=63712 Len=0 TSval=46736926 TSecr=595549198"
"342","29.074094","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"343","29.075305","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"344","29.317174","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=296228 Win=63712 Len=0 TSval=46736941 TSecr=595549218"
"345","29.317246","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=299124 Win=63712 Len=0 TSval=46736944 TSecr=595549220"
"346","29.317319","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=302020 Win=63712 Len=0 TSval=46736977 TSecr=595549253"
"347","29.317415","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=304916 Win=63712 Len=0 TSval=46736977 TSecr=595549253"
"348","29.317513","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=307812 Win=63712 Len=0 TSval=46736978 TSecr=595549253"
"349","29.317585","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=310708 Win=63712 Len=0 TSval=46736978 TSecr=595549253"
"350","29.318837","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"351","29.318918","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=312156 Win=63712 Len=0 TSval=46736982 TSecr=595549255"
"352","29.320164","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"353","29.321399","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"354","29.322636","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"355","29.323873","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"356","29.325108","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"357","29.326342","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"358","29.327581","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"359","29.328821","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"360","29.330055","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"361","29.331291","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"362","29.332526","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"363","29.333763","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"364","29.565067","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=315052 Win=63712 Len=0 TSval=46737003 TSecr=595549280"
"365","29.565135","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=317948 Win=63712 Len=0 TSval=46737004 TSecr=595549280"
"366","29.566421","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"367","29.567657","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"368","29.569180","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"369","29.570477","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"370","29.570538","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=320844 Win=63712 Len=0 TSval=46737004 TSecr=595549280"
"371","29.570612","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=323740 Win=63712 Len=0 TSval=46737005 TSecr=595549280"
"372","29.570686","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=326636 Win=63712 Len=0 TSval=46737006 TSecr=595549280"
"373","29.570759","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=329532 Win=63712 Len=0 TSval=46737006 TSecr=595549280"
"374","29.572011","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"375","29.573241","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"376","29.574477","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"377","29.575710","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"378","29.576948","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"379","29.578299","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"380","29.579534","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"381","29.580768","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"382","29.582025","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"383","29.591980","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=330980 Win=63712 Len=0 TSval=46737010 TSecr=595549280"
"384","29.593344","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"385","29.853640","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=333876 Win=63712 Len=0 TSval=46737031 TSecr=595549304"
"386","29.854972","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"387","29.855118","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=336772 Win=63712 Len=0 TSval=46737031 TSecr=595549304"
"388","29.856431","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"389","29.857668","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"390","29.858899","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"391","30.013172","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=339668 Win=63712 Len=0 TSval=46737032 TSecr=595549305"
"392","30.014523","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"393","30.015763","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"394","30.094313","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=342564 Win=63712 Len=0 TSval=46737032 TSecr=595549305"
"395","30.095678","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"396","30.096925","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"397","30.096988","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=345460 Win=63712 Len=0 TSval=46737032 TSecr=595549305"
"398","30.098328","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"399","30.099565","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"400","30.114628","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=348356 Win=63712 Len=0 TSval=46737032 TSecr=595549305"
"401","30.114698","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737033 TSecr=595549305"
"402","30.115995","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"403","30.116180","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#1] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737060 TSecr=595549305"
"404","30.117423","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"405","30.118661","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"406","30.119898","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"407","30.482576","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#2] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737072 TSecr=595549305"
"408","30.482645","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#3] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737072 TSecr=595549305"
"409","30.483982","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Fast Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"410","30.484537","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#4] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737082 TSecr=595549305"
"411","30.484610","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#5] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737082 TSecr=595549305"
"412","30.484684","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#6] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737082 TSecr=595549305"
"413","30.484757","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#7] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737082 TSecr=595549305"
"414","30.484835","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#8] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737083 TSecr=595549305"
"415","30.484902","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#9] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737083 TSecr=595549305"
"416","30.486276","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"417","30.487569","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"418","30.487634","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#10] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737083 TSecr=595549305"
"419","30.487706","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 401#11] 33397 > http [ACK] Seq=748 Ack=351252 Win=63712 Len=0 TSval=46737083 TSecr=595549305"
"420","30.488951","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"421","30.490183","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"422","30.869404","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=352700 Win=62264 Len=0 TSval=46737119 TSecr=595549396"
"423","30.869473","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 422#1] 33397 > http [ACK] Seq=748 Ack=352700 Win=62264 Len=0 TSval=46737119 TSecr=595549396"
"424","30.869613","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 422#2] 33397 > http [ACK] Seq=748 Ack=352700 Win=62264 Len=0 TSval=46737119 TSecr=595549396"
"425","30.870850","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Fast Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"426","30.871034","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 422#3] 33397 > http [ACK] Seq=748 Ack=352700 Win=62264 Len=0 TSval=46737120 TSecr=595549396"
"427","30.871107","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 422#4] 33397 > http [ACK] Seq=748 Ack=352700 Win=62264 Len=0 TSval=46737120 TSecr=595549396"
"428","30.872359","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"429","30.873588","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"430","30.874825","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"431","30.876061","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"432","30.877296","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"433","31.098659","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737158 TSecr=595549435"
"434","31.100005","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"435","31.100239","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 433#1] 33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737158 TSecr=595549435"
"436","31.100331","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 433#2] 33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737158 TSecr=595549435"
"437","31.100578","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 433#3] 33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737159 TSecr=595549435"
"438","31.101828","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"439","31.103080","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"440","31.103142","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 433#4] 33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737160 TSecr=595549435"
"441","31.103216","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 433#5] 33397 > http [ACK] Seq=748 Ack=354148 Win=60816 Len=0 TSval=46737160 TSecr=595549435"
"442","31.368960","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=384556 Win=37648 Len=0 TSval=46737182 TSecr=595549458"
"443","31.370391","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"444","31.370476","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=386004 Win=55024 Len=0 TSval=46737182 TSecr=595549458"
"445","31.370609","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=387452 Win=63712 Len=0 TSval=46737183 TSecr=595549458"
"446","31.371888","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"447","31.373133","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"448","31.374356","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"449","31.375590","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"450","31.376831","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"451","31.747593","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=388900 Win=63712 Len=0 TSval=46737208 TSecr=595549485"
"452","31.748966","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"453","31.750201","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"454","31.851796","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=390348 Win=63712 Len=0 TSval=46737208 TSecr=595549485"
"455","31.852117","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=391796 Win=63712 Len=0 TSval=46737209 TSecr=595549485"
"456","31.853371","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"457","31.854724","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"458","31.854869","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=393244 Win=63712 Len=0 TSval=46737209 TSecr=595549485"
"459","31.854965","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=394692 Win=63712 Len=0 TSval=46737209 TSecr=595549485"
"460","31.855037","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=396140 Win=63712 Len=0 TSval=46737209 TSecr=595549485"
"461","31.856289","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"462","31.857524","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"463","31.858753","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"464","31.859995","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"465","32.332879","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=399036 Win=63712 Len=0 TSval=46737246 TSecr=595549523"
"466","32.334266","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"467","32.334338","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=400484 Win=63712 Len=0 TSval=46737256 TSecr=595549533"
"468","32.334473","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=401932 Win=63712 Len=0 TSval=46737256 TSecr=595549533"
"469","32.335748","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"470","32.335833","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=403380 Win=63712 Len=0 TSval=46737256 TSecr=595549533"
"471","32.337072","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"472","32.338317","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"473","32.339548","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"474","32.434125","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=404828 Win=63712 Len=0 TSval=46737257 TSecr=595549533"
"475","32.435477","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"476","32.436788","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"477","32.436850","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=407724 Win=63712 Len=0 TSval=46737257 TSecr=595549533"
"478","32.438186","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"479","32.439421","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"480","32.606118","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=410620 Win=63712 Len=0 TSval=46737306 TSecr=595549581"
"481","32.606275","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=413516 Win=63712 Len=0 TSval=46737306 TSecr=595549581"
"482","32.607781","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"483","32.609066","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"484","32.610323","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"485","32.611558","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"486","32.611624","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=414964 Win=63712 Len=0 TSval=46737310 TSecr=595549581"
"487","32.612958","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"488","32.773399","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=417860 Win=63712 Len=0 TSval=46737315 TSecr=595549591"
"489","32.774759","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"490","32.776272","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"491","32.776338","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=420756 Win=63712 Len=0 TSval=46737315 TSecr=595549592"
"492","32.777702","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"493","32.778943","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"494","32.866132","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=423652 Win=63712 Len=0 TSval=46737331 TSecr=595549608"
"495","32.866200","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=426548 Win=63712 Len=0 TSval=46737333 TSecr=595549609"
"496","32.866297","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=427996 Win=63712 Len=0 TSval=46737337 TSecr=595549609"
"497","32.867540","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"498","32.868773","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"499","32.870009","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"500","32.871244","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"501","32.872485","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"502","32.873716","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"503","33.068312","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=430892 Win=63712 Len=0 TSval=46737348 TSecr=595549625"
"504","33.069650","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"505","33.070885","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"506","33.151543","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=433788 Win=63712 Len=0 TSval=46737349 TSecr=595549626"
"507","33.151610","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=436684 Win=63712 Len=0 TSval=46737358 TSecr=595549634"
"508","33.152947","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"509","33.153181","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=439580 Win=63712 Len=0 TSval=46737358 TSecr=595549634"
"510","33.153316","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=442476 Win=63712 Len=0 TSval=46737358 TSecr=595549635"
"511","33.154596","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"512","33.155832","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"513","33.157069","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"514","33.158303","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"515","33.159539","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"516","33.160774","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"517","33.162009","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"518","33.271309","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=445372 Win=63712 Len=0 TSval=46737378 TSecr=595549655"
"519","33.272670","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"520","33.273905","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"521","33.397311","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=448268 Win=63712 Len=0 TSval=46737386 TSecr=595549663"
"522","33.397372","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=451164 Win=63712 Len=0 TSval=46737387 TSecr=595549663"
"523","33.397445","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=454060 Win=63712 Len=0 TSval=46737387 TSecr=595549663"
"524","33.397553","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=456956 Win=63712 Len=0 TSval=46737387 TSecr=595549663"
"525","33.398789","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"526","33.400024","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"527","33.401260","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"528","33.402496","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"529","33.403733","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"530","33.404974","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"531","33.406209","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"532","33.407439","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"533","33.464805","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=459852 Win=63712 Len=0 TSval=46737398 TSecr=595549675"
"534","33.466150","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"535","33.467375","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"536","33.468616","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"537","33.595222","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=462748 Win=63712 Len=0 TSval=46737411 TSecr=595549688"
"538","33.596567","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"539","33.597811","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"540","33.602766","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=465644 Win=63712 Len=0 TSval=46737412 TSecr=595549688"
"541","33.604090","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"542","33.605326","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"543","34.016461","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=468540 Win=63712 Len=0 TSval=46737414 TSecr=595549688"
"544","34.018680","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"545","34.019844","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"546","34.019850","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=471436 Win=63712 Len=0 TSval=46737414 TSecr=595549688"
"547","34.021027","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"548","34.022191","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"549","34.022197","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=474332 Win=63712 Len=0 TSval=46737419 TSecr=595549694"
"550","34.022202","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=475780 Win=63712 Len=0 TSval=46737423 TSecr=595549694"
"551","34.022207","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=478676 Win=63712 Len=0 TSval=46737431 TSecr=595549707"
"552","34.023358","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=481572 Win=63712 Len=0 TSval=46737431 TSecr=595549708"
"553","34.023615","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"554","34.024846","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"555","34.026081","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"556","34.027317","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"557","34.028557","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"558","34.029788","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"559","34.031029","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"560","34.208851","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=484468 Win=63712 Len=0 TSval=46737473 TSecr=595549750"
"561","34.210229","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"562","34.211474","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"563","34.235184","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=487364 Win=63712 Len=0 TSval=46737474 TSecr=595549750"
"564","34.236530","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"565","34.237764","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"566","34.290606","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=490260 Win=63712 Len=0 TSval=46737478 TSecr=595549750"
"567","34.290673","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=493156 Win=63712 Len=0 TSval=46737478 TSecr=595549750"
"568","34.291986","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"569","34.293220","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"570","34.294464","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"571","34.295693","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"572","34.296929","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"573","34.321690","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=496052 Win=63712 Len=0 TSval=46737479 TSecr=595549750"
"574","34.323043","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"575","34.323155","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=497500 Win=63712 Len=0 TSval=46737483 TSecr=595549750"
"576","34.324400","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"577","34.325634","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"578","34.401361","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=500396 Win=63712 Len=0 TSval=46737492 TSecr=595549769"
"579","34.402712","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"580","34.403955","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"581","34.505684","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=503292 Win=63712 Len=0 TSval=46737498 TSecr=595549771"
"582","34.507038","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"583","34.508275","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"584","34.532228","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=506188 Win=63712 Len=0 TSval=46737505 TSecr=595549777"
"585","34.533575","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"586","34.534811","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"587","34.646759","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=509084 Win=63712 Len=0 TSval=46737506 TSecr=595549777"
"588","34.646925","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=511980 Win=63712 Len=0 TSval=46737507 TSecr=595549777"
"589","34.648165","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"590","34.648248","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=514876 Win=63712 Len=0 TSval=46737507 TSecr=595549780"
"591","34.649496","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"592","34.650727","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"593","34.651963","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"594","34.653204","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"595","34.654440","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"596","34.677229","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=517772 Win=63712 Len=0 TSval=46737511 TSecr=595549788"
"597","34.678566","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"598","34.679793","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"599","34.785200","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=520668 Win=63712 Len=0 TSval=46737522 TSecr=595549798"
"600","34.786553","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"601","34.787795","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"602","34.787853","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=523564 Win=63712 Len=0 TSval=46737525 TSecr=595549801"
"603","34.789190","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"604","34.790426","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"605","34.837305","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=526460 Win=63712 Len=0 TSval=46737536 TSecr=595549813"
"606","34.838643","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"607","34.839877","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"608","34.839962","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=529356 Win=63712 Len=0 TSval=46737536 TSecr=595549813"
"609","34.841208","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"610","34.842442","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"611","34.843677","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"612","34.857457","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=532252 Win=63712 Len=0 TSval=46737537 TSecr=595549813"
"613","34.858782","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"614","34.860019","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"615","34.868110","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=535148 Win=63712 Len=0 TSval=46737539 TSecr=595549816"
"616","34.869434","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"617","34.870669","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"618","35.240353","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=538044 Win=63712 Len=0 TSval=46737549 TSecr=595549826"
"619","35.240429","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=540940 Win=63712 Len=0 TSval=46737550 TSecr=595549827"
"620","35.240491","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=543836 Win=63712 Len=0 TSval=46737555 TSecr=595549832"
"621","35.241767","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"622","35.243127","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"623","35.244381","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"624","35.245644","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"625","35.246939","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"626","35.248176","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"627","35.248238","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=546732 Win=63712 Len=0 TSval=46737555 TSecr=595549832"
"628","35.248311","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=549628 Win=63712 Len=0 TSval=46737557 TSecr=595549832"
"629","35.248385","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=552524 Win=63712 Len=0 TSval=46737558 TSecr=595549834"
"630","35.248455","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=553972 Win=63712 Len=0 TSval=46737563 TSecr=595549835"
"631","35.249701","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"632","35.250938","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"633","35.252174","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"634","35.253409","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"635","35.254647","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"636","35.255883","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"637","35.257119","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"638","35.447939","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=556868 Win=63712 Len=0 TSval=46737597 TSecr=595549872"
"639","35.449296","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"640","35.450538","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"641","35.471688","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=559764 Win=63712 Len=0 TSval=46737599 TSecr=595549872"
"642","35.473053","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"643","35.474292","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"644","35.642743","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 641#1] 33397 > http [ACK] Seq=748 Ack=559764 Win=63712 Len=0 TSval=46737616 TSecr=595549872"
"645","35.668631","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 641#2] 33397 > http [ACK] Seq=748 Ack=559764 Win=63712 Len=0 TSval=46737619 TSecr=595549872"
"646","35.681733","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 641#3] 33397 > http [ACK] Seq=748 Ack=559764 Win=63712 Len=0 TSval=46737620 TSecr=595549872"
"647","35.681805","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 641#4] 33397 > http [ACK] Seq=748 Ack=559764 Win=63712 Len=0 TSval=46737620 TSecr=595549872"
"648","35.683103","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Fast Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"649","36.677673","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"650","36.863689","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=561212 Win=62264 Len=0 TSval=46737738 TSecr=595550016"
"651","36.865085","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"652","36.866313","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"653","37.052430","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=562660 Win=60816 Len=0 TSval=46737757 TSecr=595550034"
"654","37.053818","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"655","37.055051","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"656","37.055113","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=564108 Win=59368 Len=0 TSval=46737757 TSecr=595550034"
"657","37.056460","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"658","37.057700","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"659","37.241173","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=565556 Win=57920 Len=0 TSval=46737776 TSecr=595550053"
"660","37.242539","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"661","37.242671","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=567004 Win=57920 Len=0 TSval=46737776 TSecr=595550053"
"662","37.243914","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"663","37.244056","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=568452 Win=57920 Len=0 TSval=46737776 TSecr=595550053"
"664","37.244191","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=569900 Win=57920 Len=0 TSval=46737776 TSecr=595550053"
"665","37.245671","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"666","37.246909","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"667","37.248145","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"668","37.248402","192.150.187.11","146.164.69.8","HTTP","293","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"669","37.249640","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"670","37.428772","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=571348 Win=57920 Len=0 TSval=46737795 TSecr=595550072"
"671","37.430141","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"672","37.477757","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=578588 Win=57920 Len=0 TSval=46737795 TSecr=595550072"
"673","37.477828","146.164.69.8","192.150.187.11","TCP","52","[TCP Window Update] 33397 > http [ACK] Seq=748 Ack=578588 Win=63712 Len=0 TSval=46737795 TSecr=595550072"
"674","37.477918","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 673#1] 33397 > http [ACK] Seq=748 Ack=578588 Win=63712 Len=0 TSval=46737795 TSecr=595550072"
"675","37.479164","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"676","37.479312","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 673#2] 33397 > http [ACK] Seq=748 Ack=578588 Win=63712 Len=0 TSval=46737796 TSecr=595550072"
"677","37.479385","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 673#3] 33397 > http [ACK] Seq=748 Ack=578588 Win=63712 Len=0 TSval=46737796 TSecr=595550072"
"678","37.479481","146.164.69.8","192.150.187.11","TCP","52","[TCP ACKed unseen segment] 33397 > http [ACK] Seq=748 Ack=578829 Win=63712 Len=0 TSval=46737796 TSecr=595550072"
"679","37.480949","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"680","37.482189","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"681","37.483423","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"682","37.484661","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"683","37.485892","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"684","37.487130","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"685","37.618663","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=580277 Win=63712 Len=0 TSval=46737814 TSecr=595550091"
"686","37.620034","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"687","37.621264","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"688","37.697803","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=581725 Win=63712 Len=0 TSval=46737818 TSecr=595550096"
"689","37.697965","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=583173 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"690","37.699228","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"691","37.699309","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=584621 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"692","37.699518","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=586069 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"693","37.699592","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=587517 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"694","37.699665","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 693#1] 33397 > http [ACK] Seq=748 Ack=587517 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"695","37.699744","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 693#2] 33397 > http [ACK] Seq=748 Ack=587517 Win=63712 Len=0 TSval=46737819 TSecr=595550096"
"696","37.700987","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"697","37.702218","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"698","37.703454","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"699","37.704689","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"700","37.705930","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"701","37.707166","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"702","37.708401","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"703","37.808229","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 693#3] 33397 > http [ACK] Seq=748 Ack=587517 Win=63712 Len=0 TSval=46737833 TSecr=595550096"
"704","37.809584","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Fast Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"705","37.818712","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=588965 Win=63712 Len=0 TSval=46737834 TSecr=595550110"
"706","37.820044","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"707","37.821273","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"708","37.884576","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 705#1] 33397 > http [ACK] Seq=748 Ack=588965 Win=63712 Len=0 TSval=46737840 TSecr=595550110"
"709","37.885929","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"710","38.134761","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=590413 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"711","38.136121","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Retransmission] Continuation or non-HTTP traffic[Packet size limited during capture]"
"712","38.137352","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"713","38.138526","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 710#1] 33397 > http [ACK] Seq=748 Ack=590413 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"714","38.139881","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"715","38.139948","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=591861 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"716","38.140016","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 715#1] 33397 > http [ACK] Seq=748 Ack=591861 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"717","38.141262","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"718","38.142497","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"719","38.142645","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=593309 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"720","38.143918","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"721","38.145173","192.150.187.11","146.164.69.8","HTTP","1500","[TCP Out-Of-Order] Continuation or non-HTTP traffic[Packet size limited during capture]"
"722","38.146473","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"723","38.146532","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 719#1] 33397 > http [ACK] Seq=748 Ack=593309 Win=63712 Len=0 TSval=46737841 TSecr=595550118"
"724","38.146606","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=594757 Win=63712 Len=0 TSval=46737842 TSecr=595550118"
"725","38.147902","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"726","38.154416","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 724#1] 33397 > http [ACK] Seq=748 Ack=594757 Win=63712 Len=0 TSval=46737853 TSecr=595550118"
"727","38.155236","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 724#2] 33397 > http [ACK] Seq=748 Ack=594757 Win=63712 Len=0 TSval=46737853 TSecr=595550118"
"728","38.155309","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=596205 Win=63712 Len=0 TSval=46737853 TSecr=595550130"
"729","38.182273","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=597653 Win=63712 Len=0 TSval=46737859 TSecr=595550136"
"730","38.368402","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 729#1] 33397 > http [ACK] Seq=748 Ack=597653 Win=63712 Len=0 TSval=46737884 TSecr=595550136"
"731","38.370850","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=599101 Win=63712 Len=0 TSval=46737884 TSecr=595550161"
"732","38.370924","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=600549 Win=63712 Len=0 TSval=46737885 TSecr=595550162"
"733","38.371014","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 732#1] 33397 > http [ACK] Seq=748 Ack=600549 Win=63712 Len=0 TSval=46737885 TSecr=595550162"
"734","38.371087","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=601997 Win=63712 Len=0 TSval=46737886 TSecr=595550162"
"735","38.372449","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"736","38.372505","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=603445 Win=63712 Len=0 TSval=46737886 TSecr=595550162"
"737","38.373833","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"738","38.374455","146.164.69.8","192.150.187.11","TCP","52","[TCP Dup ACK 736#1] 33397 > http [ACK] Seq=748 Ack=603445 Win=63712 Len=0 TSval=46737886 TSecr=595550162"
"739","38.374528","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=604893 Win=63712 Len=0 TSval=46737886 TSecr=595550162"
"740","38.375872","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"741","38.511921","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=606341 Win=63712 Len=0 TSval=46737887 TSecr=595550163"
"742","38.513302","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"743","38.514538","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"744","38.564184","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=607789 Win=63712 Len=0 TSval=46737908 TSecr=595550185"
"745","38.565540","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"746","38.565608","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=609237 Win=63712 Len=0 TSval=46737908 TSecr=595550185"
"747","38.566955","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"748","38.848448","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=612133 Win=63712 Len=0 TSval=46737922 TSecr=595550199"
"749","38.848520","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=613581 Win=63712 Len=0 TSval=46737922 TSecr=595550199"
"750","38.849988","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"751","38.851242","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"752","38.852496","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"753","38.862047","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=615029 Win=63712 Len=0 TSval=46737927 TSecr=595550204"
"754","38.863412","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"755","39.081104","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=616477 Win=63712 Len=0 TSval=46737927 TSecr=595550204"
"756","39.082441","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"757","39.082528","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=617925 Win=63712 Len=0 TSval=46737956 TSecr=595550233"
"758","39.082624","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=619373 Win=63712 Len=0 TSval=46737956 TSecr=595550233"
"759","39.082752","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=620821 Win=63712 Len=0 TSval=46737956 TSecr=595550233"
"760","39.082842","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=622269 Win=63712 Len=0 TSval=46737957 TSecr=595550234"
"761","39.084151","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"762","39.085386","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"763","39.086620","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"764","39.087863","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"765","39.089096","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"766","39.362097","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=623717 Win=63712 Len=0 TSval=46737980 TSecr=595550256"
"767","39.363469","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"768","39.363525","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=625165 Win=63712 Len=0 TSval=46737981 TSecr=595550256"
"769","39.363604","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=628061 Win=63712 Len=0 TSval=46737981 TSecr=595550256"
"770","39.363728","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=630957 Win=63712 Len=0 TSval=46737982 TSecr=595550256"
"771","39.364979","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"772","39.366210","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"773","39.367452","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"774","39.368683","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"775","39.369917","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"776","39.371152","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"777","39.651767","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=633853 Win=63712 Len=0 TSval=46738010 TSecr=595550284"
"778","39.651831","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=636749 Win=63712 Len=0 TSval=46738010 TSecr=595550284"
"779","39.651904","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=639645 Win=63712 Len=0 TSval=46738010 TSecr=595550284"
"780","39.653151","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"781","39.653336","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=641093 Win=63712 Len=0 TSval=46738014 TSecr=595550284"
"782","39.654622","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"783","39.655852","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"784","39.657083","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"785","39.658326","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"786","39.659556","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"787","39.660794","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"788","39.844770","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=643989 Win=63712 Len=0 TSval=46738036 TSecr=595550313"
"789","39.846130","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"790","39.847362","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"791","39.991080","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=646885 Win=63712 Len=0 TSval=46738039 TSecr=595550313"
"792","39.992443","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"793","39.992549","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=649781 Win=63712 Len=0 TSval=46738039 TSecr=595550313"
"794","39.992642","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=651229 Win=63712 Len=0 TSval=46738043 TSecr=595550313"
"795","39.993891","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"796","39.995126","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"797","39.996365","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"798","39.997597","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"799","39.998831","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"800","40.039246","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=654125 Win=63712 Len=0 TSval=46738055 TSecr=595550332"
"801","40.040595","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"802","40.041830","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"803","40.186541","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=657021 Win=63712 Len=0 TSval=46738070 TSecr=595550347"
"804","40.186607","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=659917 Win=63712 Len=0 TSval=46738070 TSecr=595550347"
"805","40.187919","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"806","40.189145","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"807","40.190382","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"808","40.190529","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=662813 Win=63712 Len=0 TSval=46738071 TSecr=595550347"
"809","40.191776","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"810","40.193013","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"811","40.194249","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"812","40.269610","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=665709 Win=63712 Len=0 TSval=46738075 TSecr=595550352"
"813","40.270950","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"814","40.272182","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"815","40.386752","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=668605 Win=63712 Len=0 TSval=46738090 TSecr=595550367"
"816","40.388114","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"817","40.389343","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"818","40.389489","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=671501 Win=63712 Len=0 TSval=46738090 TSecr=595550367"
"819","40.390740","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"820","40.392217","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"821","40.393476","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"822","40.393535","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=674397 Win=63712 Len=0 TSval=46738091 TSecr=595550367"
"823","40.394873","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"824","40.396111","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"825","40.468670","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=677293 Win=63712 Len=0 TSval=46738098 TSecr=595550375"
"826","40.470018","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"827","40.471252","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"828","40.581725","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=680189 Win=63712 Len=0 TSval=46738110 TSecr=595550387"
"829","40.583092","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"830","40.584325","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"831","40.584388","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=683085 Win=63712 Len=0 TSval=46738110 TSecr=595550387"
"832","40.585757","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"833","40.586991","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"834","40.587057","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=685981 Win=63712 Len=0 TSval=46738110 TSecr=595550387"
"835","40.588393","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"836","40.589624","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"837","40.616455","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=687429 Win=63712 Len=0 TSval=46738114 TSecr=595550387"
"838","40.617805","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"839","40.662168","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=690325 Win=63712 Len=0 TSval=46738118 TSecr=595550395"
"840","40.663521","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"841","40.664748","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"842","40.894171","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=693221 Win=63712 Len=0 TSval=46738129 TSecr=595550406"
"843","40.894237","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=696117 Win=63712 Len=0 TSval=46738129 TSecr=595550406"
"844","40.894327","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=699013 Win=63712 Len=0 TSval=46738130 TSecr=595550407"
"845","40.895580","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"846","40.896833","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"847","40.896976","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=700461 Win=63712 Len=0 TSval=46738136 TSecr=595550410"
"848","40.897054","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=703357 Win=63712 Len=0 TSval=46738137 TSecr=595550414"
"849","40.898301","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"850","40.899532","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"851","40.900769","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"852","40.902003","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"853","40.903244","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"854","40.904474","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"855","40.905714","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"856","40.906946","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"857","41.095366","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=706253 Win=63712 Len=0 TSval=46738161 TSecr=595550437"
"858","41.096729","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"859","41.097958","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"860","41.113060","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=709149 Win=63712 Len=0 TSval=46738162 TSecr=595550437"
"861","41.114404","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"862","41.115640","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"863","41.358328","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=712045 Win=63712 Len=0 TSval=46738162 TSecr=595550437"
"864","41.359687","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"865","41.360945","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"866","41.361014","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=714941 Win=63712 Len=0 TSval=46738163 TSecr=595550437"
"867","41.361085","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=717837 Win=63712 Len=0 TSval=46738163 TSecr=595550438"
"868","41.362353","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"869","41.363594","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"870","41.363956","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=720733 Win=63712 Len=0 TSval=46738182 TSecr=595550457"
"871","41.364030","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=723629 Win=63712 Len=0 TSval=46738183 TSecr=595550459"
"872","41.365279","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"873","41.366513","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"874","41.367752","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"875","41.368990","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"876","41.370221","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"877","41.371456","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"878","41.372696","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"879","41.574278","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=726525 Win=63712 Len=0 TSval=46738207 TSecr=595550484"
"880","41.575640","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"881","41.576872","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"882","41.599996","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=729421 Win=63712 Len=0 TSval=46738208 TSecr=595550484"
"883","41.600062","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=732317 Win=63712 Len=0 TSval=46738208 TSecr=595550484"
"884","41.600135","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=735213 Win=63712 Len=0 TSval=46738208 TSecr=595550484"
"885","41.600559","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=738109 Win=63712 Len=0 TSval=46738209 TSecr=595550484"
"886","41.601834","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"887","41.603068","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"888","41.604311","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"889","41.605540","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"890","41.606780","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"891","41.608014","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"892","41.609372","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"893","41.610631","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"894","41.610689","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=739557 Win=63712 Len=0 TSval=46738213 TSecr=595550484"
"895","41.612025","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"896","41.795456","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=742453 Win=63712 Len=0 TSval=46738228 TSecr=595550505"
"897","41.796787","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"898","41.798028","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"899","41.800858","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=745349 Win=63712 Len=0 TSval=46738232 TSecr=595550508"
"900","41.802200","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"901","41.803440","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"902","41.828553","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=748245 Win=63712 Len=0 TSval=46738233 TSecr=595550508"
"903","41.828620","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=751141 Win=63712 Len=0 TSval=46738233 TSecr=595550508"
"904","41.829935","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"905","41.831194","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"906","41.831378","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=754037 Win=63712 Len=0 TSval=46738233 TSecr=595550508"
"907","41.832633","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"908","41.833862","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"909","41.835097","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"910","41.836328","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"911","41.837566","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"912","41.959952","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=755485 Win=63712 Len=0 TSval=46738237 TSecr=595550509"
"913","41.961287","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"914","42.082999","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=758381 Win=63712 Len=0 TSval=46738251 TSecr=595550527"
"915","42.084333","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"916","42.084576","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=761277 Win=63712 Len=0 TSval=46738251 TSecr=595550528"
"917","42.084666","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=764173 Win=63712 Len=0 TSval=46738254 TSecr=595550531"
"918","42.084745","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=767069 Win=63712 Len=0 TSval=46738254 TSecr=595550531"
"919","42.084836","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=769965 Win=63712 Len=0 TSval=46738254 TSecr=595550531"
"920","42.084909","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=771413 Win=63712 Len=0 TSval=46738258 TSecr=595550531"
"921","42.086661","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"922","42.087899","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"923","42.089138","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"924","42.090373","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"925","42.091607","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"926","42.092844","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"927","42.094082","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"928","42.095312","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"929","42.096548","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"930","42.097789","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"931","42.227833","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=772861 Win=63712 Len=0 TSval=46738275 TSecr=595550544"
"932","42.229214","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"933","42.472446","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=775757 Win=63712 Len=0 TSval=46738279 TSecr=595550556"
"934","42.473832","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"935","42.473925","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=778653 Win=63712 Len=0 TSval=46738279 TSecr=595550556"
"936","42.474111","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=781549 Win=63712 Len=0 TSval=46738280 TSecr=595550556"
"937","42.474185","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=784445 Win=63712 Len=0 TSval=46738280 TSecr=595550556"
"938","42.474282","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=787341 Win=63712 Len=0 TSval=46738280 TSecr=595550556"
"939","42.475906","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"940","42.477160","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"941","42.478420","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"942","42.479677","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"943","42.480970","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"944","42.482272","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"945","42.483569","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"946","42.484866","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"947","42.486103","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"948","42.487334","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"949","42.487398","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=788789 Win=63712 Len=0 TSval=46738284 TSecr=595550556"
"950","42.487544","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=790237 Win=63712 Len=0 TSval=46738301 TSecr=595550571"
"951","42.488791","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"952","42.490511","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"953","42.701333","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=793133 Win=63712 Len=0 TSval=46738322 TSecr=595550595"
"954","42.702681","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"955","42.703911","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"956","42.706569","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=796029 Win=63712 Len=0 TSval=46738322 TSecr=595550595"
"957","42.707919","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"958","42.709152","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"959","42.985761","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=798925 Win=63712 Len=0 TSval=46738323 TSecr=595550595"
"960","42.985828","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=801821 Win=63712 Len=0 TSval=46738324 TSecr=595550595"
"961","42.985902","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=804717 Win=63712 Len=0 TSval=46738324 TSecr=595550595"
"962","42.987146","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"963","42.988511","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"964","42.989767","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"965","42.991018","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"966","42.992315","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"967","42.993572","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"968","42.993636","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=807613 Win=63712 Len=0 TSval=46738324 TSecr=595550595"
"969","42.994969","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"970","42.996206","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"971","43.007875","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=809061 Win=63712 Len=0 TSval=46738329 TSecr=595550597"
"972","43.009205","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"973","43.064726","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=811957 Win=63712 Len=0 TSval=46738341 TSecr=595550618"
"974","43.066059","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"975","43.066145","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=814853 Win=63712 Len=0 TSval=46738344 TSecr=595550619"
"976","43.067397","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"977","43.068629","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"978","43.069870","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"979","43.198751","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=817749 Win=63712 Len=0 TSval=46738370 TSecr=595550646"
"980","43.200126","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"981","43.201475","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"982","43.201538","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=820645 Win=63712 Len=0 TSval=46738371 TSecr=595550646"
"983","43.201611","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=823541 Win=63712 Len=0 TSval=46738371 TSecr=595550646"
"984","43.201684","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=826437 Win=63712 Len=0 TSval=46738371 TSecr=595550647"
"985","43.202933","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"986","43.204169","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"987","43.205405","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"988","43.206641","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"989","43.207874","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"990","43.209112","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"991","43.210349","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"992","43.236435","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=827885 Win=63712 Len=0 TSval=46738376 TSecr=595550649"
"993","43.237791","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"994","43.256585","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=830781 Win=63712 Len=0 TSval=46738377 TSecr=595550654"
"995","43.257934","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"996","43.259163","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"997","43.259225","146.164.69.8","192.150.187.11","TCP","52","33397 > http [ACK] Seq=748 Ack=833677 Win=63712 Len=0 TSval=46738378 TSecr=595550654"
"998","43.260577","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"
"999","43.261818","192.150.187.11","146.164.69.8","HTTP","1500","Continuation or non-HTTP traffic[Packet size limited during capture]"