-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrlog.log
More file actions
978 lines (978 loc) · 73.1 KB
/
errlog.log
File metadata and controls
978 lines (978 loc) · 73.1 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
2019-05-04 00:48:12,352 DEBUG:__main__:Start pplot module
2019-05-04 00:48:12,735 DEBUG:__main__:Created figure 1, num 1
2019-05-04 00:48:12,789 DEBUG:__main__:Created figure 2, num 2
2019-05-04 00:48:12,868 DEBUG:__main__:Created figure 3, num 3
2019-05-04 00:48:12,999 DEBUG:__main__:Created figure 4, num 4
2019-05-04 00:48:13,837 DEBUG:__main__:Created figure 5, num 5
2019-05-04 00:48:14,261 DEBUG:__main__:Created figure 6, num 6
2019-05-04 00:48:14,648 DEBUG:__main__:Created figure 7, num 7
2019-05-04 00:48:15,021 DEBUG:__main__:Created figure 8, num 8
2019-05-04 00:48:15,392 DEBUG:__main__:Created figure 9, num 9
2019-05-04 00:48:16,360 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 01:13:01,578 DEBUG:__main__:Start pplot module
2019-05-04 01:13:02,008 DEBUG:__main__:Created figure 1, num 1
2019-05-04 01:13:02,066 DEBUG:__main__:Created figure 2, num 2
2019-05-04 01:13:02,148 DEBUG:__main__:Created figure 3, num 3
2019-05-04 01:13:02,281 DEBUG:__main__:Created figure 4, num 4
2019-05-04 01:13:03,112 DEBUG:__main__:Created figure 5, num 5
2019-05-04 01:13:03,526 DEBUG:__main__:Created figure 6, num 6
2019-05-04 01:13:03,911 DEBUG:__main__:Created figure 7, num 7
2019-05-04 01:13:04,276 DEBUG:__main__:Created figure 8, num 8
2019-05-04 01:13:04,642 DEBUG:__main__:Created figure 9, num 9
2019-05-04 01:13:05,578 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 01:13:24,206 DEBUG:__main__:Start pplot module
2019-05-04 01:13:24,582 DEBUG:__main__:Created figure 1, num 1
2019-05-04 01:13:24,635 DEBUG:__main__:Created figure 2, num 2
2019-05-04 01:13:24,713 DEBUG:__main__:Created figure 3, num 3
2019-05-04 01:13:24,845 DEBUG:__main__:Created figure 4, num 4
2019-05-04 01:13:25,687 DEBUG:__main__:Created figure 5, num 5
2019-05-04 01:13:26,107 DEBUG:__main__:Created figure 6, num 6
2019-05-04 01:13:26,493 DEBUG:__main__:Created figure 7, num 7
2019-05-04 01:13:26,865 DEBUG:__main__:Created figure 8, num 8
2019-05-04 01:13:27,240 DEBUG:__main__:Created figure 9, num 9
2019-05-04 01:13:28,202 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 01:14:19,120 DEBUG:__main__:Start pplot module
2019-05-04 01:14:19,522 DEBUG:__main__:Created figure 1, num 1
2019-05-04 01:14:19,577 DEBUG:__main__:Created figure 2, num 2
2019-05-04 01:14:19,658 DEBUG:__main__:Created figure 3, num 3
2019-05-04 01:14:19,790 DEBUG:__main__:Created figure 4, num 4
2019-05-04 01:14:20,663 DEBUG:__main__:Created figure 5, num 5
2019-05-04 01:14:21,107 DEBUG:__main__:Created figure 6, num 6
2019-05-04 01:14:21,510 DEBUG:__main__:Created figure 7, num 7
2019-05-04 01:14:21,881 DEBUG:__main__:Created figure 8, num 8
2019-05-04 01:14:22,260 DEBUG:__main__:Created figure 9, num 9
2019-05-04 01:14:23,312 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 01:15:33,827 DEBUG:__main__:Start pplot module
2019-05-04 01:15:34,215 DEBUG:__main__:Created figure 1, num 1
2019-05-04 01:15:34,270 DEBUG:__main__:Created figure 2, num 2
2019-05-04 01:15:34,349 DEBUG:__main__:Created figure 3, num 3
2019-05-04 01:15:34,483 DEBUG:__main__:Created figure 4, num 4
2019-05-04 01:15:35,329 DEBUG:__main__:Created figure 5, num 5
2019-05-04 01:15:35,775 DEBUG:__main__:Created figure 6, num 6
2019-05-04 01:15:36,176 DEBUG:__main__:Created figure 7, num 7
2019-05-04 01:15:36,550 DEBUG:__main__:Created figure 8, num 8
2019-05-04 01:15:36,924 DEBUG:__main__:Created figure 9, num 9
2019-05-04 01:15:37,892 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 01:16:06,636 DEBUG:__main__:Start pplot module
2019-05-04 01:16:07,022 DEBUG:__main__:Created figure 1, num 1
2019-05-04 01:16:11,321 DEBUG:__main__:Created figure 2, num 2
2019-05-04 01:16:11,400 DEBUG:__main__:Created figure 3, num 3
2019-05-04 01:16:11,531 DEBUG:__main__:Created figure 4, num 4
2019-05-04 01:16:12,381 DEBUG:__main__:Created figure 5, num 5
2019-05-04 01:16:12,801 DEBUG:__main__:Created figure 6, num 6
2019-05-04 01:16:13,191 DEBUG:__main__:Created figure 7, num 7
2019-05-04 01:16:13,562 DEBUG:__main__:Created figure 8, num 8
2019-05-04 01:16:13,934 DEBUG:__main__:Created figure 9, num 9
2019-05-04 01:16:14,898 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:01:30,897 DEBUG:__main__:Start pplot module
2019-05-04 02:01:31,537 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:01:31,591 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:01:31,669 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:01:31,800 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:01:32,639 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:01:33,055 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:01:33,444 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:01:33,812 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:01:34,179 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:01:35,118 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:02:02,724 DEBUG:__main__:Start pplot module
2019-05-04 02:02:03,287 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:02:03,358 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:02:03,498 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:02:03,754 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:02:05,775 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:02:06,663 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:02:07,558 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:02:08,451 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:02:09,303 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:02:11,466 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:03:23,189 DEBUG:__main__:Start pplot module
2019-05-04 02:03:23,799 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:03:23,871 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:03:24,010 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:03:24,265 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:03:26,253 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:03:27,132 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:03:28,024 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:03:28,906 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:03:29,746 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:03:31,870 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:06:01,351 DEBUG:__main__:Start pplot module
2019-05-04 02:06:01,770 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:06:01,824 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:06:01,902 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:06:02,035 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:06:02,873 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:06:03,304 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:06:03,699 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:06:04,078 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:06:04,446 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:06:05,396 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:06:44,442 DEBUG:__main__:Start pplot module
2019-05-04 02:06:45,034 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:06:45,108 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:06:45,246 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:06:45,515 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:06:47,569 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:06:48,463 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:06:49,358 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:06:50,253 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:06:51,099 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:06:53,235 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:07:09,453 DEBUG:__main__:Start pplot module
2019-05-04 02:07:10,003 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:07:10,076 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:07:10,214 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:07:10,473 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:07:12,479 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:07:13,404 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:07:14,299 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:07:15,201 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:07:16,055 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:07:18,194 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:08:06,890 DEBUG:__main__:Start pplot module
2019-05-04 02:08:07,492 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:08:07,563 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:08:07,700 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:08:07,960 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:08:09,962 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:08:10,844 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:08:11,734 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:08:12,651 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:08:14,648 DEBUG:__main__:Start pplot module
2019-05-04 02:08:15,028 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:08:15,084 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:08:15,164 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:08:15,301 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:08:16,160 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:08:16,590 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:08:16,975 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:08:17,343 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:08:17,709 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:08:18,651 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:09:20,871 DEBUG:__main__:Start pplot module
2019-05-04 02:09:21,292 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:09:21,354 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:09:21,445 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:09:21,592 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:09:22,471 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:09:22,901 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:09:23,287 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:09:23,660 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:09:24,030 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:09:24,984 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:10:41,498 DEBUG:__main__:Start pplot module
2019-05-04 02:10:42,079 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:10:42,153 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:10:42,289 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:10:42,563 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:10:44,625 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:10:45,529 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:10:46,442 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:10:47,355 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:10:48,198 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:10:50,327 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:12:39,620 DEBUG:__main__:Start pplot module
2019-05-04 02:12:40,175 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:12:40,246 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:12:40,384 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:12:40,642 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:12:42,663 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:12:43,590 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:12:44,507 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:12:45,409 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:12:46,269 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:12:48,413 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:15:15,266 DEBUG:__main__:Start pplot module
2019-05-04 02:15:15,664 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:15:15,717 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:15:15,795 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:15:15,924 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:15:16,759 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:15:17,176 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:15:17,561 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:15:17,928 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:15:18,299 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:15:19,265 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:17:42,771 DEBUG:__main__:Start pplot module
2019-05-04 02:17:43,187 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:17:43,241 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:17:43,322 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:17:43,454 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:17:44,321 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:17:44,757 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:17:45,151 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:17:45,520 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:17:45,884 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:17:46,836 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:18:36,560 DEBUG:__main__:Start pplot module
2019-05-04 02:18:36,945 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:18:37,004 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:18:37,087 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:18:37,221 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:18:38,068 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:18:38,492 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:18:38,872 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:18:39,237 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:18:39,602 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:18:40,544 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:25:34,326 DEBUG:__main__:Start pplot module
2019-05-04 02:25:34,766 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:25:34,819 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:25:34,897 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:25:35,026 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:25:35,866 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:25:36,286 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:25:36,668 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:25:37,038 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:25:37,405 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:25:38,350 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:33:19,980 DEBUG:__main__:Start pplot module
2019-05-04 02:33:20,363 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:33:20,418 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:33:20,496 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:33:20,625 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:33:21,454 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:33:21,863 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:33:22,245 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:33:22,607 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:33:22,967 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:33:23,899 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:34:13,406 DEBUG:__main__:Start pplot module
2019-05-04 02:34:13,812 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:34:13,866 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:34:13,943 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:34:14,072 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:34:14,894 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:34:15,303 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:34:15,684 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:34:16,051 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:34:16,411 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:34:17,348 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:34:48,331 DEBUG:__main__:Start pplot module
2019-05-04 02:34:48,723 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:34:48,782 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:34:48,866 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:34:49,000 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:34:49,847 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:34:50,266 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:34:50,649 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:34:51,009 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:34:51,378 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:34:52,308 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:37:25,668 DEBUG:__main__:Start pplot module
2019-05-04 02:37:26,057 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:37:26,110 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:37:26,189 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:37:26,320 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:37:27,152 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:37:27,568 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:37:27,951 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:37:28,326 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:37:28,702 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:37:29,657 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:38:34,783 DEBUG:__main__:Start pplot module
2019-05-04 02:38:35,236 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:38:35,287 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:38:35,364 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:38:35,492 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:38:36,311 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:38:36,723 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:38:37,100 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:38:37,465 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:38:37,835 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:38:38,854 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:42:04,769 DEBUG:__main__:Start pplot module
2019-05-04 02:42:05,151 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:42:05,205 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:42:05,284 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:42:05,412 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:42:06,238 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:42:06,649 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:42:07,032 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:42:07,396 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:42:07,760 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:42:08,696 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:43:18,281 DEBUG:__main__:Start pplot module
2019-05-04 02:43:18,685 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:43:18,739 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:43:18,817 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:43:18,947 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:43:19,783 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:43:20,206 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:43:20,597 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:43:20,971 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:43:21,344 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:43:22,291 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:43:52,899 DEBUG:__main__:Start pplot module
2019-05-04 02:43:53,284 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:43:53,337 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:43:53,415 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:43:53,545 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:43:54,379 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:43:54,798 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:43:55,185 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:43:55,554 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:43:55,924 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:43:56,872 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:44:10,450 DEBUG:__main__:Start pplot module
2019-05-04 02:44:10,822 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:44:10,876 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:44:10,955 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:44:11,085 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:44:11,939 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:44:12,358 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:44:12,743 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:44:13,107 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:44:13,472 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:44:14,416 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:44:42,847 DEBUG:__main__:Start pplot module
2019-05-04 02:44:43,250 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:44:43,306 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:44:43,392 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:44:43,522 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:44:44,359 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:44:44,782 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:44:45,175 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:44:45,551 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:44:45,935 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:44:46,881 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:44:58,518 DEBUG:__main__:Start pplot module
2019-05-04 02:44:58,911 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:44:58,965 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:44:59,043 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:44:59,173 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:45:00,029 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:45:00,449 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:45:00,839 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:45:01,208 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:45:01,570 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:45:02,509 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:45:20,789 DEBUG:__main__:Start pplot module
2019-05-04 02:45:21,199 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:45:21,253 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:45:21,333 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:45:21,468 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:45:22,324 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:45:22,743 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:45:23,129 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:45:23,498 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:45:23,871 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:45:24,829 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:46:08,396 DEBUG:__main__:Start pplot module
2019-05-04 02:46:08,955 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:46:09,028 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:46:09,168 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:46:09,434 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:46:11,474 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:46:12,369 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:46:13,265 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:46:14,161 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:46:15,013 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:46:17,205 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:50:32,454 DEBUG:__main__:Start pplot module
2019-05-04 02:50:33,080 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:50:33,154 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:50:33,293 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:50:33,556 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:50:36,009 DEBUG:__main__:Start pplot module
2019-05-04 02:50:36,397 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:50:36,452 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:50:36,530 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:50:36,658 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:50:37,541 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:50:37,984 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:50:38,387 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:50:38,767 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:50:39,153 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:50:40,147 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 02:50:58,959 DEBUG:__main__:Start pplot module
2019-05-04 02:50:59,353 DEBUG:__main__:Created figure 1, num 1
2019-05-04 02:50:59,410 DEBUG:__main__:Created figure 2, num 2
2019-05-04 02:50:59,490 DEBUG:__main__:Created figure 3, num 3
2019-05-04 02:50:59,622 DEBUG:__main__:Created figure 4, num 4
2019-05-04 02:51:00,468 DEBUG:__main__:Created figure 5, num 5
2019-05-04 02:51:00,888 DEBUG:__main__:Created figure 6, num 6
2019-05-04 02:51:01,275 DEBUG:__main__:Created figure 7, num 7
2019-05-04 02:51:01,638 DEBUG:__main__:Created figure 8, num 8
2019-05-04 02:51:02,002 DEBUG:__main__:Created figure 9, num 9
2019-05-04 02:51:02,941 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-04 03:08:42,121 DEBUG:__main__:Start pplot module
2019-05-04 03:08:42,627 DEBUG:__main__:Created figure 1, num 1
2019-05-04 03:08:42,682 DEBUG:__main__:Created figure 2, num 2
2019-05-04 03:08:42,761 DEBUG:__main__:Created figure 3, num 3
2019-05-04 03:08:42,891 DEBUG:__main__:Created figure 4, num 4
2019-05-04 03:08:43,720 DEBUG:__main__:Created figure 5, num 5
2019-05-04 03:08:44,131 DEBUG:__main__:Created figure 6, num 6
2019-05-04 03:08:44,517 DEBUG:__main__:Created figure 7, num 7
2019-05-04 03:08:44,891 DEBUG:__main__:Created figure 8, num 8
2019-05-04 03:08:45,260 DEBUG:__main__:Created figure 9, num 9
2019-05-04 03:08:46,206 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:34:40,527 DEBUG:__main__:Start pplot module
2019-05-05 00:34:41,255 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:34:41,326 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:34:41,465 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:34:41,728 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:34:43,726 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:34:44,608 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:34:45,504 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:34:46,391 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:34:47,236 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:34:49,374 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:37:07,774 DEBUG:__main__:Start pplot module
2019-05-05 00:37:08,339 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:37:08,412 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:37:08,550 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:37:08,813 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:37:10,820 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:37:11,705 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:37:12,606 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:37:13,501 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:37:14,353 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:37:16,498 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:39:28,544 DEBUG:__main__:Start pplot module
2019-05-05 00:39:29,118 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:39:29,190 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:39:29,330 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:39:29,590 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:39:31,607 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:39:32,495 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:39:33,393 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:39:34,282 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:39:35,135 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:39:37,283 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:40:33,412 DEBUG:__main__:Start pplot module
2019-05-05 00:40:33,978 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:40:34,050 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:40:34,187 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:40:34,449 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:40:36,461 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:40:37,361 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:40:38,259 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:40:39,156 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:40:40,013 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:40:42,167 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:42:18,878 DEBUG:__main__:Start pplot module
2019-05-05 00:42:19,302 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:42:19,356 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:42:19,434 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:42:19,563 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:42:20,392 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:42:20,802 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:42:21,192 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:42:21,566 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:42:21,938 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:42:22,902 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:46:12,671 DEBUG:__main__:Start pplot module
2019-05-05 00:46:13,278 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:46:13,330 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:46:13,408 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:46:13,540 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:46:14,367 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:46:14,782 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:46:15,164 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:46:15,534 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:46:15,907 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:46:16,893 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:46:31,597 DEBUG:__main__:Start pplot module
2019-05-05 00:46:32,003 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:46:32,057 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:46:32,136 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:46:32,266 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:46:33,103 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:46:33,519 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:46:33,904 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:46:34,273 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:46:34,641 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:46:35,599 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 00:46:36,781 DEBUG:__main__:Created figure applesauce, num 11
2019-05-05 00:47:35,505 DEBUG:__main__:Start pplot module
2019-05-05 00:47:35,910 DEBUG:__main__:Created figure 1, num 1
2019-05-05 00:47:35,963 DEBUG:__main__:Created figure 2, num 2
2019-05-05 00:47:36,042 DEBUG:__main__:Created figure 3, num 3
2019-05-05 00:47:36,173 DEBUG:__main__:Created figure 4, num 4
2019-05-05 00:47:36,997 DEBUG:__main__:Created figure 5, num 5
2019-05-05 00:47:37,407 DEBUG:__main__:Created figure 6, num 6
2019-05-05 00:47:37,785 DEBUG:__main__:Created figure 7, num 7
2019-05-05 00:47:38,149 DEBUG:__main__:Created figure 8, num 8
2019-05-05 00:47:38,516 DEBUG:__main__:Created figure 9, num 9
2019-05-05 00:47:39,494 DEBUG:__main__:Created figure Applesauce, num 10
2019-05-05 17:15:55,234 DEBUG:__main__:Start pplot module
2019-05-05 17:15:56,006 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:16:16,056 DEBUG:__main__:Start pplot module
2019-05-05 17:16:16,611 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:16:16,675 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:16:16,773 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:16:16,935 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:16:17,963 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:16:18,497 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:16:18,987 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:16:19,452 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:16:19,897 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:16:21,070 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:17:24,868 DEBUG:__main__:Start pplot module
2019-05-05 17:17:25,512 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:17:25,582 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:17:25,688 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:17:25,849 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:17:26,849 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:17:27,362 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:17:27,822 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:17:28,282 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:17:28,742 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:17:29,898 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:18:37,908 DEBUG:__main__:Start pplot module
2019-05-05 17:18:38,566 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:18:38,655 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:18:38,790 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:18:38,998 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:18:40,283 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:18:40,969 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:18:41,439 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:18:41,882 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:18:42,336 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:19:18,165 DEBUG:__main__:Start pplot module
2019-05-05 17:19:18,660 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:19:18,730 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:19:18,837 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:19:18,991 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:19:20,034 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:19:20,551 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:19:21,006 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:19:21,439 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:19:21,895 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:19:23,056 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:19:38,933 DEBUG:__main__:Start pplot module
2019-05-05 17:19:39,410 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:19:39,479 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:19:39,580 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:19:39,745 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:19:40,778 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:19:41,265 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:19:41,720 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:19:42,168 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:19:42,609 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:19:43,765 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:20:03,792 DEBUG:__main__:Start pplot module
2019-05-05 17:20:04,531 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:20:04,616 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:20:04,798 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:20:05,150 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:20:07,800 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:20:08,964 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:20:10,101 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:20:11,203 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:20:12,255 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:20:16,623 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:21:06,516 DEBUG:__main__:Start pplot module
2019-05-05 17:21:07,216 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:21:07,316 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:21:07,499 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:21:07,833 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:21:10,362 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:21:11,447 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:21:12,614 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:21:13,714 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:21:14,794 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:21:19,103 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:22:01,955 DEBUG:__main__:Start pplot module
2019-05-05 17:22:02,447 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:22:02,509 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:22:02,616 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:22:02,774 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:22:04,011 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:22:04,540 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:22:05,013 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:22:05,470 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:22:05,909 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:22:07,080 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:22:07,162 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:23:00,240 DEBUG:__main__:Start pplot module
2019-05-05 17:23:00,939 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:23:01,024 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:23:01,202 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:23:01,540 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:23:04,086 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:23:05,215 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:23:06,301 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:23:07,400 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:23:08,486 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:23:12,377 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:33:25,323 DEBUG:__main__:Start pplot module
2019-05-05 17:33:25,857 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:33:25,924 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:33:26,026 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:33:26,192 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:33:27,224 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:33:27,757 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:33:28,241 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:33:28,703 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:33:29,150 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:33:30,360 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:33:30,449 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:34:05,870 DEBUG:__main__:Start pplot module
2019-05-05 17:34:06,653 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:34:06,737 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:34:06,908 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:34:07,241 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:34:09,865 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:34:10,972 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:34:12,070 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:34:13,219 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:34:14,406 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:34:18,989 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:35:01,541 DEBUG:__main__:Start pplot module
2019-05-05 17:35:01,945 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:35:01,999 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:35:02,080 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:35:02,229 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:35:03,088 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:35:03,514 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:35:03,904 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:35:04,290 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:35:04,665 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:35:05,639 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:35:05,704 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:35:22,952 DEBUG:__main__:Start pplot module
2019-05-05 17:35:23,530 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:35:23,605 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:35:23,751 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:35:24,020 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:35:26,131 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:35:27,063 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:35:27,994 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:35:29,008 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:35:29,950 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:35:35,924 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:36:49,333 DEBUG:__main__:Start pplot module
2019-05-05 17:36:49,748 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:36:49,807 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:36:49,888 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:36:50,042 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:36:50,920 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:36:51,377 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:36:51,783 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:36:52,185 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:36:52,579 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:36:53,589 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:36:53,660 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:37:46,072 DEBUG:__main__:Start pplot module
2019-05-05 17:37:46,486 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:37:46,541 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:37:46,631 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:37:46,770 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:37:47,653 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:37:48,091 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:37:48,493 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:37:48,872 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:37:49,255 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:37:50,241 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:37:50,310 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:50:20,972 DEBUG:__main__:Start pplot module
2019-05-05 17:50:21,411 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:50:35,421 DEBUG:__main__:Start pplot module
2019-05-05 17:50:35,869 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:50:35,927 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:50:36,009 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:50:36,163 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:50:37,051 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:50:37,495 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:50:37,900 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:50:38,296 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:50:38,686 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:50:39,686 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:50:39,755 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:51:06,391 DEBUG:__main__:Start pplot module
2019-05-05 17:51:06,913 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:51:06,971 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:51:07,054 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:51:07,195 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:51:08,079 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:51:08,508 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:51:08,913 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:51:09,291 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:51:09,677 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:51:10,669 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:51:10,742 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:51:26,746 DEBUG:__main__:Start pplot module
2019-05-05 17:51:27,169 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:51:27,224 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:51:27,307 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:51:27,454 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:51:28,364 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:51:28,839 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:51:29,305 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:51:29,787 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:51:30,250 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:51:31,315 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:51:31,383 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:52:30,885 DEBUG:__main__:Start pplot module
2019-05-05 17:52:31,478 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:52:31,558 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:52:31,708 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:52:31,994 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:52:34,178 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:52:35,145 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:52:36,095 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:52:37,052 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:52:37,977 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:52:42,031 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:52:57,922 DEBUG:__main__:Start pplot module
2019-05-05 17:52:58,526 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:52:58,611 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:52:58,763 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:52:59,057 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:53:01,256 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:53:02,231 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:53:03,206 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:53:04,167 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:53:05,103 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:53:09,413 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:57:04,839 DEBUG:__main__:Start pplot module
2019-05-05 17:57:05,258 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:57:05,314 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:57:05,418 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:57:05,557 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:57:06,457 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:57:06,895 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:57:07,317 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:57:07,724 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:57:08,109 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:57:09,112 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:57:09,184 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:57:22,139 DEBUG:__main__:Start pplot module
2019-05-05 17:57:22,748 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:57:22,822 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:57:22,970 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:57:23,258 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:57:25,429 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:57:26,418 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:57:27,413 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:57:28,425 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:57:29,354 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:57:38,276 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:58:44,537 DEBUG:__main__:Start pplot module
2019-05-05 17:58:44,983 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:58:45,044 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:58:45,125 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:58:45,261 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:58:46,144 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:58:46,586 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:58:46,992 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:58:47,385 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:58:47,765 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:58:48,779 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:58:48,845 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 17:59:27,665 DEBUG:__main__:Start pplot module
2019-05-05 17:59:28,091 DEBUG:__main__:Created figure 1, num 1
2019-05-05 17:59:28,153 DEBUG:__main__:Created figure 2, num 2
2019-05-05 17:59:28,245 DEBUG:__main__:Created figure 3, num 3
2019-05-05 17:59:28,388 DEBUG:__main__:Created figure 4, num 4
2019-05-05 17:59:29,316 DEBUG:__main__:Created figure 5, num 5
2019-05-05 17:59:29,758 DEBUG:__main__:Created figure 6, num 6
2019-05-05 17:59:30,171 DEBUG:__main__:Created figure 7, num 7
2019-05-05 17:59:30,563 DEBUG:__main__:Created figure 8, num 8
2019-05-05 17:59:30,956 DEBUG:__main__:Created figure 9, num 9
2019-05-05 17:59:31,997 DEBUG:__main__:Created figure 10, num 10
2019-05-05 17:59:32,064 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:00:30,158 DEBUG:__main__:Start pplot module
2019-05-05 18:00:30,623 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:00:30,685 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:00:30,766 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:00:30,907 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:00:31,808 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:00:32,252 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:00:32,657 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:00:33,039 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:00:33,440 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:00:34,624 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:00:34,712 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:01:37,278 DEBUG:__main__:Start pplot module
2019-05-05 18:01:37,778 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:01:37,841 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:01:37,940 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:01:38,101 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:01:39,140 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:01:39,660 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:01:40,133 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:01:40,571 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:01:41,018 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:01:42,164 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:01:42,251 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:01:56,123 DEBUG:__main__:Start pplot module
2019-05-05 18:01:56,805 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:01:56,903 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:01:57,082 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:01:57,419 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:02:00,069 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:02:01,260 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:02:04,125 DEBUG:__main__:Start pplot module
2019-05-05 18:02:04,604 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:02:04,679 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:02:04,785 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:02:04,949 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:02:05,969 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:02:06,493 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:02:06,979 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:02:07,452 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:02:07,921 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:02:09,140 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:02:09,223 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:02:51,944 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,945 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,947 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,948 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,953 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,954 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,956 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,957 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,959 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,967 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,983 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:51,991 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,656 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,656 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,659 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,660 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,664 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,665 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,668 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,669 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,672 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,680 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,692 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:52,703 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,581 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,581 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,584 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,585 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,590 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,591 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,593 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,595 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,597 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,607 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,622 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:53,632 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,168 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,169 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,175 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,176 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,178 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,179 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,181 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,191 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,209 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:02:58,219 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,069 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,070 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,075 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,076 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,078 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,079 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,081 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,089 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,106 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:04,117 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,090 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,090 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,094 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,095 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,099 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,100 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,102 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,103 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,106 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,116 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,133 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:05,142 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,077 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,079 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,083 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,084 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,086 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,086 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,089 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,098 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,116 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:09,126 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,271 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,273 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,278 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,279 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,281 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,283 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,286 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,294 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,311 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:12,322 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,920 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,920 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,923 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,925 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,927 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,928 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,930 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,930 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,932 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,938 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,950 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:13,955 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,567 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,567 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,569 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,571 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,574 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,575 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,578 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,579 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,582 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,591 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,608 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:16,620 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,777 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,779 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,785 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,787 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,789 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,791 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,793 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,803 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,818 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:03:19,834 WARNING:matplotlib.dates:Plotting microsecond time intervals is not well supported. Please see the MicrosecondLocator documentation for details.
2019-05-05 18:05:02,461 DEBUG:__main__:Start pplot module
2019-05-05 18:05:02,942 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:05:03,012 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:05:03,121 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:05:03,280 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:05:04,331 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:05:04,834 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:05:05,302 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:05:05,743 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:05:06,189 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:05:07,371 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:05:07,455 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:10:53,378 DEBUG:__main__:Start pplot module
2019-05-05 18:10:53,858 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:10:53,921 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:10:54,017 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:10:54,179 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:10:55,239 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:10:55,765 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:10:56,295 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:10:56,818 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:10:57,325 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:10:58,662 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:10:58,757 DEBUG:__main__:Created figure Applesauce, num 11
2019-05-05 18:12:17,585 DEBUG:__main__:Start pplot module
2019-05-05 18:12:18,094 DEBUG:__main__:Created figure 1, num 1
2019-05-05 18:12:18,158 DEBUG:__main__:Created figure 2, num 2
2019-05-05 18:12:18,257 DEBUG:__main__:Created figure 3, num 3
2019-05-05 18:12:18,423 DEBUG:__main__:Created figure 4, num 4
2019-05-05 18:12:19,442 DEBUG:__main__:Created figure 5, num 5
2019-05-05 18:12:19,954 DEBUG:__main__:Created figure 6, num 6
2019-05-05 18:12:20,444 DEBUG:__main__:Created figure 7, num 7
2019-05-05 18:12:20,908 DEBUG:__main__:Created figure 8, num 8
2019-05-05 18:12:21,363 DEBUG:__main__:Created figure 9, num 9
2019-05-05 18:12:22,513 DEBUG:__main__:Created figure 10, num 10
2019-05-05 18:12:22,599 DEBUG:__main__:Created figure Applesauce, num 11