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