-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.txt
1666 lines (1666 loc) · 225 KB
/
logs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[2017-07-23 12:44:00,076] DEBUG Site:1UDbAD..MkoV Loaded json: 6600 (latest: data/userdb/19nP8vftFUrYeabdD392fwyPbqWAgGtcce/content.json)
[2017-07-23 12:44:04,697] DEBUG Site:1UDbAD..MkoV Loaded json: 6700 (latest: data/userdb/18XDV3MuaGGQFAdeBNgcDUkviz2p28RsKB/content.json)
[2017-07-23 12:44:07,937] DEBUG Site:1UDbAD..MkoV Loaded json: 6800 (latest: data/userdb/18VaSZHJFAADSPaFLNj3HnWToDkb4Q66iD/content.json)
[2017-07-23 12:44:11,278] DEBUG Site:1UDbAD..MkoV Loaded json: 6900 (latest: data/userdb/17SHj1SJqJHT9SCPJ7bmddhCkU4Sucedmo/content.json)
[2017-07-23 12:44:14,332] DEBUG Site:1UDbAD..MkoV Loaded json: 7000 (latest: data/userdb/1PTaJe3LLeB5Pfxq8KjcpQSPcSK1PQqsQs/content.json)
[2017-07-23 12:44:17,280] DEBUG Site:1UDbAD..MkoV Loaded json: 7100 (latest: data/userdb/1Jy18AZP5mC5zb1Xn7K7sSLNvk5aBQSDV1/content.json)
[2017-07-23 12:44:20,657] DEBUG Site:1UDbAD..MkoV Loaded json: 7200 (latest: data/userdb/122w74v5jtXmFAiJbpjaeFXpkFZyvZ3gfi/content.json)
[2017-07-23 12:44:23,905] DEBUG Site:1UDbAD..MkoV Loaded json: 7300 (latest: data/userdb/1gqQzeiADWqc2dCZn7JhmXqJwWqr7LW17/content.json)
[2017-07-23 12:44:26,921] DEBUG Site:1UDbAD..MkoV Loaded json: 7400 (latest: data/userdb/17i7Y7r8nTaCfLbCAuaKyc4R5BbKZYU2Hr/content.json)
[2017-07-23 12:44:30,775] DEBUG Site:1UDbAD..MkoV Loaded json: 7500 (latest: data/userdb/1JUG95g9ysj439uw4rGEwVhAzpVu6vRzxA/content.json)
[2017-07-23 12:44:34,369] DEBUG Site:1UDbAD..MkoV Loaded json: 7600 (latest: data/userdb/1Vy5x8HrbwRc2GM32GfZtpxdgoB5f34fd/content.json)
[2017-07-23 12:44:37,295] DEBUG Site:1UDbAD..MkoV Loaded json: 7700 (latest: data/userdb/1P97Eo3zXwxTwqg4otKMNxLcRvzCQpijEY/content.json)
[2017-07-23 12:44:40,336] DEBUG Site:1UDbAD..MkoV Loaded json: 7800 (latest: data/userdb/16BX1iqCcGkPAAtws3kuNoLxWNaYnxsz1P/content.json)
[2017-07-23 12:44:43,736] DEBUG Site:1UDbAD..MkoV Loaded json: 7900 (latest: data/userdb/1FTB7XuZd2HgdDGU28HosYz98RwY8oguzg/content.json)
[2017-07-23 12:44:46,724] DEBUG Site:1UDbAD..MkoV Loaded json: 8000 (latest: data/userdb/1CSc14JKdGAQJfQsfCLrduhB6zU4oEMwBf/content.json)
[2017-07-23 12:44:49,174] DEBUG Site:1UDbAD..MkoV Loaded json: 8100 (latest: data/userdb/1AAxBkgc9Re5EJFU98PTS2bVhSYZ6sBrsS/content.json)
[2017-07-23 12:44:52,234] DEBUG Site:1UDbAD..MkoV Loaded json: 8200 (latest: data/userdb/1NXYzUcHiUubxMLeRFjZR9bjsnpMBfEDqT/content.json)
[2017-07-23 12:44:54,822] DEBUG Site:1UDbAD..MkoV Loaded json: 8300 (latest: data/userdb/1HPDVFBNovEVSSjS4Tv7Ai72TNdyL24L9z/content.json)
[2017-07-23 12:44:57,542] DEBUG Site:1UDbAD..MkoV Loaded json: 8400 (latest: data/userdb/1HrfdxizKWixU7zMVLr2F1B9DBRftdGNYF/content.json)
[2017-07-23 12:45:00,216] DEBUG Site:1UDbAD..MkoV Loaded json: 8500 (latest: data/userdb/1Hrj4bNPWorqYCAchLxdNTcZR1U8ZCJ42A/content.json)
[2017-07-23 12:45:02,801] DEBUG Site:1UDbAD..MkoV Loaded json: 8600 (latest: data/userdb/1MDfKpn2CKSULbhctVUsEyp3bfurZ5UQtu/content.json)
[2017-07-23 12:45:05,454] DEBUG Site:1UDbAD..MkoV Loaded json: 8700 (latest: data/userdb/14uz3YyLDLr3U9HHFCf3WijmdH8sn5k42P/content.json)
[2017-07-23 12:45:08,196] DEBUG Site:1UDbAD..MkoV Loaded json: 8800 (latest: data/userdb/16fFLqvzTkab19xEZx7ZjUSE5WerA8nC1M/content.json)
[2017-07-23 12:45:10,632] DEBUG Site:1UDbAD..MkoV Loaded json: 8900 (latest: data/userdb/1Axh2nVUoq6zu6Wh4jLK4rh7kzsFPVaeTQ/content.json)
[2017-07-23 12:45:13,315] DEBUG Site:1UDbAD..MkoV Loaded json: 9000 (latest: data/userdb/18a6gNwuyrSufgW76tsgCtyHfJRmqmqnak/content.json)
[2017-07-23 12:45:15,979] DEBUG Site:1UDbAD..MkoV Loaded json: 9100 (latest: data/userdb/12s5NyJfXuVdamuAiKP9JcPBgwZLuNS76G/content.json)
[2017-07-23 12:45:18,444] DEBUG Site:1UDbAD..MkoV Loaded json: 9200 (latest: data/userdb/18ToHp3ncPcu4De4kgmqkXe3DimFSVw5Ye/content.json)
[2017-07-23 12:45:21,180] DEBUG Site:1UDbAD..MkoV Loaded json: 9300 (latest: data/userdb/1F1yKZ1AAYsbcjpvgzQwic1cD2w6rMFMra/content.json)
[2017-07-23 12:45:24,062] DEBUG Site:1UDbAD..MkoV Loaded json: 9400 (latest: data/userdb/1NKqjPYd2dptVN9CK2DsupgxNkSHbcy2dt/content.json)
[2017-07-23 12:45:27,032] DEBUG Site:1UDbAD..MkoV Loaded json: 9500 (latest: data/userdb/1Mux1pHhr1AisD9YDY9ptQSb7a4SUsUiAy/content.json)
[2017-07-23 12:45:30,348] DEBUG Site:1UDbAD..MkoV Loaded json: 9600 (latest: data/userdb/1GU98AGir5LhPQwapPkKCw5oSVqXV8wp3Q/content.json)
[2017-07-23 12:45:33,052] DEBUG Site:1UDbAD..MkoV Loaded json: 9700 (latest: data/userdb/12TpgWPoanhBLzd41yQgyTLt2WJP1xDzxa/content.json)
[2017-07-23 12:45:35,690] DEBUG Site:1UDbAD..MkoV Loaded json: 9800 (latest: data/userdb/19bB74ZaYYdMzMu2FbWgsv9D5TkcM1Utje/content.json)
[2017-07-23 12:45:38,558] DEBUG Site:1UDbAD..MkoV Loaded json: 9900 (latest: data/userdb/1J8Xh1H8Wg4VDcromchdgUHG6z7abk9HNz/content.json)
[2017-07-23 12:45:40,963] DEBUG Site:1UDbAD..MkoV Loaded json: 10000 (latest: data/userdb/1CaS9BVVBv1XjF4ynGYaE9VbJFwY5ZncRW/content.json)
[2017-07-23 12:45:43,641] DEBUG Site:1UDbAD..MkoV Loaded json: 10100 (latest: data/userdb/1BM1oN4LaLkPs97zHfMxcXdt6u2FipfFhH/content.json)
[2017-07-23 12:45:46,246] DEBUG Site:1UDbAD..MkoV Loaded json: 10200 (latest: data/userdb/1JtVjiuh8wNNNS63aMT7sxjZx5jLtqGw4N/content.json)
[2017-07-23 12:45:48,859] DEBUG Site:1UDbAD..MkoV Loaded json: 10300 (latest: data/userdb/1G4H6hPSSsHXCdZo9dPFEfW7QfDrMNqKMb/content.json)
[2017-07-23 12:45:51,292] DEBUG Site:1UDbAD..MkoV Loaded json: 10400 (latest: data/userdb/1AkE5mjeYRiQLGF8Q6NmGvpkm1kk1R6zMe/content.json)
[2017-07-23 12:45:53,809] DEBUG Site:1UDbAD..MkoV Loaded json: 10500 (latest: data/userdb/1nqdBSrhCPJwj7v3gAHvjUFyeoQzwPH84/content.json)
[2017-07-23 12:45:56,104] DEBUG Site:1UDbAD..MkoV Loaded json: 10600 (latest: data/userdb/18TodTU5m6LkSWkRxsyPY3iqVeCszqwPru/content.json)
[2017-07-23 12:45:56,467] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1GnSLu..EbXn
[2017-07-23 12:45:57,230] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1BLueG..tG49
[2017-07-23 12:46:02,220] DEBUG Site:1BLueG..tG49 Loaded json: 200 (latest: data/users/1LmxVpbqhEn3ZGVp4bfmmPogMhCqRDePpv/content.json)
[2017-07-23 12:46:07,380] DEBUG Site:1BLueG..tG49 Loaded json: 300 (latest: data/users/1AWKKjCvCFvUbmrbBtqrMSfAGZ8D6tAVHt/content.json)
[2017-07-23 12:46:07,388] ERROR Site:1BLueG..tG49 [MISSING] data/users/1AWKKjCvCFvUbmrbBtqrMSfAGZ8D6tAVHt/data.json
[2017-07-23 12:46:12,032] DEBUG Site:1BLueG..tG49 Loaded json: 400 (latest: data/users/1xf9XC4Nsa7YfQWFiK6xGsNDJA3AaCTUa/content.json)
[2017-07-23 12:46:15,707] DEBUG Site:1BLueG..tG49 Loaded json: 500 (latest: data/users/1DraPdRZLcdVrpRM6QYryiUNM4seMaTzCf/content.json)
[2017-07-23 12:46:19,423] DEBUG Site:1BLueG..tG49 Loaded json: 600 (latest: data/users/1Hc7EB9deXGcBb8BJWgakoxRgnxu8fT7TG/content.json)
[2017-07-23 12:46:23,444] DEBUG Site:1BLueG..tG49 Loaded json: 700 (latest: data/users/17wD81Tgg4Tr1heE3b35rNfrXYwhnJRsP5/content.json)
[2017-07-23 12:46:26,980] DEBUG Site:1BLueG..tG49 Loaded json: 800 (latest: data/users/1EizZqY2BTVcG6TEGAYXzDPfCHmx29ffRp/content.json)
[2017-07-23 12:46:30,971] DEBUG Site:1BLueG..tG49 Loaded json: 900 (latest: data/users/13VQ3f93wEFAjF3AHVheCU7dVURxseZbEE/content.json)
[2017-07-23 12:46:34,730] DEBUG Site:1BLueG..tG49 Loaded json: 1000 (latest: data/users/13YuSFL3YKh6KQPWAgxtfiufGMTDHypVFM/content.json)
[2017-07-23 12:46:37,259] ERROR Site:1BLueG..tG49 [MISSING] data/users/1yvSQH5Z7aJra4y9s6KG2kjLeGXYhNgn7/data.json
[2017-07-23 12:46:38,798] DEBUG Site:1BLueG..tG49 Loaded json: 1100 (latest: data/users/1DppgGpJVQoNEtqnDpLFuQzcE9Meif34pw/content.json)
[2017-07-23 12:46:39,970] ERROR Site:1BLueG..tG49 [MISSING] data/users/1NsW7cpAZSc2F2RSUBSE8TcZvuUMrjtCGq/data.json
[2017-07-23 12:46:42,525] DEBUG Site:1BLueG..tG49 Loaded json: 1200 (latest: data/users/1ARV8iPXcXUiDGTbDr8oSYPQM4D5WTqrg5/content.json)
[2017-07-23 12:46:46,562] DEBUG Site:1BLueG..tG49 Loaded json: 1300 (latest: data/users/1FyBrrWyanPyiZxkHmh9b7Kb1hXA3W48Te/content.json)
[2017-07-23 12:46:50,073] DEBUG Site:1BLueG..tG49 Loaded json: 1400 (latest: data/users/137PNA5gLgCTLZTBtzUqCmMoZ752NQGQSJ/content.json)
[2017-07-23 12:46:53,842] DEBUG Site:1BLueG..tG49 Loaded json: 1500 (latest: data/users/1AvDcz4U73bcUgYS1FSS4rw7s1J66HTpNx/content.json)
[2017-07-23 12:46:58,009] DEBUG Site:1BLueG..tG49 Loaded json: 1600 (latest: data/users/158y182pF42FoYxYjkqzKAzQqFMZ99HsP6/content.json)
[2017-07-23 12:47:01,967] DEBUG Site:1BLueG..tG49 Loaded json: 1700 (latest: data/users/1CSc14JKdGAQJfQsfCLrduhB6zU4oEMwBf/content.json)
[2017-07-23 12:47:04,151] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1AbRRD..tMJZ
[2017-07-23 12:47:05,499] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1CiGGh..tJDk
[2017-07-23 12:47:05,986] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1D7xb8..xgFj
[2017-07-23 12:47:06,349] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1LQeBa..1vgY
[2017-07-23 12:47:07,625] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 149fpM..FKBq
[2017-07-23 12:47:10,221] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1RedkC..uFdL
[2017-07-23 12:47:14,216] DEBUG Site:1RedkC..uFdL Loaded json: 400 (latest: data/users/1L5rGDgTs4W2V7gekSvJNhKa7XaHkVwotD/content.json)
[2017-07-23 12:47:18,196] DEBUG Site:1RedkC..uFdL Loaded json: 500 (latest: data/users/126X2qQRBfL77auGPQAxvTEentcztuaDf9/content.json)
[2017-07-23 12:47:19,392] ERROR Site:1RedkC..uFdL [MISSING] data/users/19VX63e8XidEWrjJhGjMh4Pwf7vd5Yh7bz/data.json
[2017-07-23 12:47:21,845] DEBUG Site:1RedkC..uFdL Loaded json: 600 (latest: data/users/1ALXyaQsvvCQ3R5WBrPbe4dXsqnLCLEkB7/content.json)
[2017-07-23 12:47:25,530] DEBUG Site:1RedkC..uFdL Loaded json: 700 (latest: data/users/15CcEC3qMTaYmuaywKYVmeHipy6Erdf4Su/content.json)
[2017-07-23 12:47:29,769] DEBUG Site:1RedkC..uFdL Loaded json: 800 (latest: data/users/1KAfCgw4ECkqUccYQZDoPuTMhA2YPMaZwG/content.json)
[2017-07-23 12:47:34,076] DEBUG Site:1RedkC..uFdL Loaded json: 900 (latest: data/users/17ac9ybVj5CtUpBvi5NeP1EwNZjfJoZWvt/content.json)
[2017-07-23 12:47:39,023] DEBUG Site:1RedkC..uFdL Loaded json: 1000 (latest: data/users/1Q3DcejYbdNFDSDdjpznMmgg1ZCzn1SUsn/content.json)
[2017-07-23 12:47:42,908] DEBUG Site:1RedkC..uFdL Loaded json: 1100 (latest: data/users/15pULtc5fejthQRkqPpWxpnh5UynyCHaci/content.json)
[2017-07-23 12:47:46,648] DEBUG Site:1RedkC..uFdL Loaded json: 1200 (latest: data/users/19u79Nni4Fg3xVYquq4ka7cchXb5Aqy4ex/content.json)
[2017-07-23 12:47:50,473] DEBUG Site:1RedkC..uFdL Loaded json: 1300 (latest: data/users/1BgqiduD5yMiySpgVzw7N9PHvojhFr3zZx/content.json)
[2017-07-23 12:47:55,792] DEBUG Site:1RedkC..uFdL Loaded json: 1400 (latest: data/users/18QRaL2iLVEKLihwERUgkB1hSCmsi7qx9y/content.json)
[2017-07-23 12:47:55,815] ERROR Site:1RedkC..uFdL [MISSING] data/users/18QRaL2iLVEKLihwERUgkB1hSCmsi7qx9y/data.json
[2017-07-23 12:47:59,421] DEBUG Site:1RedkC..uFdL Loaded json: 1500 (latest: data/users/1FCFQMJFe7obLv8B8rMWL4tJ6623bfagr7/content.json)
[2017-07-23 12:48:03,252] DEBUG Site:1RedkC..uFdL Loaded json: 1600 (latest: data/users/1BvbtVtk6L9DV9fPdLpHkX3H3Vb7M91rgF/content.json)
[2017-07-23 12:48:03,809] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 15mV5T..REfn
[2017-07-23 12:48:04,523] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1JUDmC..Ue52
[2017-07-23 12:48:07,772] DEBUG Site:1JUDmC..Ue52 Loaded json: 100 (latest: data/users/1PFY8ggDHL3poJq6J2EWahQjVRdgSBgsUc/content.json)
[2017-07-23 12:48:11,088] DEBUG Site:1JUDmC..Ue52 Loaded json: 200 (latest: data/users/158gCQPNd1zAPJiHW1saqDhEwdLTvCuXRo/content.json)
[2017-07-23 12:48:12,982] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 12cm58..kWYd
[2017-07-23 12:48:13,078] ERROR Site:12cm58..kWYd [MISSING] data/users/12kgNNnBaR3s7bN761BCQtkzSC7EbrK2Jd/data.json
[2017-07-23 12:48:14,086] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 12rTbt..pm8S
[2017-07-23 12:48:15,388] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1HNf26..NBKM
[2017-07-23 12:48:15,782] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1Gb25p..bJCq
[2017-07-23 12:48:16,601] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 16bNGd..cyBB
[2017-07-23 12:48:17,305] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1ARSTR..evxh
[2017-07-23 12:48:17,427] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1GrEen..yt7i
[2017-07-23 12:48:20,734] DEBUG Site:1GrEen..yt7i Loaded json: 200 (latest: data/users/1H52TK9mE9BW4XoFHnM14k8RrxRjc3Gtyv/content.json)
[2017-07-23 12:48:24,414] DEBUG Site:1GrEen..yt7i Loaded json: 300 (latest: data/users/1KojMUSr1fBEwwTJAa1kTH9tqmnAhjFwRp/content.json)
[2017-07-23 12:48:28,147] DEBUG Site:1GrEen..yt7i Loaded json: 400 (latest: data/users/17Xdkhghc2UvcSiugjSvdRHCycyHj4N1uE/content.json)
[2017-07-23 12:48:31,650] DEBUG Site:1GrEen..yt7i Loaded json: 500 (latest: data/users/1Np6ArP7vUvqeTw2C9tPsfneaUhewNkBXf/content.json)
[2017-07-23 12:48:35,523] DEBUG Site:1GrEen..yt7i Loaded json: 600 (latest: data/users/17BbN1fXTpwrMjVAXmGj2Sp2a6LA5LHCYS/content.json)
[2017-07-23 12:48:41,220] DEBUG Site:1GrEen..yt7i Loaded json: 700 (latest: data/users/1F1BFYb2nygiDJHCJuyu4mpVJvp27J57NK/content.json)
[2017-07-23 12:48:46,608] DEBUG Site:1GrEen..yt7i Loaded json: 800 (latest: data/users/1JfszLVpD9Ecpe4qrehobw97BcNnVuERcn/content.json)
[2017-07-23 12:48:50,190] DEBUG Site:1GrEen..yt7i Loaded json: 900 (latest: data/users/1DMNXeqJGnYUaffRo6BAu9W7mD81bbUjZ/content.json)
[2017-07-23 12:48:53,924] DEBUG Site:1GrEen..yt7i Loaded json: 1000 (latest: data/users/1HBqD9ntd2YYj5JBZa5Wv59W5fU482YD1e/content.json)
[2017-07-23 12:48:57,286] DEBUG Site:1GrEen..yt7i Loaded json: 1100 (latest: data/users/1v24QPkD9QegyjwdcYDxw47ZcTE4WCqxW/content.json)
[2017-07-23 12:49:00,890] DEBUG Site:1GrEen..yt7i Loaded json: 1200 (latest: data/users/1H1SHzxnPJS3hBbKvfXLqf4QJnXEUgaVe9/content.json)
[2017-07-23 12:49:04,697] DEBUG Site:1GrEen..yt7i Loaded json: 1300 (latest: data/users/148TV9RBjhvcJYE4Jkd36LeqvdBNSVb9ii/content.json)
[2017-07-23 12:49:08,411] DEBUG Site:1GrEen..yt7i Loaded json: 1400 (latest: data/users/1E6445dsLtDSjpPuhFaSjrH3ZbBgChWbTj/content.json)
[2017-07-23 12:49:12,214] DEBUG Site:1GrEen..yt7i Loaded json: 1500 (latest: data/users/1PU5h7zXZRGNgqDPbzqyWK1dHNojWxfRfu/content.json)
[2017-07-23 12:49:16,713] DEBUG Site:1GrEen..yt7i Loaded json: 1600 (latest: data/users/136xeTaAj1KvBJYEVwiizwsMHdNX1gDUg7/content.json)
[2017-07-23 12:49:20,305] DEBUG Site:1GrEen..yt7i Loaded json: 1700 (latest: data/users/1Di5tBQwQFTGuvf7njhULW3KjRag5hv2BG/content.json)
[2017-07-23 12:49:23,664] DEBUG Site:1GrEen..yt7i Loaded json: 1800 (latest: data/users/16ZWh2oAkJ5zjt9mBvJvKjsftMWapuukta/content.json)
[2017-07-23 12:49:27,117] DEBUG Site:1GrEen..yt7i Loaded json: 1900 (latest: data/users/1PaoAY3WjaHiJMqidygdaf3ZRofhdeA5hY/content.json)
[2017-07-23 12:49:30,897] DEBUG Site:1GrEen..yt7i Loaded json: 2000 (latest: data/users/1Hd72Z65uthVbnGExCLwavF1kxiNG5m3Vq/content.json)
[2017-07-23 12:49:34,354] DEBUG Site:1GrEen..yt7i Loaded json: 2100 (latest: data/users/1DgVib78eUGAY5wPni1dvTRZF83RNdNs9w/content.json)
[2017-07-23 12:49:39,003] DEBUG Site:1GrEen..yt7i Loaded json: 2200 (latest: data/users/14JH4VQt1WEdrAwL6s2VTtYhrmKGRA9J9B/content.json)
[2017-07-23 12:49:42,921] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1CouTP..Ptqz
[2017-07-23 12:49:48,660] DEBUG Site:1CouTP..Ptqz Loaded json: 100 (latest: data/users/1E89dCzxK3GwHU5Nw1SahPNyDvcv5J9tPt/content.json)
[2017-07-23 12:49:50,382] ERROR Site:1CouTP..Ptqz [MISSING] data/users/1JpWmfyZFm8k2BYTCvUNTzAmrDhkHjKRKT/data.json
[2017-07-23 12:49:51,187] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1ABFCa..bz3m
[2017-07-23 12:49:53,739] DEBUG Site:1ABFCa..bz3m Loaded json: 100 (latest: data/users/1NxmVocNdn42R5VMhNMfb1AoHR6qJ51He3/content.json)
[2017-07-23 12:49:56,062] DEBUG Site:1ABFCa..bz3m Loaded json: 200 (latest: data/users/1fR6dBmXGWzmbHnvzNZt9Joa6mVo7AVob/content.json)
[2017-07-23 12:49:56,778] DEBUG Site:1G9wPK..bh6U Loading merged site: Site 1KNmG5..rZqi
[2017-07-23 12:49:59,936] DEBUG Site:1KNmG5..rZqi Loaded json: 100 (latest: data/users/13vBk64Ftz6si7rFuafufLhoQiSVWm2XZc/content.json)
[2017-07-23 12:50:02,762] DEBUG Site:1KNmG5..rZqi Loaded json: 200 (latest: data/users/17AMQVbBa12XB3xFWKDnP2dCEx92TaiY7X/content.json)
[2017-07-23 12:50:06,642] DEBUG Site:1G9wPK..bh6U Websocket send error: WebSocketError: Socket is dead in UiWebsocket.py line 196 > websocket.py line 352
[2017-07-23 12:51:28,493] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/12h51ug6CcntU2aiBjhP8Ns2e5VypbWWtv/data/users/18fEuEcy3ZRfhCNkPT4tZM5XwdwcLKhGrW/data.json
[2017-07-23 12:51:46,076] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1FNWXmY94yzHMaWnLMup3XZyuWkqnNP12U/data.json load error: No JSON object could be decoded
[2017-07-23 12:51:46,078] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1FNWXmY94yzHMaWnLMup3XZyuWkqnNP12U/data.json
[2017-07-23 12:51:48,286] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1HpNWpc8U1sSUyk8RyyL55P4iR8jkKyHwQ/data.json load error: No JSON object could be decoded
[2017-07-23 12:51:48,286] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1HpNWpc8U1sSUyk8RyyL55P4iR8jkKyHwQ/data.json
[2017-07-23 12:52:00,444] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1LUgVgmsBWffz4yxs89qLVDJNpGyfTH3qZ/data.json load error: No JSON object could be decoded
[2017-07-23 12:52:00,444] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1LUgVgmsBWffz4yxs89qLVDJNpGyfTH3qZ/data.json
[2017-07-23 12:52:00,799] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1NDhNyavxhFyWJHscjPu5qYjMbpfKSDVzt/data.json load error: Expecting property name: line 17 column 1 (char 313)
[2017-07-23 12:52:00,801] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/1NDhNyavxhFyWJHscjPu5qYjMbpfKSDVzt/data.json
[2017-07-23 12:53:01,457] ERROR Site:1G9wPK..bh6U Error importing merged-ZeroMe/1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV/data/userdb/1DtTF9bsZgRRsqvsZo2V88rHRDz1rutWgr/content.json: TypeError: 'unicode' object does not support item assignment in SiteStorage.py line 130 > MutePlugin.py line 126 > SiteStorage.py line 75 > Db.py line 362
[2017-07-23 12:53:07,315] ERROR Site:1G9wPK..bh6U Error importing merged-ZeroMe/1UDbADib99KE9d3qZ87NqJF2QLTHmMkoV/data/userdb/1L2xnwgpnyv2Si5C1nQNDxmaB6tzabXEnN/content.json: TypeError: 'unicode' object does not support item assignment in SiteStorage.py line 130 > MutePlugin.py line 126 > SiteStorage.py line 75 > Db.py line 362
[2017-07-23 12:53:46,546] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1BLueGvui1GdbtsjcKqCf4F67uKfritG49/data/users/17eKk6mdR7bth2Fi8f74P5JV8AfHsERT4F/data.json load error: No JSON object could be decoded
[2017-07-23 12:53:46,548] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1BLueGvui1GdbtsjcKqCf4F67uKfritG49/data/users/17eKk6mdR7bth2Fi8f74P5JV8AfHsERT4F/data.json
[2017-07-23 12:54:15,292] DEBUG Db:ZeroMe Json file C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL/data/users/1EwD4HAqFpCyeT2LTpYCMEtAQjruAay5rm/data.json load error: No JSON object could be decoded
[2017-07-23 12:54:15,293] DEBUG Db:ZeroMe Cleanup json row for C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL/data/users/1EwD4HAqFpCyeT2LTpYCMEtAQjruAay5rm/data.json
[2017-07-23 12:55:39,549] INFO Site:1G9wPK..bh6U Imported 39189 data file in 1023.23500013s
[2017-07-23 12:55:39,563] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:55:39] "GET /Websocket?wrapper_key=dc02da8a7f070e43f87e9e9493c0cf0183fff6d26bbf4c5acd509796f3fc4590 HTTP/1.1" 101 129 1030.812000
[2017-07-23 12:55:39,565] DEBUG FileServer Conn#2162 56cmr6xjijdwmunu.onion [?] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:39,565] DEBUG FileServer Conn#2165 56cmr6xjijdwmunu.onion [?] > Connecting...
[2017-07-23 12:55:39,566] DEBUG TorManager Creating new Tor socket to 56cmr6xjijdwmunu.onion:15441
[2017-07-23 12:55:39,568] DEBUG FileServer Conn#2162 56cmr6xjijdwmunu.onion [?] > Socket error: No socket found
[2017-07-23 12:55:39,602] DEBUG Db:ContentDb C:/Users/krixa/Desktop/ZeroNet-win-dist/data/content.db closed in 0.034s, opened: 5
[2017-07-23 12:55:39,665] DEBUG Db:ZeroMe C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MEaLzSbzXmStAowrivK1Vu4iSEWLxgZLJ/merged-ZeroMe/ZeroMe.db closed in 0.062s, opened: 4
[2017-07-23 12:55:39,763] DEBUG Db:ZeroMe C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MeFqFfFFGQfa1J3gJyYYUvb5Lksczq7nH/merged-ZeroMe/ZeroMe.db closed in 0.097s, opened: 3
[2017-07-23 12:55:39,821] DEBUG Db:ZeroMe C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1EJupLbuy5KRWXH9DZDGiygfxDrQq2pfSf/merged-ZeroMe/ZeroMe.db closed in 0.058s, opened: 2
[2017-07-23 12:55:39,857] DEBUG Db:ZeroMe C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19ndUQE2x3NbhGhGZsstuWz2sy9f7uVT6G/merged-ZeroMe/ZeroMe.db closed in 0.036s, opened: 1
[2017-07-23 12:55:39,867] DEBUG Db:ZeroMe C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/ZeroMe.db closed in 0.009s, opened: 0
[2017-07-23 12:55:39,869] DEBUG WorkerManager:1G9wPK..bh6U ujlv73ari3nbo4wm.onion:15441: Force skipping
[2017-07-23 12:55:39,871] INFO FileServer Wakeup detected: time warp from 1500831497.36 to 1500832539.87 (1042.50699997 sleep seconds), acting like startup...
[2017-07-23 12:55:39,874] DEBUG Db:ContentDb Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/content.db in 0.003s (opened: 1, sqlite version: 2.6.0)...
[2017-07-23 12:55:39,877] DEBUG Db:ContentDb Optional size: 51.2MB/20465.3MB, Need delete: -20419.2MB
[2017-07-23 12:55:40,194] DEBUG SiteManager Saved sites in 0.32s
[2017-07-23 12:55:40,198] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:55:40,200] DEBUG FileServer Conn#616 oly6x6qeypztsocz.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 5, buff: 0...
[2017-07-23 12:55:40,200] DEBUG FileServer Conn#2099 htzxfu5qoszqz6tf.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:55:40,203] DEBUG FileServer Conn#756 195.154.71.61 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 14, buff: 0...
[2017-07-23 12:55:40,206] DEBUG FileServer Conn#2073 117.61.138.93 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _sslgte279.py line 464 > _sslgte279.py line 315
[2017-07-23 12:55:40,206] DEBUG FileServer Conn#2073 117.61.138.93 [v2] > Closing connection: MessageLoop ended, waiting_requests: 1, sites: 7, buff: 0...
[2017-07-23 12:55:40,209] DEBUG FileServer Conn#2086 171.217.115.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 13, buff: 0...
[2017-07-23 12:55:40,210] DEBUG FileServer Conn#1635 yyfod7axa2c3jc3w.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,210] DEBUG FileServer Conn#2050 101.142.231.38 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 43, buff: 0...
[2017-07-23 12:55:40,211] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:55:40] "GET /Websocket?wrapper_key=f594a06228d3784e3d627957b4734fb7fe1c4dba85ece7bb2e9be0e7c3ab5e55 HTTP/1.1" 101 129 2015.873000
[2017-07-23 12:55:40,214] DEBUG FileServer Conn#961 176.9.137.49 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 13, buff: 0...
[2017-07-23 12:55:40,216] DEBUG FileServer Conn#543 okjr22ddb42t43h4.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,217] DEBUG FileServer Conn#2144 jun7j7vv3ar6lgpu.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:55:40,217] DEBUG FileServer Conn#1936 3ldhn37z55vb3x7e.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 3, buff: 0...
[2017-07-23 12:55:40,219] DEBUG FileServer Conn#959 89.138.181.243 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 20, buff: 0...
[2017-07-23 12:55:40,220] DEBUG FileServer Conn#2111 noohnr4wnzmlqkyn.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:55:40,255] DEBUG FileServer Conn#2139 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 3, buff: 0...
[2017-07-23 12:55:40,256] DEBUG FileServer Conn#1761 yifjfx7jhwugn4jg.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 11, buff: 0...
[2017-07-23 12:55:40,257] DEBUG FileServer Conn#1019 79.31.35.104 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 7, buff: 0...
[2017-07-23 12:55:40,260] DEBUG FileServer Conn#2164 96.37.237.52 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,263] DEBUG FileServer Conn#2166 w4kbzlxgmm7kkml6.onion [?] > Connecting...
[2017-07-23 12:55:40,263] DEBUG TorManager Creating new Tor socket to w4kbzlxgmm7kkml6.onion:15441
[2017-07-23 12:55:40,266] DEBUG FileServer Conn#1975 52k7gsiahfokx3f7.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 10, buff: 0...
[2017-07-23 12:55:40,388] DEBUG FileServer GetFile Conn#1975 52k7gsiahfokx3f7.onion [v2] css/all.css request error: RequestError: File size does not match: 133011B != 132999B in FileRequest.py line 203
[2017-07-23 12:55:40,451] DEBUG FileServer Conn#1605 124.123.153.90 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 5, buff: 0...
[2017-07-23 12:55:40,453] DEBUG FileServer Conn#2091 173.62.217.145 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 25, buff: 0...
[2017-07-23 12:55:40,453] DEBUG FileServer Conn#2142 boot3rdez4rzn36x.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,453] DEBUG FileServer Conn#1934 219.217.246.7 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 5, buff: 0...
[2017-07-23 12:55:40,456] DEBUG FileServer Conn#1457 79.88.222.10 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 23, buff: 0...
[2017-07-23 12:55:40,457] DEBUG FileServer Conn#59 123.117.90.193 [v2] > Socket error: error: [Errno 10053] An established connection was aborted by the software in your host machine in Connection.py line 144 > _sslgte279.py line 464 > _sslgte279.py line 315
[2017-07-23 12:55:40,457] DEBUG FileServer Conn#59 123.117.90.193 [v2] > Closing connection: MessageLoop ended, waiting_requests: 1, sites: 10, buff: 0...
[2017-07-23 12:55:40,473] DEBUG FileServer Conn#2119 173.239.236.11 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 19, buff: 0...
[2017-07-23 12:55:40,474] DEBUG FileServer Conn#2167 217.234.44.52 [?] > Connecting...
[2017-07-23 12:55:40,476] DEBUG FileServer Conn#1282 irg6522fexh6jtow.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:55:40,477] DEBUG FileServer Conn#2112 89.46.122.218 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 16, buff: 0...
[2017-07-23 12:55:40,479] DEBUG FileServer Conn#2161 7sffreeiwzohaiup.onion [?] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 1, sites: 1, buff: 0...
[2017-07-23 12:55:40,480] DEBUG FileServer Conn#2168 7sffreeiwzohaiup.onion [?] > Connecting...
[2017-07-23 12:55:40,480] DEBUG TorManager Creating new Tor socket to 7sffreeiwzohaiup.onion:15441
[2017-07-23 12:55:40,482] DEBUG FileServer Conn#996 45j6v22bx6eengxp.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,483] DEBUG FileServer Conn#2084 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 6, buff: 0...
[2017-07-23 12:55:40,484] DEBUG WorkerManager:1CWkZv..cdky Starting workers, tasks: 1, peers: 0, workers: 0
[2017-07-23 12:55:40,484] DEBUG WorkerManager:1CWkZv..cdky Added worker: 180.165.130.134:15441, workers: 1/5
[2017-07-23 12:55:40,484] DEBUG WorkerManager:1CWkZv..cdky Added worker: 111.58.233.218:0, workers: 2/5
[2017-07-23 12:55:40,484] DEBUG WorkerManager:1CWkZv..cdky Added worker: w4kbzlxgmm7kkml6.onion:15441, workers: 3/5
[2017-07-23 12:55:40,484] DEBUG WorkerManager:1CWkZv..cdky Added worker: 112.21.76.81:0, workers: 4/5
[2017-07-23 12:55:40,486] DEBUG WorkerManager:1CWkZv..cdky Added worker: hd7ksonu2gzgmavl.onion:15441, workers: 5/5
[2017-07-23 12:55:40,486] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1BLueGvui1GdbtsjcKqCf4F67uKfritG49/data/users/1yvSQH5Z7aJra4y9s6KG2kjLeGXYhNgn7/data.json' in FileRequest.py line 197
[2017-07-23 12:55:40,489] DEBUG FileServer Conn#2138 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 8, buff: 0...
[2017-07-23 12:55:40,490] DEBUG Site:1G9wPK..bh6U Http tracker tracker1.wasabii.com.tw:6969/announce error: <urlopen error [Errno 10060] [Error 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.>
[2017-07-23 12:55:40,536] DEBUG FileServer Conn#2155 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:55:40,539] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:55:40] "GET /Websocket?wrapper_key=1921845a3fb96304e72c21dddc9d86e802dadc9fd0768362dcf36c65e3f13c4f HTTP/1.1" 101 129 2056.185000
[2017-07-23 12:55:40,540] DEBUG FileServer Conn#2160 ujlv73ari3nbo4wm.onion [?] > Closing connection: ujlv73ari3nbo4wm.onion Connect error: SOCKS5Error: 0x04: Host unreachable in ConnectionServer.py line 142 > Connection.py line 99 > TorManager.py line 311 > socks.py line 681 > socks.py line 383 > socks.py line 458, waiting_requests: 1, sites: 1, buff: 0...
[2017-07-23 12:55:40,542] DEBUG FileServer Conn#2169 ujlv73ari3nbo4wm.onion [?] > Connecting...
[2017-07-23 12:55:40,542] DEBUG TorManager Creating new Tor socket to ujlv73ari3nbo4wm.onion:15441
[2017-07-23 12:55:40,543] DEBUG FileServer Conn#357 117.63.90.245 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:55:40,624] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/12vkj8vdrkyRuJq22LVafNQkGyvrrgsrCz/data/zeroblog.db in 0.078s (opened: 2, sqlite version: 2.6.0)...
[2017-07-23 12:55:40,717] DEBUG Db:ZeroTalk Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1Dt7FR5aNLkqAjmosWh8cMWzJu633GYN6u/data/users/zerotalk.db in 0.091s (opened: 3, sqlite version: 2.6.0)...
[2017-07-23 12:55:40,753] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/15mSYzsDxzarssqtV1pFPKqoCTaLdjVB2f/data/zeroblog.db in 0.032s (opened: 4, sqlite version: 2.6.0)...
[2017-07-23 12:55:40,755] ERROR Site:1HeLLo..Tf3D 1CHmy3h5cDEKbxDkpKBGowiUVtjdBwQWxG feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:40,891] DEBUG Db:ZeroTalk Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT/data/users/zerotalk.db in 0.135s (opened: 5, sqlite version: 2.6.0)...
[2017-07-23 12:55:42,295] DEBUG Site:1HeLLo..Tf3D Newsfeed from the future from from site 1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT
[2017-07-23 12:55:42,882] DEBUG Db:ZeroMe Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19ndUQE2x3NbhGhGZsstuWz2sy9f7uVT6G/merged-ZeroMe/ZeroMe.db in 0.002s (opened: 6, sqlite version: 2.6.0)...
[2017-07-23 12:55:44,930] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1BLogC9LN4oPDcruNz3qo1ysa133E9AGg8/data/zeroblog.db in 0.074s (opened: 7, sqlite version: 2.6.0)...
[2017-07-23 12:55:45,171] ERROR Site:1HeLLo..Tf3D 1JKxHCTNCvGwAb3cweic7qNoRzqWerjFLn feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:45,193] DEBUG Db:ZeroMe Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MEaLzSbzXmStAowrivK1Vu4iSEWLxgZLJ/merged-ZeroMe/ZeroMe.db in 0.020s (opened: 8, sqlite version: 2.6.0)...
[2017-07-23 12:55:55,608] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1NKKKZ5gzyHEAR31Jg7JrMi2PxjBYcg2dH/data/zeroblog.db in 0.120s (opened: 9, sqlite version: 2.6.0)...
[2017-07-23 12:55:55,667] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MBFot8DT9hBbjULhMay9t2oHZq1bwzuvT/data/zeroblog.db in 0.058s (opened: 10, sqlite version: 2.6.0)...
[2017-07-23 12:55:55,667] ERROR Site:1HeLLo..Tf3D 1BuEAqZoVcBG5VNbQR6GHMhtEjyYX1wUUB feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,668] ERROR Site:1HeLLo..Tf3D 144c8VN86Ep44MjfMBHBN8Tg4uyQu5QyR4 feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,746] DEBUG Db:ZeroBlog Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1CiDoBP8RiWziqiBGEd8tQMy66A6fmnw2V/data/zeroblog.db in 0.078s (opened: 11, sqlite version: 2.6.0)...
[2017-07-23 12:55:55,749] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,750] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query New topics error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,750] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query Comments in this topic error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,750] ERROR Site:1HeLLo..Tf3D 186THqMWuptrZxq1rxzpguAivK3Bs6z84o feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,752] ERROR Site:1HeLLo..Tf3D 186THqMWuptrZxq1rxzpguAivK3Bs6z84o feed query Comments in this topic error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:55:55,865] DEBUG Db:ZeroMe Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MeFqFfFFGQfa1J3gJyYYUvb5Lksczq7nH/merged-ZeroMe/ZeroMe.db in 0.114s (opened: 12, sqlite version: 2.6.0)...
[2017-07-23 12:56:16,099] DEBUG FileServer Conn#2150 5.49.136.217 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 3, buff: 0...
[2017-07-23 12:56:16,101] DEBUG FileServer Conn#2163 d55dtb2qvkdbaz7u.onion [?] > Closing connection: d55dtb2qvkdbaz7u.onion Connect error: SOCKS5Error: 0x04: Host unreachable in ConnectionServer.py line 142 > Connection.py line 99 > TorManager.py line 311 > socks.py line 681 > socks.py line 383 > socks.py line 458, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:16,102] DEBUG FileServer Conn#364 106.167.89.139 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 9, buff: 0...
[2017-07-23 12:56:16,105] DEBUG FileServer Conn#2151 111.58.233.218 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 2, buff: 0...
[2017-07-23 12:56:16,108] DEBUG FileServer Conn#1452 106.185.35.18 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 11, buff: 0...
[2017-07-23 12:56:16,131] DEBUG Site:1G9wPK..bh6U Announced types ['ip4'] in mode start to 6 trackers in 1067.751s, errors: ['http://tracker1.wasabii.com.tw:6969/announce'], slow: ['10s+ zero://boot.zeronet.io#f36ca555bee6ba216b14d10f38c16f7769ff064e0e37d887603548cc2e64191d:15441']
[2017-07-23 12:56:16,132] DEBUG FileServer Conn#2170 d55dtb2qvkdbaz7u.onion [?] > Connecting...
[2017-07-23 12:56:16,132] DEBUG TorManager Creating new Tor socket to d55dtb2qvkdbaz7u.onion:15441
[2017-07-23 12:56:16,134] DEBUG FileServer Conn#2171 96.37.237.52 [?] > Connecting...
[2017-07-23 12:56:16,134] DEBUG FileServer Conn#2169 ujlv73ari3nbo4wm.onion [?] > Closing connection: ujlv73ari3nbo4wm.onion Connect error: Worker stopped, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:16,135] DEBUG WorkerManager:1G9wPK..bh6U ujlv73ari3nbo4wm.onion:15441: Verify failed: zerome.ico, error: Download failed, failed peers: 0
[2017-07-23 12:56:16,135] DEBUG FileServer Checking sites...
[2017-07-23 12:56:16,142] INFO Site:12h51u..WWtv Update for data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/content.json looks valid, saving...
[2017-07-23 12:56:16,599] DEBUG Db:ZeroMe Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/merged-ZeroMe/ZeroMe.db in 0.001s (opened: 13, sqlite version: 2.6.0)...
[2017-07-23 12:56:16,604] DEBUG Db:ZeroMe Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1EJupLbuy5KRWXH9DZDGiygfxDrQq2pfSf/merged-ZeroMe/ZeroMe.db in 0.002s (opened: 14, sqlite version: 2.6.0)...
[2017-07-23 12:56:16,665] INFO Site:16bNGd..cyBB Update for data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/content.json looks valid, saving...
[2017-07-23 12:56:16,697] INFO Site:1TaLkF..jipT Update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json looks valid, saving...
[2017-07-23 12:56:16,783] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: Verify correct: img/loading-circle.gif
[2017-07-23 12:56:16,799] INFO Site:1TaLkF..jipT Update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json looks valid, saving...
[2017-07-23 12:56:16,819] INFO Site:15mSYz..VB2f Update for content.json looks valid, saving...
[2017-07-23 12:56:17,053] INFO Site:1SiTEs..tdwB Update for data/users/content.json looks valid, saving...
[2017-07-23 12:56:17,122] DEBUG FileServer Conn#2161 7sffreeiwzohaiup.onion [?] > Socket error: No socket found
[2017-07-23 12:56:17,122] DEBUG FileServer Conn#2172 180.165.130.134 [?] > Connecting...
[2017-07-23 12:56:17,961] DEBUG Db:ContentDb 1912/3405 peer number for 3 site updated in 0.839s
[2017-07-23 12:56:17,963] DEBUG FileServer Conn#2173 117.30.149.117 [?] > Incoming connection...
[2017-07-23 12:56:17,963] DEBUG FileServer Conn#2173 117.30.149.117 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,101] DEBUG FileServer Conn#2173 117.30.149.117 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-AYmmyLp1kmCv as broken ssl.
[2017-07-23 12:56:18,102] DEBUG FileServer Conn#2173 117.30.149.117 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,177] DEBUG FileServer Conn#2174 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,186] DEBUG FileServer Conn#2174 180.165.130.134 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,190] DEBUG FileServer Conn#2174 180.165.130.134 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-mnpjkvPRGdY5 as broken ssl.
[2017-07-23 12:56:18,190] DEBUG FileServer Conn#2174 180.165.130.134 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,193] DEBUG FileServer Conn#2175 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,194] DEBUG FileServer Conn#2175 119.131.39.143 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,197] DEBUG FileServer Conn#2175 119.131.39.143 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-d8iM5W6Cr6a7 as broken ssl.
[2017-07-23 12:56:18,197] DEBUG FileServer Conn#2175 119.131.39.143 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,197] DEBUG FileServer Conn#2176 117.61.139.158 [?] > Incoming connection...
[2017-07-23 12:56:18,198] DEBUG FileServer Conn#2176 117.61.139.158 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,203] DEBUG FileServer Conn#2177 173.239.236.11 [?] > Incoming connection...
[2017-07-23 12:56:18,210] DEBUG FileServer Conn#2177 173.239.236.11 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,214] DEBUG FileServer Conn#2177 173.239.236.11 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-CqkoSMC3GGxS as broken ssl.
[2017-07-23 12:56:18,216] DEBUG FileServer Conn#2177 173.239.236.11 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,217] DEBUG FileServer Conn#2178 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:18,219] DEBUG FileServer Conn#2178 183.11.134.25 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,233] DEBUG FileServer Conn#2178 183.11.134.25 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-sZF7SXAav914 as broken ssl.
[2017-07-23 12:56:18,233] DEBUG FileServer Conn#2178 183.11.134.25 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,256] DEBUG FileServer Conn#2179 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,263] DEBUG FileServer Conn#2179 185.56.103.56 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,267] DEBUG FileServer Conn#2179 185.56.103.56 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-NGEpY8IeXGrv as broken ssl.
[2017-07-23 12:56:18,267] DEBUG FileServer Conn#2179 185.56.103.56 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,269] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL/data/users/1MEaxKqZWGEqFH62TRNEEZuNh8iX4nnq5f/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,272] DEBUG FileServer Conn#2180 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,276] DEBUG FileServer Conn#2180 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,276] DEBUG FileServer Conn#2181 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:18,279] DEBUG FileServer Conn#2181 171.217.115.242 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,280] DEBUG FileServer Conn#2181 171.217.115.242 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-7fbA8RGVY4zW as broken ssl.
[2017-07-23 12:56:18,280] DEBUG FileServer Conn#2181 171.217.115.242 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,292] DEBUG FileServer Conn#2182 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:18,298] DEBUG FileServer Conn#2182 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,298] DEBUG FileServer Conn#2183 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,302] DEBUG FileServer Conn#2183 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,335] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19gtNiKNZMq6nTdWThGCQQAS2bCYAY1tFh/data/users/17qF5qKLLi3ACnmxhRFvyxGm9vReveYgE8/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,339] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v/data/users/1PD3UvB4FgBsBHFxpCsJrPN52k1Uv1czJq/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,341] DEBUG FileServer Conn#2184 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,345] DEBUG FileServer Conn#2184 qtsarm54ivfpka4y.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,346] DEBUG FileServer Conn#2185 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,348] DEBUG FileServer Conn#2185 jh4p7242sk6lij3e.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,348] DEBUG FileServer Conn#2186 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,354] DEBUG FileServer Conn#2186 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,355] DEBUG FileServer Conn#2187 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,358] DEBUG FileServer Conn#2187 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,358] DEBUG FileServer Conn#2188 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,411] DEBUG FileServer Conn#2188 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,413] DEBUG FileServer Conn#2189 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,414] DEBUG FileServer Conn#2189 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,415] DEBUG FileServer Conn#2190 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,417] DEBUG FileServer Conn#2190 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,417] DEBUG FileServer Conn#2191 5.49.136.217 [?] > Incoming connection...
[2017-07-23 12:56:18,440] DEBUG FileServer Conn#2191 5.49.136.217 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,457] DEBUG FileServer Conn#2191 5.49.136.217 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-KGFXr95jv820 as broken ssl.
[2017-07-23 12:56:18,457] DEBUG FileServer Conn#2191 5.49.136.217 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,464] DEBUG FileServer Conn#2192 216.176.186.131 [?] > Incoming connection...
[2017-07-23 12:56:18,464] DEBUG FileServer Conn#2192 216.176.186.131 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,466] DEBUG FileServer Conn#2193 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:18,549] DEBUG FileServer Conn#2193 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,549] DEBUG FileServer Conn#2194 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,551] DEBUG FileServer Conn#2194 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,552] DEBUG FileServer Conn#2195 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:18,558] DEBUG FileServer Conn#2195 171.217.115.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,558] DEBUG FileServer Conn#2196 123.117.90.193 [?] > Incoming connection...
[2017-07-23 12:56:18,559] DEBUG FileServer Conn#2196 123.117.90.193 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,562] DEBUG FileServer Conn#2196 123.117.90.193 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-NX0Q6qGQCX5a as broken ssl.
[2017-07-23 12:56:18,562] DEBUG FileServer Conn#2196 123.117.90.193 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,572] DEBUG FileServer Conn#2197 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,617] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19gtNiKNZMq6nTdWThGCQQAS2bCYAY1tFh/data/users/1F8qhvvKs4KmUdbgeQKvF84cRwTBphWxFh/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,638] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MusicXkuN2pk5hRdmroeyaCLDJtzTicpB/data/users/1CPAopWM38r6ykqvhRL34Arkvt2RgKwNbN/data.json' in FileRequest.py line 197
[2017-07-23 12:56:18,641] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL/data/users/1MEaxKqZWGEqFH62TRNEEZuNh8iX4nnq5f/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,642] DEBUG FileServer Conn#2197 185.56.103.56 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,644] DEBUG FileServer Conn#2198 119.131.39.143 [?] > Incoming connection...
[2017-07-23 12:56:18,644] DEBUG FileServer Conn#2198 119.131.39.143 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,644] DEBUG FileServer Conn#2199 117.30.149.117 [?] > Incoming connection...
[2017-07-23 12:56:18,645] DEBUG FileServer Conn#2199 117.30.149.117 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,648] DEBUG FileServer Conn#2200 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:18,730] DEBUG FileServer Conn#2200 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,732] DEBUG FileServer Conn#2201 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,733] DEBUG FileServer Conn#2201 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,733] DEBUG FileServer Conn#2202 117.30.149.117 [?] > Incoming connection...
[2017-07-23 12:56:18,739] DEBUG FileServer Conn#2202 117.30.149.117 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,740] DEBUG FileServer Conn#2203 65.19.167.131 [?] > Incoming connection...
[2017-07-23 12:56:18,743] DEBUG FileServer Conn#2203 65.19.167.131 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,746] DEBUG FileServer Conn#2203 65.19.167.131 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-bz7NngnxltzC as broken ssl.
[2017-07-23 12:56:18,746] DEBUG FileServer Conn#2203 65.19.167.131 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,747] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v/data/users/1eQKH8VcGoV17tUEfCHad8pMix9qR8aVu/avatar.jpg' in FileRequest.py line 197
[2017-07-23 12:56:18,749] DEBUG FileServer Conn#2204 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,750] DEBUG FileServer Conn#2205 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,756] DEBUG FileServer Conn#2205 185.56.103.56 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,756] DEBUG FileServer Conn#2206 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,759] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1RedkCkVaXuVXrqCMpoXQS29bwaqsuFdL/data/users/183YBfiZcnntR2sun59dSAmue4DizmrVhf/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,759] DEBUG FileServer Conn#2206 185.56.103.56 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,760] DEBUG FileServer Conn#2207 180.165.130.134 [?] > Incoming connection...
[2017-07-23 12:56:18,763] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1White24UrrwQrD86o6Vrc1apgZ1x1o51/data/users/173mnwwX2Pv1fFgRibCz5jpQghXdhL1W5v/1500830186.jpg' in FileRequest.py line 197
[2017-07-23 12:56:18,763] DEBUG FileServer Conn#2207 180.165.130.134 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,765] DEBUG FileServer Conn#2208 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:18,766] DEBUG FileServer Conn#2208 171.217.115.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:18,766] DEBUG FileServer Conn#2209 195.154.71.61 [?] > Incoming connection...
[2017-07-23 12:56:18,767] DEBUG FileServer Conn#2209 195.154.71.61 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,773] DEBUG FileServer Conn#2209 195.154.71.61 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-cphEpBtkuZQn as broken ssl.
[2017-07-23 12:56:18,773] DEBUG FileServer Conn#2209 195.154.71.61 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,788] DEBUG FileServer Conn#2210 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,789] DEBUG FileServer Conn#2210 jh4p7242sk6lij3e.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,789] DEBUG FileServer Conn#2211 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,790] DEBUG FileServer Conn#2211 rjagl6eysr63c5t4.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,792] DEBUG FileServer Conn#2212 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,795] DEBUG FileServer Conn#2212 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,796] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1oranGeS2xsKZ4jVsu9SVttzgkYXu4k9v/data/users/1PD3UvB4FgBsBHFxpCsJrPN52k1Uv1czJq/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,796] DEBUG FileServer Conn#2213 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,799] DEBUG FileServer Conn#2214 217.234.47.113 [?] > Incoming connection...
[2017-07-23 12:56:18,801] DEBUG FileServer Conn#2214 217.234.47.113 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,803] DEBUG FileServer Conn#2214 217.234.47.113 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-Pgn8HXkdEDKU as broken ssl.
[2017-07-23 12:56:18,805] DEBUG FileServer Conn#2214 217.234.47.113 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,806] DEBUG FileServer Conn#2215 23.94.101.18 [?] > Incoming connection...
[2017-07-23 12:56:18,808] DEBUG FileServer Conn#2215 23.94.101.18 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,809] DEBUG FileServer Conn#2215 23.94.101.18 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0055-SgROOJ3c5EEk as broken ssl.
[2017-07-23 12:56:18,811] DEBUG FileServer Conn#2215 23.94.101.18 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,811] DEBUG FileServer Conn#2216 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:18,812] DEBUG FileServer Conn#2216 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,812] DEBUG FileServer Conn#2217 185.56.103.56 [?] > Incoming connection...
[2017-07-23 12:56:18,815] DEBUG FileServer Conn#2217 185.56.103.56 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,815] DEBUG FileServer Connection flood detected from 185.56.103.56
[2017-07-23 12:56:18,816] DEBUG FileServer Conn#2218 197.53.28.29 [?] > Incoming connection...
[2017-07-23 12:56:18,819] DEBUG FileServer Conn#2218 197.53.28.29 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,821] DEBUG FileServer Conn#2218 197.53.28.29 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-R0ErZ4pUKpHQ as broken ssl.
[2017-07-23 12:56:18,822] DEBUG FileServer Conn#2218 197.53.28.29 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,823] DEBUG FileServer Conn#2219 217.234.47.113 [?] > Incoming connection...
[2017-07-23 12:56:18,826] DEBUG FileServer Conn#2219 217.234.47.113 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,828] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:18,828] DEBUG FileServer Conn#2220 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,828] DEBUG FileServer Conn#2220 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,848] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19gtNiKNZMq6nTdWThGCQQAS2bCYAY1tFh/data/users/17qF5qKLLi3ACnmxhRFvyxGm9vReveYgE8/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,849] DEBUG FileServer Connection flood detected from 185.56.103.56
[2017-07-23 12:56:18,849] DEBUG FileServer Conn#2221 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,851] DEBUG FileServer Conn#2221 qtsarm54ivfpka4y.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,851] DEBUG FileServer Conn#2222 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,851] DEBUG FileServer Conn#2222 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,852] DEBUG FileServer Conn#2223 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,858] DEBUG FileServer Conn#2223 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,861] DEBUG FileServer Conn#2224 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,861] DEBUG FileServer Conn#2224 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,865] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/19gtNiKNZMq6nTdWThGCQQAS2bCYAY1tFh/data/users/1F8qhvvKs4KmUdbgeQKvF84cRwTBphWxFh/content.json' in FileRequest.py line 197
[2017-07-23 12:56:18,865] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:18,865] DEBUG FileServer Conn#2225 112.102.160.109 [?] > Incoming connection...
[2017-07-23 12:56:18,867] DEBUG FileServer Conn#2225 112.102.160.109 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,871] DEBUG FileServer Conn#2225 112.102.160.109 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-fhJ2jDYdt4K4 as broken ssl.
[2017-07-23 12:56:18,872] DEBUG FileServer Conn#2225 112.102.160.109 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,875] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/18ut5Y4EBeZgPStfLy3RLsJf8thdPzXKmb/data.json' in FileRequest.py line 197
[2017-07-23 12:56:18,875] DEBUG FileServer Conn#2226 96.37.237.52 [?] > Incoming connection...
[2017-07-23 12:56:18,877] DEBUG FileServer Conn#2226 96.37.237.52 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,880] DEBUG FileServer Conn#2226 96.37.237.52 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-v02fnckipci4 as broken ssl.
[2017-07-23 12:56:18,881] DEBUG FileServer Conn#2226 96.37.237.52 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,881] DEBUG FileServer Conn#2227 91.64.161.246 [?] > Incoming connection...
[2017-07-23 12:56:18,882] DEBUG FileServer Conn#2227 91.64.161.246 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,884] DEBUG FileServer Conn#2227 91.64.161.246 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-uLlu97AxSSJw as broken ssl.
[2017-07-23 12:56:18,884] DEBUG FileServer Conn#2227 91.64.161.246 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,884] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:18,885] DEBUG FileServer Conn#2228 117.63.90.245 [?] > Incoming connection...
[2017-07-23 12:56:18,890] DEBUG FileServer Conn#2228 117.63.90.245 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,891] DEBUG FileServer Conn#2229 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:18,894] DEBUG FileServer Conn#2229 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,894] DEBUG FileServer Connection flood detected from 119.131.39.143
[2017-07-23 12:56:18,897] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:18,898] DEBUG FileServer Conn#2230 117.30.149.117 [?] > Incoming connection...
[2017-07-23 12:56:18,904] DEBUG FileServer Conn#2231 166.70.207.2 [?] > Incoming connection...
[2017-07-23 12:56:18,905] DEBUG FileServer Conn#2231 166.70.207.2 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,907] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:18,907] DEBUG FileServer Conn#2232 112.102.160.109 [?] > Incoming connection...
[2017-07-23 12:56:18,911] DEBUG FileServer Conn#2232 112.102.160.109 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:18,911] DEBUG FileServer Conn#2233 115.171.36.243 [?] > Incoming connection...
[2017-07-23 12:56:18,913] DEBUG FileServer Conn#2233 115.171.36.243 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,914] DEBUG FileServer Conn#2234 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:18,917] DEBUG FileServer Conn#2234 92.196.13.12 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:18,923] DEBUG FileServer Conn#2234 92.196.13.12 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-CokZG1w84NZg as broken ssl.
[2017-07-23 12:56:18,923] DEBUG FileServer Conn#2234 92.196.13.12 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,121] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1CWkZv7fQAKxTVjZVrLZ8VHcrN6YGGcdky/data/users/1GMNmr2bDPbT4c8yVnyCoDHke52CNCdqAa/content.json' in FileRequest.py line 197
[2017-07-23 12:56:19,125] DEBUG FileServer GetFile Conn#2234 92.196.13.12 [v2] data/users/14h1zSHjQkvGb6oPMtWjdBsxM2ukhDhcF4/data.json request error: RequestError: File size does not match: 614B != 407B in FileRequest.py line 203
[2017-07-23 12:56:19,127] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1CvYYbAdpnqFNbUwrcUh7t9APu4Heyn28Q/data.json' in FileRequest.py line 197
[2017-07-23 12:56:19,128] DEBUG FileServer Connection flood detected from 185.56.103.56
[2017-07-23 12:56:19,128] DEBUG FileServer Conn#2235 173.239.236.11 [?] > Incoming connection...
[2017-07-23 12:56:19,134] DEBUG FileServer Conn#2235 173.239.236.11 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,135] DEBUG FileServer Conn#2236 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:19,140] DEBUG FileServer Conn#2236 117.61.29.226 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,141] DEBUG FileServer Conn#2236 117.61.29.226 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-xd8uB5zuAp1B as broken ssl.
[2017-07-23 12:56:19,141] DEBUG FileServer Conn#2236 117.61.29.226 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,142] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:19,144] DEBUG FileServer Conn#2237 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:19,144] DEBUG FileServer Conn#2238 217.234.47.113 [?] > Incoming connection...
[2017-07-23 12:56:19,145] DEBUG FileServer Conn#2238 217.234.47.113 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,145] DEBUG FileServer Connection flood detected from 185.56.103.56
[2017-07-23 12:56:19,145] DEBUG FileServer Conn#2239 5.49.136.217 [?] > Incoming connection...
[2017-07-23 12:56:19,148] DEBUG FileServer Conn#2239 5.49.136.217 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,148] DEBUG FileServer Conn#2240 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:19,167] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/138R53t3ZW7KDfSfxVpWUsMXgwUnsDNXLP/data/users/13NvqdvUCjWwQAmdzNZSyaTPmD8JpSHiFx/data.json' in FileRequest.py line 197
[2017-07-23 12:56:19,167] DEBUG FileServer Conn#2240 92.196.13.12 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,167] DEBUG FileServer Conn#2241 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:19,170] DEBUG FileServer Conn#2241 pq3hocjgdhpj4y2b.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,170] DEBUG FileServer Conn#2242 116.234.7.82 [?] > Incoming connection...
[2017-07-23 12:56:19,171] DEBUG FileServer Conn#2242 116.234.7.82 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,174] DEBUG FileServer Conn#2242 116.234.7.82 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-woJHmE0VQvXZ as broken ssl.
[2017-07-23 12:56:19,174] DEBUG FileServer Conn#2242 116.234.7.82 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,213] DEBUG FileServer Conn#2243 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:19,230] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1CvYYbAdpnqFNbUwrcUh7t9APu4Heyn28Q/data.json' in FileRequest.py line 197
[2017-07-23 12:56:19,232] DEBUG FileServer Conn#2243 92.196.13.12 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,233] DEBUG FileServer Conn#2244 112.21.76.81 [?] > Incoming connection...
[2017-07-23 12:56:19,233] DEBUG FileServer Conn#2244 112.21.76.81 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,236] DEBUG FileServer Conn#2245 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:19,239] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/138R53t3ZW7KDfSfxVpWUsMXgwUnsDNXLP/data/users/13NvqdvUCjWwQAmdzNZSyaTPmD8JpSHiFx/data.json' in FileRequest.py line 197
[2017-07-23 12:56:19,239] DEBUG FileServer Conn#2245 92.196.13.12 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:19,240] DEBUG FileServer Conn#2246 124.78.230.239 [?] > Incoming connection...
[2017-07-23 12:56:19,243] DEBUG FileServer Conn#2246 124.78.230.239 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,243] DEBUG FileServer Conn#2247 5.49.136.217 [?] > Incoming connection...
[2017-07-23 12:56:19,246] DEBUG FileServer Conn#2247 5.49.136.217 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:19,246] DEBUG FileServer Conn#2248 116.234.7.82 [?] > Incoming connection...
[2017-07-23 12:56:19,246] DEBUG FileServer Conn#2249 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,250] DEBUG FileServer Conn#2249 213.113.49.165 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,253] DEBUG FileServer Conn#2249 213.113.49.165 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-v9fOckcElmi6 as broken ssl.
[2017-07-23 12:56:19,253] DEBUG FileServer Conn#2249 213.113.49.165 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,257] DEBUG FileServer Conn#2250 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:19,259] DEBUG FileServer Conn#2250 92.196.13.12 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,259] DEBUG FileServer Conn#2251 92.196.13.12 [?] > Incoming connection...
[2017-07-23 12:56:19,266] DEBUG FileServer GetFile Conn#2251 92.196.13.12 [v2] data/users/14h1zSHjQkvGb6oPMtWjdBsxM2ukhDhcF4/avatar.jpg request error: RequestError: File size does not match: 1710B != 1714B in FileRequest.py line 203
[2017-07-23 12:56:19,266] DEBUG FileServer Conn#2251 92.196.13.12 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,267] DEBUG FileServer Conn#2252 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,269] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1GrEenUGRWnzaNZjR3XsQa6dQgdPDTyt7i/data/users/1NDyREXbnNrbVQRELe1SW2cKByyp7xKJA5/content.json' in FileRequest.py line 197
[2017-07-23 12:56:19,275] DEBUG FileServer Conn#2252 213.113.49.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,276] DEBUG FileServer Conn#2253 185.170.42.4 [?] > Incoming connection...
[2017-07-23 12:56:19,278] DEBUG FileServer Conn#2253 185.170.42.4 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,278] DEBUG FileServer Conn#2254 187.22.213.192 [?] > Incoming connection...
[2017-07-23 12:56:19,279] DEBUG FileServer Conn#2254 187.22.213.192 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,280] DEBUG FileServer Conn#2254 187.22.213.192 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN00561-cmK9TgZysXlv as broken ssl.
[2017-07-23 12:56:19,282] DEBUG FileServer Conn#2254 187.22.213.192 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,332] DEBUG FileServer Connection flood detected from 185.56.103.56
[2017-07-23 12:56:19,332] DEBUG FileServer Conn#2255 106.185.35.18 [?] > Incoming connection...
[2017-07-23 12:56:19,332] DEBUG FileServer Conn#2255 106.185.35.18 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:19,335] DEBUG FileServer Conn#2255 106.185.35.18 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0054-4clp1O7k5l3J as broken ssl.
[2017-07-23 12:56:19,335] DEBUG FileServer Conn#2255 106.185.35.18 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,335] DEBUG FileServer Conn#2256 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,336] DEBUG FileServer Conn#2256 213.113.49.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,338] DEBUG FileServer Conn#2257 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,348] DEBUG FileServer Conn#2257 213.113.49.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,349] DEBUG FileServer Conn#2258 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,351] DEBUG FileServer Conn#2258 213.113.49.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,351] DEBUG FileServer Conn#2259 213.113.49.165 [?] > Incoming connection...
[2017-07-23 12:56:19,354] DEBUG FileServer Conn#2259 213.113.49.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:19,355] DEBUG FileServer Connection flood detected from 213.113.49.165
[2017-07-23 12:56:19,546] ERROR - UiWSGIHandler error: error: [Errno 10053] An established connection was aborted by the software in your host machine in UiServer.py line 40 > pywsgi.py line 910 > pywsgi.py line 896 > pywsgi.py line 742 > pywsgi.py line 764 > pywsgi.py line 723 > pywsgi.py line 702 > _socket2.py line 419 > _socket2.py line 355 > _socket2.py line 323
[2017-07-23 12:56:19,546] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/?Home HTTP/1.1" 200 300 0.191000
[2017-07-23 12:56:19,551] ERROR - UiWSGIHandler error: error: [Errno 10053] An established connection was aborted by the software in your host machine in UiServer.py line 40 > pywsgi.py line 910 > pywsgi.py line 896 > pywsgi.py line 742 > pywsgi.py line 764 > pywsgi.py line 723 > pywsgi.py line 702 > _socket2.py line 419 > _socket2.py line 355 > _socket2.py line 323
[2017-07-23 12:56:19,552] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /13spciiqdBgsrhkWxghapiF1F4gNYDwgbS/ HTTP/1.1" 200 300 0.003000
[2017-07-23 12:56:19,555] ERROR - UiWSGIHandler error: error: [Errno 10053] An established connection was aborted by the software in your host machine in UiServer.py line 40 > pywsgi.py line 910 > pywsgi.py line 896 > pywsgi.py line 742 > pywsgi.py line 764 > pywsgi.py line 723 > pywsgi.py line 702 > _socket2.py line 419 > _socket2.py line 355 > _socket2.py line 323
[2017-07-23 12:56:19,555] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /Me.Mkg20001.bit/?Home HTTP/1.1" 200 300 0.003000
[2017-07-23 12:56:19,562] ERROR - UiWSGIHandler error: error: [Errno 10053] An established connection was aborted by the software in your host machine in UiServer.py line 40 > pywsgi.py line 910 > pywsgi.py line 896 > pywsgi.py line 742 > pywsgi.py line 764 > pywsgi.py line 723 > pywsgi.py line 702 > _socket2.py line 419 > _socket2.py line 355 > _socket2.py line 323
[2017-07-23 12:56:19,562] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/?Home HTTP/1.1" 200 300 0.005000
[2017-07-23 12:56:19,566] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/?Home HTTP/1.1" 200 3089 0.003000
[2017-07-23 12:56:19,601] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:19] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/ HTTP/1.1" 200 2884 0.035000
[2017-07-23 12:56:19,619] DEBUG Site:12h51u..WWtv Patched successfully: data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/data.json
[2017-07-23 12:56:19,933] DEBUG Site:1HeLLo..Tf3D Websocket send error: WebSocketError: Socket is dead in UiWebsocket.py line 196 > websocket.py line 352
[2017-07-23 12:56:19,951] DEBUG Site:16bNGd..cyBB Failed to patch data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/data.json: Invalid hash
[2017-07-23 12:56:19,953] DEBUG WorkerManager:16bNGd..cyBB New task: data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/data.json, peer lock: [<Peer:101.142.231.38>], priority: 3, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:19,953] DEBUG WorkerManager:16bNGd..cyBB Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:19,953] DEBUG WorkerManager:16bNGd..cyBB Added worker: 101.142.231.38:15441, workers: 1/5
[2017-07-23 12:56:19,957] DEBUG WorkerManager:1TaLkF..jipT New task: data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json, peer lock: [<Peer:79.31.35.104>], priority: 3, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:19,957] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:19,957] DEBUG WorkerManager:1TaLkF..jipT Added worker: 79.31.35.104:15441, workers: 1/5
[2017-07-23 12:56:19,959] DEBUG Site:1TaLkF..jipT data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json loadContent same json file, skipping
[2017-07-23 12:56:19,959] DEBUG Site:1TaLkF..jipT Failed to patch data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT/data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json'
[2017-07-23 12:56:19,960] DEBUG WorkerManager:1TaLkF..jipT Added peer illl6iys76xpuosc.onion:15441 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:19,960] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 1
[2017-07-23 12:56:19,960] DEBUG WorkerManager:1TaLkF..jipT Added worker: illl6iys76xpuosc.onion:15441, workers: 2/5
[2017-07-23 12:56:20,378] DEBUG SiteManager Saved sites in 0.40s
[2017-07-23 12:56:20,381] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:56:20,395] DEBUG WorkerManager:15mSYz..VB2f New task: css/all.css, peer lock: [<Peer:52k7gsiahfokx3f7.onion>], priority: 14, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:20,395] DEBUG WorkerManager:15mSYz..VB2f Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:20,395] DEBUG WorkerManager:15mSYz..VB2f Added worker: 52k7gsiahfokx3f7.onion:15441, workers: 1/5
[2017-07-23 12:56:20,441] DEBUG Site:15mSYz..VB2f Patched successfully: data/data.json
[2017-07-23 12:56:20,500] DEBUG WorkerManager:1SiTEs..tdwB New task: data/users/stats.json, peer lock: [<Peer:irg6522fexh6jtow.onion>], priority: 11, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:20,500] DEBUG WorkerManager:1SiTEs..tdwB Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:20,500] DEBUG WorkerManager:1SiTEs..tdwB Added worker: irg6522fexh6jtow.onion:15441, workers: 1/5
[2017-07-23 12:56:20,507] INFO Site:1UDbAD..MkoV Update for data/userdb/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/content.json looks valid, saving...
[2017-07-23 12:56:20,677] INFO Site:1TaLkF..jipT Update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json looks valid, saving...
[2017-07-23 12:56:20,688] DEBUG WorkerManager:1SiTEs..tdwB Added peer 183.11.134.25:15441 to data/users/stats.json
[2017-07-23 12:56:20,688] DEBUG WorkerManager:1SiTEs..tdwB Starting workers, tasks: 1, peers: 1, workers: 1
[2017-07-23 12:56:20,688] DEBUG WorkerManager:1SiTEs..tdwB Added worker: 183.11.134.25:15441, workers: 2/5
[2017-07-23 12:56:20,697] INFO Site:1NKKKZ..g2dH Update for content.json looks valid, saving...
[2017-07-23 12:56:20,755] INFO Site:1iD5ZQ..duGz Update for content.json looks valid, saving...
[2017-07-23 12:56:20,823] DEBUG WorkerManager:1SiTEs..tdwB Added peer 187.22.213.192:0 to data/users/stats.json
[2017-07-23 12:56:20,825] DEBUG WorkerManager:1SiTEs..tdwB Starting workers, tasks: 1, peers: 1, workers: 2
[2017-07-23 12:56:20,825] DEBUG WorkerManager:1SiTEs..tdwB Added worker: 187.22.213.192:0, workers: 3/5
[2017-07-23 12:56:20,825] INFO Site:12h51u..WWtv Publishing data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/content.json to 2/188 peers (connected: 5) diffs: ['data.json'] (0.40k)...
[2017-07-23 12:56:20,831] DEBUG FileServer Conn#2260 101.142.231.38 [?] > Connecting...
[2017-07-23 12:56:20,832] DEBUG FileServer Conn#2261 79.31.35.104 [?] > Connecting...
[2017-07-23 12:56:20,832] DEBUG FileServer Conn#2262 52k7gsiahfokx3f7.onion [?] > Connecting...
[2017-07-23 12:56:20,832] DEBUG TorManager Creating new Tor socket to 52k7gsiahfokx3f7.onion:15441
[2017-07-23 12:56:20,911] DEBUG Site:15mSYz..VB2f data/users/content.json loadContent same json file, skipping
[2017-07-23 12:56:20,911] DEBUG FileServer Conn#2263 irg6522fexh6jtow.onion [?] > Connecting...
[2017-07-23 12:56:20,911] DEBUG TorManager Creating new Tor socket to irg6522fexh6jtow.onion:15441
[2017-07-23 12:56:20,943] DEBUG Site:1TaLkF..jipT Failed to patch data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT/data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json'
[2017-07-23 12:56:20,943] DEBUG WorkerManager:1TaLkF..jipT Added peer 195.154.71.61:15441 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:20,943] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 2
[2017-07-23 12:56:20,944] DEBUG WorkerManager:1TaLkF..jipT Added worker: 195.154.71.61:15441, workers: 3/5
[2017-07-23 12:56:21,361] DEBUG SiteManager Saved sites in 0.41s
[2017-07-23 12:56:21,364] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:56:21,463] DEBUG Site:1NKKKZ..g2dH Failed to patch data/data.json: Invalid hash
[2017-07-23 12:56:21,464] DEBUG WorkerManager:1NKKKZ..g2dH New task: data/data.json, peer lock: [<Peer:96.37.237.52>], priority: 11, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:21,464] DEBUG WorkerManager:1NKKKZ..g2dH Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:21,464] DEBUG WorkerManager:1NKKKZ..g2dH Added worker: 96.37.237.52:15441, workers: 1/5
[2017-07-23 12:56:21,469] DEBUG WorkerManager:1NKKKZ..g2dH New task: data/img/post_17_ira_banner.jpg, peer lock: [<Peer:96.37.237.52>], priority: 0, optional_hash_id: None, tasks started: 2
[2017-07-23 12:56:21,469] DEBUG WorkerManager:1NKKKZ..g2dH Starting workers, tasks: 2, peers: 1, workers: 1
[2017-07-23 12:56:21,716] DEBUG SiteManager Saved sites in 0.24s
[2017-07-23 12:56:21,719] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:56:21,823] DEBUG Site:1iD5ZQ..duGz Failed to patch data/users.json: Invalid hash
[2017-07-23 12:56:21,825] DEBUG WorkerManager:1iD5ZQ..duGz New task: data/users.json, peer lock: [<Peer:185.170.42.4>], priority: 11, optional_hash_id: None, tasks started: 1
[2017-07-23 12:56:21,825] DEBUG WorkerManager:1iD5ZQ..duGz Starting workers, tasks: 1, peers: 1, workers: 0
[2017-07-23 12:56:21,825] DEBUG WorkerManager:1iD5ZQ..duGz Added worker: 185.170.42.4:15441, workers: 1/5
[2017-07-23 12:56:21,826] DEBUG FileServer Conn#2264 96.37.237.52 [?] > Connecting...
[2017-07-23 12:56:21,828] DEBUG FileServer Conn#2265 180.165.130.134 [?] > Connecting...
[2017-07-23 12:56:21,828] INFO Site:1UDbAD..MkoV Publishing data/userdb/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/content.json to 2/388 peers (connected: 8) diffs: [] (0.00k)...
[2017-07-23 12:56:21,878] DEBUG Site:1NKKKZ..g2dH data/users/content.json loadContent same json file, skipping
[2017-07-23 12:56:21,880] DEBUG FileServer Conn#2266 185.170.42.4 [?] > Connecting...
[2017-07-23 12:56:21,890] DEBUG FileServer Conn#2122 illl6iys76xpuosc.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:21,895] INFO FileServer Checking port 15441 using portchecker.co...
[2017-07-23 12:56:22,002] DEBUG WorkerManager:1CWkZv..cdky 111.58.233.218:0: Verify failed: data/users/14K7EydgyeP84L1NKaAHBZTPQCev8BbqCy/content.json, error: Download failed, failed peers: 7
[2017-07-23 12:56:22,005] DEBUG FileServer Conn#2204 185.56.103.56 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:22,084] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:22] "GET /uimedia/all.css?rev=2163 HTTP/1.1" 200 33019 0.076000
[2017-07-23 12:56:22,114] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:22] "GET /Websocket?wrapper_key=0665e71e88d5d87ef28f72228f07e5993ac376645462821b4334eff7aad56099 HTTP/1.1" 101 129 1954.330000
[2017-07-23 12:56:22,127] DEBUG FileServer Conn#2159 boot.zeronet.io [?] > Closing connection: boot.zeronet.io#f36ca555bee6ba216b14d10f38c16f7769ff064e0e37d887603548cc2e64191d Connect error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in ConnectionServer.py line 142 > Connection.py line 105 > CryptConnection.py line 42 > _sslgte279.py line 702 > _sslgte279.py line 270, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,128] DEBUG Site:1G9wPK..bh6U Announce to boot.zeronet.io#f36ca555bee6ba216b14d10f38c16f7769ff064e0e37d887603548cc2e64191d:15441 failed: None
[2017-07-23 12:56:22,168] DEBUG WorkerManager:1TaLkF..jipT Added peer illl6iys76xpuosc.onion:15441 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:22,168] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 3
[2017-07-23 12:56:22,168] DEBUG Site:1G9wPK..bh6U Small number of peers detected...query all of peers using pex
[2017-07-23 12:56:22,170] DEBUG FileServer Conn#2267 ujlv73ari3nbo4wm.onion [?] > Connecting...
[2017-07-23 12:56:22,170] DEBUG TorManager Creating new Tor socket to ujlv73ari3nbo4wm.onion:15441
[2017-07-23 12:56:22,171] DEBUG FileServer Conn#543 okjr22ddb42t43h4.onion [v2] > Send error: missing socket
[2017-07-23 12:56:22,171] DEBUG FileServer Connection flood detected from 92.196.13.12
[2017-07-23 12:56:22,171] DEBUG FileServer Conn#2268 181.27.153.9 [?] > Incoming connection...
[2017-07-23 12:56:22,173] DEBUG FileServer Conn#2268 181.27.153.9 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,174] DEBUG FileServer Conn#2268 181.27.153.9 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-d0x1sEUL25Lc as broken ssl.
[2017-07-23 12:56:22,177] DEBUG FileServer Conn#2268 181.27.153.9 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,177] DEBUG FileServer Conn#2269 183.11.134.25 [?] > Incoming connection...
[2017-07-23 12:56:22,178] DEBUG FileServer Conn#2269 183.11.134.25 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,180] DEBUG FileServer Conn#2270 187.22.213.192 [?] > Incoming connection...
[2017-07-23 12:56:22,181] DEBUG WorkerManager:1iD5ZQ..duGz Starting workers, tasks: 1, peers: 0, workers: 1
[2017-07-23 12:56:22,181] DEBUG WorkerManager:1iD5ZQ..duGz Added worker: 96.37.237.52:15441, workers: 2/5
[2017-07-23 12:56:22,181] DEBUG WorkerManager:1iD5ZQ..duGz Added worker: 117.30.149.117:0, workers: 3/5
[2017-07-23 12:56:22,181] DEBUG WorkerManager:1iD5ZQ..duGz Added worker: 187.22.213.192:0, workers: 4/5
[2017-07-23 12:56:22,181] DEBUG WorkerManager:1iD5ZQ..duGz Added worker: 87.98.163.252:15441, workers: 5/5
[2017-07-23 12:56:22,183] DEBUG FileServer Conn#2270 187.22.213.192 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:22,183] DEBUG FileServer Conn#2271 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,186] DEBUG FileServer Conn#2271 qtsarm54ivfpka4y.onion [v2] > Socket error: error: [Errno 10053] An established connection was aborted by the software in your host machine in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:22,186] DEBUG FileServer Conn#2271 qtsarm54ivfpka4y.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,186] DEBUG FileServer Conn#2272 197.53.28.29 [?] > Incoming connection...
[2017-07-23 12:56:22,187] DEBUG FileServer Conn#2272 197.53.28.29 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,187] DEBUG FileServer Connection flood detected from 213.113.49.165
[2017-07-23 12:56:22,187] DEBUG FileServer Conn#2273 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:22,188] DEBUG FileServer Conn#2273 223.71.194.114 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,191] DEBUG FileServer Conn#2273 223.71.194.114 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-YwxtaqCOyJJs as broken ssl.
[2017-07-23 12:56:22,191] DEBUG FileServer Conn#2273 223.71.194.114 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,193] DEBUG FileServer Conn#2274 223.73.232.213 [?] > Incoming connection...
[2017-07-23 12:56:22,194] DEBUG FileServer Conn#2274 223.73.232.213 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,198] DEBUG FileServer Conn#2274 223.73.232.213 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-gJU5tXwC7IAt as broken ssl.
[2017-07-23 12:56:22,200] DEBUG FileServer Conn#2274 223.73.232.213 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,203] DEBUG FileServer Conn#2275 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,203] DEBUG FileServer Conn#2275 jun7j7vv3ar6lgpu.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,206] DEBUG WorkerManager:16bNGd..cyBB Starting workers, tasks: 1, peers: 0, workers: 1
[2017-07-23 12:56:22,206] DEBUG WorkerManager:16bNGd..cyBB Added worker: 180.165.130.134:15441, workers: 2/5
[2017-07-23 12:56:22,207] DEBUG WorkerManager:16bNGd..cyBB Added worker: cxqyhaef3xhfshxm.onion:15441, workers: 3/5
[2017-07-23 12:56:22,210] DEBUG WorkerManager:16bNGd..cyBB Added worker: 112.21.76.81:0, workers: 4/5
[2017-07-23 12:56:22,210] DEBUG FileServer Connection flood detected from 119.131.39.143
[2017-07-23 12:56:22,210] DEBUG FileServer Connection flood detected from 213.113.49.165
[2017-07-23 12:56:22,210] DEBUG FileServer Conn#2276 177.134.23.152 [?] > Incoming connection...
[2017-07-23 12:56:22,213] DEBUG FileServer Conn#2277 156.215.209.220 [?] > Incoming connection...
[2017-07-23 12:56:22,213] DEBUG FileServer Conn#2277 156.215.209.220 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,216] DEBUG FileServer Conn#2277 156.215.209.220 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0051-GjnbIg1Ggv5b as broken ssl.
[2017-07-23 12:56:22,217] DEBUG FileServer Conn#2277 156.215.209.220 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,219] DEBUG FileServer Conn#2278 91.64.161.246 [?] > Incoming connection...
[2017-07-23 12:56:22,221] DEBUG FileServer Conn#2278 91.64.161.246 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,223] DEBUG FileServer Conn#2279 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:22,253] DEBUG FileServer Conn#2279 117.61.29.226 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,255] DEBUG FileServer Conn#2280 139.227.87.104 [?] > Incoming connection...
[2017-07-23 12:56:22,256] DEBUG FileServer Conn#2280 139.227.87.104 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,259] DEBUG FileServer Conn#2280 139.227.87.104 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-40dFOHtj17vB as broken ssl.
[2017-07-23 12:56:22,259] DEBUG FileServer Conn#2280 139.227.87.104 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,262] DEBUG FileServer Conn#2281 91.64.161.246 [?] > Incoming connection...
[2017-07-23 12:56:22,269] DEBUG FileServer Conn#2281 91.64.161.246 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,270] DEBUG FileServer Conn#2282 176.9.137.49 [?] > Incoming connection...
[2017-07-23 12:56:22,273] DEBUG FileServer Conn#2282 176.9.137.49 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,275] DEBUG FileServer Conn#2282 176.9.137.49 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0056-kxA9L7JnCtn6 as broken ssl.
[2017-07-23 12:56:22,279] DEBUG FileServer Conn#2282 176.9.137.49 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,280] DEBUG FileServer Conn#2283 96.37.237.52 [?] > Incoming connection...
[2017-07-23 12:56:22,282] DEBUG FileServer Conn#2283 96.37.237.52 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,282] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:22,282] DEBUG FileServer Conn#2284 181.27.153.9 [?] > Incoming connection...
[2017-07-23 12:56:22,315] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 0, workers: 3
[2017-07-23 12:56:22,315] DEBUG WorkerManager:1TaLkF..jipT Added worker: 177.134.23.152:0, workers: 4/5
[2017-07-23 12:56:22,315] DEBUG WorkerManager:1TaLkF..jipT Added worker: 181.27.153.9:0, workers: 5/5
[2017-07-23 12:56:22,315] DEBUG FileServer Conn#2284 181.27.153.9 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:22,318] DEBUG FileServer Conn#2285 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,319] DEBUG FileServer Conn#2285 bqvcaomg34iyp2ol.onion [v2] > Socket error: error: [Errno 10053] An established connection was aborted by the software in your host machine in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:22,319] DEBUG FileServer Conn#2285 bqvcaomg34iyp2ol.onion [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,319] DEBUG FileServer Conn#2286 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,321] DEBUG FileServer Conn#2287 139.227.87.104 [?] > Incoming connection...
[2017-07-23 12:56:22,322] DEBUG FileServer Conn#2288 173.239.236.11 [?] > Incoming connection...
[2017-07-23 12:56:22,326] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT/data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json' in FileRequest.py line 197
[2017-07-23 12:56:22,328] DEBUG FileServer Conn#2288 173.239.236.11 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,328] DEBUG FileServer Conn#2289 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:22,332] DEBUG FileServer Conn#2289 171.217.115.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,334] DEBUG FileServer Conn#2290 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,335] DEBUG FileServer Conn#2290 2ahyhncwixv62zpl.onion [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,335] DEBUG FileServer Conn#2291 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:22,375] DEBUG FileServer Conn#2291 117.61.29.226 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 19, buff: 0...
[2017-07-23 12:56:22,375] DEBUG FileServer Conn#2292 217.234.47.113 [?] > Incoming connection...
[2017-07-23 12:56:22,381] DEBUG FileServer Conn#2292 217.234.47.113 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,381] DEBUG FileServer Conn#2293 171.217.115.242 [?] > Incoming connection...
[2017-07-23 12:56:22,384] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:22,384] DEBUG FileServer Conn#2294 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,384] DEBUG FileServer Conn#2295 123.117.90.193 [?] > Incoming connection...
[2017-07-23 12:56:22,388] DEBUG FileServer Conn#2295 123.117.90.193 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,388] DEBUG FileServer Conn#2296 5.49.136.217 [?] > Incoming connection...
[2017-07-23 12:56:22,390] DEBUG FileServer Conn#2296 5.49.136.217 [?] > Socket peek error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 122 > _socket2.py line 277
[2017-07-23 12:56:22,391] DEBUG FileServer Conn#2296 5.49.136.217 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:22,391] DEBUG FileServer Conn#2296 5.49.136.217 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,391] DEBUG FileServer Connection flood detected from 92.196.13.12
[2017-07-23 12:56:22,391] DEBUG FileServer Conn#2297 82.154.155.148 [?] > Incoming connection...
[2017-07-23 12:56:22,395] DEBUG FileServer Conn#2297 82.154.155.148 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,398] DEBUG FileServer Conn#2298 77.247.181.165 [?] > Incoming connection...
[2017-07-23 12:56:22,456] DEBUG FileServer Conn#2298 77.247.181.165 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:22,457] DEBUG FileServer Connection flood detected from 213.113.49.165
[2017-07-23 12:56:22,457] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:22,457] DEBUG FileServer Conn#2299 181.27.153.9 [?] > Incoming connection...
[2017-07-23 12:56:22,461] DEBUG FileServer Conn#2299 181.27.153.9 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,463] DEBUG FileServer Conn#2300 112.21.76.81 [?] > Incoming connection...
[2017-07-23 12:56:22,464] DEBUG FileServer Conn#2300 112.21.76.81 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,469] DEBUG FileServer Conn#2301 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,470] DEBUG FileServer Conn#2302 181.27.153.9 [?] > Incoming connection...
[2017-07-23 12:56:22,471] DEBUG FileServer Conn#2303 106.185.35.18 [?] > Incoming connection...
[2017-07-23 12:56:22,473] DEBUG FileServer Conn#2304 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:22,476] DEBUG FileServer Conn#2304 223.71.194.114 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,477] DEBUG FileServer Connection flood detected from 213.113.49.165
[2017-07-23 12:56:22,477] DEBUG FileServer Connection flood detected from 92.196.13.12
[2017-07-23 12:56:22,479] DEBUG FileServer Conn#2305 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:22,480] DEBUG FileServer Conn#2306 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:22,493] DEBUG FileServer Conn#2306 117.61.29.226 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 8, buff: 0...
[2017-07-23 12:56:22,494] DEBUG FileServer Conn#2307 117.61.29.226 [?] > Incoming connection...
[2017-07-23 12:56:22,496] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1ABFCaadiEa3bFNzN3RcCZSsviqMNTbz3m/data/users/1NDyREXbnNrbVQRELe1SW2cKByyp7xKJA5/content.json' in FileRequest.py line 197
[2017-07-23 12:56:22,497] DEBUG FileServer Conn#2308 117.61.138.242 [?] > Incoming connection...
[2017-07-23 12:56:22,551] DEBUG FileServer GetFile Conn#2308 117.61.138.242 [v2] css/all.css request error: RequestError: File size does not match: 140506B != 140494B in FileRequest.py line 203
[2017-07-23 12:56:22,552] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1GrEenUGRWnzaNZjR3XsQa6dQgdPDTyt7i/data/users/1NDyREXbnNrbVQRELe1SW2cKByyp7xKJA5/content.json' in FileRequest.py line 197
[2017-07-23 12:56:22,552] DEBUG FileServer Conn#2308 117.61.138.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,552] DEBUG FileServer Conn#2309 78.109.23.1 [?] > Incoming connection...
[2017-07-23 12:56:22,555] DEBUG FileServer Conn#2309 78.109.23.1 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,555] DEBUG FileServer Conn#2310 96.37.237.52 [?] > Incoming connection...
[2017-07-23 12:56:22,556] DEBUG FileServer Conn#2311 117.61.138.242 [?] > Incoming connection...
[2017-07-23 12:56:22,563] DEBUG FileServer Conn#2311 117.61.138.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:22,565] DEBUG FileServer Conn#2312 113.80.105.135 [?] > Incoming connection...
[2017-07-23 12:56:22,565] DEBUG FileServer Conn#2312 113.80.105.135 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,568] DEBUG FileServer Conn#2312 113.80.105.135 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-h8rbfnkU5pZy as broken ssl.
[2017-07-23 12:56:22,569] DEBUG FileServer Conn#2312 113.80.105.135 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,572] DEBUG FileServer Conn#2313 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:22,572] DEBUG FileServer Conn#2314 117.61.138.242 [?] > Incoming connection...
[2017-07-23 12:56:22,575] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1GrEenUGRWnzaNZjR3XsQa6dQgdPDTyt7i/data/users/1NDyREXbnNrbVQRELe1SW2cKByyp7xKJA5/content.json' in FileRequest.py line 197
[2017-07-23 12:56:22,578] DEBUG FileServer Conn#2314 117.61.138.242 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,579] DEBUG FileServer Conn#2315 147.135.210.101 [?] > Incoming connection...
[2017-07-23 12:56:22,582] DEBUG FileServer Conn#2316 197.53.28.29 [?] > Incoming connection...
[2017-07-23 12:56:22,585] DEBUG FileServer Conn#2317 113.80.105.135 [?] > Incoming connection...
[2017-07-23 12:56:22,605] DEBUG FileServer Conn#2317 113.80.105.135 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,607] DEBUG FileServer Conn#2318 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,608] DEBUG FileServer Conn#2319 117.61.138.242 [?] > Incoming connection...
[2017-07-23 12:56:22,618] DEBUG FileServer Conn#2320 180.173.58.45 [?] > Incoming connection...
[2017-07-23 12:56:22,618] DEBUG FileServer Conn#2320 180.173.58.45 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,621] DEBUG FileServer Conn#2321 113.80.105.135 [?] > Incoming connection...
[2017-07-23 12:56:22,622] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1CvYYbAdpnqFNbUwrcUh7t9APu4Heyn28Q/data.json' in FileRequest.py line 197
[2017-07-23 12:56:22,624] DEBUG FileServer Conn#2321 113.80.105.135 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,624] DEBUG FileServer Conn#2322 182.201.174.114 [?] > Incoming connection...
[2017-07-23 12:56:22,625] DEBUG FileServer Conn#2322 182.201.174.114 [v2] > Crypt in connection using: tls-rsa (server side: True)...
[2017-07-23 12:56:22,631] DEBUG FileServer Conn#2322 182.201.174.114 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0054-giDgdTzA4xJq as broken ssl.
[2017-07-23 12:56:22,631] DEBUG FileServer Conn#2322 182.201.174.114 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:22,638] DEBUG WorkerManager:1SiTEs..tdwB Starting workers, tasks: 1, peers: 0, workers: 3
[2017-07-23 12:56:22,638] DEBUG WorkerManager:1SiTEs..tdwB Added worker: 177.134.23.152:0, workers: 4/5
[2017-07-23 12:56:22,638] DEBUG WorkerManager:1SiTEs..tdwB Added worker: 87.98.163.252:15441, workers: 5/5
[2017-07-23 12:56:22,644] DEBUG FileServer Connection flood detected from 180.165.130.134
[2017-07-23 12:56:22,645] DEBUG FileServer Conn#2323 176.9.137.49 [?] > Incoming connection...
[2017-07-23 12:56:22,648] DEBUG FileServer Conn#2324 127.0.0.1 [?] > Incoming connection...
[2017-07-23 12:56:22,651] DEBUG FileServer Conn#2325 182.201.174.114 [?] > Incoming connection...
[2017-07-23 12:56:22,678] DEBUG FileServer Conn#2326 195.154.71.61 [?] > Incoming connection...
[2017-07-23 12:56:22,680] DEBUG FileServer Conn#2327 123.117.90.193 [?] > Incoming connection...
[2017-07-23 12:56:22,683] DEBUG FileServer Conn#2328 113.80.105.135 [?] > Incoming connection...
[2017-07-23 12:56:22,684] DEBUG FileServer Conn#2329 217.234.47.113 [?] > Incoming connection...
[2017-07-23 12:56:22,917] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:22] "GET /uimedia/all.js?rev=2163&lang=en HTTP/1.1" 200 176296 0.231000
[2017-07-23 12:56:22,917] DEBUG WorkerManager:1TaLkF..jipT Added peer 183.11.134.25:15441 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:22,917] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 5
[2017-07-23 12:56:22,917] DEBUG WorkerManager:1iD5ZQ..duGz 96.37.237.52:15441: No task found, stopping
[2017-07-23 12:56:22,918] DEBUG WorkerManager:1iD5ZQ..duGz Removed worker, workers: 4/5
[2017-07-23 12:56:22,918] DEBUG WorkerManager:1iD5ZQ..duGz 117.30.149.117:0: No task found, stopping
[2017-07-23 12:56:22,918] DEBUG WorkerManager:1iD5ZQ..duGz Removed worker, workers: 3/5
[2017-07-23 12:56:22,920] DEBUG WorkerManager:1iD5ZQ..duGz 187.22.213.192:0: No task found, stopping
[2017-07-23 12:56:22,920] DEBUG WorkerManager:1iD5ZQ..duGz Removed worker, workers: 2/5
[2017-07-23 12:56:22,920] DEBUG WorkerManager:1iD5ZQ..duGz 87.98.163.252:15441: No task found, stopping
[2017-07-23 12:56:22,920] DEBUG WorkerManager:1iD5ZQ..duGz Removed worker, workers: 1/5
[2017-07-23 12:56:22,921] DEBUG WorkerManager:1NKKKZ..g2dH Added peer 223.73.232.213:0 to data/data.json
[2017-07-23 12:56:22,921] DEBUG WorkerManager:1NKKKZ..g2dH Starting workers, tasks: 2, peers: 1, workers: 1
[2017-07-23 12:56:22,921] DEBUG WorkerManager:1NKKKZ..g2dH Added worker: 223.73.232.213:0, workers: 2/5
[2017-07-23 12:56:22,921] DEBUG WorkerManager:1NKKKZ..g2dH Added peer 223.73.232.213:0 to data/img/post_17_ira_banner.jpg
[2017-07-23 12:56:22,923] DEBUG WorkerManager:1NKKKZ..g2dH Starting workers, tasks: 2, peers: 1, workers: 2
[2017-07-23 12:56:22,924] DEBUG WorkerManager:15mSYz..VB2f Added peer 223.73.232.213:0 to css/all.css
[2017-07-23 12:56:22,924] DEBUG WorkerManager:15mSYz..VB2f Starting workers, tasks: 1, peers: 1, workers: 1
[2017-07-23 12:56:22,924] DEBUG WorkerManager:15mSYz..VB2f Added worker: 223.73.232.213:0, workers: 2/5
[2017-07-23 12:56:22,924] DEBUG WorkerManager:16bNGd..cyBB 180.165.130.134:15441: No task found, stopping
[2017-07-23 12:56:22,924] DEBUG WorkerManager:16bNGd..cyBB Removed worker, workers: 3/5
[2017-07-23 12:56:22,928] DEBUG WorkerManager:16bNGd..cyBB cxqyhaef3xhfshxm.onion:15441: No task found, stopping
[2017-07-23 12:56:22,930] DEBUG WorkerManager:16bNGd..cyBB Removed worker, workers: 2/5
[2017-07-23 12:56:22,930] DEBUG WorkerManager:16bNGd..cyBB 112.21.76.81:0: No task found, stopping
[2017-07-23 12:56:22,930] DEBUG WorkerManager:16bNGd..cyBB Removed worker, workers: 1/5
[2017-07-23 12:56:22,931] DEBUG WorkerManager:15mSYz..VB2f Added peer 91.64.161.246:15441 to css/all.css
[2017-07-23 12:56:22,931] DEBUG WorkerManager:15mSYz..VB2f Starting workers, tasks: 1, peers: 1, workers: 2
[2017-07-23 12:56:22,933] DEBUG WorkerManager:15mSYz..VB2f Added worker: 91.64.161.246:15441, workers: 3/5
[2017-07-23 12:56:22,933] DEBUG WorkerManager:16bNGd..cyBB Added peer 91.64.161.246:15441 to data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/data.json
[2017-07-23 12:56:22,934] DEBUG WorkerManager:16bNGd..cyBB Starting workers, tasks: 1, peers: 1, workers: 1
[2017-07-23 12:56:22,934] DEBUG WorkerManager:16bNGd..cyBB Added worker: 91.64.161.246:15441, workers: 2/5
[2017-07-23 12:56:22,940] INFO Site:1G9wPK..bh6U Update for content.json looks valid, saving...
[2017-07-23 12:56:23,032] DEBUG WorkerManager:1TaLkF..jipT 177.134.23.152:0: No task found, stopping
[2017-07-23 12:56:23,032] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 4/5
[2017-07-23 12:56:23,032] DEBUG WorkerManager:1TaLkF..jipT 181.27.153.9:0: No task found, stopping
[2017-07-23 12:56:23,032] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 3/5
[2017-07-23 12:56:23,035] DEBUG WorkerManager:1TaLkF..jipT Added peer 61.149.135.246:15441 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:23,035] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 3
[2017-07-23 12:56:23,035] DEBUG WorkerManager:1TaLkF..jipT Added worker: 61.149.135.246:15441, workers: 4/5
[2017-07-23 12:56:23,036] DEBUG WorkerManager:1TaLkF..jipT Added peer 223.71.194.114:0 to data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:23,036] DEBUG WorkerManager:1TaLkF..jipT Starting workers, tasks: 1, peers: 1, workers: 4
[2017-07-23 12:56:23,036] DEBUG WorkerManager:1TaLkF..jipT Added worker: 223.71.194.114:0, workers: 5/5
[2017-07-23 12:56:23,038] DEBUG WorkerManager:1SiTEs..tdwB 177.134.23.152:0: No task found, stopping
[2017-07-23 12:56:23,038] DEBUG WorkerManager:1SiTEs..tdwB Removed worker, workers: 4/5
[2017-07-23 12:56:23,038] DEBUG WorkerManager:1SiTEs..tdwB 87.98.163.252:15441: No task found, stopping
[2017-07-23 12:56:23,038] DEBUG WorkerManager:1SiTEs..tdwB Removed worker, workers: 3/5
[2017-07-23 12:56:23,299] DEBUG SiteManager Saved sites in 0.26s
[2017-07-23 12:56:23,302] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:56:23,303] DEBUG WorkerManager:1G9wPK..bh6U New task: css/all.css, peer lock: [<Peer:96.37.237.52>], priority: 13, optional_hash_id: None, tasks started: 22
[2017-07-23 12:56:23,305] DEBUG WorkerManager:1G9wPK..bh6U Starting workers, tasks: 4, peers: 1, workers: 5
[2017-07-23 12:56:23,308] DEBUG FileServer Conn#2330 183.11.134.25 [?] > Connecting...
[2017-07-23 12:56:23,309] DEBUG FileServer Conn#2305 117.61.29.226 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:23,312] DEBUG WorkerManager:1SiTEs..tdwB 187.22.213.192:0: Verify failed: data/users/stats.json, error: Download failed, failed peers: 0
[2017-07-23 12:56:23,313] DEBUG WorkerManager:1CWkZv..cdky 111.58.233.218:0: No task found, stopping
[2017-07-23 12:56:23,315] DEBUG WorkerManager:1CWkZv..cdky Removed worker, workers: 4/5
[2017-07-23 12:56:23,354] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:23] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/?wrapper_nonce=49905808c5985acf2fc9e2f82609278b4377a54b00d1aea22cbc72002a543a8c HTTP/1.1" 200 1408 0.039000
[2017-07-23 12:56:23,576] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:23] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/?Home&wrapper_nonce=d38c9a1af6323ac62052d3c0ca7066d9216aface089920663c03c66110f5a344 HTTP/1.1" 200 1860 0.102000
[2017-07-23 12:56:23,584] DEBUG FileServer Conn#2300 112.21.76.81 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0057-6Vvf1aSptZaJ as broken ssl.
[2017-07-23 12:56:23,584] DEBUG FileServer Conn#2300 112.21.76.81 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:23,586] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1J1uS6eS4jhcjH3ZsqaJeH7bXCerceudxJ/content.json' in FileRequest.py line 197
[2017-07-23 12:56:23,588] DEBUG FileServer Conn#2316 197.53.28.29 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:23,588] DEBUG FileServer Conn#2316 197.53.28.29 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:23,591] DEBUG FileServer Conn#2320 180.173.58.45 [v2] > Crypt connection error: EOF occurred in violation of protocol (_ssl.c:661), adding peerid -ZN0055-Utzd3RxMaoQT as broken ssl.
[2017-07-23 12:56:23,591] DEBUG FileServer Conn#2320 180.173.58.45 [v2] > Closing connection: Broken ssl, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:23,609] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1CvYYbAdpnqFNbUwrcUh7t9APu4Heyn28Q/data.json' in FileRequest.py line 197
[2017-07-23 12:56:23,624] DEBUG WorkerManager:1TaLkF..jipT illl6iys76xpuosc.onion:15441: Verify correct: data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/data.json
[2017-07-23 12:56:24,971] DEBUG WorkerManager:1TaLkF..jipT illl6iys76xpuosc.onion:15441: No task found, stopping
[2017-07-23 12:56:24,973] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 4/5
[2017-07-23 12:56:24,973] DEBUG WorkerManager:1CWkZv..cdky hd7ksonu2gzgmavl.onion:15441: Verify failed: data/users/14K7EydgyeP84L1NKaAHBZTPQCev8BbqCy/content.json, error: Download failed, failed peers: 8
[2017-07-23 12:56:24,976] INFO Site:1TaLkF..jipT Publishing data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json to 2/487 peers (connected: 18) diffs: [] (0.00k)...
[2017-07-23 12:56:24,977] DEBUG Site:1TaLkF..jipT Peer:195.154.71.61 already received this update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json, skipping
[2017-07-23 12:56:24,979] DEBUG FileServer Conn#2331 91.64.161.246 [?] > Connecting...
[2017-07-23 12:56:24,980] DEBUG WorkerManager:1NKKKZ..g2dH 223.73.232.213:0: Verify failed: data/data.json, error: Download failed, failed peers: 0
[2017-07-23 12:56:24,982] DEBUG WorkerManager:15mSYz..VB2f 223.73.232.213:0: Verify failed: css/all.css, error: Download failed, failed peers: 0
[2017-07-23 12:56:24,982] DEBUG WorkerManager:1TaLkF..jipT 223.71.194.114:0: No task found, stopping
[2017-07-23 12:56:24,982] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 3/5
[2017-07-23 12:56:24,982] DEBUG WorkerManager:1TaLkF..jipT 61.149.135.246:15441: No task found, stopping
[2017-07-23 12:56:24,982] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 2/5
[2017-07-23 12:56:24,982] DEBUG WorkerManager:1SiTEs..tdwB 187.22.213.192:0: No task found, stopping
[2017-07-23 12:56:24,983] DEBUG WorkerManager:1SiTEs..tdwB Removed worker, workers: 2/5
[2017-07-23 12:56:25,184] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:25] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/css/all.css HTTP/1.1" 200 207715 0.200000
[2017-07-23 12:56:25,282] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:25] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/css/all.css HTTP/1.1" 200 140760 0.040000
[2017-07-23 12:56:25,285] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/12KjQ2ZFaiNYnJ1Dex1LoNiq7zT969CCD7/content.json' in FileRequest.py line 197
[2017-07-23 12:56:25,546] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:25] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/js/all.js?lang={lang} HTTP/1.1" 200 187060 0.236000
[2017-07-23 12:56:25,553] DEBUG WorkerManager:1TaLkF..jipT 195.154.71.61:15441: No task found, stopping
[2017-07-23 12:56:25,555] DEBUG WorkerManager:1TaLkF..jipT Removed worker, workers: 1/5
[2017-07-23 12:56:25,802] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:25] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/js/all.js?lang={lang} HTTP/1.1" 200 264748 0.246000
[2017-07-23 12:56:25,805] DEBUG WorkerManager:1TaLkF..jipT Check compelte: No tasks
[2017-07-23 12:56:25,806] DEBUG FileServer Conn#2313 223.71.194.114 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:25,986] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:25] "GET /favicon.ico HTTP/1.1" 200 1418 0.097000
[2017-07-23 12:56:25,986] DEBUG FileServer Conn#2171 96.37.237.52 [v2] > Crypt out connection using: tls-rsa (server side: False, ping: 9.853s)...
[2017-07-23 12:56:25,992] DEBUG FileServer Conn#2260 101.142.231.38 [v2] > Crypt out connection using: tls-rsa (server side: False, ping: 5.165s)...
[2017-07-23 12:56:26,003] DEBUG FileServer Conn#2264 96.37.237.52 [v2] > Crypt out connection using: tls-rsa (server side: False, ping: 4.176s)...
[2017-07-23 12:56:26,005] DEBUG WorkerManager:1CWkZv..cdky hd7ksonu2gzgmavl.onion:15441: No task found, stopping
[2017-07-23 12:56:26,005] DEBUG WorkerManager:1CWkZv..cdky Removed worker, workers: 3/5
[2017-07-23 12:56:26,006] DEBUG WorkerManager:1NKKKZ..g2dH 223.73.232.213:0: Verify failed: data/img/post_17_ira_banner.jpg, error: Download failed, failed peers: 0
[2017-07-23 12:56:26,007] DEBUG WorkerManager:15mSYz..VB2f 223.73.232.213:0: No task found, stopping
[2017-07-23 12:56:26,007] DEBUG WorkerManager:15mSYz..VB2f Removed worker, workers: 2/5
[2017-07-23 12:56:26,036] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:26] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/img/logo.svg HTTP/1.1" 200 792 0.027000
[2017-07-23 12:56:26,125] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:26] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/img/logo.svg HTTP/1.1" 200 1304 0.073000
[2017-07-23 12:56:26,137] DEBUG SiteManager Loading sites...
[2017-07-23 12:56:26,203] DEBUG SiteManager Updated merger sites in 0.003s
[2017-07-23 12:56:26,263] DEBUG FileServer Conn#2332 197.53.28.29 [?] > Incoming connection...
[2017-07-23 12:56:26,263] DEBUG FileServer Conn#2333 112.21.76.81 [?] > Incoming connection...
[2017-07-23 12:56:26,460] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:26] "GET /1HeLLo4uzjaLetFx6NH3PMwFP3qbRbTf3D/img/loading-circle.gif HTTP/1.1" 200 2643 0.024000
[2017-07-23 12:56:26,463] DEBUG FileServer Conn#2332 197.53.28.29 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:26,463] DEBUG FileServer Conn#2332 197.53.28.29 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:26,507] ERROR Site:1HeLLo..Tf3D 1CHmy3h5cDEKbxDkpKBGowiUVtjdBwQWxG feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,509] DEBUG Site:1HeLLo..Tf3D Newsfeed from the future from from site 1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT
[2017-07-23 12:56:26,509] DEBUG Site:1HeLLo..Tf3D Newsfeed from the future from from site 1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT
[2017-07-23 12:56:26,575] ERROR Site:1HeLLo..Tf3D 1JKxHCTNCvGwAb3cweic7qNoRzqWerjFLn feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,802] ERROR Site:1HeLLo..Tf3D 1BuEAqZoVcBG5VNbQR6GHMhtEjyYX1wUUB feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,802] ERROR Site:1HeLLo..Tf3D 144c8VN86Ep44MjfMBHBN8Tg4uyQu5QyR4 feed query Posts error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,803] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,805] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query New topics error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,805] ERROR Site:1HeLLo..Tf3D 16KnAAZjxfXAJwxCQ6Gj4PkqFnjRwjGm5Q feed query Comments in this topic error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,805] ERROR Site:1HeLLo..Tf3D 186THqMWuptrZxq1rxzpguAivK3Bs6z84o feed query Username mentions error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:26,805] ERROR Site:1HeLLo..Tf3D 186THqMWuptrZxq1rxzpguAivK3Bs6z84o feed query Comments in this topic error: 'NoneType' object has no attribute 'storage'
[2017-07-23 12:56:27,250] DEBUG WorkerManager:1NKKKZ..g2dH 223.73.232.213:0: No task found, stopping
[2017-07-23 12:56:27,250] DEBUG WorkerManager:1NKKKZ..g2dH Removed worker, workers: 1/5
[2017-07-23 12:56:27,253] DEBUG FileServer Conn#2330 183.11.134.25 [v2] > Crypt out connection using: tls-rsa (server side: False, ping: 3.945s)...
[2017-07-23 12:56:27,256] INFO FileServer [OK :)] Port open: Port 15441 is open.
[2017-07-23 12:56:27,273] DEBUG FileServer Conn#2266 185.170.42.4 [?] > Closing connection: 185.170.42.4 Connect error: error: [Errno 10061] [Error 10061] No connection could be made because the target machine actively refused it. in ConnectionServer.py line 142 > Connection.py line 101 > socket.py line 99, waiting_requests: 0, sites: 1, buff: 0...
[2017-07-23 12:56:27,275] DEBUG WorkerManager:1iD5ZQ..duGz 185.170.42.4:15441: Verify failed: data/users.json, error: Download failed, failed peers: 0
[2017-07-23 12:56:27,315] INFO Site:1UDbAD..MkoV [FAILED] 112.21.76.81:0: {'exception': 'Timeout'}
[2017-07-23 12:56:27,315] INFO Site:1UDbAD..MkoV [FAILED] 101.142.231.38:15441: {'exception': 'Timeout'}
[2017-07-23 12:56:27,316] DEBUG WorkerManager:1NKKKZ..g2dH 96.37.237.52:15441: Verify correct: data/data.json
[2017-07-23 12:56:27,361] INFO Site:12h51u..WWtv [OK] 96.37.237.52:15441: File not changed 1/2
[2017-07-23 12:56:27,361] DEBUG WorkerManager:1CWkZv..cdky w4kbzlxgmm7kkml6.onion:15441: Verify failed: data/users/14K7EydgyeP84L1NKaAHBZTPQCev8BbqCy/content.json, error: Download failed, failed peers: 9
[2017-07-23 12:56:27,362] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: Verify correct: zerome.ico
[2017-07-23 12:56:27,382] DEBUG WorkerManager:16bNGd..cyBB 101.142.231.38:15441: Verify failed: data/users/15Q5U52Aqgjb66GkzhkGKDYgWsqR8TEkJG/data.json, error: Download failed, failed peers: 0
[2017-07-23 12:56:27,382] INFO Site:1TaLkF..jipT [OK] 101.142.231.38:15441: File not changed 1/2
[2017-07-23 12:56:27,384] DEBUG FileServer Conn#2334 45.33.50.110 [?] > Incoming connection...
[2017-07-23 12:56:27,384] DEBUG FileServer Conn#2334 45.33.50.110 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:27,385] DEBUG FileServer Conn#2335 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:27,388] DEBUG FileServer Conn#2336 boot3rdez4rzn36x.onion [?] > Connecting...
[2017-07-23 12:56:27,388] DEBUG TorManager Creating new Tor socket to boot3rdez4rzn36x.onion:15441
[2017-07-23 12:56:27,390] DEBUG FileServer Conn#2337 boot.zeronet.io [?] > Connecting...
[2017-07-23 12:56:27,397] DEBUG Ui.UiServer 127.0.0.1 - - [2017-07-23 12:56:27] "GET /1G9wPKCvqdzZVRzZizcsExhYufMpAxbh6U/zerome.ico HTTP/1.1" 200 1450 1.271000
[2017-07-23 12:56:27,400] DEBUG Site:1TaLkF..jipT Peer:illl6iys76xpuosc.onion already received this update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json, skipping
[2017-07-23 12:56:27,401] DEBUG Site:1TaLkF..jipT Peer:223.71.194.114 already received this update for data/users/1JPLWNMSRA2MCW52wRjUeCaQUhDxXAz71D/content.json, skipping
[2017-07-23 12:56:27,404] DEBUG FileServer Conn#2338 xtwudxhqtrgkmj6g.onion [?] > Connecting...
[2017-07-23 12:56:27,404] DEBUG TorManager Creating new Tor socket to xtwudxhqtrgkmj6g.onion:15441
[2017-07-23 12:56:27,558] INFO Site:1UDbAD..MkoV [OK] 87.98.163.252:15441: File not changed 1/2
[2017-07-23 12:56:27,644] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/19Cu3fkRMLek9GppyQCY62bsCDpBatDtcr/content.json' in FileRequest.py line 197
[2017-07-23 12:56:27,901] DEBUG FileServer Conn#2335 223.71.194.114 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:27,947] DEBUG WorkerManager:1NKKKZ..g2dH 96.37.237.52:15441: Verify correct: data/img/post_17_ira_banner.jpg
[2017-07-23 12:56:27,996] DEBUG WorkerManager:1NKKKZ..g2dH 96.37.237.52:15441: No task found, stopping
[2017-07-23 12:56:27,996] DEBUG WorkerManager:1NKKKZ..g2dH Removed worker, workers: 0/5
[2017-07-23 12:56:27,996] INFO Site:1NKKKZ..g2dH Publishing content.json to 2/11 peers (connected: 4) diffs: ['data/data.json'] (1.29k)...
[2017-07-23 12:56:28,013] DEBUG FileServer Conn#1102 197.53.28.29 [v2] > Closing connection: Send error: [Errno 10053] An established connection was aborted by the software in your host machine, waiting_requests: 0, sites: 5, buff: 0...
[2017-07-23 12:56:28,091] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: Verify correct: css/all.css
[2017-07-23 12:56:28,105] DEBUG WorkerManager:1NKKKZ..g2dH Check compelte: No tasks
[2017-07-23 12:56:28,141] DEBUG FileServer Conn#2261 79.31.35.104 [v2] > Crypt out connection using: tls-rsa (server side: False, ping: 7.310s)...
[2017-07-23 12:56:28,154] INFO Site:1NKKKZ..g2dH [OK] 96.37.237.52:15441: File not changed 1/2
[2017-07-23 12:56:28,276] DEBUG WorkerManager:1iD5ZQ..duGz 185.170.42.4:15441: No task found, stopping
[2017-07-23 12:56:28,276] DEBUG WorkerManager:1iD5ZQ..duGz Removed worker, workers: 0/5
[2017-07-23 12:56:28,286] DEBUG Site:1TaLkF..jipT Found 50 peers, new: 9, total: 497
[2017-07-23 12:56:28,295] DEBUG Site:1TaLkF..jipT Found 50 peers, new: 7, total: 504
[2017-07-23 12:56:28,362] DEBUG WorkerManager:1CWkZv..cdky w4kbzlxgmm7kkml6.onion:15441: No task found, stopping
[2017-07-23 12:56:28,362] DEBUG WorkerManager:1CWkZv..cdky Removed worker, workers: 2/5
[2017-07-23 12:56:28,365] INFO Site:1NKKKZ..g2dH Successfuly content.json published to 1 peers, publishing to 2 more peers in the background
[2017-07-23 12:56:28,384] DEBUG WorkerManager:16bNGd..cyBB 101.142.231.38:15441: No task found, stopping
[2017-07-23 12:56:28,384] DEBUG WorkerManager:16bNGd..cyBB Removed worker, workers: 1/5
[2017-07-23 12:56:28,470] DEBUG Site:1TaLkF..jipT Found 30 peers, new: 3, total: 507
[2017-07-23 12:56:28,617] DEBUG WorkerManager:1SiTEs..tdwB 183.11.134.25:15441: Verify correct: data/users/stats.json
[2017-07-23 12:56:28,763] DEBUG Db:ZeroSites Connected to C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1SiTEs2D3rCBxeMoLHXei2UYqFcxctdwB/data/users/zerosites.db in 0.129s (opened: 15, sqlite version: 2.6.0)...
[2017-07-23 12:56:28,790] DEBUG WorkerManager:1SiTEs..tdwB 183.11.134.25:15441: No task found, stopping
[2017-07-23 12:56:28,792] DEBUG WorkerManager:1SiTEs..tdwB Removed worker, workers: 1/5
[2017-07-23 12:56:28,792] INFO Site:1SiTEs..tdwB Publishing data/users/content.json to 2/357 peers (connected: 14) diffs: [] (0.00k)...
[2017-07-23 12:56:28,891] DEBUG WorkerManager:1SiTEs..tdwB Check compelte: No tasks
[2017-07-23 12:56:28,954] INFO Site:1SiTEs..tdwB [OK] 87.98.163.252:15441: File not changed 1/2
[2017-07-23 12:56:29,065] DEBUG FileServer Conn#2170 d55dtb2qvkdbaz7u.onion [?] > Closing connection: d55dtb2qvkdbaz7u.onion Connect error: SOCKS5Error: 0x04: Host unreachable in ConnectionServer.py line 142 > Connection.py line 99 > TorManager.py line 311 > socks.py line 681 > socks.py line 383 > socks.py line 458, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:29,157] DEBUG FileServer Conn#2339 d55dtb2qvkdbaz7u.onion [?] > Connecting...
[2017-07-23 12:56:29,158] DEBUG TorManager Creating new Tor socket to d55dtb2qvkdbaz7u.onion:15441
[2017-07-23 12:56:29,165] INFO Site:1SiTEs..tdwB [OK] 101.142.231.38:15441: File not changed 2/2
[2017-07-23 12:56:29,180] INFO Site:1SiTEs..tdwB Successfuly data/users/content.json published to 2 peers, publishing to 2 more peers in the background
[2017-07-23 12:56:29,180] DEBUG Site:1SiTEs..tdwB Peer:183.11.134.25 already received this update for data/users/content.json, skipping
[2017-07-23 12:56:29,186] DEBUG FileServer Conn#2340 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:29,348] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: Verify correct: img/logo.png
[2017-07-23 12:56:29,474] DEBUG FileServer GetFile read error: IOError: [Errno 2] No such file or directory: u'C:/Users/krixa/Desktop/ZeroNet-win-dist/data/1MaiL5gfBM1cyb4a8e3iiL8L5gXmoAJu27/data/users/1FpmjJqeesEJcQyqHmz4KvRUTW7G5c6miF/content.json' in FileRequest.py line 197
[2017-07-23 12:56:29,638] DEBUG Site:1G9wPK..bh6U Found 7 peers, new: 1, total: 6
[2017-07-23 12:56:29,746] DEBUG FileServer Conn#2340 223.71.194.114 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:30,049] INFO Site:1TaLkF..jipT [FAILED] 112.21.76.81:0: {'exception': 'Timeout'}
[2017-07-23 12:56:30,059] DEBUG FileServer Conn#2341 197.53.28.29 [?] > Connecting...
[2017-07-23 12:56:30,329] DEBUG FileServer Conn#2267 ujlv73ari3nbo4wm.onion [?] > Closing connection: ujlv73ari3nbo4wm.onion Connect error: SOCKS5Error: 0x04: Host unreachable in ConnectionServer.py line 142 > Connection.py line 99 > TorManager.py line 311 > socks.py line 681 > socks.py line 383 > socks.py line 458, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:30,332] DEBUG WorkerManager:1G9wPK..bh6U ujlv73ari3nbo4wm.onion:15441: Verify failed: img/loading.gif, error: Download failed, failed peers: 0
[2017-07-23 12:56:30,509] DEBUG FileServer Conn#2341 197.53.28.29 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:30,509] DEBUG FileServer Conn#2341 197.53.28.29 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:30,510] DEBUG FileServer Conn#2342 197.53.28.29 [?] > Connecting...
[2017-07-23 12:56:30,605] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: Verify correct: img/loading.gif
[2017-07-23 12:56:30,621] DEBUG WorkerManager:1G9wPK..bh6U 96.37.237.52:15441: No task found, stopping
[2017-07-23 12:56:30,622] DEBUG WorkerManager:1G9wPK..bh6U Removed worker, workers: 4/5
[2017-07-23 12:56:30,622] INFO Site:1G9wPK..bh6U Publishing content.json to 2/5 peers (connected: 4) diffs: [] (0.00k)...
[2017-07-23 12:56:30,625] DEBUG Site:1G9wPK..bh6U Peer:96.37.237.52 already received this update for content.json, skipping
[2017-07-23 12:56:30,628] DEBUG Site:1G9wPK..bh6U Peer:96.37.237.52 already received this update for content.json, skipping
[2017-07-23 12:56:30,723] DEBUG WorkerManager:1G9wPK..bh6U Check compelte: No tasks
[2017-07-23 12:56:31,013] DEBUG FileServer Conn#2342 197.53.28.29 [v2] > Socket error: error: [Errno 10054] An existing connection was forcibly closed by the remote host in Connection.py line 144 > _socket2.py line 277
[2017-07-23 12:56:31,013] DEBUG FileServer Conn#2342 197.53.28.29 [v2] > Closing connection: MessageLoop ended, waiting_requests: 0, sites: 0, buff: 0...
[2017-07-23 12:56:31,015] INFO Site:1TaLkF..jipT [FAILED] 197.53.28.29:15441: None
[2017-07-23 12:56:31,059] DEBUG FileServer Conn#2343 223.71.194.114 [?] > Incoming connection...
[2017-07-23 12:56:31,069] DEBUG WorkerManager:1G9wPK..bh6U d55dtb2qvkdbaz7u.onion:15441: No task found, stopping
[2017-07-23 12:56:31,069] DEBUG WorkerManager:1G9wPK..bh6U Removed worker, workers: 3/5
[2017-07-23 12:56:31,098] DEBUG WorkerManager:16bNGd..cyBB Starting workers, tasks: 1, peers: 0, workers: 1
[2017-07-23 12:56:31,099] DEBUG WorkerManager:16bNGd..cyBB Added worker: 180.165.130.134:15441, workers: 2/5
[2017-07-23 12:56:31,099] DEBUG WorkerManager:16bNGd..cyBB Added worker: 2ahyhncwixv62zpl.onion:15441, workers: 3/5
[2017-07-23 12:56:31,099] DEBUG WorkerManager:16bNGd..cyBB Added worker: 101.142.231.38:15441, workers: 4/5
[2017-07-23 12:56:31,099] DEBUG WorkerManager:16bNGd..cyBB Added worker: cxqyhaef3xhfshxm.onion:15441, workers: 5/5
[2017-07-23 12:56:31,101] DEBUG Site:16bNGd..cyBB Found 0 ip4, 18 onion peers, new: 1
[2017-07-23 12:56:31,102] DEBUG Site:1MaiL5..Ju27 Found 0 ip4, 20 onion peers, new: 2
[2017-07-23 12:56:31,104] DEBUG Site:1MzV32..Husr Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,107] DEBUG Site:15Pf9V..Rw6a Found 0 ip4, 14 onion peers, new: 2
[2017-07-23 12:56:31,108] DEBUG WorkerManager:1CWkZv..cdky Starting workers, tasks: 1, peers: 0, workers: 2
[2017-07-23 12:56:31,108] DEBUG WorkerManager:1CWkZv..cdky Added worker: jh4p7242sk6lij3e.onion:15441, workers: 3/5
[2017-07-23 12:56:31,108] DEBUG WorkerManager:1CWkZv..cdky Added worker: bqvcaomg34iyp2ol.onion:15441, workers: 4/5
[2017-07-23 12:56:31,108] DEBUG WorkerManager:1CWkZv..cdky Added worker: d55dtb2qvkdbaz7u.onion:15441, workers: 5/5
[2017-07-23 12:56:31,109] DEBUG Site:1CWkZv..cdky Found 0 ip4, 20 onion peers, new: 2
[2017-07-23 12:56:31,111] DEBUG Site:1Jhb5s..9Pqm Found 0 ip4, 13 onion peers, new: 1
[2017-07-23 12:56:31,112] DEBUG Site:18FheQ..NJ8d Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,115] DEBUG Site:12h51u..WWtv Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,115] DEBUG Site:1AsRLp..fMGi Found 0 ip4, 11 onion peers, new: 2
[2017-07-23 12:56:31,117] DEBUG Site:12cm58..kWYd Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,118] DEBUG Site:185yXN..mecL Found 0 ip4, 18 onion peers, new: 1
[2017-07-23 12:56:31,119] DEBUG Site:1White..1o51 Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,121] DEBUG Site:149fpM..FKBq Found 0 ip4, 19 onion peers, new: 1
[2017-07-23 12:56:31,122] DEBUG Site:1SiTEs..tdwB Found 0 ip4, 20 onion peers, new: 5
[2017-07-23 12:56:31,124] DEBUG Site:12MVkv..s9Er Found 0 ip4, 19 onion peers, new: 1
[2017-07-23 12:56:31,125] DEBUG Site:1GnSLu..EbXn Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,128] DEBUG Site:1GrEen..yt7i Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,130] DEBUG Site:1N6zp6..k2M8 Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,131] DEBUG Site:1BLogC..AGg8 Found 0 ip4, 20 onion peers, new: 3
[2017-07-23 12:56:31,132] DEBUG Site:1AbRRD..tMJZ Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,134] DEBUG Site:1CiGGh..tJDk Found 0 ip4, 17 onion peers, new: 1
[2017-07-23 12:56:31,134] DEBUG Site:1UPDat..fxsp Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,137] DEBUG Site:1D7xb8..xgFj Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,138] DEBUG Site:1Cn8tC..Hwys Found 0 ip4, 10 onion peers, new: 1
[2017-07-23 12:56:31,148] DEBUG Site:1LQeBa..1vgY Found 0 ip4, 19 onion peers, new: 1
[2017-07-23 12:56:31,164] DEBUG Site:14y3fN..SAJo Found 0 ip4, 20 onion peers, new: 2
[2017-07-23 12:56:31,167] DEBUG Site:1RedkC..uFdL Found 0 ip4, 20 onion peers, new: 2
[2017-07-23 12:56:31,167] DEBUG Site:1HPrKB..Dugu Found 0 ip4, 11 onion peers, new: 1
[2017-07-23 12:56:31,168] DEBUG Site:1MATTn..Xyfv Found 0 ip4, 17 onion peers, new: 1
[2017-07-23 12:56:31,168] DEBUG WorkerManager:15mSYz..VB2f Starting workers, tasks: 1, peers: 0, workers: 2
[2017-07-23 12:56:31,170] DEBUG WorkerManager:15mSYz..VB2f Added worker: bqvcaomg34iyp2ol.onion:15441, workers: 3/5
[2017-07-23 12:56:31,170] DEBUG WorkerManager:15mSYz..VB2f Added worker: xtwudxhqtrgkmj6g.onion:15441, workers: 4/5
[2017-07-23 12:56:31,170] DEBUG WorkerManager:15mSYz..VB2f Added worker: w4kbzlxgmm7kkml6.onion:15441, workers: 5/5
[2017-07-23 12:56:31,171] DEBUG Site:15mSYz..VB2f Found 0 ip4, 2 onion peers, new: 1
[2017-07-23 12:56:31,173] DEBUG Site:1ABFCa..bz3m Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,174] DEBUG Site:15fDN4..h518 Found 0 ip4, 20 onion peers, new: 1
[2017-07-23 12:56:31,177] DEBUG Site:1UDbAD..MkoV Found 0 ip4, 20 onion peers, new: 3
[2017-07-23 12:56:31,178] DEBUG Site:1Jtjb5..sb4x Found 0 ip4, 17 onion peers, new: 2
[2017-07-23 12:56:31,184] DEBUG Site:1TaLkF..jipT Found 0 ip4, 20 onion peers, new: 1