-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscan.log
More file actions
4745 lines (4745 loc) · 452 KB
/
Copy pathscan.log
File metadata and controls
4745 lines (4745 loc) · 452 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[2017-12-07 12:00:00][ INFO][root] -------------------------------------
[2017-12-07 12:00:00][ INFO][root] Starting up!
[2017-12-07 12:00:00][ INFO][overseer] Overseer initialized
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh724 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh728 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh729 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh730 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh731 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh732 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh733 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh734 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh735 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh736 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh738 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh739 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh740 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh741 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh742 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh743 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh744 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh745 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh746 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh748 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh749 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh750 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh751 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh752 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh753 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh757 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh759 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh760 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh761 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh762 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh763 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh764 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh765 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh766 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh767 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh768 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh769 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh770 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh771 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh772 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh773 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh774 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh776 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh780 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh781 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh785 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh786 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh787 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh789 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Removed account qaoikpiokfh790 Lv.1 from this instance
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh724 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh728 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh729 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh730 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh731 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh732 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh733 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh734 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh735 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh736 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh738 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh739 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh740 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh741 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh742 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh743 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh744 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh745 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh746 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh748 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh749 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh750 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh751 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh752 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh753 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh757 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh759 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh760 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh761 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh762 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh763 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh764 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh765 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh766 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh767 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh768 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh769 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh770 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh771 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh772 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh773 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh774 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh776 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh780 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh781 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh785 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh786 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh787 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh789 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][monocle.accounts] Saving account qaoikpiokfh790 Lv.0 found in pickle/config to DB
[2017-12-07 12:00:00][ INFO][overseer] Worker count: (15/15)
[2017-12-07 12:02:09][ INFO][root] -------------------------------------
[2017-12-07 12:02:09][ INFO][root] Starting up!
[2017-12-07 12:02:09][ INFO][overseer] Overseer initialized
[2017-12-07 12:02:09][ INFO][overseer] Worker count: (15/15)
[2017-12-07 12:03:48][ INFO][root] -------------------------------------
[2017-12-07 12:03:48][ INFO][root] Starting up!
[2017-12-07 12:03:48][ INFO][overseer] Overseer initialized
[2017-12-07 12:03:48][ INFO][overseer] Worker count: (15/15)
[2017-12-07 12:11:13][ INFO][root] -------------------------------------
[2017-12-07 12:11:13][ INFO][root] Starting up!
[2017-12-07 12:11:13][ INFO][overseer] Overseer initialized
[2017-12-07 12:11:13][ INFO][overseer] Worker count: (15/15)
[2017-12-07 12:11:13][ INFO][overseer] Seen per worker: min 0, max 0, med 0
[2017-12-07 12:11:13][ INFO][overseer] Visits per worker: min 0, max 0, med 0
[2017-12-07 12:11:13][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:11:13][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:11:13][ INFO][overseer] Worker30: 0, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:11:13][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:11:13][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:11:13)
[2017-12-07 12:11:13][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:11:13][ INFO][overseer] Known spawns: 0, unknown: 0, more: 0
[2017-12-07 12:11:13][ INFO][overseer] workers: 15, coroutines: 2
[2017-12-07 12:11:13][ INFO][overseer] sightings cache: 0, mystery cache: 0, DB queue: 0
[2017-12-07 12:11:13][ INFO][overseer] Visits: 0, Skipped: 0, Unnecessary: 0
[2017-12-07 12:11:13][ INFO][overseer] BorderCache: CacheInfo(hits=0, misses=0, maxsize=1048576, currsize=0), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:11:13][ INFO][spawns] Preloaded 0 known spawnpoints
[2017-12-07 12:11:13][ INFO][spawns] Preloaded 0 unknown spawnpoints
[2017-12-07 12:11:13][ INFO][monocle.db] Preloaded 0 fort_sightings
[2017-12-07 12:11:13][ INFO][monocle.db] Preloaded 0 pokestops
[2017-12-07 12:11:13][ INFO][monocle.db] Preloaded 0 sightings
[2017-12-07 12:11:13][ INFO][worker30] Preloaded 0 encountered sightings
[2017-12-07 12:11:13][ INFO][monocle.db] Preloaded 0 raids
[2017-12-07 12:11:13][ WARNING][overseer] Starting bootstrap phase 1.
[2017-12-07 12:11:13][ INFO][workerraider] Preloading forts
[2017-12-07 12:11:13][ INFO][workerraider] Loaded 0 forts
[2017-12-07 12:11:13][ INFO][notifier] Beginning scan log webhook consruction: Bootstrap Status Change
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.13755226135254)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh739(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-11] qaoikpiokfh739 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-11] Trying to log in qaoikpiokfh739
[2017-12-07 12:11:13][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh739
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.14805793762207)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh732(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-5] qaoikpiokfh732 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-5] Trying to log in qaoikpiokfh732
[2017-12-07 12:11:13][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh732
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.13930320739746)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh738(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-10] qaoikpiokfh738 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-10] Trying to log in qaoikpiokfh738
[2017-12-07 12:11:13][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh738
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.15506172180176)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh728(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-1] qaoikpiokfh728 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-1] Trying to log in qaoikpiokfh728
[2017-12-07 12:11:13][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh728
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.14105415344238)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh736(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-9] qaoikpiokfh736 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-9] Trying to log in qaoikpiokfh736
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.13229942321777)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh742(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-14] qaoikpiokfh742 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-14] Trying to log in qaoikpiokfh742
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.1428050994873)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh735(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-8] qaoikpiokfh735 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-8] Trying to log in qaoikpiokfh735
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.15155982971191)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh730(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-3] qaoikpiokfh730 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-3] Trying to log in qaoikpiokfh730
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.14980888366699)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh731(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-4] qaoikpiokfh731 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-4] Trying to log in qaoikpiokfh731
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.14455604553223)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh734(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-7] qaoikpiokfh734 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-7] Trying to log in qaoikpiokfh734
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.1340503692627)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh741(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-13] qaoikpiokfh741 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-13] Trying to log in qaoikpiokfh741
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.15331077575684)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh729(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-2] qaoikpiokfh729 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-2] Trying to log in qaoikpiokfh729
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.13580131530762)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh740(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-12] qaoikpiokfh740 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-12] Trying to log in qaoikpiokfh740
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.14630699157715)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh733(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-6] qaoikpiokfh733 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-6] Trying to log in qaoikpiokfh733
[2017-12-07 12:11:13][ WARNING][overseer] start_coords: (32.74144158657812, -117.15681266784668)
[2017-12-07 12:11:13][ INFO][sb-detector] Username: qaoikpiokfh724(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:11:13][ INFO][worker-0] qaoikpiokfh724 is needs a spin but couldn't find a spot.
[2017-12-07 12:11:13][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:11:13][ INFO][worker-0] Trying to log in qaoikpiokfh724
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:15][ INFO][worker-11] qaoikpiokfh739 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh736
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:15][ INFO][worker-10] qaoikpiokfh738 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh742
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:15][ INFO][worker-5] qaoikpiokfh732 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:15][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh735
[2017-12-07 12:11:16][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:16][ INFO][worker-1] qaoikpiokfh728 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:16][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh730
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:17][ INFO][worker-14] qaoikpiokfh742 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh731
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:17][ INFO][worker-8] qaoikpiokfh735 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh734
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:17][ INFO][worker-9] qaoikpiokfh736 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:17][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh741
[2017-12-07 12:11:18][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:18][ INFO][worker-3] qaoikpiokfh730 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:18][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh729
[2017-12-07 12:11:18][ INFO][workerraider] Couroutine launched.
[2017-12-07 12:11:18][ INFO][workerraider] WorkerRaider count: (0/0)
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:19][ INFO][worker-4] qaoikpiokfh731 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh740
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:19][ INFO][worker-13] qaoikpiokfh741 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh733
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh724
[2017-12-07 12:11:19][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:11:20][ ERROR][worker-10] 0.83.2 is being forced, exiting.
[2017-12-07 12:11:20][ INFO][worker-7] qaoikpiokfh734 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:11:20][ INFO][worker30] Coroutine cancelled.
[2017-12-07 12:11:20][ INFO][workerraider] Coroutine cancelled.
[2017-12-07 12:11:20][ ERROR][cleanup] A wild RuntimeError appeared during exit!
Traceback (most recent call last):
File "scan.py", line 141, in cleanup
LOOP.run_until_complete(wait_for(pending, 40))
File "uvloop/loop.pyx", line 1201, in uvloop.loop.Loop.run_until_complete (uvloop/loop.c:25601)
RuntimeError: Event loop stopped before Future completed.
[2017-12-07 12:37:57][ INFO][root] -------------------------------------
[2017-12-07 12:37:57][ INFO][root] Starting up!
[2017-12-07 12:37:57][ INFO][overseer] Overseer initialized
[2017-12-07 12:37:57][ INFO][overseer] Worker count: (15/15)
[2017-12-07 12:37:57][ INFO][overseer] Seen per worker: min 0, max 0, med 0
[2017-12-07 12:37:57][ INFO][overseer] Visits per worker: min 0, max 0, med 0
[2017-12-07 12:37:57][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:37:57][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:37:57][ INFO][overseer] Worker30: 0, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:37:57][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:37:57][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:37:57)
[2017-12-07 12:37:57][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:37:57][ INFO][overseer] Known spawns: 0, unknown: 0, more: 0
[2017-12-07 12:37:57][ INFO][overseer] workers: 15, coroutines: 2
[2017-12-07 12:37:57][ INFO][overseer] sightings cache: 0, mystery cache: 0, DB queue: 0
[2017-12-07 12:37:57][ INFO][overseer] Visits: 0, Skipped: 0, Unnecessary: 0
[2017-12-07 12:37:57][ INFO][overseer] BorderCache: CacheInfo(hits=0, misses=0, maxsize=1048576, currsize=0), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:37:57][ INFO][spawns] Preloaded 0 known spawnpoints
[2017-12-07 12:37:57][ INFO][spawns] Preloaded 0 unknown spawnpoints
[2017-12-07 12:37:57][ INFO][monocle.db] Preloaded 0 fort_sightings
[2017-12-07 12:37:57][ INFO][monocle.db] Preloaded 0 pokestops
[2017-12-07 12:37:57][ INFO][monocle.db] Preloaded 0 sightings
[2017-12-07 12:37:57][ INFO][worker30] Preloaded 0 encountered sightings
[2017-12-07 12:37:57][ INFO][monocle.db] Preloaded 0 raids
[2017-12-07 12:37:57][ WARNING][overseer] Starting bootstrap phase 1.
[2017-12-07 12:37:57][ INFO][workerraider] Preloading forts
[2017-12-07 12:37:57][ INFO][workerraider] Loaded 0 forts
[2017-12-07 12:37:57][ INFO][notifier] Beginning scan log webhook consruction: Bootstrap Status Change
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.13580131530762)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh740(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-12] qaoikpiokfh740 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-12] Trying to log in qaoikpiokfh740
[2017-12-07 12:37:57][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh740
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.14805793762207)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh732(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-5] qaoikpiokfh732 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-5] Trying to log in qaoikpiokfh732
[2017-12-07 12:37:57][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh732
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.15681266784668)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh724(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-0] qaoikpiokfh724 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-0] Trying to log in qaoikpiokfh724
[2017-12-07 12:37:57][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh724
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.13755226135254)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh739(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-11] qaoikpiokfh739 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-11] Trying to log in qaoikpiokfh739
[2017-12-07 12:37:57][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh739
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.1428050994873)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh735(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-8] qaoikpiokfh735 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-8] Trying to log in qaoikpiokfh735
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.15506172180176)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh728(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-1] qaoikpiokfh728 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-1] Trying to log in qaoikpiokfh728
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.14980888366699)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh731(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-4] qaoikpiokfh731 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-4] Trying to log in qaoikpiokfh731
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.13930320739746)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh738(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-10] qaoikpiokfh738 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-10] Trying to log in qaoikpiokfh738
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.14630699157715)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh733(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-6] qaoikpiokfh733 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-6] Trying to log in qaoikpiokfh733
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.14105415344238)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh736(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-9] qaoikpiokfh736 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-9] Trying to log in qaoikpiokfh736
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.13229942321777)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh742(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-14] qaoikpiokfh742 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-14] Trying to log in qaoikpiokfh742
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.14455604553223)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh734(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-7] qaoikpiokfh734 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-7] Trying to log in qaoikpiokfh734
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.15155982971191)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh730(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-3] qaoikpiokfh730 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-3] Trying to log in qaoikpiokfh730
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.1340503692627)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh741(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-13] qaoikpiokfh741 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-13] Trying to log in qaoikpiokfh741
[2017-12-07 12:37:57][ WARNING][overseer] start_coords: (32.74144158657812, -117.15331077575684)
[2017-12-07 12:37:57][ INFO][sb-detector] Username: qaoikpiokfh729(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 0s, sbanned: False
[2017-12-07 12:37:57][ INFO][worker-2] qaoikpiokfh729 is needs a spin but couldn't find a spot.
[2017-12-07 12:37:57][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:37:57][ INFO][worker-2] Trying to log in qaoikpiokfh729
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:01][ INFO][worker-11] qaoikpiokfh739 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh735
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:01][ INFO][worker-12] qaoikpiokfh740 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:01][ INFO][worker-5] qaoikpiokfh732 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:01][ INFO][worker-0] qaoikpiokfh724 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh728
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh731
[2017-12-07 12:38:01][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh738
[2017-12-07 12:38:02][ INFO][workerraider] Couroutine launched.
[2017-12-07 12:38:02][ INFO][workerraider] WorkerRaider count: (0/0)
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:04][ INFO][worker-8] qaoikpiokfh735 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh733
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:04][ INFO][worker-4] qaoikpiokfh731 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh736
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:04][ INFO][worker-1] qaoikpiokfh728 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:04][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh742
[2017-12-07 12:38:05][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:05][ INFO][worker-10] qaoikpiokfh738 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:05][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh734
[2017-12-07 12:38:05][ ERROR][worker-12] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:05][ INFO][worker-12] qaoikpiokfh740 is needs a spin but couldn't find a spot.
[2017-12-07 12:38:05][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:05][ INFO][worker-12] qaoikpiokfh740 is visiting 32.7414, -117.1358
[2017-12-07 12:38:05][ ERROR][worker-5] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:05][ INFO][worker-5] qaoikpiokfh732 is needs a spin but couldn't find a spot.
[2017-12-07 12:38:05][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:05][ INFO][worker-5] qaoikpiokfh732 is visiting 32.7414, -117.1481
[2017-12-07 12:38:05][ ERROR][worker-11] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:05][ INFO][worker-11] qaoikpiokfh739 is needs a spin but couldn't find a spot.
[2017-12-07 12:38:05][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:05][ INFO][worker-11] qaoikpiokfh739 is visiting 32.7414, -117.1376
[2017-12-07 12:38:05][ ERROR][worker-0] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:05][ INFO][worker-0] qaoikpiokfh724 is needs a spin but couldn't find a spot.
[2017-12-07 12:38:05][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:05][ INFO][worker-0] qaoikpiokfh724 is visiting 32.7414, -117.1568
[2017-12-07 12:38:06][ INFO][worker-0] Point processed, 0 Pokemon and 57 forts seen by qaoikpiokfh724!
[2017-12-07 12:38:07][ INFO][worker-12] Got gym info for Danny The Joker Field
[2017-12-07 12:38:07][ ERROR][worker-10] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:07][ INFO][worker-10] qaoikpiokfh738(Lv.1) is going to None(32.738821, -117.142931) for a spin which is 0.28 miles away and will take 51s.
[2017-12-07 12:38:07][ INFO][worker-11] Got gym info for Danny The Joker Field
[2017-12-07 12:38:07][ INFO][worker30] Couroutine launched.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh791(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh792(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh794(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh795(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh797(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh798(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh799(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][monocle.accounts] New account qaoikpiokfh800(Lv.30) acquired and binded to this instance in DB.
[2017-12-07 12:38:07][ INFO][worker30] Worker30 count: (8/8)
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:07][ INFO][worker-9] qaoikpiokfh736 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh730
[2017-12-07 12:38:07][ ERROR][worker-8] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:07][ INFO][worker-8] qaoikpiokfh735(Lv.1) is going to None(32.737887, -117.142711) for a spin which is 0.25 miles away and will take 45s.
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:07][ INFO][worker-6] qaoikpiokfh733 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh741
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:07][ INFO][worker-14] qaoikpiokfh742 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login for: qaoikpiokfh729
[2017-12-07 12:38:07][ ERROR][worker-4] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:07][ INFO][worker-4] qaoikpiokfh731(Lv.1) is going to None(32.741025, -117.153064) for a spin which is 0.19 miles away and will take 35s.
[2017-12-07 12:38:07][ INFO][worker-5] Got gym info for Koala Trees
[2017-12-07 12:38:07][ ERROR][worker-1] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:07][ INFO][worker-1] qaoikpiokfh728(Lv.1) is going to None(32.741025, -117.153064) for a spin which is 0.12 miles away and will take 22s.
[2017-12-07 12:38:07][ ERROR][dbprocessor] A wild UnicodeEncodeError appeared in the DB processor!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db_proc.py", line 63, in run
db.add_fort_sighting(session, item)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db.py", line 810, in add_fort_sighting
.order_by(desc(FortSighting.id)) \
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2755, in first
ret = list(self[0:1])
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2547, in __getitem__
return list(res)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2854, in __iter__
self.session._autoflush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 1412, in _autoflush
self.flush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2192, in flush
self._flush(objects)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2312, in _flush
transaction.rollback(_capture_exception=True)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py", line 66, in __exit__
compat.reraise(exc_type, exc_value, exc_tb)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2276, in _flush
flush_context.execute()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 389, in execute
rec.execute(self)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 548, in execute
uow
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 181, in save_obj
mapper, table, insert)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 835, in _emit_insert_statements
execute(statement, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 945, in execute
return meth(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/sql/elements.py", line 263, in _execute_on_connection
return connection._execute_clauseelement(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1053, in _execute_clauseelement
compiled_sql, distilled_params
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1189, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1405, in _handle_dbapi_exception
util.reraise(*exc_info)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1182, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 470, in do_execute
cursor.execute(statement, parameters)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/cursors.py", line 234, in execute
args = tuple(map(db.literal, args))
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 318, in literal
s = self.escape(o, self.encoders)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 225, in unicode_literal
return db.string_literal(str(u).encode(db.encoding))
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-2: ordinal not in range(256)
[2017-12-07 12:38:07][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:07][ INFO][worker-7] qaoikpiokfh734 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:08][ INFO][worker-12] Got gym info for Bud Kearns Municipal Pool
[2017-12-07 12:38:08][ ERROR][dbprocessor] A wild UnicodeEncodeError appeared in the DB processor!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db_proc.py", line 63, in run
db.add_fort_sighting(session, item)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db.py", line 810, in add_fort_sighting
.order_by(desc(FortSighting.id)) \
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2755, in first
ret = list(self[0:1])
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2547, in __getitem__
return list(res)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2854, in __iter__
self.session._autoflush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 1412, in _autoflush
self.flush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2192, in flush
self._flush(objects)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2312, in _flush
transaction.rollback(_capture_exception=True)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py", line 66, in __exit__
compat.reraise(exc_type, exc_value, exc_tb)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2276, in _flush
flush_context.execute()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 389, in execute
rec.execute(self)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 548, in execute
uow
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 181, in save_obj
mapper, table, insert)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 835, in _emit_insert_statements
execute(statement, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 945, in execute
return meth(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/sql/elements.py", line 263, in _execute_on_connection
return connection._execute_clauseelement(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1053, in _execute_clauseelement
compiled_sql, distilled_params
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1189, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1405, in _handle_dbapi_exception
util.reraise(*exc_info)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1182, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 470, in do_execute
cursor.execute(statement, parameters)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/cursors.py", line 234, in execute
args = tuple(map(db.literal, args))
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 318, in literal
s = self.escape(o, self.encoders)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 225, in unicode_literal
return db.string_literal(str(u).encode(db.encoding))
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-2: ordinal not in range(256)
[2017-12-07 12:38:08][ ERROR][dbprocessor] A wild IntegrityError appeared in the DB processor!: (_mysql_exceptions.IntegrityError) (1452, 'Cannot add or update a child row: a foreign key constraint fails (`monocle_central_sd_l30`.`raids`, CONSTRAINT `raids_ibfk_1` FOREIGN KEY (`fort_id`) REFERENCES `forts` (`id`))')
[2017-12-07 12:38:09][ INFO][worker-11] Got gym info for Bud Kearns Municipal Pool
[2017-12-07 12:38:09][ ERROR][dbprocessor] A wild UnicodeEncodeError appeared in the DB processor!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db_proc.py", line 63, in run
db.add_fort_sighting(session, item)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/db.py", line 810, in add_fort_sighting
.order_by(desc(FortSighting.id)) \
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2755, in first
ret = list(self[0:1])
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2547, in __getitem__
return list(res)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/query.py", line 2854, in __iter__
self.session._autoflush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 1412, in _autoflush
self.flush()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2192, in flush
self._flush(objects)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2312, in _flush
transaction.rollback(_capture_exception=True)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py", line 66, in __exit__
compat.reraise(exc_type, exc_value, exc_tb)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/session.py", line 2276, in _flush
flush_context.execute()
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 389, in execute
rec.execute(self)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py", line 548, in execute
uow
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 181, in save_obj
mapper, table, insert)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/orm/persistence.py", line 835, in _emit_insert_statements
execute(statement, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 945, in execute
return meth(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/sql/elements.py", line 263, in _execute_on_connection
return connection._execute_clauseelement(self, multiparams, params)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1053, in _execute_clauseelement
compiled_sql, distilled_params
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1189, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1405, in _handle_dbapi_exception
util.reraise(*exc_info)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/util/compat.py", line 187, in reraise
raise value
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/base.py", line 1182, in _execute_context
context)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/sqlalchemy/engine/default.py", line 470, in do_execute
cursor.execute(statement, parameters)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/cursors.py", line 234, in execute
args = tuple(map(db.literal, args))
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 318, in literal
s = self.escape(o, self.encoders)
File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/MySQLdb/connections.py", line 225, in unicode_literal
return db.string_literal(str(u).encode(db.encoding))
UnicodeEncodeError: 'latin-1' codec can't encode characters in position 0-2: ordinal not in range(256)
[2017-12-07 12:38:09][ INFO][worker-5] Got gym info for World Mural
[2017-12-07 12:38:09][ INFO][worker-5] Point processed, 1 Pokemon and 60 forts seen by qaoikpiokfh732!
[2017-12-07 12:38:10][ ERROR][worker-6] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:10][ INFO][worker-6] qaoikpiokfh733(Lv.1) is going to None(32.738821, -117.142931) for a spin which is 0.27 miles away and will take 49s.
[2017-12-07 12:38:10][ ERROR][worker-14] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:10][ INFO][worker-14] qaoikpiokfh742(Lv.1) is going to None(32.739908, -117.136922) for a spin which is 0.29 miles away and will take 53s.
[2017-12-07 12:38:10][ INFO][worker-12] Got gym info for North Park Historic Neighborhood
[2017-12-07 12:38:10][ INFO][worker-12] Point processed, 0 Pokemon and 31 forts seen by qaoikpiokfh740!
[2017-12-07 12:38:10][ ERROR][worker-7] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:10][ INFO][worker-7] qaoikpiokfh734(Lv.1) is going to None(32.737887, -117.142711) for a spin which is 0.27 miles away and will take 49s.
[2017-12-07 12:38:10][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:10][ INFO][worker-3] qaoikpiokfh730 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:10][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:10][ INFO][worker-2] qaoikpiokfh729 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:10][ INFO][aiopogo.auth] PTC User Login successful.
[2017-12-07 12:38:10][ INFO][worker-13] qaoikpiokfh741 is starting RPC login sequence (iOS app simulation)
[2017-12-07 12:38:10][ INFO][worker-11] Got gym info for North Park Historic Neighborhood
[2017-12-07 12:38:10][ INFO][worker-11] Point processed, 1 Pokemon and 37 forts seen by qaoikpiokfh739!
[2017-12-07 12:38:11][ ERROR][worker-9] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:11][ INFO][worker-9] qaoikpiokfh736(Lv.1) is going to None(32.737887, -117.142711) for a spin which is 0.26 miles away and will take 48s.
[2017-12-07 12:38:12][ INFO][overseer] Seen per worker: min 0, max 1, med 0
[2017-12-07 12:38:12][ INFO][overseer] Visits per worker: min 0, max 1, med 0
[2017-12-07 12:38:12][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:12][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:12][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:38:12][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:38:12][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:37:57)
[2017-12-07 12:38:12][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:38:12][ INFO][overseer] Known spawns: 0, unknown: 2, more: 0
[2017-12-07 12:38:12][ INFO][overseer] workers: 15, coroutines: 22
[2017-12-07 12:38:12][ INFO][overseer] sightings cache: 0, mystery cache: 2, DB queue: 0
[2017-12-07 12:38:12][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:38:12][ INFO][overseer] BorderCache: CacheInfo(hits=0, misses=187, maxsize=1048576, currsize=187), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:38:13][ ERROR][worker-13] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:13][ INFO][worker-13] qaoikpiokfh741(Lv.1) is going to None(32.739908, -117.136922) for a spin which is 0.20 miles away and will take 36s.
[2017-12-07 12:38:13][ ERROR][worker-2] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:13][ INFO][worker-2] qaoikpiokfh729(Lv.1) is going to None(32.741025, -117.153064) for a spin which is 0.03 miles away and will take 5s.
[2017-12-07 12:38:13][ ERROR][worker-3] A wild NameError appeared!
Traceback (most recent call last):
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 769, in visit
await self.login()
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 262, in login
await self.app_simulation_login(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 365, in app_simulation_login
asset_time, template_time = await self.download_remote_config(version)
File "/Users/Rob/Desktop/Monocle-Fork/Monocle-Level30/monocle/worker.py", line 302, in download_remote_config
request.download_remote_config_version(platform=1, app_version=version, device_model=account['model'])
NameError: name 'account' is not defined
[2017-12-07 12:38:13][ INFO][worker-3] qaoikpiokfh730(Lv.1) is going to None(32.741025, -117.153064) for a spin which is 0.09 miles away and will take 16s.
[2017-12-07 12:38:19][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:19][ INFO][worker-2] qaoikpiokfh729 is visiting 32.7410, -117.1531
[2017-12-07 12:38:24][ INFO][worker-2] qaoikpiokfh729 spun Camp Balboa.
[2017-12-07 12:38:27][ INFO][overseer] Seen per worker: min 0, max 1, med 0
[2017-12-07 12:38:27][ INFO][overseer] Visits per worker: min 0, max 1, med 0
[2017-12-07 12:38:27][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:27][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:27][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:38:27][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:38:27][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:37:57)
[2017-12-07 12:38:27][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:38:27][ INFO][overseer] Known spawns: 0, unknown: 2, more: 0
[2017-12-07 12:38:27][ INFO][overseer] workers: 15, coroutines: 19
[2017-12-07 12:38:27][ INFO][overseer] sightings cache: 0, mystery cache: 2, DB queue: 0
[2017-12-07 12:38:27][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:38:27][ INFO][overseer] BorderCache: CacheInfo(hits=0, misses=230, maxsize=1048576, currsize=230), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:38:28][ INFO][worker-2] Got gym info for Zoo - Elephant Odyssey
[2017-12-07 12:38:28][ INFO][worker-2] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh729!
[2017-12-07 12:38:28][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:28][ INFO][worker-2] qaoikpiokfh729 is visiting 32.7414, -117.1533
[2017-12-07 12:38:30][ INFO][sb-detector] Username: qaoikpiokfh728(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 33s, sbanned: False
[2017-12-07 12:38:30][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:30][ INFO][worker-1] qaoikpiokfh728 is visiting 32.7410, -117.1531
[2017-12-07 12:38:30][ INFO][sb-detector] Username: qaoikpiokfh730(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 33s, sbanned: False
[2017-12-07 12:38:30][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:30][ INFO][worker-3] qaoikpiokfh730 is visiting 32.7410, -117.1531
[2017-12-07 12:38:31][ INFO][worker-2] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh729!
[2017-12-07 12:38:34][ INFO][worker-1] qaoikpiokfh728 spun Camp Balboa.
[2017-12-07 12:38:34][ INFO][worker-1] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh728!
[2017-12-07 12:38:34][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:34][ INFO][worker-1] qaoikpiokfh728 is visiting 32.7414, -117.1551
[2017-12-07 12:38:35][ INFO][worker-3] qaoikpiokfh730 spun Camp Balboa.
[2017-12-07 12:38:35][ INFO][worker-3] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh730!
[2017-12-07 12:38:35][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:35][ INFO][worker-3] qaoikpiokfh730 is visiting 32.7414, -117.1516
[2017-12-07 12:38:41][ INFO][worker-1] Point processed, 0 Pokemon and 86 forts seen by qaoikpiokfh728!
[2017-12-07 12:38:42][ INFO][worker-3] Point processed, 0 Pokemon and 71 forts seen by qaoikpiokfh730!
[2017-12-07 12:38:42][ INFO][overseer] Seen per worker: min 0, max 1, med 0
[2017-12-07 12:38:42][ INFO][overseer] Visits per worker: min 0, max 2, med 0
[2017-12-07 12:38:42][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:42][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:42][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:38:42][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:38:42][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:37:57)
[2017-12-07 12:38:42][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:38:42][ INFO][overseer] Known spawns: 0, unknown: 2, more: 0
[2017-12-07 12:38:42][ INFO][overseer] workers: 15, coroutines: 18
[2017-12-07 12:38:42][ INFO][overseer] sightings cache: 0, mystery cache: 2, DB queue: 0
[2017-12-07 12:38:42][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:38:42][ INFO][overseer] BorderCache: CacheInfo(hits=197, misses=423, maxsize=1048576, currsize=423), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:38:43][ INFO][sb-detector] Username: qaoikpiokfh731(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 46s, sbanned: False
[2017-12-07 12:38:43][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:43][ INFO][worker-4] qaoikpiokfh731 is visiting 32.7410, -117.1531
[2017-12-07 12:38:48][ INFO][worker-4] qaoikpiokfh731 spun Camp Balboa.
[2017-12-07 12:38:49][ INFO][sb-detector] Username: qaoikpiokfh741(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 52s, sbanned: False
[2017-12-07 12:38:49][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:49][ INFO][worker-13] qaoikpiokfh741 is visiting 32.7399, -117.1369
[2017-12-07 12:38:51][ INFO][worker-4] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh731!
[2017-12-07 12:38:51][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:51][ INFO][worker-4] qaoikpiokfh731 is visiting 32.7414, -117.1498
[2017-12-07 12:38:53][ INFO][sb-detector] Username: qaoikpiokfh735(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 56s, sbanned: False
[2017-12-07 12:38:53][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:53][ INFO][worker-8] qaoikpiokfh735 is visiting 32.7379, -117.1427
[2017-12-07 12:38:55][ INFO][worker-13] qaoikpiokfh741 spun Mel Harrison Plaque.
[2017-12-07 12:38:56][ INFO][worker-4] Got gym info for World Mural
[2017-12-07 12:38:56][ INFO][worker-4] Point processed, 0 Pokemon and 53 forts seen by qaoikpiokfh731!
[2017-12-07 12:38:57][ INFO][worker-8] qaoikpiokfh735 spun Morley Disc 4.
[2017-12-07 12:38:57][ INFO][overseer] Seen per worker: min 0, max 1, med 0
[2017-12-07 12:38:57][ INFO][overseer] Visits per worker: min 0, max 2, med 1
[2017-12-07 12:38:57][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:57][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:38:57][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:38:57][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:38:57][ INFO][overseer] Accounts (this instance) good: 50 (refreshed: 2017-12-07 12:37:57)
[2017-12-07 12:38:57][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 8, hibernated: 0
[2017-12-07 12:38:57][ INFO][overseer] Known spawns: 0, unknown: 8, more: 0
[2017-12-07 12:38:57][ INFO][overseer] workers: 15, coroutines: 18
[2017-12-07 12:38:57][ INFO][overseer] sightings cache: 0, mystery cache: 8, DB queue: 0
[2017-12-07 12:38:57][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:38:57][ INFO][overseer] BorderCache: CacheInfo(hits=244, misses=545, maxsize=1048576, currsize=545), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:38:58][ INFO][sb-detector] Username: qaoikpiokfh738(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 61s, sbanned: False
[2017-12-07 12:38:58][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:58][ INFO][worker-10] qaoikpiokfh738 is visiting 32.7388, -117.1429
[2017-12-07 12:38:59][ INFO][worker-13] Point processed, 4 Pokemon and 35 forts seen by qaoikpiokfh741!
[2017-12-07 12:38:59][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:59][ INFO][worker-13] qaoikpiokfh741 is visiting 32.7414, -117.1341
[2017-12-07 12:38:59][ INFO][sb-detector] Username: qaoikpiokfh733(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 62s, sbanned: False
[2017-12-07 12:38:59][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:59][ INFO][worker-6] qaoikpiokfh733 is visiting 32.7388, -117.1429
[2017-12-07 12:38:59][ INFO][sb-detector] Username: qaoikpiokfh736(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 62s, sbanned: False
[2017-12-07 12:38:59][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:38:59][ INFO][worker-9] qaoikpiokfh736 is visiting 32.7379, -117.1427
[2017-12-07 12:39:00][ INFO][sb-detector] Username: qaoikpiokfh734(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 63s, sbanned: False
[2017-12-07 12:39:00][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:00][ INFO][worker-7] qaoikpiokfh734 is visiting 32.7379, -117.1427
[2017-12-07 12:39:01][ INFO][worker-13] Point processed, 0 Pokemon and 36 forts seen by qaoikpiokfh741!
[2017-12-07 12:39:02][ INFO][worker-8] The server said Morley Field Fitness Course 9 was out of spinning range. 7.8m 0.0MPH
[2017-12-07 12:39:03][ INFO][worker-10] qaoikpiokfh738 spun Balboa Park Trails 11 Marker (Morley Field Gateway).
[2017-12-07 12:39:03][ INFO][worker-10] Point processed, 3 Pokemon and 60 forts seen by qaoikpiokfh738!
[2017-12-07 12:39:03][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:03][ INFO][worker-10] qaoikpiokfh738 is visiting 32.7414, -117.1393
[2017-12-07 12:39:03][ INFO][sb-detector] Username: qaoikpiokfh742(Lv.1), visits: (0/12), empty: 0, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 66s, sbanned: False
[2017-12-07 12:39:03][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:03][ INFO][worker-14] qaoikpiokfh742 is visiting 32.7399, -117.1369
[2017-12-07 12:39:04][ INFO][worker-6] qaoikpiokfh733 spun Balboa Park Trails 11 Marker (Morley Field Gateway).
[2017-12-07 12:39:04][ INFO][worker-6] Point processed, 3 Pokemon and 60 forts seen by qaoikpiokfh733!
[2017-12-07 12:39:04][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:04][ INFO][worker-6] qaoikpiokfh733 is visiting 32.7414, -117.1463
[2017-12-07 12:39:04][ INFO][worker-9] qaoikpiokfh736 spun Morley Disc 4.
[2017-12-07 12:39:05][ INFO][worker-7] qaoikpiokfh734 spun Morley Disc 4.
[2017-12-07 12:39:06][ INFO][worker-8] Got gym info for World Famous San Diego Zoo
[2017-12-07 12:39:07][ INFO][worker-8] Point processed, 2 Pokemon and 68 forts seen by qaoikpiokfh735!
[2017-12-07 12:39:07][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:07][ INFO][worker-8] qaoikpiokfh735 is visiting 32.7414, -117.1428
[2017-12-07 12:39:07][ INFO][worker-14] qaoikpiokfh742 spun Mel Harrison Plaque.
[2017-12-07 12:39:07][ INFO][worker-9] Point processed, 2 Pokemon and 68 forts seen by qaoikpiokfh736!
[2017-12-07 12:39:07][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:07][ INFO][worker-9] qaoikpiokfh736 is visiting 32.7414, -117.1411
[2017-12-07 12:39:08][ INFO][worker-8] Point processed, 0 Pokemon and 47 forts seen by qaoikpiokfh735!
[2017-12-07 12:39:09][ INFO][worker-10] Point processed, 0 Pokemon and 37 forts seen by qaoikpiokfh738!
[2017-12-07 12:39:10][ INFO][worker-7] qaoikpiokfh734 spun Morley Field Fitness Course 9.
[2017-12-07 12:39:10][ INFO][worker-7] qaoikpiokfh734 leveled up to Lv.2, get rewards.
[2017-12-07 12:39:10][ INFO][worker-7] Point processed, 2 Pokemon and 68 forts seen by qaoikpiokfh734!
[2017-12-07 12:39:10][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:10][ INFO][worker-7] qaoikpiokfh734 is visiting 32.7414, -117.1446
[2017-12-07 12:39:10][ INFO][worker-9] Point processed, 0 Pokemon and 32 forts seen by qaoikpiokfh736!
[2017-12-07 12:39:11][ INFO][worker-6] Point processed, 0 Pokemon and 59 forts seen by qaoikpiokfh733!
[2017-12-07 12:39:11][ INFO][worker-14] Point processed, 4 Pokemon and 35 forts seen by qaoikpiokfh742!
[2017-12-07 12:39:11][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:11][ INFO][worker-14] qaoikpiokfh742 is visiting 32.7414, -117.1323
[2017-12-07 12:39:11][ INFO][worker-7] Point processed, 0 Pokemon and 44 forts seen by qaoikpiokfh734!
[2017-12-07 12:39:12][ INFO][overseer] Seen per worker: min 0, max 4, med 1
[2017-12-07 12:39:12][ INFO][overseer] Visits per worker: min 1, max 2, med 2
[2017-12-07 12:39:12][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:39:12][ INFO][overseer] Speed: min 0.0, max 0.0, med 0.0
[2017-12-07 12:39:12][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:39:12][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:39:12][ INFO][overseer] Accounts (this instance) good: 58 (refreshed: 2017-12-07 12:39:02)
[2017-12-07 12:39:12][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 0, hibernated: 0
[2017-12-07 12:39:12][ INFO][overseer] Known spawns: 0, unknown: 11, more: 0
[2017-12-07 12:39:12][ INFO][overseer] workers: 15, coroutines: 18
[2017-12-07 12:39:12][ INFO][overseer] sightings cache: 0, mystery cache: 11, DB queue: 0
[2017-12-07 12:39:12][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:39:12][ INFO][overseer] BorderCache: CacheInfo(hits=435, misses=976, maxsize=1048576, currsize=976), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:39:14][ INFO][worker-14] Point processed, 0 Pokemon and 30 forts seen by qaoikpiokfh742!
[2017-12-07 12:39:14][ WARNING][overseer] Starting bootstrap phase 2.
[2017-12-07 12:39:14][ INFO][notifier] Beginning scan log webhook consruction: Bootstrap Status Change
[2017-12-07 12:39:14][ INFO][sb-detector] Username: qaoikpiokfh732(Lv.1), visits: (1/12), empty: 0, sightings: 1, uncommon: 0, enc_miss: 0, quarantined: 77s, sbanned: False
[2017-12-07 12:39:14][ INFO][worker-5] qaoikpiokfh732(Lv.1) is going to Camp Balboa(32.741025, -117.153064) for a spin which is 0.25 miles away and will take 45s.
[2017-12-07 12:39:14][ INFO][sb-detector] Username: qaoikpiokfh724(Lv.1), visits: (1/12), empty: 1, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 77s, sbanned: False
[2017-12-07 12:39:14][ INFO][worker-0] qaoikpiokfh724(Lv.1) is going to Camp Balboa(32.741025, -117.153064) for a spin which is 0.23 miles away and will take 42s.
[2017-12-07 12:39:14][ INFO][sb-detector] Username: qaoikpiokfh739(Lv.1), visits: (1/12), empty: 0, sightings: 1, uncommon: 1, enc_miss: 0, quarantined: 77s, sbanned: False
[2017-12-07 12:39:14][ INFO][worker-11] qaoikpiokfh739(Lv.1) is going to Morley Disc 4(32.737887, -117.142711) for a spin which is 0.23 miles away and will take 42s.
[2017-12-07 12:39:14][ INFO][sb-detector] Username: qaoikpiokfh729(Lv.1), visits: (2/12), empty: 2, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 77s, sbanned: False
[2017-12-07 12:39:14][ INFO][worker-2] qaoikpiokfh729(Lv.1) is going to Camp Balboa(32.741025, -117.153064) for a spin which is 0.10 miles away and will take 18s.
[2017-12-07 12:39:14][ INFO][sb-detector] Username: qaoikpiokfh740(Lv.1), visits: (1/12), empty: 1, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 77s, sbanned: False
[2017-12-07 12:39:14][ INFO][worker-12] qaoikpiokfh740(Lv.1) is going to Morley Disc 4(32.737887, -117.142711) for a spin which is 0.29 miles away and will take 53s.
[2017-12-07 12:39:22][ INFO][sb-detector] Username: qaoikpiokfh730(Lv.1), visits: (2/12), empty: 2, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 85s, sbanned: False
[2017-12-07 12:39:22][ INFO][worker-3] qaoikpiokfh730(Lv.1) is going to Camp Balboa(32.741025, -117.153064) for a spin which is 0.28 miles away and will take 50s.
[2017-12-07 12:39:27][ INFO][overseer] Seen per worker: min 0, max 4, med 1
[2017-12-07 12:39:27][ INFO][overseer] Visits per worker: min 1, max 2, med 2
[2017-12-07 12:39:27][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:39:27][ INFO][overseer] Speed: min 0.0, max 19.0, med 0.0
[2017-12-07 12:39:27][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:39:27][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:39:27][ INFO][overseer] Accounts (this instance) good: 58 (refreshed: 2017-12-07 12:39:02)
[2017-12-07 12:39:27][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 0, hibernated: 0
[2017-12-07 12:39:27][ INFO][overseer] Known spawns: 0, unknown: 11, more: 0
[2017-12-07 12:39:27][ INFO][overseer] workers: 15, coroutines: 696
[2017-12-07 12:39:27][ INFO][overseer] sightings cache: 0, mystery cache: 11, DB queue: 0
[2017-12-07 12:39:27][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:39:27][ INFO][overseer] BorderCache: CacheInfo(hits=448, misses=993, maxsize=1048576, currsize=993), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:39:33][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:33][ INFO][worker-2] qaoikpiokfh729 is visiting 32.7410, -117.1531
[2017-12-07 12:39:34][ INFO][worker-2] Point processed, 0 Pokemon and 69 forts seen by qaoikpiokfh729!
[2017-12-07 12:39:34][ INFO][altitudes] Fell back to random altitude.
[2017-12-07 12:39:34][ INFO][worker-2] qaoikpiokfh729 is visiting 32.7425, -117.1532
[2017-12-07 12:39:42][ INFO][overseer] Seen per worker: min 0, max 4, med 1
[2017-12-07 12:39:42][ INFO][overseer] Visits per worker: min 1, max 3, med 2
[2017-12-07 12:39:42][ INFO][overseer] Visit delay: min 0.0, max 0.0, med 0.0
[2017-12-07 12:39:42][ INFO][overseer] Speed: min 0.0, max 19.0, med 0.0
[2017-12-07 12:39:42][ INFO][overseer] Worker30: 8, jobs: 0, caches: 0, encounters: 0, visits: 0, skips: 0, late: 0, hash wastes: 0
[2017-12-07 12:39:42][ INFO][overseer] Extra accounts: 35, CAPTCHAs needed: 0
[2017-12-07 12:39:42][ INFO][overseer] Accounts (this instance) good: 58 (refreshed: 2017-12-07 12:39:02)
[2017-12-07 12:39:42][ INFO][overseer] Accounts (DB-wide) fresh/clean: 0, hibernated: 0, (Lv.30) fresh/clean: 0, hibernated: 0
[2017-12-07 12:39:42][ INFO][overseer] Known spawns: 0, unknown: 11, more: 0
[2017-12-07 12:39:42][ INFO][overseer] workers: 15, coroutines: 696
[2017-12-07 12:39:42][ INFO][overseer] sightings cache: 0, mystery cache: 11, DB queue: 0
[2017-12-07 12:39:42][ INFO][overseer] Visits: 1, Skipped: 0, Unnecessary: 0
[2017-12-07 12:39:42][ INFO][overseer] BorderCache: CacheInfo(hits=517, misses=993, maxsize=1048576, currsize=993), MorePointTestCache: 0, Worker30SemLock: False
[2017-12-07 12:39:44][ INFO][worker-2] Point processed, 0 Pokemon and 46 forts seen by qaoikpiokfh729!
[2017-12-07 12:39:44][ INFO][sb-detector] Username: qaoikpiokfh731(Lv.1), visits: (2/12), empty: 2, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 107s, sbanned: False
[2017-12-07 12:39:44][ INFO][worker-4] qaoikpiokfh731(Lv.1) is going to Camp Balboa(32.741025, -117.153064) for a spin which is 0.26 miles away and will take 47s.
[2017-12-07 12:39:47][ INFO][sb-detector] Username: qaoikpiokfh728(Lv.1), visits: (2/12), empty: 2, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 110s, sbanned: False
[2017-12-07 12:39:47][ INFO][worker-1] qaoikpiokfh728(Lv.1) is going to None(32.742945, -117.151534) for a spin which is 0.25 miles away and will take 45s.
[2017-12-07 12:39:57][ INFO][sb-detector] Username: qaoikpiokfh724(Lv.1), visits: (1/12), empty: 1, sightings: 0, uncommon: 0, enc_miss: 0, quarantined: 120s, sbanned: False
[2017-12-07 12:39:57][ INFO][altitudes] Fell back to random altitude.