-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathelmhurstbackup.sql
More file actions
5550 lines (5241 loc) · 321 KB
/
elmhurstbackup.sql
File metadata and controls
5550 lines (5241 loc) · 321 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
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.17
-- Dumped by pg_dump version 9.5.17
SET statement_timeout = 0;
SET lock_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
--
COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: annotations; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.annotations (
id integer NOT NULL,
item_name character varying,
item_price integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.annotations OWNER TO kk;
--
-- Name: annotations_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.annotations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.annotations_id_seq OWNER TO kk;
--
-- Name: annotations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.annotations_id_seq OWNED BY public.annotations.id;
--
-- Name: authorships; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.authorships (
id integer NOT NULL,
user_id integer,
project_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.authorships OWNER TO kk;
--
-- Name: authorships_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.authorships_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.authorships_id_seq OWNER TO kk;
--
-- Name: authorships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.authorships_id_seq OWNED BY public.authorships.id;
--
-- Name: investments; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.investments (
id integer NOT NULL,
user_id integer,
project_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.investments OWNER TO kk;
--
-- Name: investments_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.investments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.investments_id_seq OWNER TO kk;
--
-- Name: investments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.investments_id_seq OWNED BY public.investments.id;
--
-- Name: investors; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.investors (
id integer NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.investors OWNER TO kk;
--
-- Name: investors_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.investors_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.investors_id_seq OWNER TO kk;
--
-- Name: investors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.investors_id_seq OWNED BY public.investors.id;
--
-- Name: memberships; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.memberships (
id integer NOT NULL,
user_id integer,
project_id integer,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.memberships OWNER TO kk;
--
-- Name: memberships_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.memberships_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.memberships_id_seq OWNER TO kk;
--
-- Name: memberships_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.memberships_id_seq OWNED BY public.memberships.id;
--
-- Name: order_books; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.order_books (
id integer NOT NULL,
name character varying,
trade_principal integer,
security character varying,
security_price integer,
shares numeric(10,2),
security_principal integer,
kk_principal integer,
profit_loss integer,
receipient character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.order_books OWNER TO kk;
--
-- Name: order_books_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.order_books_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.order_books_id_seq OWNER TO kk;
--
-- Name: order_books_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.order_books_id_seq OWNED BY public.order_books.id;
--
-- Name: projects; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.projects (
id integer NOT NULL,
title character varying,
description text,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.projects OWNER TO kk;
--
-- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.projects_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.projects_id_seq OWNER TO kk;
--
-- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.projects_id_seq OWNED BY public.projects.id;
--
-- Name: researcher_requests; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.researcher_requests (
id integer NOT NULL,
item_name character varying,
item_price double precision,
merchant_name character varying,
source character varying,
note character varying,
date date,
project_id integer,
fulfilled boolean DEFAULT false,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.researcher_requests OWNER TO kk;
--
-- Name: researcher_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.researcher_requests_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.researcher_requests_id_seq OWNER TO kk;
--
-- Name: researcher_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.researcher_requests_id_seq OWNED BY public.researcher_requests.id;
--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.schema_migrations (
version character varying NOT NULL
);
ALTER TABLE public.schema_migrations OWNER TO kk;
--
-- Name: tokens; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.tokens (
id integer NOT NULL,
user_id integer,
token character varying,
start_at timestamp without time zone,
end_at timestamp without time zone,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
);
ALTER TABLE public.tokens OWNER TO kk;
--
-- Name: tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.tokens_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.tokens_id_seq OWNER TO kk;
--
-- Name: tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.tokens_id_seq OWNED BY public.tokens.id;
--
-- Name: users; Type: TABLE; Schema: public; Owner: kk
--
CREATE TABLE public.users (
id integer NOT NULL,
researcher boolean,
investor boolean,
first_name character varying,
last_name character varying,
university character varying,
department character varying,
interests text,
avatar character varying,
email character varying DEFAULT ''::character varying NOT NULL,
encrypted_password character varying DEFAULT ''::character varying NOT NULL,
reset_password_token character varying,
reset_password_sent_at timestamp without time zone,
remember_created_at timestamp without time zone,
sign_in_count integer DEFAULT 0 NOT NULL,
current_sign_in_at timestamp without time zone,
last_sign_in_at timestamp without time zone,
current_sign_in_ip inet,
last_sign_in_ip inet,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
authentication_token character varying
);
ALTER TABLE public.users OWNER TO kk;
--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: kk
--
CREATE SEQUENCE public.users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE public.users_id_seq OWNER TO kk;
--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: kk
--
ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.annotations ALTER COLUMN id SET DEFAULT nextval('public.annotations_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.authorships ALTER COLUMN id SET DEFAULT nextval('public.authorships_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.investments ALTER COLUMN id SET DEFAULT nextval('public.investments_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.investors ALTER COLUMN id SET DEFAULT nextval('public.investors_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.memberships ALTER COLUMN id SET DEFAULT nextval('public.memberships_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.order_books ALTER COLUMN id SET DEFAULT nextval('public.order_books_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.projects ALTER COLUMN id SET DEFAULT nextval('public.projects_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.researcher_requests ALTER COLUMN id SET DEFAULT nextval('public.researcher_requests_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.tokens ALTER COLUMN id SET DEFAULT nextval('public.tokens_id_seq'::regclass);
--
-- Name: id; Type: DEFAULT; Schema: public; Owner: kk
--
ALTER TABLE ONLY public.users ALTER COLUMN id SET DEFAULT nextval('public.users_id_seq'::regclass);
--
-- Data for Name: annotations; Type: TABLE DATA; Schema: public; Owner: kk
--
COPY public.annotations (id, item_name, item_price, created_at, updated_at) FROM stdin;
6443 \N 335 2017-08-22 06:59:26.515624 2017-08-22 06:59:26.515624
6444 \N 212 2017-08-22 06:59:26.567187 2017-08-22 06:59:26.567187
6445 \N 261 2017-08-22 06:59:26.572235 2017-08-22 06:59:26.572235
6446 \N 160 2017-08-22 06:59:26.581672 2017-08-22 06:59:26.581672
6447 \N 181 2017-08-22 06:59:26.591709 2017-08-22 06:59:26.591709
6448 \N 188 2017-08-22 06:59:26.601038 2017-08-22 06:59:26.601038
6449 \N 31 2017-08-22 06:59:26.609469 2017-08-22 06:59:26.609469
6450 \N 56 2017-08-22 06:59:26.615657 2017-08-22 06:59:26.615657
6451 \N 1521 2017-08-22 06:59:26.621194 2017-08-22 06:59:26.621194
6452 \N 1521 2017-08-22 06:59:26.626247 2017-08-22 06:59:26.626247
6453 \N 2067 2017-08-22 06:59:26.63238 2017-08-22 06:59:26.63238
6454 \N 2036 2017-08-22 06:59:26.637519 2017-08-22 06:59:26.637519
6455 \N 2256 2017-08-22 06:59:26.641646 2017-08-22 06:59:26.641646
6456 \N 2254 2017-08-22 06:59:26.645955 2017-08-22 06:59:26.645955
6457 \N 454 2017-08-22 06:59:26.651483 2017-08-22 06:59:26.651483
6458 \N 545 2017-08-22 06:59:26.655828 2017-08-22 06:59:26.655828
6459 \N 268 2017-08-22 06:59:26.660953 2017-08-22 06:59:26.660953
6460 \N 24 2017-08-22 06:59:26.66541 2017-08-22 06:59:26.66541
6461 \N 24 2017-08-22 06:59:26.66998 2017-08-22 06:59:26.66998
6462 \N 26 2017-08-22 06:59:26.677413 2017-08-22 06:59:26.677413
6463 \N 27 2017-08-22 06:59:26.682994 2017-08-22 06:59:26.682994
6464 \N 44 2017-08-22 06:59:26.687585 2017-08-22 06:59:26.687585
6465 \N 54 2017-08-22 06:59:26.692339 2017-08-22 06:59:26.692339
6466 \N 69 2017-08-22 06:59:26.697515 2017-08-22 06:59:26.697515
6467 \N 63 2017-08-22 06:59:26.702155 2017-08-22 06:59:26.702155
6468 \N 117 2017-08-22 06:59:26.706773 2017-08-22 06:59:26.706773
6469 \N 117 2017-08-22 06:59:26.711488 2017-08-22 06:59:26.711488
6470 \N 117 2017-08-22 06:59:26.716764 2017-08-22 06:59:26.716764
6471 \N 136 2017-08-22 06:59:26.722364 2017-08-22 06:59:26.722364
6472 \N 81 2017-08-22 06:59:26.726583 2017-08-22 06:59:26.726583
6473 \N 81 2017-08-22 06:59:26.731073 2017-08-22 06:59:26.731073
6474 \N 81 2017-08-22 06:59:26.735529 2017-08-22 06:59:26.735529
6475 \N 782 2017-08-22 06:59:26.740263 2017-08-22 06:59:26.740263
6476 \N 782 2017-08-22 06:59:26.744734 2017-08-22 06:59:26.744734
6477 \N 246 2017-08-22 06:59:26.74893 2017-08-22 06:59:26.74893
6478 \N 190 2017-08-22 06:59:26.753829 2017-08-22 06:59:26.753829
6479 \N 24 2017-08-22 06:59:26.75854 2017-08-22 06:59:26.75854
6480 \N 24 2017-08-22 06:59:26.762972 2017-08-22 06:59:26.762972
6481 \N 26 2017-08-22 06:59:26.767204 2017-08-22 06:59:26.767204
6482 \N 27 2017-08-22 06:59:26.772001 2017-08-22 06:59:26.772001
6483 \N 44 2017-08-22 06:59:26.776698 2017-08-22 06:59:26.776698
6484 \N 54 2017-08-22 06:59:26.781262 2017-08-22 06:59:26.781262
6485 \N 63 2017-08-22 06:59:26.785697 2017-08-22 06:59:26.785697
6486 \N 27 2017-08-22 06:59:26.793574 2017-08-22 06:59:26.793574
6487 \N 26 2017-08-22 06:59:26.798012 2017-08-22 06:59:26.798012
6488 \N 117 2017-08-22 06:59:26.802824 2017-08-22 06:59:26.802824
6489 \N 136 2017-08-22 06:59:26.807578 2017-08-22 06:59:26.807578
6490 \N 81 2017-08-22 06:59:26.812922 2017-08-22 06:59:26.812922
6491 \N 81 2017-08-22 06:59:26.818365 2017-08-22 06:59:26.818365
6492 \N 81 2017-08-22 06:59:26.823416 2017-08-22 06:59:26.823416
6493 \N 4659 2017-08-22 06:59:26.828911 2017-08-22 06:59:26.828911
6494 \N 6739 2017-08-22 06:59:26.833858 2017-08-22 06:59:26.833858
6495 \N 2291 2017-08-22 06:59:26.837847 2017-08-22 06:59:26.837847
6496 \N 4659 2017-08-22 06:59:26.842378 2017-08-22 06:59:26.842378
6497 \N 6723 2017-08-22 06:59:26.847084 2017-08-22 06:59:26.847084
6498 \N 2291 2017-08-22 06:59:26.851763 2017-08-22 06:59:26.851763
6499 \N 24 2017-08-22 06:59:26.856331 2017-08-22 06:59:26.856331
6500 \N 24 2017-08-22 06:59:26.860964 2017-08-22 06:59:26.860964
6501 \N 26 2017-08-22 06:59:26.865745 2017-08-22 06:59:26.865745
6502 \N 27 2017-08-22 06:59:26.87008 2017-08-22 06:59:26.87008
6503 \N 44 2017-08-22 06:59:26.874294 2017-08-22 06:59:26.874294
6504 \N 54 2017-08-22 06:59:26.878669 2017-08-22 06:59:26.878669
6505 \N 436 2017-08-22 06:59:26.883102 2017-08-22 06:59:26.883102
6506 \N 117 2017-08-22 06:59:26.887205 2017-08-22 06:59:26.887205
6507 \N 111 2017-08-22 06:59:26.89149 2017-08-22 06:59:26.89149
6508 \N 117 2017-08-22 06:59:26.895878 2017-08-22 06:59:26.895878
6509 \N 117 2017-08-22 06:59:26.900177 2017-08-22 06:59:26.900177
6510 \N 136 2017-08-22 06:59:26.905616 2017-08-22 06:59:26.905616
6511 \N 77 2017-08-22 06:59:26.911663 2017-08-22 06:59:26.911663
6512 \N 190 2017-08-22 06:59:26.917305 2017-08-22 06:59:26.917305
6513 \N 268 2017-08-22 06:59:26.921888 2017-08-22 06:59:26.921888
6514 \N 702 2017-08-22 06:59:26.927104 2017-08-22 06:59:26.927104
6515 \N 702 2017-08-22 06:59:26.932036 2017-08-22 06:59:26.932036
6516 \N 678 2017-08-22 06:59:26.936713 2017-08-22 06:59:26.936713
6517 \N 978 2017-08-22 06:59:26.941647 2017-08-22 06:59:26.941647
6518 \N 680 2017-08-22 06:59:26.947048 2017-08-22 06:59:26.947048
6519 \N 978 2017-08-22 06:59:26.95179 2017-08-22 06:59:26.95179
6520 \N 717 2017-08-22 06:59:26.956336 2017-08-22 06:59:26.956336
6521 \N 724 2017-08-22 06:59:26.960543 2017-08-22 06:59:26.960543
6522 \N 845 2017-08-22 06:59:26.965316 2017-08-22 06:59:26.965316
6523 \N 850 2017-08-22 06:59:26.969603 2017-08-22 06:59:26.969603
6524 \N 272 2017-08-22 06:59:26.973686 2017-08-22 06:59:26.973686
6525 \N 272 2017-08-22 06:59:26.977829 2017-08-22 06:59:26.977829
6526 \N 807 2017-08-22 06:59:26.981786 2017-08-22 06:59:26.981786
6527 \N 807 2017-08-22 06:59:26.985862 2017-08-22 06:59:26.985862
6528 \N 104 2017-08-22 06:59:26.990451 2017-08-22 06:59:26.990451
6529 \N 21 2017-08-22 06:59:26.994548 2017-08-22 06:59:26.994548
6530 \N 640 2017-08-22 06:59:26.999057 2017-08-22 06:59:26.999057
6531 \N 640 2017-08-22 06:59:27.003408 2017-08-22 06:59:27.003408
6532 \N 91 2017-08-22 06:59:27.007715 2017-08-22 06:59:27.007715
6533 \N 33 2017-08-22 06:59:27.012037 2017-08-22 06:59:27.012037
6534 \N 29 2017-08-22 06:59:27.016399 2017-08-22 06:59:27.016399
6535 \N 32 2017-08-22 06:59:27.02061 2017-08-22 06:59:27.02061
6536 \N 21 2017-08-22 06:59:27.024901 2017-08-22 06:59:27.024901
6537 \N 640 2017-08-22 06:59:27.028938 2017-08-22 06:59:27.028938
6538 \N 640 2017-08-22 06:59:27.032903 2017-08-22 06:59:27.032903
6539 \N 91 2017-08-22 06:59:27.036733 2017-08-22 06:59:27.036733
6540 \N 33 2017-08-22 06:59:27.040786 2017-08-22 06:59:27.040786
6541 \N 29 2017-08-22 06:59:27.044999 2017-08-22 06:59:27.044999
6542 \N 32 2017-08-22 06:59:27.050578 2017-08-22 06:59:27.050578
6543 \N 21 2017-08-22 06:59:27.055252 2017-08-22 06:59:27.055252
6544 \N 976 2017-08-22 06:59:27.060458 2017-08-22 06:59:27.060458
6545 \N 976 2017-08-22 06:59:27.064981 2017-08-22 06:59:27.064981
6546 \N 96 2017-08-22 06:59:27.069716 2017-08-22 06:59:27.069716
6547 \N 67 2017-08-22 06:59:27.074518 2017-08-22 06:59:27.074518
6548 \N 723 2017-08-22 06:59:27.079411 2017-08-22 06:59:27.079411
6549 \N 723 2017-08-22 06:59:27.08419 2017-08-22 06:59:27.08419
6550 \N 85 2017-08-22 06:59:27.088436 2017-08-22 06:59:27.088436
6551 \N 85 2017-08-22 06:59:27.093304 2017-08-22 06:59:27.093304
6552 \N 33 2017-08-22 06:59:27.09739 2017-08-22 06:59:27.09739
6553 \N 29 2017-08-22 06:59:27.10126 2017-08-22 06:59:27.10126
6554 \N 21 2017-08-22 06:59:27.104934 2017-08-22 06:59:27.104934
6555 \N 309 2017-08-22 06:59:27.109053 2017-08-22 06:59:27.109053
6556 \N 309 2017-08-22 06:59:27.113254 2017-08-22 06:59:27.113254
6557 \N 314 2017-08-22 06:59:27.117323 2017-08-22 06:59:27.117323
6558 \N 314 2017-08-22 06:59:27.121653 2017-08-22 06:59:27.121653
6559 \N 85 2017-08-22 06:59:27.126477 2017-08-22 06:59:27.126477
6560 \N 87 2017-08-22 06:59:27.130817 2017-08-22 06:59:27.130817
6561 \N 33 2017-08-22 06:59:27.134728 2017-08-22 06:59:27.134728
6562 \N 25 2017-08-22 06:59:27.138532 2017-08-22 06:59:27.138532
6563 \N 26 2017-08-22 06:59:27.143432 2017-08-22 06:59:27.143432
6564 \N 21 2017-08-22 06:59:27.148214 2017-08-22 06:59:27.148214
6565 \N 85 2017-08-22 06:59:27.152792 2017-08-22 06:59:27.152792
6566 \N 87 2017-08-22 06:59:27.157501 2017-08-22 06:59:27.157501
6567 \N 33 2017-08-22 06:59:27.161516 2017-08-22 06:59:27.161516
6568 \N 28 2017-08-22 06:59:27.167022 2017-08-22 06:59:27.167022
6569 \N 29 2017-08-22 06:59:27.171775 2017-08-22 06:59:27.171775
6570 \N 21 2017-08-22 06:59:27.176536 2017-08-22 06:59:27.176536
6571 \N 365 2017-08-22 06:59:27.181671 2017-08-22 06:59:27.181671
6572 \N 365 2017-08-22 06:59:27.186502 2017-08-22 06:59:27.186502
6573 \N 85 2017-08-22 06:59:27.191053 2017-08-22 06:59:27.191053
6574 \N 87 2017-08-22 06:59:27.195782 2017-08-22 06:59:27.195782
6575 \N 33 2017-08-22 06:59:27.200246 2017-08-22 06:59:27.200246
6576 \N 28 2017-08-22 06:59:27.204401 2017-08-22 06:59:27.204401
6577 \N 21 2017-08-22 06:59:27.208898 2017-08-22 06:59:27.208898
6578 \N 29 2017-08-22 06:59:27.213572 2017-08-22 06:59:27.213572
6579 \N 323 2017-08-22 06:59:27.226504 2017-08-22 06:59:27.226504
6580 \N 323 2017-08-22 06:59:27.233307 2017-08-22 06:59:27.233307
6581 \N 365 2017-08-22 06:59:27.238186 2017-08-22 06:59:27.238186
6582 \N 365 2017-08-22 06:59:27.243255 2017-08-22 06:59:27.243255
6583 \N 85 2017-08-22 06:59:27.248298 2017-08-22 06:59:27.248298
6584 \N 87 2017-08-22 06:59:27.253129 2017-08-22 06:59:27.253129
6585 \N 33 2017-08-22 06:59:27.257624 2017-08-22 06:59:27.257624
6586 \N 25 2017-08-22 06:59:27.262439 2017-08-22 06:59:27.262439
6587 \N 26 2017-08-22 06:59:27.267202 2017-08-22 06:59:27.267202
6588 \N 21 2017-08-22 06:59:27.271585 2017-08-22 06:59:27.271585
6589 \N 85 2017-08-22 06:59:27.276421 2017-08-22 06:59:27.276421
6590 \N 87 2017-08-22 06:59:27.281562 2017-08-22 06:59:27.281562
6591 \N 33 2017-08-22 06:59:27.285821 2017-08-22 06:59:27.285821
6592 \N 28 2017-08-22 06:59:27.293747 2017-08-22 06:59:27.293747
6593 \N 29 2017-08-22 06:59:27.298562 2017-08-22 06:59:27.298562
6594 \N 21 2017-08-22 06:59:27.303127 2017-08-22 06:59:27.303127
6595 \N 4715 2017-08-22 06:59:27.307623 2017-08-22 06:59:27.307623
6596 \N 3341 2017-08-22 06:59:27.312196 2017-08-22 06:59:27.312196
6597 \N 852 2017-08-22 06:59:27.316967 2017-08-22 06:59:27.316967
6598 \N 596 2017-08-22 06:59:27.321461 2017-08-22 06:59:27.321461
6599 \N 19 2017-08-22 06:59:27.326213 2017-08-22 06:59:27.326213
6600 \N 1686 2017-08-22 06:59:27.330872 2017-08-22 06:59:27.330872
6601 \N 1742 2017-08-22 06:59:27.334961 2017-08-22 06:59:27.334961
6602 \N 1539 2017-08-22 06:59:27.339476 2017-08-22 06:59:27.339476
6603 \N 1628 2017-08-22 06:59:27.344605 2017-08-22 06:59:27.344605
6604 \N 4499 2017-08-22 06:59:27.349256 2017-08-22 06:59:27.349256
6605 \N 4499 2017-08-22 06:59:27.353581 2017-08-22 06:59:27.353581
6606 \N 4454 2017-08-22 06:59:27.358304 2017-08-22 06:59:27.358304
6607 \N 4647 2017-08-22 06:59:27.362701 2017-08-22 06:59:27.362701
6608 \N 3944 2017-08-22 06:59:27.367385 2017-08-22 06:59:27.367385
6609 \N 4115 2017-08-22 06:59:27.372167 2017-08-22 06:59:27.372167
6610 \N 4115 2017-08-22 06:59:27.377074 2017-08-22 06:59:27.377074
6611 \N 4115 2017-08-22 06:59:27.381393 2017-08-22 06:59:27.381393
6612 \N 4516 2017-08-22 06:59:27.385769 2017-08-22 06:59:27.385769
6613 \N 4290 2017-08-22 06:59:27.390849 2017-08-22 06:59:27.390849
6614 \N 4516 2017-08-22 06:59:27.394973 2017-08-22 06:59:27.394973
6615 \N 4516 2017-08-22 06:59:27.399482 2017-08-22 06:59:27.399482
6616 \N 5195 2017-08-22 06:59:27.403876 2017-08-22 06:59:27.403876
6617 \N 5195 2017-08-22 06:59:27.408093 2017-08-22 06:59:27.408093
6618 \N 5195 2017-08-22 06:59:27.413126 2017-08-22 06:59:27.413126
6619 \N 5195 2017-08-22 06:59:27.417935 2017-08-22 06:59:27.417935
6620 \N 6738 2017-08-22 06:59:27.422403 2017-08-22 06:59:27.422403
6621 \N 6738 2017-08-22 06:59:27.426401 2017-08-22 06:59:27.426401
6622 \N 6738 2017-08-22 06:59:27.431174 2017-08-22 06:59:27.431174
6623 \N 6738 2017-08-22 06:59:27.435865 2017-08-22 06:59:27.435865
6624 \N 8015 2017-08-22 06:59:27.444198 2017-08-22 06:59:27.444198
6625 \N 8589 2017-08-22 06:59:27.450399 2017-08-22 06:59:27.450399
6626 \N 8015 2017-08-22 06:59:27.455199 2017-08-22 06:59:27.455199
6627 \N 8015 2017-08-22 06:59:27.459993 2017-08-22 06:59:27.459993
6628 \N 1534 2017-08-22 06:59:27.464605 2017-08-22 06:59:27.464605
6629 \N 1587 2017-08-22 06:59:27.469167 2017-08-22 06:59:27.469167
6630 \N 2189 2017-08-22 06:59:27.473785 2017-08-22 06:59:27.473785
6631 \N 1147 2017-08-22 06:59:27.479076 2017-08-22 06:59:27.479076
6632 \N 1232 2017-08-22 06:59:27.483845 2017-08-22 06:59:27.483845
6633 \N 86 2017-08-22 06:59:27.488244 2017-08-22 06:59:27.488244
6634 \N 1002 2017-08-22 06:59:27.492693 2017-08-22 06:59:27.492693
6635 \N 1752 2017-08-22 06:59:27.497146 2017-08-22 06:59:27.497146
6636 \N 1679 2017-08-22 06:59:27.501758 2017-08-22 06:59:27.501758
6637 \N 86 2017-08-22 06:59:27.506169 2017-08-22 06:59:27.506169
6638 \N 5562 2017-08-22 06:59:27.511276 2017-08-22 06:59:27.511276
6639 \N 7416 2017-08-22 06:59:27.515663 2017-08-22 06:59:27.515663
6640 \N 10170 2017-08-22 06:59:27.519683 2017-08-22 06:59:27.519683
6641 \N 1170 2017-08-22 06:59:27.524103 2017-08-22 06:59:27.524103
6642 \N 46 2017-08-22 06:59:27.52855 2017-08-22 06:59:27.52855
6643 \N 108 2017-08-22 06:59:27.532849 2017-08-22 06:59:27.532849
6644 \N 2328 2017-08-22 06:59:27.537386 2017-08-22 06:59:27.537386
6645 \N 8464 2017-08-22 06:59:27.542322 2017-08-22 06:59:27.542322
6646 \N 11419 2017-08-22 06:59:27.547499 2017-08-22 06:59:27.547499
6647 \N 327 2017-08-22 06:59:27.551919 2017-08-22 06:59:27.551919
6648 \N 330 2017-08-22 06:59:27.556541 2017-08-22 06:59:27.556541
6649 \N 539 2017-08-22 06:59:27.560992 2017-08-22 06:59:27.560992
6650 \N 539 2017-08-22 06:59:27.5656 2017-08-22 06:59:27.5656
6651 \N 783 2017-08-22 06:59:27.570369 2017-08-22 06:59:27.570369
6652 \N 851 2017-08-22 06:59:27.577621 2017-08-22 06:59:27.577621
6653 \N 9 2017-08-22 06:59:27.583841 2017-08-22 06:59:27.583841
6654 \N 10 2017-08-22 06:59:27.588447 2017-08-22 06:59:27.588447
6655 \N 11 2017-08-22 06:59:27.592865 2017-08-22 06:59:27.592865
6656 \N 1696 2017-08-22 06:59:27.596946 2017-08-22 06:59:27.596946
6657 \N 2122 2017-08-22 06:59:27.600981 2017-08-22 06:59:27.600981
6658 \N 1974 2017-08-22 06:59:27.604809 2017-08-22 06:59:27.604809
6659 \N 2912 2017-08-22 06:59:27.609396 2017-08-22 06:59:27.609396
6660 \N 3346 2017-08-22 06:59:27.614522 2017-08-22 06:59:27.614522
6661 \N 657 2017-08-22 06:59:27.619334 2017-08-22 06:59:27.619334
6662 \N 710 2017-08-22 06:59:27.623439 2017-08-22 06:59:27.623439
6663 \N 451 2017-08-22 06:59:27.627753 2017-08-22 06:59:27.627753
6664 \N 339 2017-08-22 06:59:27.632122 2017-08-22 06:59:27.632122
6665 \N 888 2017-08-22 06:59:27.63643 2017-08-22 06:59:27.63643
6666 \N 888 2017-08-22 06:59:27.644813 2017-08-22 06:59:27.644813
6667 \N 888 2017-08-22 06:59:27.649426 2017-08-22 06:59:27.649426
6668 \N 689 2017-08-22 06:59:27.653753 2017-08-22 06:59:27.653753
6669 \N 1008 2017-08-22 06:59:27.658117 2017-08-22 06:59:27.658117
6670 \N 152 2017-08-22 06:59:27.66238 2017-08-22 06:59:27.66238
6671 \N 39 2017-08-22 06:59:27.666772 2017-08-22 06:59:27.666772
6672 \N 99 2017-08-22 06:59:27.670693 2017-08-22 06:59:27.670693
6673 \N 67 2017-08-22 06:59:27.674957 2017-08-22 06:59:27.674957
6674 \N 221 2017-08-22 06:59:27.679382 2017-08-22 06:59:27.679382
6675 \N 59 2017-08-22 06:59:27.683449 2017-08-22 06:59:27.683449
6676 \N 44 2017-08-22 06:59:27.687411 2017-08-22 06:59:27.687411
6677 \N 266 2017-08-22 06:59:27.691562 2017-08-22 06:59:27.691562
6678 \N 183 2017-08-22 06:59:27.695934 2017-08-22 06:59:27.695934
6679 \N 183 2017-08-22 06:59:27.700435 2017-08-22 06:59:27.700435
6680 \N 266 2017-08-22 06:59:27.70452 2017-08-22 06:59:27.70452
6681 \N 183 2017-08-22 06:59:27.708818 2017-08-22 06:59:27.708818
6682 \N 183 2017-08-22 06:59:27.71335 2017-08-22 06:59:27.71335
6683 \N 583 2017-08-22 06:59:27.717892 2017-08-22 06:59:27.717892
6684 \N 680 2017-08-22 06:59:27.72233 2017-08-22 06:59:27.72233
6685 \N 603 2017-08-22 06:59:27.727055 2017-08-22 06:59:27.727055
6686 \N 610 2017-08-22 06:59:27.73204 2017-08-22 06:59:27.73204
6687 \N 30 2017-08-22 06:59:27.736566 2017-08-22 06:59:27.736566
6688 \N 21 2017-08-22 06:59:27.740545 2017-08-22 06:59:27.740545
6689 \N 29 2017-08-22 06:59:27.744885 2017-08-22 06:59:27.744885
6690 \N 76 2017-08-22 06:59:27.749559 2017-08-22 06:59:27.749559
6691 \N 151 2017-08-22 06:59:27.75407 2017-08-22 06:59:27.75407
6692 \N 7 2017-08-22 06:59:27.759199 2017-08-22 06:59:27.759199
6693 \N 11 2017-08-22 06:59:27.763798 2017-08-22 06:59:27.763798
6694 \N 2895 2017-08-22 06:59:27.768105 2017-08-22 06:59:27.768105
6695 \N 254 2017-08-22 06:59:27.77238 2017-08-22 06:59:27.77238
6696 \N 410 2017-08-22 06:59:27.776921 2017-08-22 06:59:27.776921
6697 \N 233 2017-08-22 06:59:27.781448 2017-08-22 06:59:27.781448
6698 \N 233 2017-08-22 06:59:27.785573 2017-08-22 06:59:27.785573
6699 \N 883 2017-08-22 06:59:27.789782 2017-08-22 06:59:27.789782
6700 \N 498 2017-08-22 06:59:27.793946 2017-08-22 06:59:27.793946
6701 \N 198 2017-08-22 06:59:27.798106 2017-08-22 06:59:27.798106
6702 \N 208 2017-08-22 06:59:27.802094 2017-08-22 06:59:27.802094
6703 \N 577 2017-08-22 06:59:27.806301 2017-08-22 06:59:27.806301
6704 \N 826 2017-08-22 06:59:27.812405 2017-08-22 06:59:27.812405
6705 \N 405 2017-08-22 06:59:27.81664 2017-08-22 06:59:27.81664
6706 \N 344 2017-08-22 06:59:27.820844 2017-08-22 06:59:27.820844
6707 \N 419 2017-08-22 06:59:27.825423 2017-08-22 06:59:27.825423
6708 \N 957 2017-08-22 06:59:27.83025 2017-08-22 06:59:27.83025
6709 \N 601 2017-08-22 06:59:27.835224 2017-08-22 06:59:27.835224
6710 \N 500 2017-08-22 06:59:27.843669 2017-08-22 06:59:27.843669
6711 \N 287 2017-08-22 06:59:27.848497 2017-08-22 06:59:27.848497
6712 \N 363 2017-08-22 06:59:27.853508 2017-08-22 06:59:27.853508
6713 \N 470 2017-08-22 06:59:27.857852 2017-08-22 06:59:27.857852
6714 \N 254 2017-08-22 06:59:27.86246 2017-08-22 06:59:27.86246
6715 \N 323 2017-08-22 06:59:27.867688 2017-08-22 06:59:27.867688
6716 \N 273 2017-08-22 06:59:27.871981 2017-08-22 06:59:27.871981
6717 \N 570 2017-08-22 06:59:27.876912 2017-08-22 06:59:27.876912
6718 \N 1185 2017-08-22 06:59:27.881553 2017-08-22 06:59:27.881553
6719 \N 270 2017-08-22 06:59:27.885909 2017-08-22 06:59:27.885909
6720 \N 301 2017-08-22 06:59:27.890467 2017-08-22 06:59:27.890467
6721 \N 1151 2017-08-22 06:59:27.894794 2017-08-22 06:59:27.894794
6722 \N 17865 2017-08-22 06:59:27.899374 2017-08-22 06:59:27.899374
6723 \N 146 2017-08-22 06:59:27.904008 2017-08-22 06:59:27.904008
6724 \N 153 2017-08-22 06:59:27.908636 2017-08-22 06:59:27.908636
6725 \N 146 2017-08-22 06:59:27.913792 2017-08-22 06:59:27.913792
6726 \N 153 2017-08-22 06:59:27.918548 2017-08-22 06:59:27.918548
6727 \N 153 2017-08-22 06:59:27.923348 2017-08-22 06:59:27.923348
6728 \N 183 2017-08-22 06:59:27.92782 2017-08-22 06:59:27.92782
6729 \N 140 2017-08-22 06:59:27.932348 2017-08-22 06:59:27.932348
6730 \N 777 2017-08-22 06:59:27.937231 2017-08-22 06:59:27.937231
6731 \N 238 2017-08-22 06:59:27.942292 2017-08-22 06:59:27.942292
6732 \N 961 2017-08-22 06:59:27.957845 2017-08-22 06:59:27.957845
6733 \N 86 2017-08-22 06:59:27.969647 2017-08-22 06:59:27.969647
6734 \N 4147 2017-08-22 06:59:27.976037 2017-08-22 06:59:27.976037
6735 \N 4034 2017-08-22 06:59:27.981002 2017-08-22 06:59:27.981002
6736 \N 4034 2017-08-22 06:59:27.985259 2017-08-22 06:59:27.985259
6737 \N 4466 2017-08-22 06:59:27.989242 2017-08-22 06:59:27.989242
6738 \N 5950 2017-08-22 06:59:27.993795 2017-08-22 06:59:27.993795
6739 \N 5950 2017-08-22 06:59:27.998174 2017-08-22 06:59:27.998174
6740 \N 5950 2017-08-22 06:59:28.00224 2017-08-22 06:59:28.00224
6741 \N 5950 2017-08-22 06:59:28.006127 2017-08-22 06:59:28.006127
6742 \N 6837 2017-08-22 06:59:28.01075 2017-08-22 06:59:28.01075
6743 \N 6837 2017-08-22 06:59:28.015625 2017-08-22 06:59:28.015625
6744 \N 6837 2017-08-22 06:59:28.020035 2017-08-22 06:59:28.020035
6745 \N 6837 2017-08-22 06:59:28.02463 2017-08-22 06:59:28.02463
6746 \N 8856 2017-08-22 06:59:28.028765 2017-08-22 06:59:28.028765
6747 \N 8265 2017-08-22 06:59:28.033519 2017-08-22 06:59:28.033519
6748 \N 8265 2017-08-22 06:59:28.037819 2017-08-22 06:59:28.037819
6749 \N 8265 2017-08-22 06:59:28.042743 2017-08-22 06:59:28.042743
6750 \N 4540 2017-08-22 06:59:28.0476 2017-08-22 06:59:28.0476
6751 \N 4540 2017-08-22 06:59:28.052262 2017-08-22 06:59:28.052262
6752 \N 4540 2017-08-22 06:59:28.057433 2017-08-22 06:59:28.057433
6753 \N 4540 2017-08-22 06:59:28.062688 2017-08-22 06:59:28.062688
6754 \N 5222 2017-08-22 06:59:28.067601 2017-08-22 06:59:28.067601
6755 \N 6697 2017-08-22 06:59:28.072313 2017-08-22 06:59:28.072313
6756 \N 6523 2017-08-22 06:59:28.076666 2017-08-22 06:59:28.076666
6757 \N 6523 2017-08-22 06:59:28.081425 2017-08-22 06:59:28.081425
6758 \N 6803 2017-08-22 06:59:28.085631 2017-08-22 06:59:28.085631
6759 \N 8385 2017-08-22 06:59:28.089655 2017-08-22 06:59:28.089655
6760 \N 8366 2017-08-22 06:59:28.094372 2017-08-22 06:59:28.094372
6761 \N 8168 2017-08-22 06:59:28.098865 2017-08-22 06:59:28.098865
6762 \N 8677 2017-08-22 06:59:28.103576 2017-08-22 06:59:28.103576
6763 \N 8677 2017-08-22 06:59:28.107688 2017-08-22 06:59:28.107688
6764 \N 8677 2017-08-22 06:59:28.113039 2017-08-22 06:59:28.113039
6765 \N 8677 2017-08-22 06:59:28.117174 2017-08-22 06:59:28.117174
6766 \N 10894 2017-08-22 06:59:28.121066 2017-08-22 06:59:28.121066
6767 \N 8439 2017-08-22 06:59:28.125354 2017-08-22 06:59:28.125354
6768 \N 10894 2017-08-22 06:59:28.129693 2017-08-22 06:59:28.129693
6769 \N 8780 2017-08-22 06:59:28.133957 2017-08-22 06:59:28.133957
6770 \N 4093 2017-08-22 06:59:28.137963 2017-08-22 06:59:28.137963
6771 \N 4093 2017-08-22 06:59:28.142111 2017-08-22 06:59:28.142111
6772 \N 4093 2017-08-22 06:59:28.146352 2017-08-22 06:59:28.146352
6773 \N 4093 2017-08-22 06:59:28.150631 2017-08-22 06:59:28.150631
6774 \N 4445 2017-08-22 06:59:28.154866 2017-08-22 06:59:28.154866
6775 \N 4445 2017-08-22 06:59:28.159093 2017-08-22 06:59:28.159093
6776 \N 4445 2017-08-22 06:59:28.163468 2017-08-22 06:59:28.163468
6777 \N 4445 2017-08-22 06:59:28.167668 2017-08-22 06:59:28.167668
6778 \N 4929 2017-08-22 06:59:28.172022 2017-08-22 06:59:28.172022
6779 \N 4929 2017-08-22 06:59:28.176934 2017-08-22 06:59:28.176934
6780 \N 4929 2017-08-22 06:59:28.18142 2017-08-22 06:59:28.18142
6781 \N 4929 2017-08-22 06:59:28.185772 2017-08-22 06:59:28.185772
6782 \N 5690 2017-08-22 06:59:28.189729 2017-08-22 06:59:28.189729
6783 \N 5690 2017-08-22 06:59:28.193931 2017-08-22 06:59:28.193931
6784 \N 5690 2017-08-22 06:59:28.198233 2017-08-22 06:59:28.198233
6785 \N 5690 2017-08-22 06:59:28.20296 2017-08-22 06:59:28.20296
6786 \N 6511 2017-08-22 06:59:28.207097 2017-08-22 06:59:28.207097
6787 \N 6511 2017-08-22 06:59:28.211447 2017-08-22 06:59:28.211447
6788 \N 6270 2017-08-22 06:59:28.216166 2017-08-22 06:59:28.216166
6789 \N 6270 2017-08-22 06:59:28.220888 2017-08-22 06:59:28.220888
6790 \N 7252 2017-08-22 06:59:28.225405 2017-08-22 06:59:28.225405
6791 \N 7396 2017-08-22 06:59:28.230337 2017-08-22 06:59:28.230337
6792 \N 7396 2017-08-22 06:59:28.235113 2017-08-22 06:59:28.235113
6793 \N 7396 2017-08-22 06:59:28.239569 2017-08-22 06:59:28.239569
6794 \N 9413 2017-08-22 06:59:28.244485 2017-08-22 06:59:28.244485
6795 \N 9413 2017-08-22 06:59:28.249206 2017-08-22 06:59:28.249206
6796 \N 9413 2017-08-22 06:59:28.253695 2017-08-22 06:59:28.253695
6797 \N 9413 2017-08-22 06:59:28.258403 2017-08-22 06:59:28.258403
6798 \N 108 2017-08-22 06:59:28.262373 2017-08-22 06:59:28.262373
6799 \N 151 2017-08-22 06:59:28.266703 2017-08-22 06:59:28.266703
6800 \N 106 2017-08-22 06:59:28.270765 2017-08-22 06:59:28.270765
6801 \N 137 2017-08-22 06:59:28.274794 2017-08-22 06:59:28.274794
6802 \N 89 2017-08-22 06:59:28.279082 2017-08-22 06:59:28.279082
6803 \N 658 2017-08-22 06:59:28.283188 2017-08-22 06:59:28.283188
6804 \N 2099 2017-08-22 06:59:28.287885 2017-08-22 06:59:28.287885
6805 \N 2543 2017-08-22 06:59:28.292654 2017-08-22 06:59:28.292654
6806 \N 2951 2017-08-22 06:59:28.29692 2017-08-22 06:59:28.29692
6807 \N 3388 2017-08-22 06:59:28.301038 2017-08-22 06:59:28.301038
6808 \N 2700 2017-08-22 06:59:28.304821 2017-08-22 06:59:28.304821
6809 \N 162 2017-08-22 06:59:28.309036 2017-08-22 06:59:28.309036
6810 \N 509 2017-08-22 06:59:28.313614 2017-08-22 06:59:28.313614
6811 \N 539 2017-08-22 06:59:28.317655 2017-08-22 06:59:28.317655
6812 \N 639 2017-08-22 06:59:28.322236 2017-08-22 06:59:28.322236
6813 \N 742 2017-08-22 06:59:28.326698 2017-08-22 06:59:28.326698
6814 \N 925 2017-08-22 06:59:28.331656 2017-08-22 06:59:28.331656
6815 \N 804 2017-08-22 06:59:28.336188 2017-08-22 06:59:28.336188
6816 \N 804 2017-08-22 06:59:28.343547 2017-08-22 06:59:28.343547
6817 \N 921 2017-08-22 06:59:28.348416 2017-08-22 06:59:28.348416
6818 \N 1494 2017-08-22 06:59:28.352333 2017-08-22 06:59:28.352333
6819 \N 1439 2017-08-22 06:59:28.356472 2017-08-22 06:59:28.356472
6820 \N 1494 2017-08-22 06:59:28.3609 2017-08-22 06:59:28.3609
6821 \N 553 2017-08-22 06:59:28.365562 2017-08-22 06:59:28.365562
6822 \N 404 2017-08-22 06:59:28.370241 2017-08-22 06:59:28.370241
6823 \N 686 2017-08-22 06:59:28.374681 2017-08-22 06:59:28.374681
6824 \N 751 2017-08-22 06:59:28.378865 2017-08-22 06:59:28.378865
6825 \N 882 2017-08-22 06:59:28.383298 2017-08-22 06:59:28.383298
6826 \N 1017 2017-08-22 06:59:28.387515 2017-08-22 06:59:28.387515
6827 \N 1305 2017-08-22 06:59:28.391678 2017-08-22 06:59:28.391678
6828 \N 1507 2017-08-22 06:59:28.397024 2017-08-22 06:59:28.397024
6829 \N 346 2017-08-22 06:59:28.401988 2017-08-22 06:59:28.401988
6830 \N 88 2017-08-22 06:59:28.40637 2017-08-22 06:59:28.40637
6831 \N 347 2017-08-22 06:59:28.411223 2017-08-22 06:59:28.411223
6832 \N 132 2017-08-22 06:59:28.415653 2017-08-22 06:59:28.415653
6833 \N 1359 2017-08-22 06:59:28.419894 2017-08-22 06:59:28.419894
6834 \N 554 2017-08-22 06:59:28.424109 2017-08-22 06:59:28.424109
6835 \N 243 2017-08-22 06:59:28.428489 2017-08-22 06:59:28.428489
6836 \N 670 2017-08-22 06:59:28.432723 2017-08-22 06:59:28.432723
6837 \N 544 2017-08-22 06:59:28.437017 2017-08-22 06:59:28.437017
6838 \N 261 2017-08-22 06:59:28.441373 2017-08-22 06:59:28.441373
6839 \N 4192 2017-08-22 06:59:28.446158 2017-08-22 06:59:28.446158
6840 \N 4264 2017-08-22 06:59:28.451074 2017-08-22 06:59:28.451074
6841 \N 4264 2017-08-22 06:59:28.455438 2017-08-22 06:59:28.455438
6842 \N 4264 2017-08-22 06:59:28.460163 2017-08-22 06:59:28.460163
6843 \N 5270 2017-08-22 06:59:28.464531 2017-08-22 06:59:28.464531
6844 \N 5270 2017-08-22 06:59:28.468537 2017-08-22 06:59:28.468537
6845 \N 5270 2017-08-22 06:59:28.472818 2017-08-22 06:59:28.472818
6846 \N 5950 2017-08-22 06:59:28.477511 2017-08-22 06:59:28.477511
6847 \N 5950 2017-08-22 06:59:28.481777 2017-08-22 06:59:28.481777
6848 \N 5949 2017-08-22 06:59:28.485649 2017-08-22 06:59:28.485649
6849 \N 5949 2017-08-22 06:59:28.489527 2017-08-22 06:59:28.489527
6850 \N 6390 2017-08-22 06:59:28.494039 2017-08-22 06:59:28.494039
6851 \N 6390 2017-08-22 06:59:28.498249 2017-08-22 06:59:28.498249
6852 \N 6390 2017-08-22 06:59:28.502401 2017-08-22 06:59:28.502401
6853 \N 6390 2017-08-22 06:59:28.506424 2017-08-22 06:59:28.506424
6854 \N 7719 2017-08-22 06:59:28.511593 2017-08-22 06:59:28.511593
6855 \N 7719 2017-08-22 06:59:28.515966 2017-08-22 06:59:28.515966
6856 \N 7719 2017-08-22 06:59:28.520349 2017-08-22 06:59:28.520349
6857 \N 7719 2017-08-22 06:59:28.525047 2017-08-22 06:59:28.525047
6858 \N 5551 2017-08-22 06:59:28.530247 2017-08-22 06:59:28.530247
6859 \N 5551 2017-08-22 06:59:28.535113 2017-08-22 06:59:28.535113
6860 \N 6657 2017-08-22 06:59:28.539976 2017-08-22 06:59:28.539976
6861 \N 5551 2017-08-22 06:59:28.544385 2017-08-22 06:59:28.544385
6862 \N 6374 2017-08-22 06:59:28.549126 2017-08-22 06:59:28.549126
6863 \N 6374 2017-08-22 06:59:28.553597 2017-08-22 06:59:28.553597
6864 \N 6139 2017-08-22 06:59:28.560774 2017-08-22 06:59:28.560774
6865 \N 6374 2017-08-22 06:59:28.565328 2017-08-22 06:59:28.565328
6866 \N 108 2017-08-22 06:59:28.569822 2017-08-22 06:59:28.569822
6867 \N 151 2017-08-22 06:59:28.574593 2017-08-22 06:59:28.574593
6868 \N 106 2017-08-22 06:59:28.579345 2017-08-22 06:59:28.579345
6869 \N 137 2017-08-22 06:59:28.58378 2017-08-22 06:59:28.58378
6870 \N 89 2017-08-22 06:59:28.588178 2017-08-22 06:59:28.588178
6871 \N 658 2017-08-22 06:59:28.593026 2017-08-22 06:59:28.593026
6872 \N 2582 2017-08-22 06:59:28.597781 2017-08-22 06:59:28.597781
6873 \N 2543 2017-08-22 06:59:28.602365 2017-08-22 06:59:28.602365
6874 \N 2951 2017-08-22 06:59:28.607192 2017-08-22 06:59:28.607192
6875 \N 3388 2017-08-22 06:59:28.611956 2017-08-22 06:59:28.611956
6876 \N 162 2017-08-22 06:59:28.616117 2017-08-22 06:59:28.616117
6877 \N 509 2017-08-22 06:59:28.620207 2017-08-22 06:59:28.620207
6878 \N 539 2017-08-22 06:59:28.625552 2017-08-22 06:59:28.625552
6879 \N 322 2017-08-22 06:59:28.629785 2017-08-22 06:59:28.629785
6880 \N 162 2017-08-22 06:59:28.634413 2017-08-22 06:59:28.634413
6881 \N 425 2017-08-22 06:59:28.638994 2017-08-22 06:59:28.638994
6882 \N 418 2017-08-22 06:59:28.645702 2017-08-22 06:59:28.645702
6883 \N 434 2017-08-22 06:59:28.650142 2017-08-22 06:59:28.650142
6884 \N 391 2017-08-22 06:59:28.654075 2017-08-22 06:59:28.654075
6885 \N 162 2017-08-22 06:59:28.658201 2017-08-22 06:59:28.658201
6886 \N 553 2017-08-22 06:59:28.662872 2017-08-22 06:59:28.662872
6887 \N 404 2017-08-22 06:59:28.667507 2017-08-22 06:59:28.667507
6888 \N 686 2017-08-22 06:59:28.672064 2017-08-22 06:59:28.672064
6889 \N 751 2017-08-22 06:59:28.67729 2017-08-22 06:59:28.67729
6890 \N 1017 2017-08-22 06:59:28.682402 2017-08-22 06:59:28.682402
6891 \N 1507 2017-08-22 06:59:28.687502 2017-08-22 06:59:28.687502
6892 \N 1969 2017-08-22 06:59:28.692361 2017-08-22 06:59:28.692361
6893 \N 88 2017-08-22 06:59:28.697482 2017-08-22 06:59:28.697482
6894 \N 419 2017-08-22 06:59:28.702965 2017-08-22 06:59:28.702965
6895 \N 290 2017-08-22 06:59:28.707842 2017-08-22 06:59:28.707842
6896 \N 347 2017-08-22 06:59:28.711882 2017-08-22 06:59:28.711882
6897 \N 1359 2017-08-22 06:59:28.716172 2017-08-22 06:59:28.716172
6898 \N 554 2017-08-22 06:59:28.720225 2017-08-22 06:59:28.720225
6899 \N 243 2017-08-22 06:59:28.724287 2017-08-22 06:59:28.724287
6900 \N 670 2017-08-22 06:59:28.728595 2017-08-22 06:59:28.728595
6901 \N 30 2017-08-22 06:59:28.733277 2017-08-22 06:59:28.733277
6902 \N 442 2017-08-22 06:59:28.738204 2017-08-22 06:59:28.738204
6903 \N 1013 2017-08-22 06:59:28.742509 2017-08-22 06:59:28.742509
6904 \N 1156 2017-08-22 06:59:28.747327 2017-08-22 06:59:28.747327
6905 \N 86 2017-08-22 06:59:28.751733 2017-08-22 06:59:28.751733
6906 \N 2179 2017-08-22 06:59:28.755827 2017-08-22 06:59:28.755827
6907 \N 1530 2017-08-22 06:59:28.761053 2017-08-22 06:59:28.761053
6908 \N 269 2017-08-22 06:59:28.76521 2017-08-22 06:59:28.76521
6909 \N 227 2017-08-22 06:59:28.769232 2017-08-22 06:59:28.769232
6910 \N 227 2017-08-22 06:59:28.773011 2017-08-22 06:59:28.773011
6911 \N 227 2017-08-22 06:59:28.777302 2017-08-22 06:59:28.777302
6912 \N 227 2017-08-22 06:59:28.781416 2017-08-22 06:59:28.781416
6913 \N 318 2017-08-22 06:59:28.785209 2017-08-22 06:59:28.785209
6914 \N 318 2017-08-22 06:59:28.78953 2017-08-22 06:59:28.78953
6915 \N 329 2017-08-22 06:59:28.793562 2017-08-22 06:59:28.793562
6916 \N 318 2017-08-22 06:59:28.797817 2017-08-22 06:59:28.797817
6917 \N 318 2017-08-22 06:59:28.801936 2017-08-22 06:59:28.801936
6918 \N 318 2017-08-22 06:59:28.806426 2017-08-22 06:59:28.806426
6919 \N 318 2017-08-22 06:59:28.811223 2017-08-22 06:59:28.811223
6920 \N 200 2017-08-22 06:59:28.815122 2017-08-22 06:59:28.815122
6921 \N 221 2017-08-22 06:59:28.818995 2017-08-22 06:59:28.818995
6922 \N 200 2017-08-22 06:59:28.822969 2017-08-22 06:59:28.822969
6923 \N 221 2017-08-22 06:59:28.827268 2017-08-22 06:59:28.827268
6924 \N 23 2017-08-22 06:59:28.831527 2017-08-22 06:59:28.831527
6925 \N 41 2017-08-22 06:59:28.835799 2017-08-22 06:59:28.835799
6926 \N 73 2017-08-22 06:59:28.840028 2017-08-22 06:59:28.840028
6927 \N 73 2017-08-22 06:59:28.844307 2017-08-22 06:59:28.844307
6928 \N 73 2017-08-22 06:59:28.848866 2017-08-22 06:59:28.848866
6929 \N 2036 2017-08-22 06:59:28.85302 2017-08-22 06:59:28.85302
6930 \N 2036 2017-08-22 06:59:28.861132 2017-08-22 06:59:28.861132
6931 \N 25 2017-08-22 06:59:28.865858 2017-08-22 06:59:28.865858