-
Notifications
You must be signed in to change notification settings - Fork 4
/
logs.txt
1500 lines (1500 loc) · 293 KB
/
logs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020-06-22T06:30:04.772795+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=6sT-TjUPjHlO39ePABLC" host=www.minglr.us request_id=b30ecb46-eb8a-4adb-b125-f77e86cd40e3 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84894ms status=101 bytes=175 protocol=https
2020-06-22T06:30:06.990649+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=7pg1EMZwcfChy7J2ABLD" host=www.minglr.us request_id=bd2c178e-b2bf-42d4-bfcb-7d523e1dfe88 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84884ms status=101 bytes=175 protocol=https
2020-06-22T06:30:20.473321+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=b951IgRvi9YPQpw0ABLE" host=www.minglr.us request_id=70551b3f-a44f-47bd-a7ba-6ba8c22d1234 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84690ms status=101 bytes=175 protocol=https
2020-06-22T06:30:22.461710+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=t-8ZZoPGz5pPD4moABK_" host=www.minglr.us request_id=cfb12017-cca1-4a80-a5a7-db3085afdc0b fwd="98.229.123.184" dyno=web.1 connect=1ms service=110645ms status=101 bytes=175 protocol=https
2020-06-22T06:30:30.145490+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQk9Tk" host=www.minglr.us request_id=5fea04ff-ca6c-4c52-9b1d-122b5bbf0413 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:30:30.148302+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:32.124715+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQk9z2" host=www.minglr.us request_id=149ffcc1-2ccb-4963-9c43-da1bad6981d7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:30:32.134532+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:34.891534+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkAeN" host=www.minglr.us request_id=8d0607fb-e392-42b8-917b-94774722e0fa fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:30:34.893732+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:38.080435+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkBQ4" host=www.minglr.us request_id=b82f3374-7d93-4b2b-a57c-598ce82d9c5b fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:30:38.082317+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:38.090631+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkBQ5" host=www.minglr.us request_id=d992e081-10ee-498f-a21f-cab2f9ad3132 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:30:38.092772+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:38.428530+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkBSQ&sid=bHM5s1nkjxvu3a9KABLI" host=www.minglr.us request_id=e2ef86a1-a441-4e83-98c2-6f6bd3e626b2 fwd="98.229.123.184" dyno=web.1 connect=0ms service=295ms status=200 bytes=242 protocol=https
2020-06-22T06:30:38.604465+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkBSr&sid=U5Xj-7hgGzuFwcDfABLJ" host=www.minglr.us request_id=7519e3a2-8db9-42af-9b6b-b8ad6a590bbb fwd="98.229.123.184" dyno=web.1 connect=1ms service=444ms status=200 bytes=242 protocol=https
2020-06-22T06:30:41.067402+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkCAF" host=www.minglr.us request_id=5355d108-948e-46f0-8f4c-6eacf40b873a fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:30:41.070159+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:30:41.410089+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkCB2&sid=HTysk7is83Q1wdi6ABLK" host=www.minglr.us request_id=3b063040-c499-4be6-ae66-62d96d4d8d22 fwd="98.229.123.184" dyno=web.1 connect=1ms service=291ms status=200 bytes=242 protocol=https
2020-06-22T06:30:55.204764+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkFd3&sid=TxL1BwEP_iWpZW8fABLF" host=www.minglr.us request_id=4080d3f8-4e15-4988-a472-8e81333edad9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T06:30:55.204930+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQk9WN&sid=TxL1BwEP_iWpZW8fABLF" host=www.minglr.us request_id=b412dc28-1e20-47c0-82b6-aab18528de6e fwd="98.229.123.184" dyno=web.1 connect=0ms service=25017ms status=200 bytes=242 protocol=https
2020-06-22T06:30:57.194172+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkG69&sid=02wnukG3aEmeQjssABLG" host=www.minglr.us request_id=3c84c501-0b0a-4a24-9fbc-1e880315323d fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=285 protocol=https
2020-06-22T06:30:57.195226+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQk9_N&sid=02wnukG3aEmeQjssABLG" host=www.minglr.us request_id=02759491-f9dc-4bb6-9762-6e3d5ab9fb61 fwd="98.229.123.184" dyno=web.1 connect=0ms service=25023ms status=200 bytes=242 protocol=https
2020-06-22T06:30:59.950420+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkGnD&sid=LqsylXkuWfPBsIjOABLH" host=www.minglr.us request_id=29f4eba1-5bc7-4906-9ac3-8c9bf1d6b201 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=285 protocol=https
2020-06-22T06:30:59.950645+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkAgX&sid=LqsylXkuWfPBsIjOABLH" host=www.minglr.us request_id=f0069a4d-90b5-4463-ab37-281abad34754 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25016ms status=200 bytes=242 protocol=https
2020-06-22T06:31:25.206178+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:25.207178+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkFfr&sid=TxL1BwEP_iWpZW8fABLF" host=www.minglr.us request_id=94a22595-e7f5-4d28-84f3-bca4daa44735 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29837ms status=200 bytes=242 protocol=https
2020-06-22T06:31:27.198072+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:27.199089+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkG8r&sid=02wnukG3aEmeQjssABLG" host=www.minglr.us request_id=f7a5e8ca-4d15-4728-afb5-4280c54bf501 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29833ms status=200 bytes=242 protocol=https
2020-06-22T06:31:29.950100+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:29.951760+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkGo6&sid=LqsylXkuWfPBsIjOABLH" host=www.minglr.us request_id=9891f2cd-44f4-4d82-916e-e80a2c7e34ee fwd="98.229.123.184" dyno=web.1 connect=1ms service=29953ms status=200 bytes=242 protocol=https
2020-06-22T06:31:30.250321+00:00 app[web.1]: remove David
2020-06-22T06:31:32.213200+00:00 app[web.1]: remove David
2020-06-22T06:31:33.138512+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:33.986155+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkP4p&sid=TxL1BwEP_iWpZW8fABLF" host=www.minglr.us request_id=916c1c64-4051-4d69-b838-9dd5b14f95d5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T06:31:34.152731+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:34.188536+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=U5Xj-7hgGzuFwcDfABLJ" host=www.minglr.us request_id=61b6b9a8-4c00-4768-9ff3-d449e1a94a56 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55728ms status=101 bytes=175 protocol=https
2020-06-22T06:31:34.262413+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bHM5s1nkjxvu3a9KABLI" host=www.minglr.us request_id=b78b68a6-ee89-4819-83bf-f21a0ba1b353 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55994ms status=101 bytes=175 protocol=https
2020-06-22T06:31:34.979823+00:00 app[web.1]: remove David
2020-06-22T06:31:35.051245+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkPLX&sid=TxL1BwEP_iWpZW8fABLF" host=www.minglr.us request_id=ec6e8a07-cf2f-4b57-ac19-d3fdcd837626 fwd="98.229.123.184" dyno=web.1 connect=0ms service=18ms status=400 bytes=288 protocol=https
2020-06-22T06:31:35.056151+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQkPLY&sid=02wnukG3aEmeQjssABLG" host=www.minglr.us request_id=fef96b01-12a9-4897-83e2-93e8bed7ee25 fwd="98.229.123.184" dyno=web.1 connect=1ms service=23ms status=400 bytes=288 protocol=https
2020-06-22T06:31:35.169856+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=02wnukG3aEmeQjssABLG" host=www.minglr.us request_id=52b551e5-3b5d-4c0d-9055-51f1b99a467d fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=400 bytes=110 protocol=https
2020-06-22T06:31:36.100090+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPcE" host=www.minglr.us request_id=4bebad04-1c8e-44ef-b9e9-7242401c3c35 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:31:36.111374+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPcG" host=www.minglr.us request_id=0b6e25ef-98c1-4387-9e55-1eeedbf55aa6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=12ms status=200 bytes=344 protocol=https
2020-06-22T06:31:36.123432+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:36.164556+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:36.169268+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPcF" host=www.minglr.us request_id=c8dd967e-9dbe-4f03-b1ff-cdde7bcd5b22 fwd="98.229.123.184" dyno=web.1 connect=0ms service=67ms status=200 bytes=344 protocol=https
2020-06-22T06:31:36.170029+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:36.174817+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:36.361028+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=HTysk7is83Q1wdi6ABLK" host=www.minglr.us request_id=4884fb8c-5077-4970-8e93-59fc7660a300 fwd="98.229.123.184" dyno=web.1 connect=1ms service=55103ms status=101 bytes=175 protocol=https
2020-06-22T06:31:36.773795+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPcy&sid=qQRdbuX3HmVilURTABLL" host=www.minglr.us request_id=132500a3-1e87-428f-abd8-7786d5147871 fwd="98.229.123.184" dyno=web.1 connect=0ms service=623ms status=200 bytes=242 protocol=https
2020-06-22T06:31:36.976938+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPod&sid=qQRdbuX3HmVilURTABLL" host=www.minglr.us request_id=573cecf2-5588-4c3a-bfbe-fa0d3a2948f5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=81ms status=200 bytes=242 protocol=https
2020-06-22T06:31:37.126908+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPrt" host=www.minglr.us request_id=12df2468-bc5c-43bd-8f7a-e3a0972e2f55 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:31:37.129750+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:37.232957+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPd7&sid=Sadg9_bpGtlddIMmABLM" host=www.minglr.us request_id=d2ce5400-5ae6-4ff8-82d8-c0929ac5ec93 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1072ms status=200 bytes=242 protocol=https
2020-06-22T06:31:37.439803+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPgO&sid=PtXoBaSU5eQTYaviABLN" host=www.minglr.us request_id=8c43f6b7-6e06-47a3-912f-beac565c6b25 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1073ms status=200 bytes=242 protocol=https
2020-06-22T06:31:37.483702+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkPsv&sid=QiDzfHPM0WH4URjTABLO" host=www.minglr.us request_id=d2401d5d-7212-481d-8ca3-4f7c7300179f fwd="98.229.123.184" dyno=web.1 connect=0ms service=310ms status=200 bytes=242 protocol=https
2020-06-22T06:31:38.103563+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkQ5Y" host=www.minglr.us request_id=63c62087-f27f-49b7-b32e-466b191b5a25 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:31:38.106748+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkQ5X" host=www.minglr.us request_id=7054ddfd-8deb-4314-bd84-f439e81216f4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:31:38.107790+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:38.109527+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:31:38.466710+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkQ6B&sid=AoRcRL2mDbfr1Zx3ABLP" host=www.minglr.us request_id=45ae3875-69c9-48bf-aa2b-2df1618a0964 fwd="98.229.123.184" dyno=web.1 connect=1ms service=321ms status=200 bytes=242 protocol=https
2020-06-22T06:31:38.673915+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkQ6E&sid=pdFyEZVSLQUAm4GsABLQ" host=www.minglr.us request_id=97de26f6-cc79-4b14-9a8c-8c904991b579 fwd="98.229.123.184" dyno=web.1 connect=0ms service=524ms status=200 bytes=242 protocol=https
2020-06-22T06:32:32.235190+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:32.240438+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:33.171123+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:33.172159+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:33.172915+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:37.241714+00:00 app[web.1]: remove David
2020-06-22T06:32:37.243872+00:00 app[web.1]: remove David
2020-06-22T06:32:38.174859+00:00 app[web.1]: remove David
2020-06-22T06:32:38.176466+00:00 app[web.1]: remove David
2020-06-22T06:32:38.177723+00:00 app[web.1]: remove David
2020-06-22T06:32:40.474965+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=PtXoBaSU5eQTYaviABLN" host=www.minglr.us request_id=2bc07dbe-f9fc-4fa5-8b1c-578dbcc43aef fwd="98.229.123.184" dyno=web.1 connect=1ms service=63213ms status=101 bytes=175 protocol=https
2020-06-22T06:32:40.989911+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=Sadg9_bpGtlddIMmABLM" host=www.minglr.us request_id=7a572382-ecf1-47b2-b785-f976febf28f9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=63999ms status=101 bytes=175 protocol=https
2020-06-22T06:32:41.588622+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=AoRcRL2mDbfr1Zx3ABLP" host=www.minglr.us request_id=622e6141-140c-4fc0-aed2-485257a2c464 fwd="98.229.123.184" dyno=web.1 connect=1ms service=63264ms status=101 bytes=175 protocol=https
2020-06-22T06:32:41.845590+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=pdFyEZVSLQUAm4GsABLQ" host=www.minglr.us request_id=9602ccc9-03a5-4520-8759-200d9ebeeef9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=63345ms status=101 bytes=175 protocol=https
2020-06-22T06:32:42.074223+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfhX" host=www.minglr.us request_id=d3e33997-f582-4631-ab36-c6ef20e965da fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:32:42.083748+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:42.387768+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfjn&sid=1hCtqAt_iXBrBxdCABLR" host=www.minglr.us request_id=68830e15-0ad8-4a77-be9c-05f739f6a99b fwd="98.229.123.184" dyno=web.1 connect=0ms service=270ms status=200 bytes=242 protocol=https
2020-06-22T06:32:42.431464+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=QiDzfHPM0WH4URjTABLO" host=www.minglr.us request_id=36e4329f-24fc-47ae-95b4-b98d295ef548 fwd="98.229.123.184" dyno=web.1 connect=0ms service=65093ms status=101 bytes=175 protocol=https
2020-06-22T06:32:42.986951+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfxD" host=www.minglr.us request_id=70438092-a2fc-4a34-b70a-30aad62ea1b5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:32:42.988125+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:43.044715+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfxE" host=www.minglr.us request_id=45c29f10-0e0e-4f43-b2d1-f65df73e6887 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:32:43.046541+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:43.107241+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfxE.0" host=www.minglr.us request_id=e38468e7-76fd-4ccc-a759-2b32a536ca5c fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:32:43.107576+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:43.304397+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfy9&sid=wOe54EEHdxHqRshmABLS" host=www.minglr.us request_id=4f8a57a2-6a1a-4582-9193-f86eae8aa4ae fwd="98.229.123.184" dyno=web.1 connect=0ms service=168ms status=200 bytes=242 protocol=https
2020-06-22T06:32:43.466888+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfyv&sid=MixPiLcfafi39DlBABLT" host=www.minglr.us request_id=99b93cc2-d889-4aff-a663-fadbaa3cf04b fwd="98.229.123.184" dyno=web.1 connect=1ms service=382ms status=200 bytes=242 protocol=https
2020-06-22T06:32:43.620913+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkfzv&sid=KaekvLK0UfgBUZwKABLU" host=www.minglr.us request_id=b2778984-599d-467b-a449-d536de59b01f fwd="98.229.123.184" dyno=web.1 connect=1ms service=469ms status=200 bytes=242 protocol=https
2020-06-22T06:32:43.990223+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkgA_" host=www.minglr.us request_id=6a5589f0-56ce-42f5-aa71-41e6a67a50a0 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:32:43.991784+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:44.287674+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkgBh&sid=QKrXjLrMP2alm-SlABLV" host=www.minglr.us request_id=2faccf55-95b2-4c8c-ab3d-c550ea185bfb fwd="98.229.123.184" dyno=web.1 connect=1ms service=250ms status=200 bytes=242 protocol=https
2020-06-22T06:32:56.311785+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:56.373169+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=qQRdbuX3HmVilURTABLL" host=www.minglr.us request_id=e21623cd-1d61-4763-9fdf-fbbf69dce390 fwd="98.229.123.184" dyno=web.1 connect=0ms service=79914ms status=101 bytes=175 protocol=https
2020-06-22T06:32:57.391913+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkjSJ" host=www.minglr.us request_id=b997a565-3d9e-40b6-9ae4-1695abe1e6f1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:32:57.393299+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:32:57.744427+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkjTL&sid=wfwnzendNdJLm5L9ABLW" host=www.minglr.us request_id=9beaca7d-5357-4d25-9e5b-5cbf27e26da7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=285ms status=200 bytes=242 protocol=https
2020-06-22T06:33:37.173938+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:38.133783+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:38.136341+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:39.145081+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:39.146571+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:42.177901+00:00 app[web.1]: remove David
2020-06-22T06:33:42.288566+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=MixPiLcfafi39DlBABLT" host=www.minglr.us request_id=c604dfbd-d976-484c-8e1b-46b487c52bb7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=58964ms status=101 bytes=175 protocol=https
2020-06-22T06:33:43.138584+00:00 app[web.1]: remove David
2020-06-22T06:33:43.140310+00:00 app[web.1]: remove David
2020-06-22T06:33:43.447402+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=QKrXjLrMP2alm-SlABLV" host=www.minglr.us request_id=da7d88de-9804-4f12-885d-56db0c4945ab fwd="98.229.123.184" dyno=web.1 connect=0ms service=59304ms status=101 bytes=175 protocol=https
2020-06-22T06:33:43.709361+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=KaekvLK0UfgBUZwKABLU" host=www.minglr.us request_id=03c952f7-f10e-487c-96ad-418eb4d83e6c fwd="98.229.123.184" dyno=web.1 connect=4ms service=60238ms status=101 bytes=175 protocol=https
2020-06-22T06:33:43.974094+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkuq9" host=www.minglr.us request_id=79b4a4db-2d3d-4278-8254-c88fbae1c23b fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:33:43.975181+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:44.328768+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkuqv&sid=xc79uCC6rih5Oe-rABLX" host=www.minglr.us request_id=87ba4fdf-70b9-4a0d-b569-d310b0205833 fwd="98.229.123.184" dyno=web.1 connect=1ms service=317ms status=200 bytes=242 protocol=https
2020-06-22T06:33:44.971835+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=1hCtqAt_iXBrBxdCABLR" host=www.minglr.us request_id=19f16dd0-1114-4557-8dfb-2eee5b8f019a fwd="98.229.123.184" dyno=web.1 connect=1ms service=62724ms status=101 bytes=175 protocol=https
2020-06-22T06:33:45.241115+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:45.241982+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv81" host=www.minglr.us request_id=c615c929-6891-4f7a-b8ed-c7da577f5c2f fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T06:33:45.242253+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv80" host=www.minglr.us request_id=768003d9-5013-4c4e-ba37-d19bdb2db23d fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T06:33:45.242776+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:45.563499+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv91&sid=hmqTTlL6R_XOgV_eABLZ" host=www.minglr.us request_id=d819e3c7-08b4-4e1f-bc54-ed34550f5a23 fwd="98.229.123.184" dyno=web.1 connect=1ms service=261ms status=200 bytes=242 protocol=https
2020-06-22T06:33:45.759458+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv93&sid=lVUb8DqiaLOg3SrfABLY" host=www.minglr.us request_id=d821fff7-09b7-43c1-b487-805411a69bfe fwd="98.229.123.184" dyno=web.1 connect=1ms service=447ms status=200 bytes=242 protocol=https
2020-06-22T06:33:46.013429+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=wOe54EEHdxHqRshmABLS" host=www.minglr.us request_id=beee6fbf-a071-4baa-879a-aa3ccb7f765f fwd="98.229.123.184" dyno=web.1 connect=0ms service=62854ms status=101 bytes=175 protocol=https
2020-06-22T06:33:46.481556+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkvRJ" host=www.minglr.us request_id=33c15077-e8d6-4737-9605-5ddb15d983bb fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:33:46.481696+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:46.801827+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkvS9&sid=v5--jWZtk2Te7yB_ABLa" host=www.minglr.us request_id=9daa2195-24a6-41dd-9b6d-765907a4b8f8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=270ms status=200 bytes=242 protocol=https
2020-06-22T06:33:48.723749+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv-J" host=www.minglr.us request_id=01790839-3f39-4bd6-8cf7-96214e32c417 fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:33:48.724139+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:49.021903+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkv_9&sid=0PKqKgwnYJSb6CCUABLb" host=www.minglr.us request_id=c75f58fd-06dc-4db4-a160-5e5373899700 fwd="98.229.123.184" dyno=web.1 connect=0ms service=249ms status=200 bytes=242 protocol=https
2020-06-22T06:33:52.457276+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:52.559381+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=wfwnzendNdJLm5L9ABLW" host=www.minglr.us request_id=b41b0fec-053f-4829-93f4-a75afbfd0bc6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=54967ms status=101 bytes=175 protocol=https
2020-06-22T06:33:53.593005+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:33:53.593073+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkxAL" host=www.minglr.us request_id=07baa0ca-3624-488d-91dd-83668255463c fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:33:53.933331+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQkxBU&sid=4nAB94U5bN2CpIu5ABLc" host=www.minglr.us request_id=71600d92-e388-4c06-8743-70102bd5f27c fwd="98.229.123.184" dyno=web.1 connect=0ms service=274ms status=200 bytes=242 protocol=https
2020-06-22T06:34:41.045907+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:34:41.047391+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:34:42.045954+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:34:44.057889+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:34:46.058032+00:00 app[web.1]: remove David
2020-06-22T06:34:46.060520+00:00 app[web.1]: remove David
2020-06-22T06:34:47.065940+00:00 app[web.1]: remove David
2020-06-22T06:34:48.659276+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:34:49.069848+00:00 app[web.1]: remove David
2020-06-22T06:34:53.665977+00:00 app[web.1]: remove David
2020-06-22T06:35:04.111845+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:09.133608+00:00 app[web.1]: remove David
2020-06-22T06:35:11.046378+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=hmqTTlL6R_XOgV_eABLZ" host=www.minglr.us request_id=f047ebee-c533-4866-b248-9bf7fa2c815c fwd="98.229.123.184" dyno=web.1 connect=0ms service=85630ms status=101 bytes=175 protocol=https
2020-06-22T06:35:11.050295+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=lVUb8DqiaLOg3SrfABLY" host=www.minglr.us request_id=66676cda-9453-48a6-ba2e-e9426fd314d9 fwd="98.229.123.184" dyno=web.1 connect=15ms service=85458ms status=101 bytes=175 protocol=https
2020-06-22T06:35:12.047485+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=v5--jWZtk2Te7yB_ABLa" host=www.minglr.us request_id=a7513cec-7ef3-4532-9ee5-c047d2589421 fwd="98.229.123.184" dyno=web.1 connect=1ms service=85397ms status=101 bytes=175 protocol=https
2020-06-22T06:35:14.062875+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=0PKqKgwnYJSb6CCUABLb" host=www.minglr.us request_id=baa926a3-5556-4316-a888-32001673b1d7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85182ms status=101 bytes=175 protocol=https
2020-06-22T06:35:18.662518+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=4nAB94U5bN2CpIu5ABLc" host=www.minglr.us request_id=94b6f1ec-412a-420a-b382-f56fd89a517d fwd="98.229.123.184" dyno=web.1 connect=0ms service=84875ms status=101 bytes=175 protocol=https
2020-06-22T06:35:25.271192+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlHWy" host=www.minglr.us request_id=47639da1-bece-4f5b-a99b-74e1e4805234 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:35:25.297947+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:26.259828+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlHma" host=www.minglr.us request_id=4b6444f4-65b9-4b3d-ae8b-6613085b3352 fwd="98.229.123.184" dyno=web.1 connect=1ms service=6ms status=200 bytes=344 protocol=https
2020-06-22T06:35:26.271172+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:27.257061+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlI0M" host=www.minglr.us request_id=6146aa65-9e7d-4fe6-8f08-66965582364f fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:35:27.261189+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:28.251283+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlIG7" host=www.minglr.us request_id=3bfea041-df55-4804-86fe-b3373d4e732a fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:35:28.266488+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:33.412641+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlJWS" host=www.minglr.us request_id=5573963d-43bc-462f-83a1-e2bbc69d8ad2 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:35:33.425608+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:33.757217+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlJZL&sid=oIYWjf_MUfmVrWueABLh" host=www.minglr.us request_id=e71227f3-2aca-4516-baca-51b5d81c4a61 fwd="98.229.123.184" dyno=web.1 connect=0ms service=266ms status=200 bytes=242 protocol=https
2020-06-22T06:35:34.111776+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=xc79uCC6rih5Oe-rABLX" host=www.minglr.us request_id=1bd4537a-80b5-4322-9e44-30e297e6856c fwd="98.229.123.184" dyno=web.1 connect=1ms service=109929ms status=101 bytes=175 protocol=https
2020-06-22T06:35:35.670668+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlK5R" host=www.minglr.us request_id=52c9f969-5b1b-43b7-8fd2-704b107badbc fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:35:35.675728+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:35:35.981102+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlK6E&sid=huEHPnrZX5c950Z1ABLi" host=www.minglr.us request_id=ef06d208-9c6f-4d4f-ad44-58e0e470ef1f fwd="98.229.123.184" dyno=web.1 connect=0ms service=262ms status=200 bytes=242 protocol=https
2020-06-22T06:35:50.322635+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlNgM&sid=Eb4fgTvTfc8Fl_FaABLd" host=www.minglr.us request_id=90245969-f486-4022-9eac-114659110083 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=285 protocol=https
2020-06-22T06:35:50.323220+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlHZg&sid=Eb4fgTvTfc8Fl_FaABLd" host=www.minglr.us request_id=6e36f927-7cb5-49cd-84b8-e2a61c8047ed fwd="98.229.123.184" dyno=web.1 connect=0ms service=25007ms status=200 bytes=242 protocol=https
2020-06-22T06:35:51.399722+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlHpA&sid=Sv-sU7BZgs1MbDfkABLe" host=www.minglr.us request_id=d8570f1a-33f9-4f70-9de8-6e8b8dfc574d fwd="98.229.123.184" dyno=web.1 connect=1ms service=25097ms status=200 bytes=242 protocol=https
2020-06-22T06:35:51.400503+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlNw9&sid=Sv-sU7BZgs1MbDfkABLe" host=www.minglr.us request_id=05f49068-0951-4d0f-99dd-f0f4d278b206 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=285 protocol=https
2020-06-22T06:35:52.346593+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlO9z&sid=_3Z0YLTLgALNMVjaABLf" host=www.minglr.us request_id=87c798f7-62ba-42b0-83b3-7f4385f8580b fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=285 protocol=https
2020-06-22T06:35:52.347592+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlI2o&sid=_3Z0YLTLgALNMVjaABLf" host=www.minglr.us request_id=729356bc-d6a8-470f-ba30-3d372383f786 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25037ms status=200 bytes=242 protocol=https
2020-06-22T06:35:53.349598+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlOPe&sid=Jq68IMJiO5xgg3ZjABLg" host=www.minglr.us request_id=232b1210-bc06-4146-b6a0-16d24713c5e4 fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=285 protocol=https
2020-06-22T06:35:53.351108+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlIIF&sid=Jq68IMJiO5xgg3ZjABLg" host=www.minglr.us request_id=cb7ee2b2-0f9b-4fec-8116-faa28d601667 fwd="98.229.123.184" dyno=web.1 connect=0ms service=25057ms status=200 bytes=242 protocol=https
2020-06-22T06:36:20.330127+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:20.331048+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlNjM&sid=Eb4fgTvTfc8Fl_FaABLd" host=www.minglr.us request_id=e24a7e61-d812-4090-a045-227bae76b966 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29824ms status=200 bytes=242 protocol=https
2020-06-22T06:36:21.399213+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:21.400850+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlNy3&sid=Sv-sU7BZgs1MbDfkABLe" host=www.minglr.us request_id=ac372ec3-4598-4205-93af-ce8c089f7ae1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29823ms status=200 bytes=242 protocol=https
2020-06-22T06:36:22.347897+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:22.349120+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlOCK&sid=_3Z0YLTLgALNMVjaABLf" host=www.minglr.us request_id=b6157ad5-559c-481d-b8eb-c21276689596 fwd="98.229.123.184" dyno=web.1 connect=1ms service=29856ms status=200 bytes=242 protocol=https
2020-06-22T06:36:22.554615+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlVXk&sid=Eb4fgTvTfc8Fl_FaABLd" host=www.minglr.us request_id=577000d3-1d96-4e50-b957-a0f781132ce1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=400 bytes=288 protocol=https
2020-06-22T06:36:22.653457+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlVXo&sid=Sv-sU7BZgs1MbDfkABLe" host=www.minglr.us request_id=cbc0a43f-09a3-4d62-a266-4ca26084f37a fwd="98.229.123.184" dyno=web.1 connect=1ms service=9ms status=400 bytes=288 protocol=https
2020-06-22T06:36:23.350012+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:23.351958+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlOQY&sid=Jq68IMJiO5xgg3ZjABLg" host=www.minglr.us request_id=a40ea2f2-ef97-4a6a-89dd-a0add74a8645 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29948ms status=200 bytes=242 protocol=https
2020-06-22T06:36:23.603523+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQlVoN&sid=Eb4fgTvTfc8Fl_FaABLd" host=www.minglr.us request_id=1574219e-dac2-46d6-a6a5-4f76d258ba05 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T06:36:23.610553+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlVoO" host=www.minglr.us request_id=ce35d9c9-25fd-4d21-9ea9-38d75ac8abf8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:36:23.623916+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:23.909058+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlVpE&sid=V2Pp_bx4AM-Jto4PABLj" host=www.minglr.us request_id=0d042ec9-e081-4bb1-9338-b56da71f6362 fwd="98.229.123.184" dyno=web.1 connect=0ms service=255ms status=200 bytes=242 protocol=https
2020-06-22T06:36:24.652108+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW2k" host=www.minglr.us request_id=838f9a36-6f16-490e-b7b3-f9131ae6d4f1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=6ms status=200 bytes=344 protocol=https
2020-06-22T06:36:24.655913+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW2m" host=www.minglr.us request_id=b9de492b-0aaf-4212-a534-bc68e72ecfe7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=9ms status=200 bytes=344 protocol=https
2020-06-22T06:36:24.656698+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW2l" host=www.minglr.us request_id=8917780c-4dcf-4abc-8cc6-8aab2f4bb11e fwd="98.229.123.184" dyno=web.1 connect=1ms service=10ms status=200 bytes=344 protocol=https
2020-06-22T06:36:24.659007+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:24.660663+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:24.663095+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:25.285948+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW3W&sid=dx7eyobMOuJQJA00ABLk" host=www.minglr.us request_id=d4148f9b-1557-42ca-8ae1-9b6f8f122027 fwd="98.229.123.184" dyno=web.1 connect=0ms service=589ms status=200 bytes=242 protocol=https
2020-06-22T06:36:25.834789+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW3b&sid=wocxV5J8_EHUUEE_ABLl" host=www.minglr.us request_id=f099ed0a-9dd3-46f7-8404-15e64bfc5971 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1134ms status=200 bytes=242 protocol=https
2020-06-22T06:36:26.507067+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlW3c&sid=7WDZiAMXtrFOcZwFABLm" host=www.minglr.us request_id=16284120-a8d5-468c-aeac-2d392e0d79cf fwd="98.229.123.184" dyno=web.1 connect=1ms service=1806ms status=200 bytes=242 protocol=https
2020-06-22T06:36:28.488154+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:28.523882+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=oIYWjf_MUfmVrWueABLh" host=www.minglr.us request_id=ffdbd29b-6f22-4c25-b4d7-46ea7615f281 fwd="98.229.123.184" dyno=web.1 connect=1ms service=54910ms status=101 bytes=175 protocol=https
2020-06-22T06:36:29.604702+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlXGB" host=www.minglr.us request_id=efbc186d-db83-4e4c-876a-1626f51ee1d6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:36:29.607687+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:29.902354+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlXH2&sid=XHOulzRkAu4Ow-JVABLn" host=www.minglr.us request_id=9d5e8156-d22d-46e8-82eb-3a2152ca0e18 fwd="98.229.123.184" dyno=web.1 connect=0ms service=247ms status=200 bytes=242 protocol=https
2020-06-22T06:36:30.729797+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:30.778903+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=huEHPnrZX5c950Z1ABLi" host=www.minglr.us request_id=6c872532-4ebc-4e0a-a110-b6425935b91a fwd="98.229.123.184" dyno=web.1 connect=0ms service=54943ms status=101 bytes=175 protocol=https
2020-06-22T06:36:32.274815+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlXvt" host=www.minglr.us request_id=dcfdb991-6379-4fb2-8e91-9d0c5b22e88d fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:36:32.275864+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:36:32.619325+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlXws&sid=IdXJld3vTLsnZWD9ABLo" host=www.minglr.us request_id=b3d1fe85-5c83-420a-a4a3-77f0bb730407 fwd="98.229.123.184" dyno=web.1 connect=0ms service=286ms status=200 bytes=242 protocol=https
2020-06-22T06:37:20.773926+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:20.775643+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:20.776822+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:24.660978+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:24.677966+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=wocxV5J8_EHUUEE_ABLl" host=www.minglr.us request_id=99960476-3861-4982-a30b-27526a8baedb fwd="98.229.123.184" dyno=web.1 connect=0ms service=58990ms status=101 bytes=175 protocol=https
2020-06-22T06:37:24.699282+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=XHOulzRkAu4Ow-JVABLn" host=www.minglr.us request_id=3acb8cdb-67ff-4dcd-ba10-0cc3c91dd47a fwd="98.229.123.184" dyno=web.1 connect=0ms service=54934ms status=101 bytes=175 protocol=https
2020-06-22T06:37:24.877871+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=dx7eyobMOuJQJA00ABLk" host=www.minglr.us request_id=485e96d4-eccd-4ee2-a9d5-f7dee6bfca7c fwd="98.229.123.184" dyno=web.1 connect=0ms service=59918ms status=101 bytes=175 protocol=https
2020-06-22T06:37:25.792486+00:00 app[web.1]: remove David
2020-06-22T06:37:25.795935+00:00 app[web.1]: remove David
2020-06-22T06:37:25.798031+00:00 app[web.1]: remove David
2020-06-22T06:37:26.393854+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll7a.0" host=www.minglr.us request_id=402e1123-8959-449c-a600-e9d7c0f5d7c1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:37:26.397868+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll7a" host=www.minglr.us request_id=ed08029a-e0a3-4e8f-85ef-736471768cd2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:37:26.401223+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll7b" host=www.minglr.us request_id=3974da7a-dde7-47a3-9965-0ce59efe5153 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:37:26.403464+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:26.405820+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:26.407176+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:26.708974+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll8C&sid=tfzBTCsCMNQAe_UmABLp" host=www.minglr.us request_id=58950992-d549-4c2f-a068-78b396295a18 fwd="98.229.123.184" dyno=web.1 connect=0ms service=269ms status=200 bytes=242 protocol=https
2020-06-22T06:37:26.848458+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll8O&sid=ny3XqN63NOsjBdjKABLr" host=www.minglr.us request_id=bfb6765c-2af2-4cf9-8f43-b563a6deb300 fwd="98.229.123.184" dyno=web.1 connect=0ms service=405ms status=200 bytes=242 protocol=https
2020-06-22T06:37:27.028071+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQll8T&sid=AdxLeAFqgdno9lKfABLq" host=www.minglr.us request_id=ec8f503e-00d2-4327-9b72-75bbc6f90cbb fwd="98.229.123.184" dyno=web.1 connect=0ms service=580ms status=200 bytes=242 protocol=https
2020-06-22T06:37:27.332928+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:27.394321+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=IdXJld3vTLsnZWD9ABLo" host=www.minglr.us request_id=9bd6b559-04ac-443a-9103-aa8f9d0d1816 fwd="98.229.123.184" dyno=web.1 connect=1ms service=54933ms status=101 bytes=175 protocol=https
2020-06-22T06:37:27.563550+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=7WDZiAMXtrFOcZwFABLm" host=www.minglr.us request_id=34cdd8fd-4623-4d6e-b68e-c0467588d673 fwd="98.229.123.184" dyno=web.1 connect=0ms service=61198ms status=101 bytes=175 protocol=https
2020-06-22T06:37:28.635744+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQllgQ" host=www.minglr.us request_id=d40e72c5-f47c-475f-9e57-b9acccaf7446 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:37:28.642062+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQllgP" host=www.minglr.us request_id=ab70fbcb-0546-4299-bfd8-1fe6e5c29cf2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=8ms status=200 bytes=344 protocol=https
2020-06-22T06:37:28.643918+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:28.665449+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:28.946035+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQllhF&sid=qvG3cNdnleSBWgOuABLs" host=www.minglr.us request_id=412dd0ea-a248-4929-8af5-27df513bdd7d fwd="98.229.123.184" dyno=web.1 connect=0ms service=264ms status=200 bytes=242 protocol=https
2020-06-22T06:37:29.104774+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQllhM&sid=UJSwMULRbYTOLo97ABLt" host=www.minglr.us request_id=fe9c2f39-da6b-49c8-ab2c-7b8eb1a26153 fwd="98.229.123.184" dyno=web.1 connect=0ms service=422ms status=200 bytes=242 protocol=https
2020-06-22T06:37:43.827813+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:43.870323+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=V2Pp_bx4AM-Jto4PABLj" host=www.minglr.us request_id=023b34f8-4371-415e-9bc7-6ce4e14d76b5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=80099ms status=101 bytes=175 protocol=https
2020-06-22T06:37:45.257303+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlpkC" host=www.minglr.us request_id=61903cf5-9ea3-42f5-9aff-b3932ee37783 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:37:45.280173+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:37:45.567945+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQlpk_&sid=XqScM94gGgWrIpGqABLu" host=www.minglr.us request_id=ca0bcfa1-3b8a-416d-a0ea-dde67c804790 fwd="98.229.123.184" dyno=web.1 connect=1ms service=266ms status=200 bytes=242 protocol=https
2020-06-22T06:38:22.535511+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:22.536716+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:24.469652+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:24.473755+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:27.552887+00:00 app[web.1]: remove David
2020-06-22T06:38:27.552897+00:00 app[web.1]: remove David
2020-06-22T06:38:29.475014+00:00 app[web.1]: remove David
2020-06-22T06:38:29.478582+00:00 app[web.1]: remove David
2020-06-22T06:38:40.313896+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:44.886934+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=XqScM94gGgWrIpGqABLu" host=www.minglr.us request_id=ad9b189d-b1dc-4ef7-b133-ae0ef6d1bdcd fwd="98.229.123.184" dyno=web.1 connect=1ms service=59467ms status=101 bytes=175 protocol=https
2020-06-22T06:38:45.341467+00:00 app[web.1]: remove David
2020-06-22T06:38:46.513812+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:47.069806+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm2mT" host=www.minglr.us request_id=2272851d-e30f-4498-8f1c-3acff4891d15 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:38:47.071839+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:47.595954+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm2qp&sid=9EmEWGU2yd2FJaQ8ABLv" host=www.minglr.us request_id=f1a97e20-8b4a-4301-9027-ab3fabb0c7db fwd="98.229.123.184" dyno=web.1 connect=1ms service=478ms status=200 bytes=242 protocol=https
2020-06-22T06:38:47.796754+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm2_J&sid=9EmEWGU2yd2FJaQ8ABLv" host=www.minglr.us request_id=395218dd-8a50-4b42-8042-faf618fad6a6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=13ms status=200 bytes=242 protocol=https
2020-06-22T06:38:48.504544+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ny3XqN63NOsjBdjKABLr" host=www.minglr.us request_id=1db92b44-0407-4734-bb58-1c68589cc54e fwd="98.229.123.184" dyno=web.1 connect=0ms service=81794ms status=101 bytes=175 protocol=https
2020-06-22T06:38:48.505250+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=AdxLeAFqgdno9lKfABLq" host=www.minglr.us request_id=845f08dc-a42a-4c2d-b3f0-170ace2db43f fwd="98.229.123.184" dyno=web.1 connect=1ms service=81619ms status=101 bytes=175 protocol=https
2020-06-22T06:38:49.532863+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3QR" host=www.minglr.us request_id=2c64929d-e615-4a51-86e4-04a9de5747a2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:38:49.535661+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:49.803293+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3QS" host=www.minglr.us request_id=48d2fe44-8761-4b77-8604-d4a84cad6182 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:38:49.818393+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:50.313696+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3Uv&sid=sZRnL1YTCaS3nlChABLw" host=www.minglr.us request_id=f6d8a9c0-ae98-4038-832b-68e61456dcec fwd="98.229.123.184" dyno=web.1 connect=1ms service=473ms status=200 bytes=242 protocol=https
2020-06-22T06:38:50.558233+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3VZ&sid=1I2L3k7HZkafFaJNABLx" host=www.minglr.us request_id=7d720dcb-b956-4294-888e-8e80696d8631 fwd="98.229.123.184" dyno=web.1 connect=1ms service=493ms status=200 bytes=242 protocol=https
2020-06-22T06:38:50.581216+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=qvG3cNdnleSBWgOuABLs" host=www.minglr.us request_id=25c9deff-f94b-4952-b952-51bf23a13505 fwd="98.229.123.184" dyno=web.1 connect=1ms service=81790ms status=101 bytes=175 protocol=https
2020-06-22T06:38:50.581567+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=UJSwMULRbYTOLo97ABLt" host=www.minglr.us request_id=9194cddf-aaeb-4939-862d-610b28e84607 fwd="98.229.123.184" dyno=web.1 connect=0ms service=81625ms status=101 bytes=175 protocol=https
2020-06-22T06:38:51.633264+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3x0" host=www.minglr.us request_id=d536da67-4f62-4b17-a2a4-b193c0ae1422 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:38:51.646024+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:51.998782+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm3y7&sid=xQhOQn3i8YmeEfsbABLy" host=www.minglr.us request_id=413f372f-9c14-4564-9fd5-d3a100d40201 fwd="98.229.123.184" dyno=web.1 connect=1ms service=324ms status=200 bytes=242 protocol=https
2020-06-22T06:38:52.943863+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm4FF" host=www.minglr.us request_id=302aec60-8eb2-4db0-88b6-42a8e4419061 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:38:52.951595+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:53.898314+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm4Gg&sid=je9Z6f_joQaNj2t5ABLz" host=www.minglr.us request_id=bde716c4-cd05-4bbb-8cf8-2d1a7dc20e36 fwd="98.229.123.184" dyno=web.1 connect=1ms service=822ms status=200 bytes=242 protocol=https
2020-06-22T06:38:58.217097+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=tfzBTCsCMNQAe_UmABLp" host=www.minglr.us request_id=2dcee58b-111f-4df5-9e59-b650943b2542 fwd="98.229.123.184" dyno=web.1 connect=2ms service=91651ms status=101 bytes=175 protocol=https
2020-06-22T06:38:59.421339+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm5q_" host=www.minglr.us request_id=f208c2fd-348c-4508-82d8-e52b1b85cc7d fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:38:59.441476+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:38:59.741716+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQm5rr&sid=vK6ALWcJMk0uRO7aABL0" host=www.minglr.us request_id=2c2fae4d-f93b-4e42-a0e9-efa283bf5011 fwd="98.229.123.184" dyno=web.1 connect=1ms service=275ms status=200 bytes=242 protocol=https
2020-06-22T06:39:42.112552+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:44.813903+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:45.827476+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:46.831212+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:47.117438+00:00 app[web.1]: remove David
2020-06-22T06:39:48.830844+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:49.820572+00:00 app[web.1]: remove David
2020-06-22T06:39:50.831751+00:00 app[web.1]: remove David
2020-06-22T06:39:51.845425+00:00 app[web.1]: remove David
2020-06-22T06:39:53.857791+00:00 app[web.1]: remove David
2020-06-22T06:39:54.495017+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:39:59.502143+00:00 app[web.1]: remove David
2020-06-22T06:40:12.114513+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=9EmEWGU2yd2FJaQ8ABLv" host=www.minglr.us request_id=a7a85f5c-c3f8-424b-97ab-4a703de94e9a fwd="98.229.123.184" dyno=web.1 connect=0ms service=84666ms status=101 bytes=175 protocol=https
2020-06-22T06:40:14.817551+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=sZRnL1YTCaS3nlChABLw" host=www.minglr.us request_id=5da009d7-cbc5-4a31-a111-ab984f070791 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84652ms status=101 bytes=175 protocol=https
2020-06-22T06:40:15.829822+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=1I2L3k7HZkafFaJNABLx" host=www.minglr.us request_id=501400dc-1146-4103-9df4-bd5f213fa9e4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85513ms status=101 bytes=175 protocol=https
2020-06-22T06:40:16.835535+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=xQhOQn3i8YmeEfsbABLy" host=www.minglr.us request_id=e6edc987-6180-48d9-912f-5662b134d70f fwd="98.229.123.184" dyno=web.1 connect=1ms service=85029ms status=101 bytes=175 protocol=https
2020-06-22T06:40:18.833030+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=je9Z6f_joQaNj2t5ABLz" host=www.minglr.us request_id=ea53b1a7-a7fc-4117-bc1a-31fcd141c136 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85509ms status=101 bytes=175 protocol=https
2020-06-22T06:40:24.501659+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=vK6ALWcJMk0uRO7aABL0" host=www.minglr.us request_id=d10c86ae-2f46-4393-acd9-d119a6abd11c fwd="98.229.123.184" dyno=web.1 connect=1ms service=84901ms status=101 bytes=175 protocol=https
2020-06-22T06:40:30.726488+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmS57" host=www.minglr.us request_id=f30fecbf-19ab-4fc1-ae65-f2367dd6f0c5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:40:30.739845+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:31.085285+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmS8R&sid=68dGx_EWQd3eR09kABL1" host=www.minglr.us request_id=90e82002-4c75-4cc0-8599-3ee0d7ebb6bc fwd="98.229.123.184" dyno=web.1 connect=0ms service=320ms status=200 bytes=242 protocol=https
2020-06-22T06:40:33.016823+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmShT" host=www.minglr.us request_id=da8c0956-6fd4-4e36-978c-6ecb33fbdee6 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:40:33.020406+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:34.135815+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:34.139195+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmSxD" host=www.minglr.us request_id=a2592e5d-444f-4bdb-b9fd-094b7fdb9f7e fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:40:36.114529+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmTQW" host=www.minglr.us request_id=c0188d39-f21d-4b82-9d29-e03641986176 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:40:36.128621+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:37.113011+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmTgA" host=www.minglr.us request_id=cf6aa691-f1d5-4d8d-a1b9-f17ef16d0c5d fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:40:37.139984+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:43.421074+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:40:43.427276+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmVCP" host=www.minglr.us request_id=7462f721-98ba-4160-b34e-9521529a1f79 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:40:58.186685+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmYp9&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=c54fa66d-4664-4737-a4b4-6b00d95e98d1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T06:40:58.191909+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmSiM&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=aad4453c-de6a-47e1-a56e-ce4d8d67a20f fwd="98.229.123.184" dyno=web.1 connect=0ms service=25121ms status=200 bytes=242 protocol=https
2020-06-22T06:40:59.280928+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmZ5k&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=326a0521-23c5-4b92-b037-d8217e137693 fwd="98.229.123.184" dyno=web.1 connect=1ms service=7ms status=200 bytes=285 protocol=https
2020-06-22T06:40:59.283113+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmS_0&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=7fe22030-7ad4-4cf8-9387-f2af0bd1693a fwd="98.229.123.184" dyno=web.1 connect=0ms service=25023ms status=200 bytes=242 protocol=https
2020-06-22T06:41:01.171661+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmZZG&sid=YKLgL1vxcyvtscKjABL4" host=www.minglr.us request_id=0e1811d5-d4a5-4396-97fa-6a981754b92b fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=285 protocol=https
2020-06-22T06:41:01.173304+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmTSc&sid=YKLgL1vxcyvtscKjABL4" host=www.minglr.us request_id=9165a03c-35d2-4353-99c0-86b265617262 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25020ms status=200 bytes=242 protocol=https
2020-06-22T06:41:02.175528+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmTiH&sid=gLC-_R0x6GmXjJkeABL5" host=www.minglr.us request_id=9269fccd-cc68-42f2-8f69-6e603738328e fwd="98.229.123.184" dyno=web.1 connect=1ms service=25021ms status=200 bytes=242 protocol=https
2020-06-22T06:41:02.176587+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmZoy&sid=gLC-_R0x6GmXjJkeABL5" host=www.minglr.us request_id=b7aee09a-4156-40db-8990-bcb7644977a3 fwd="98.229.123.184" dyno=web.1 connect=2ms service=4ms status=200 bytes=285 protocol=https
2020-06-22T06:41:08.480295+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmbLX&sid=GU0DFJ0OiV2TyZH5ABL6" host=www.minglr.us request_id=6e7c2adb-14fc-4312-b3fb-a82b22387c6e fwd="98.229.123.184" dyno=web.1 connect=2ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T06:41:08.482433+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmVEn&sid=GU0DFJ0OiV2TyZH5ABL6" host=www.minglr.us request_id=856927d0-24a5-4614-afde-758a405d900b fwd="98.229.123.184" dyno=web.1 connect=1ms service=25012ms status=200 bytes=242 protocol=https
2020-06-22T06:41:25.873884+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:28.186724+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:28.187209+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmYrh&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=2c925fa6-de56-4619-8a55-ebdfe3e74d3e fwd="98.229.123.184" dyno=web.1 connect=0ms service=29947ms status=200 bytes=242 protocol=https
2020-06-22T06:41:29.281158+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:29.284056+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmZ6f&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=c469fbfd-6ce6-4360-8193-6eb4179dedcf fwd="98.229.123.184" dyno=web.1 connect=0ms service=29954ms status=200 bytes=242 protocol=https
2020-06-22T06:41:30.878535+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmZpt&sid=gLC-_R0x6GmXjJkeABL5" host=www.minglr.us request_id=92ab111f-53bd-4eec-bed5-da0c5af6fc50 fwd="98.229.123.184" dyno=web.1 connect=1ms service=28653ms status=200 bytes=265 protocol=https
2020-06-22T06:41:30.878593+00:00 app[web.1]: remove David
2020-06-22T06:41:30.880831+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmZaB&sid=YKLgL1vxcyvtscKjABL4" host=www.minglr.us request_id=94af6f15-2b3c-4a7a-9580-3c99f5a982c3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=29661ms status=200 bytes=265 protocol=https
2020-06-22T06:41:30.881584+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmbMN&sid=GU0DFJ0OiV2TyZH5ABL6" host=www.minglr.us request_id=d6f43ccc-8e7e-492b-b6f2-afe14c4b24b3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=22354ms status=200 bytes=265 protocol=https
2020-06-22T06:41:31.170475+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:32.175313+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:33.191260+00:00 app[web.1]: remove David
2020-06-22T06:41:34.291795+00:00 app[web.1]: remove David
2020-06-22T06:41:36.195231+00:00 app[web.1]: remove David
2020-06-22T06:41:37.196942+00:00 app[web.1]: remove David
2020-06-22T06:41:38.480590+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:38.594374+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmii6&sid=GU0DFJ0OiV2TyZH5ABL6" host=www.minglr.us request_id=b26d76b0-29b6-4516-a351-354a4a70b2dd fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=400 bytes=228 protocol=https
2020-06-22T06:41:38.834299+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmilx.0&sid=gLC-_R0x6GmXjJkeABL5" host=www.minglr.us request_id=135ae5c7-695f-4e4b-a93e-5effa08b0bd9 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=228 protocol=https
2020-06-22T06:41:38.835415+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmilx&sid=YKLgL1vxcyvtscKjABL4" host=www.minglr.us request_id=294bf354-d132-4462-8798-a94c899187ff fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=228 protocol=https
2020-06-22T06:41:39.557374+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmix8&sid=YKLgL1vxcyvtscKjABL4" host=www.minglr.us request_id=876190bb-bbe2-4acf-a6ab-ccac93308804 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T06:41:39.561193+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmix7&sid=GU0DFJ0OiV2TyZH5ABL6" host=www.minglr.us request_id=f911ecd8-4cdf-4306-a6e7-664e3495725c fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=400 bytes=288 protocol=https
2020-06-22T06:41:39.562653+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmix8.0&sid=gLC-_R0x6GmXjJkeABL5" host=www.minglr.us request_id=c35efc1f-6fbb-42b0-b284-becde5e7afc8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T06:41:40.604002+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjBb.0" host=www.minglr.us request_id=b572ef87-d326-413d-b261-dd7b82512829 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:41:40.604969+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjBc" host=www.minglr.us request_id=db084c1f-fdf4-4547-a6b3-5da4fb50809d fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T06:41:40.607405+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmjBb&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=384d24dc-03c5-475c-b886-462b1af63e6b fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=400 bytes=288 protocol=https
2020-06-22T06:41:40.613697+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:40.617367+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:41.028515+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjCE&sid=mFaURtxM5QopiXTPABL7" host=www.minglr.us request_id=04bdd39f-3db2-42d7-9dbd-daa9cd66a419 fwd="98.229.123.184" dyno=web.1 connect=1ms service=382ms status=200 bytes=242 protocol=https
2020-06-22T06:41:41.723251+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmjS0&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=858a0a61-feb6-42f7-8665-637c0ade500c fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=400 bytes=288 protocol=https
2020-06-22T06:41:41.724928+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjS0.0" host=www.minglr.us request_id=903171d0-41a0-4ab1-a499-aa345d87c484 fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:41:41.726432+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmjS1&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=67592b43-ee22-4b55-98cf-c43b2c73bed3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=400 bytes=288 protocol=https
2020-06-22T06:41:41.737563+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=68dGx_EWQd3eR09kABL1" host=www.minglr.us request_id=2468be34-1b44-436b-9356-e5fcafc9b27a fwd="98.229.123.184" dyno=web.1 connect=1ms service=70817ms status=101 bytes=175 protocol=https
2020-06-22T06:41:41.755624+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:41.842218+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjCH&sid=u31KwR85L4f09N4OABL8" host=www.minglr.us request_id=a2c46286-1441-402a-a629-68024bb0f644 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1194ms status=200 bytes=242 protocol=https
2020-06-22T06:41:41.967795+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=fe1b2b8d-825f-40fd-8b4f-c102bfc9ed01 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=400 bytes=110 protocol=https
2020-06-22T06:41:41.972798+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=26cgYUGaRkXFtOoCABL2" host=www.minglr.us request_id=1708f840-1b4b-4c87-aa78-aebaff50fa69 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=400 bytes=110 protocol=https
2020-06-22T06:41:42.041588+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjWk&sid=u31KwR85L4f09N4OABL8" host=www.minglr.us request_id=1bf8a019-7d23-465c-bd0b-3b221de88cf8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=77ms status=200 bytes=242 protocol=https
2020-06-22T06:41:42.424619+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjTq&sid=di8tPEB_jEZJevRLABL9" host=www.minglr.us request_id=e254250c-f3de-42f4-aa5a-59bb5ec6cbc4 fwd="98.229.123.184" dyno=web.1 connect=1ms service=603ms status=200 bytes=242 protocol=https
2020-06-22T06:41:42.773814+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjiy" host=www.minglr.us request_id=724defcb-510a-413b-bddb-5df07c51970b fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:41:42.776733+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:42.780519+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQmjix&sid=xvfnQO3Ks7Kxzfv9ABL3" host=www.minglr.us request_id=19fe1217-74bd-4644-a466-0d96811b931c fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=400 bytes=288 protocol=https
2020-06-22T06:41:43.193327+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmjk7&sid=ClA6WR5zKWCDf_uzABL-" host=www.minglr.us request_id=a133eec3-72dc-401b-a39f-3045e0b08874 fwd="98.229.123.184" dyno=web.1 connect=1ms service=372ms status=200 bytes=242 protocol=https
2020-06-22T06:41:43.851674+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmj-0" host=www.minglr.us request_id=6398e872-9263-456b-b69d-9654189daf9a fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:41:43.857102+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmj-1" host=www.minglr.us request_id=4428bab8-74e9-418c-aa22-a962e292b776 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:41:43.862165+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:43.891377+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:41:44.421573+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmk1a&sid=2AdEuXmo8lSxGodsABMA" host=www.minglr.us request_id=1bcdba85-c5f9-4c2d-98ab-863db5c2498d fwd="98.229.123.184" dyno=web.1 connect=1ms service=364ms status=200 bytes=242 protocol=https
2020-06-22T06:41:44.585248+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmk1a.0&sid=E6k67tH7qmzzHfywABL_" host=www.minglr.us request_id=37e344bc-d8b2-4192-8c9a-ed7d8580bf1b fwd="98.229.123.184" dyno=web.1 connect=0ms service=528ms status=200 bytes=242 protocol=https
2020-06-22T06:42:37.779982+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:38.692608+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:39.693040+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:39.697983+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:42.165256+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ClA6WR5zKWCDf_uzABL-" host=www.minglr.us request_id=4bd361ed-d6c9-49f4-8f6c-baf17350818f fwd="98.229.123.184" dyno=web.1 connect=0ms service=59117ms status=101 bytes=175 protocol=https
2020-06-22T06:42:42.788414+00:00 app[web.1]: remove David
2020-06-22T06:42:43.609152+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=E6k67tH7qmzzHfywABL_" host=www.minglr.us request_id=ba9e302b-7fed-4455-870a-dd148fff86c1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=59171ms status=101 bytes=175 protocol=https
2020-06-22T06:42:43.696412+00:00 app[web.1]: remove David
2020-06-22T06:42:43.744479+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=2AdEuXmo8lSxGodsABMA" host=www.minglr.us request_id=8024615a-0e57-4c27-8212-9916d4b539d6 fwd="98.229.123.184" dyno=web.1 connect=0ms service=59563ms status=101 bytes=175 protocol=https
2020-06-22T06:42:43.819305+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmydN" host=www.minglr.us request_id=62be77fe-02cb-45ce-b9fe-4b634488fa20 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:42:43.820231+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:43.959963+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=di8tPEB_jEZJevRLABL9" host=www.minglr.us request_id=0c095cd8-779f-4464-b1a8-714cc33d78df fwd="98.229.123.184" dyno=web.1 connect=0ms service=61680ms status=101 bytes=175 protocol=https
2020-06-22T06:42:44.183487+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmyeH&sid=s-b1_yfoMftfhzrMABMB" host=www.minglr.us request_id=22f30977-8424-47c0-a7c3-cb41df5cf32b fwd="98.229.123.184" dyno=web.1 connect=0ms service=309ms status=200 bytes=242 protocol=https
2020-06-22T06:42:45.104081+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmyxE" host=www.minglr.us request_id=dfa608a3-a37d-40c2-a37d-8a31aa5794b1 fwd="98.229.123.184" dyno=web.1 connect=2ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:42:45.104310+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmyxE.0" host=www.minglr.us request_id=0a7d39e2-1c17-47d3-a86c-a66f0e01209f fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:42:45.106177+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:45.107917+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:45.410978+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmyy2&sid=dlrdvKQr6JQ68TA_ABMC" host=www.minglr.us request_id=72ccf468-a3db-4eca-8481-4b324daa393f fwd="98.229.123.184" dyno=web.1 connect=1ms service=265ms status=200 bytes=242 protocol=https
2020-06-22T06:42:45.568987+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmyy9&sid=l-xu8nngVDwZNJuTABMD" host=www.minglr.us request_id=6b398ae4-612c-4fff-885f-295af18ac71b fwd="98.229.123.184" dyno=web.1 connect=0ms service=424ms status=200 bytes=242 protocol=https
2020-06-22T06:42:46.320066+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmzEJ" host=www.minglr.us request_id=f415b79d-3d77-41b9-9c0a-594f703a9cf7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:42:46.323897+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:42:46.627118+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQmzF7&sid=uzXyWIqN8RfOEyVgABME" host=www.minglr.us request_id=720578f6-74e4-4167-9073-c0a03cac87f9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T06:43:00.781772+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:00.784036+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:00.890537+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=u31KwR85L4f09N4OABL8" host=www.minglr.us request_id=c95c897a-b294-409f-93cb-934d5d3d4bdb fwd="98.229.123.184" dyno=web.1 connect=1ms service=79714ms status=101 bytes=175 protocol=https
2020-06-22T06:43:00.900028+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=mFaURtxM5QopiXTPABL7" host=www.minglr.us request_id=be8cca66-6e73-49ec-b178-c4fdb85169ca fwd="98.229.123.184" dyno=web.1 connect=0ms service=80139ms status=101 bytes=175 protocol=https
2020-06-22T06:43:01.911606+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQn11u" host=www.minglr.us request_id=71453835-db39-4e7f-9d56-06110762a88a fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:43:01.912301+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:02.227107+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQn12l&sid=5vgW3lxh-Y2ptE89ABMF" host=www.minglr.us request_id=9d1ae385-ea6b-434b-baff-adae89b11b37 fwd="98.229.123.184" dyno=web.1 connect=0ms service=267ms status=200 bytes=242 protocol=https
2020-06-22T06:43:02.909737+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:02.912421+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQn1HX" host=www.minglr.us request_id=dcf09988-7bca-4849-89bb-ef970f8401f6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=6ms status=200 bytes=344 protocol=https
2020-06-22T06:43:03.300932+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQn1IV&sid=fgFehBSzr3-7Xb4TABMG" host=www.minglr.us request_id=0cbe5023-60b0-4096-9d2f-53d8b2115f90 fwd="98.229.123.184" dyno=web.1 connect=0ms service=333ms status=200 bytes=242 protocol=https
2020-06-22T06:43:03.402659+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQn1OW&sid=fgFehBSzr3-7Xb4TABMG" host=www.minglr.us request_id=57303aa8-eb56-4d19-8b81-2faaba8c7826 fwd="98.229.123.184" dyno=web.1 connect=1ms service=54ms status=200 bytes=242 protocol=https
2020-06-22T06:43:40.983133+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:40.984673+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:41.910075+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:45.991005+00:00 app[web.1]: remove David
2020-06-22T06:43:45.994124+00:00 app[web.1]: remove David
2020-06-22T06:43:46.919207+00:00 app[web.1]: remove David
2020-06-22T06:43:56.516826+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=dlrdvKQr6JQ68TA_ABMC" host=www.minglr.us request_id=3f4294b4-639c-4456-be17-bf8835803660 fwd="98.229.123.184" dyno=web.1 connect=0ms service=71251ms status=101 bytes=175 protocol=https
2020-06-22T06:43:56.520743+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=l-xu8nngVDwZNJuTABMD" host=www.minglr.us request_id=92ba2ed7-11af-4c30-858f-a90372db4420 fwd="98.229.123.184" dyno=web.1 connect=1ms service=71094ms status=101 bytes=175 protocol=https
2020-06-22T06:43:56.960965+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:57.032281+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=5vgW3lxh-Y2ptE89ABMF" host=www.minglr.us request_id=596f630d-4f07-4d83-b5c7-bc14a69e003b fwd="98.229.123.184" dyno=web.1 connect=0ms service=54946ms status=101 bytes=175 protocol=https
2020-06-22T06:43:57.507578+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=uzXyWIqN8RfOEyVgABME" host=www.minglr.us request_id=46da9f33-337c-4eff-9236-192982e3ce73 fwd="98.229.123.184" dyno=web.1 connect=1ms service=71024ms status=101 bytes=175 protocol=https
2020-06-22T06:43:57.528554+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEd6" host=www.minglr.us request_id=69344e8a-2bf6-4381-9cf7-a5ea2f0ade47 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:43:57.531946+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:57.892574+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEdk&sid=4MPqJORvx2XkAxxdABMH" host=www.minglr.us request_id=e0d4ba89-4bff-4a7b-8e40-4d244f7abed7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=321ms status=200 bytes=242 protocol=https
2020-06-22T06:43:58.798708+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEwq" host=www.minglr.us request_id=6e8d6884-18da-4e84-8823-720626810bda fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:43:58.802135+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:58.806138+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEwr" host=www.minglr.us request_id=aaacc1cf-337d-4ca0-8160-a056334c8c75 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:43:58.806400+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:58.901546+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:58.903208+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEwr.0" host=www.minglr.us request_id=7323309a-438e-449e-99ad-ed865818c4d1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:43:58.975044+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:43:59.012243+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=fgFehBSzr3-7Xb4TABMG" host=www.minglr.us request_id=0a653d2d-f61a-42d6-9a5c-965e58fd68dd fwd="98.229.123.184" dyno=web.1 connect=0ms service=55863ms status=101 bytes=175 protocol=https
2020-06-22T06:43:59.103482+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnExZ&sid=l7VcgDEoK2dJsD80ABMI" host=www.minglr.us request_id=f1c915af-c34d-4f90-abf6-f32c8ee075f4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=260ms status=200 bytes=242 protocol=https
2020-06-22T06:43:59.253164+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnExh&sid=fl1vDmja4PAoTprSABMJ" host=www.minglr.us request_id=4f7217d3-60c7-4ff8-b612-aff32aad073a fwd="98.229.123.184" dyno=web.1 connect=1ms service=406ms status=200 bytes=242 protocol=https
2020-06-22T06:43:59.408486+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnEz8&sid=Y_xPH5Q6499eoOraABMK" host=www.minglr.us request_id=b6df787e-a223-4c9c-8d8f-dba8eabac822 fwd="98.229.123.184" dyno=web.1 connect=0ms service=464ms status=200 bytes=242 protocol=https
2020-06-22T06:44:01.028061+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnFTi" host=www.minglr.us request_id=ce5ece24-0391-4c75-9b59-0995eef3bfe7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:44:01.035617+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:01.350493+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnFUR&sid=2JjdM_kV12G1D_aAABML" host=www.minglr.us request_id=dee9a685-e89f-467c-89ea-726f12ec19bc fwd="98.229.123.184" dyno=web.1 connect=1ms service=279ms status=200 bytes=242 protocol=https
2020-06-22T06:44:04.054120+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:04.202497+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=s-b1_yfoMftfhzrMABMB" host=www.minglr.us request_id=01dda2dc-3ac4-43dd-a741-46aeaba9795f fwd="98.229.123.184" dyno=web.1 connect=0ms service=80157ms status=101 bytes=175 protocol=https
2020-06-22T06:44:05.862462+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnGf5" host=www.minglr.us request_id=9d1a57ed-0028-4051-9d80-c275fe985d02 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:44:05.868413+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:06.167757+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnGfw&sid=8yfJoxt9kNpVmAbwABMM" host=www.minglr.us request_id=45d7fbd9-3ec2-4874-ba02-a963b99803f6 fwd="98.229.123.184" dyno=web.1 connect=0ms service=264ms status=200 bytes=242 protocol=https
2020-06-22T06:44:52.577060+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:54.605649+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:54.607083+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:54.608219+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:56.609864+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:44:57.581665+00:00 app[web.1]: remove David
2020-06-22T06:44:59.612214+00:00 app[web.1]: remove David
2020-06-22T06:44:59.613798+00:00 app[web.1]: remove David
2020-06-22T06:44:59.614930+00:00 app[web.1]: remove David
2020-06-22T06:45:01.009891+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:01.621631+00:00 app[web.1]: remove David
2020-06-22T06:45:06.013726+00:00 app[web.1]: remove David
2020-06-22T06:45:22.580473+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=4MPqJORvx2XkAxxdABMH" host=www.minglr.us request_id=1070278a-e919-4dd6-ab7b-9233d65db08a fwd="98.229.123.184" dyno=web.1 connect=1ms service=84843ms status=101 bytes=175 protocol=https
2020-06-22T06:45:24.610079+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=fl1vDmja4PAoTprSABMJ" host=www.minglr.us request_id=725e9ad0-0465-4fbe-b4aa-ebf63763931b fwd="98.229.123.184" dyno=web.1 connect=0ms service=85499ms status=101 bytes=175 protocol=https
2020-06-22T06:45:24.611072+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=Y_xPH5Q6499eoOraABMK" host=www.minglr.us request_id=b4da2b50-0dfe-4e58-bf09-bf3442d19b0e fwd="98.229.123.184" dyno=web.1 connect=0ms service=85343ms status=101 bytes=175 protocol=https
2020-06-22T06:45:24.611592+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=l7VcgDEoK2dJsD80ABMI" host=www.minglr.us request_id=44cfe1a7-6492-4c0a-89c9-c1358682d7c1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=85650ms status=101 bytes=175 protocol=https
2020-06-22T06:45:25.506201+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQna37" host=www.minglr.us request_id=c2b6e964-caec-4f51-963c-1e3b1479ca1c fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:45:25.509325+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:25.516853+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQna38" host=www.minglr.us request_id=6dfefe11-2693-4bdb-9624-6a85ac348894 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:45:25.521073+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:25.810718+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQna6P&sid=9XlFVPTVFYhyJo1KABMN" host=www.minglr.us request_id=4e7a197a-468f-4dbf-b351-2b67002bf387 fwd="98.229.123.184" dyno=web.1 connect=0ms service=260ms status=200 bytes=242 protocol=https
2020-06-22T06:45:25.965751+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQna6U&sid=-YOfvMgBgnvOg1-rABMO" host=www.minglr.us request_id=7d409b3d-e0de-4143-bd43-2d248f102c7e fwd="98.229.123.184" dyno=web.1 connect=0ms service=410ms status=200 bytes=242 protocol=https
2020-06-22T06:45:26.613048+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=2JjdM_kV12G1D_aAABML" host=www.minglr.us request_id=7a46fc8c-3661-46cc-a401-6ea410e1abb4 fwd="98.229.123.184" dyno=web.1 connect=4ms service=85411ms status=101 bytes=175 protocol=https
2020-06-22T06:45:26.719699+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnaOi" host=www.minglr.us request_id=0cdfff94-5797-4064-859e-e17082c1f1f4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:45:26.723020+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnaOh" host=www.minglr.us request_id=8091a0db-6286-48bb-8852-ce361abd8b44 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:45:26.723819+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:26.724817+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:27.022909+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnaPJ&sid=YL56Zl7AYsB9WpFkABMP" host=www.minglr.us request_id=92da1560-c81a-430b-8ce0-c1b77cb0a6dd fwd="98.229.123.184" dyno=web.1 connect=0ms service=266ms status=200 bytes=242 protocol=https
2020-06-22T06:45:27.184941+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnaPP&sid=4jKoYQaMf2N2umKZABMQ" host=www.minglr.us request_id=c3d903d0-d69f-4959-85cc-54b1549dbc32 fwd="98.229.123.184" dyno=web.1 connect=0ms service=422ms status=200 bytes=242 protocol=https
2020-06-22T06:45:27.934117+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnahg" host=www.minglr.us request_id=c5985baf-2720-4d94-b8dc-3b62e9fd0775 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:45:27.936892+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:28.231136+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnaiH&sid=O6BtSrW4sm59a7ZhABMR" host=www.minglr.us request_id=03ace453-5df8-4acb-9a39-f5dcda9a50ab fwd="98.229.123.184" dyno=web.1 connect=0ms service=256ms status=200 bytes=242 protocol=https
2020-06-22T06:45:31.014194+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=8yfJoxt9kNpVmAbwABMM" host=www.minglr.us request_id=caee8deb-7f80-45d4-9d2d-b1278d21f469 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84989ms status=101 bytes=175 protocol=https
2020-06-22T06:45:32.784939+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnbtI" host=www.minglr.us request_id=bd2b7615-b496-4783-a0d3-756cdd34b6c2 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:45:32.788844+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:45:33.096094+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQnbuA&sid=m7eaYJVBPDJmet4iABMS" host=www.minglr.us request_id=f54f215b-cc69-4803-aa87-b64b4b8ec7e5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T06:48:53.125644+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:48:55.313852+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:48:56.313323+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:48:56.314421+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:48:58.131620+00:00 app[web.1]: remove David
2020-06-22T06:48:58.319966+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:48:58.565991+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=O6BtSrW4sm59a7ZhABMR" host=www.minglr.us request_id=bdea7248-d386-49c7-96c0-b0e68cb6a9d6 fwd="98.229.123.184" dyno=web.1 connect=0ms service=210479ms status=101 bytes=175 protocol=https
2020-06-22T06:48:59.113765+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=-YOfvMgBgnvOg1-rABMO" host=www.minglr.us request_id=1d7391f4-a171-48ef-8e05-e9e25c5cd176 fwd="98.229.123.184" dyno=web.1 connect=1ms service=213287ms status=101 bytes=175 protocol=https
2020-06-22T06:48:59.849280+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=4jKoYQaMf2N2umKZABMQ" host=www.minglr.us request_id=eb701f89-602d-4db5-ba59-79ecd97cd701 fwd="98.229.123.184" dyno=web.1 connect=0ms service=212807ms status=101 bytes=175 protocol=https
2020-06-22T06:48:59.886960+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=YL56Zl7AYsB9WpFkABMP" host=www.minglr.us request_id=6d86c333-8ad2-4658-bb31-0443e47db54d fwd="98.229.123.184" dyno=web.1 connect=0ms service=213003ms status=101 bytes=175 protocol=https
2020-06-22T06:49:00.033166+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOPv" host=www.minglr.us request_id=e3306e69-ff71-419b-a5ea-cd60d8dd5cf3 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:49:00.033739+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:00.327695+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOUK&sid=kFSet8WVTxm6S3ctABMT" host=www.minglr.us request_id=3704a46b-6635-4491-aa0b-3280c6e115b6 fwd="98.229.123.184" dyno=web.1 connect=0ms service=247ms status=200 bytes=242 protocol=https
2020-06-22T06:49:00.550651+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:00.584207+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=m7eaYJVBPDJmet4iABMS" host=www.minglr.us request_id=bce6ef87-7ffa-4246-966c-7ff4885c5735 fwd="98.229.123.184" dyno=web.1 connect=0ms service=207635ms status=101 bytes=175 protocol=https
2020-06-22T06:49:00.800219+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOff" host=www.minglr.us request_id=ba8711ee-5930-4669-8c7a-dbe8cad68069 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:49:00.800943+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:00.896156+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:00.896171+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOfg" host=www.minglr.us request_id=a10c97fc-0892-4384-8e58-8d72fd28a1ea fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:49:01.105671+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOgI&sid=QYU9z7coeBW85zCYABMU" host=www.minglr.us request_id=d2342fc0-b341-4c86-8f3f-f24f5d31d770 fwd="98.229.123.184" dyno=web.1 connect=0ms service=262ms status=200 bytes=242 protocol=https
2020-06-22T06:49:01.263873+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOho&sid=S3JmjqGUx5KAtwrsABMV" host=www.minglr.us request_id=7454ac60-a67d-47d6-9765-3c1d76506ca1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=326ms status=200 bytes=242 protocol=https
2020-06-22T06:49:01.823582+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOvR.0" host=www.minglr.us request_id=97bb6ac9-8b8e-420c-849e-7a7bf5cfbcba fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:49:01.825344+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOvR" host=www.minglr.us request_id=13fc6a6b-5dfe-4b8a-af93-18c8ab603305 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:49:01.826630+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:01.828010+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:02.128957+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOwK&sid=nOkOqDsptS3YUVBJABMX" host=www.minglr.us request_id=92dd05dc-f423-474e-b66d-d703ff54aeef fwd="98.229.123.184" dyno=web.1 connect=0ms service=261ms status=200 bytes=242 protocol=https
2020-06-22T06:49:02.279677+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoOwK.0&sid=XaT66Ui92VDQwyd2ABMW" host=www.minglr.us request_id=70ce11cb-7f79-44aa-aa5a-56562797c4f2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=411ms status=200 bytes=242 protocol=https
2020-06-22T06:49:02.350713+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=9XlFVPTVFYhyJo1KABMN" host=www.minglr.us request_id=0f2e046f-bbf4-499f-8fd0-35dc4e763528 fwd="98.229.123.184" dyno=web.1 connect=1ms service=216683ms status=101 bytes=175 protocol=https
2020-06-22T06:49:03.039767+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:49:03.040014+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoPCX" host=www.minglr.us request_id=d41a0f8e-f882-4cda-a1ca-dd369a3736d5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:49:03.327361+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoPDG&sid=y2SEHSjFxID3gtfxABMY" host=www.minglr.us request_id=29ee2f30-b8d2-4dc4-abec-621b0e091be6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=248ms status=200 bytes=242 protocol=https
2020-06-22T06:50:51.311802+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:50:55.817460+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=y2SEHSjFxID3gtfxABMY" host=www.minglr.us request_id=a93fd74d-494b-465c-b5c9-0ba3a4dd8a95 fwd="98.229.123.184" dyno=web.1 connect=0ms service=112632ms status=101 bytes=175 protocol=https
2020-06-22T06:50:56.319245+00:00 app[web.1]: remove David
2020-06-22T06:50:56.962583+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQoq-Y" host=www.minglr.us request_id=30c24da5-e081-4038-a9d5-ab5c69b2e69e fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:50:56.967107+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:50:57.255871+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQor1M&sid=9TH4vdxsfu28OKtFABMZ" host=www.minglr.us request_id=b98f1354-d726-416d-b8d7-399035bfcaa4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=256ms status=200 bytes=242 protocol=https
2020-06-22T06:51:12.062493+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:12.107672+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=kFSet8WVTxm6S3ctABMT" host=www.minglr.us request_id=1ce139ca-ce4c-43e3-800a-23c508b12901 fwd="98.229.123.184" dyno=web.1 connect=0ms service=131927ms status=101 bytes=175 protocol=https
2020-06-22T06:51:13.404070+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQov1K" host=www.minglr.us request_id=d0876564-8888-4558-8df4-45b64c2d05e3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:51:13.426175+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:13.720467+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQov2N&sid=M-G50RRf0SJCMwooABMa" host=www.minglr.us request_id=388ec5ab-1c3b-46dc-91d0-5357d2692e8d fwd="98.229.123.184" dyno=web.1 connect=0ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T06:51:14.321860+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:14.364506+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=QYU9z7coeBW85zCYABMU" host=www.minglr.us request_id=7570ff0a-9b78-4284-bf00-df73d0494cf7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=133406ms status=101 bytes=175 protocol=https
2020-06-22T06:51:15.328597+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:15.329684+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:15.330416+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:15.366501+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=XaT66Ui92VDQwyd2ABMW" host=www.minglr.us request_id=9d9a2212-425a-4731-939d-c5a31370c4ec fwd="98.229.123.184" dyno=web.1 connect=0ms service=133225ms status=101 bytes=175 protocol=https
2020-06-22T06:51:15.367707+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=nOkOqDsptS3YUVBJABMX" host=www.minglr.us request_id=68e4c206-5770-4934-a27f-f29fb0a38fa2 fwd="98.229.123.184" dyno=web.1 connect=0ms service=133383ms status=101 bytes=175 protocol=https
2020-06-22T06:51:15.485652+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=S3JmjqGUx5KAtwrsABMV" host=www.minglr.us request_id=15750bb7-f15b-4b32-a906-43a839f0e4c7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=134359ms status=101 bytes=175 protocol=https
2020-06-22T06:51:15.853801+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQovdt" host=www.minglr.us request_id=6996a50e-3ae1-4bde-afb7-874409420e05 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:51:15.884358+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:16.467090+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQovfg&sid=cvCTsOY7UnTuZZE9ABMb" host=www.minglr.us request_id=225e7d62-3665-4c08-bb52-25b33c282f5d fwd="98.229.123.184" dyno=web.1 connect=0ms service=496ms status=200 bytes=242 protocol=https
2020-06-22T06:51:17.463588+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQov_Y" host=www.minglr.us request_id=11fea00f-424f-4093-9d2a-e5c622b6a479 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:51:17.498855+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:17.663661+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQov_Z" host=www.minglr.us request_id=4b502e2f-f8c6-4cad-9e85-c1c6ea992533 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T06:51:17.667701+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQov_a" host=www.minglr.us request_id=291edd0f-c50d-44a0-bd40-80b18773ae40 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:51:17.718367+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:17.719394+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:18.304978+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQow1t&sid=7uWLFYP8okCZ13cNABMc" host=www.minglr.us request_id=222f6fac-6da8-49e3-aec4-760498768496 fwd="98.229.123.184" dyno=web.1 connect=0ms service=657ms status=200 bytes=242 protocol=https
2020-06-22T06:51:18.840181+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQow6v&sid=RhfzoMo5Q0uFVkRgABMd" host=www.minglr.us request_id=51da66e2-48df-449a-be15-bcc19bbfd050 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1003ms status=200 bytes=242 protocol=https
2020-06-22T06:51:19.360984+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQow6x&sid=JOKRwAv59wGQdxFNABMe" host=www.minglr.us request_id=885acab4-f1b7-4ab6-93d9-1824dd18d80d fwd="98.229.123.184" dyno=web.1 connect=0ms service=1518ms status=200 bytes=242 protocol=https
2020-06-22T06:51:19.461957+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQowVu&sid=JOKRwAv59wGQdxFNABMe" host=www.minglr.us request_id=0c5efd04-ef83-437c-a68a-5bbb26c0639c fwd="98.229.123.184" dyno=web.1 connect=0ms service=24ms status=200 bytes=242 protocol=https
2020-06-22T06:51:52.006070+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:51:57.183036+00:00 app[web.1]: remove David
2020-06-22T06:52:08.462840+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:10.977887+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:12.984384+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:12.986411+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:12.987254+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:13.469038+00:00 app[web.1]: remove David
2020-06-22T06:52:15.997989+00:00 app[web.1]: remove David
2020-06-22T06:52:17.997754+00:00 app[web.1]: remove David
2020-06-22T06:52:18.037404+00:00 app[web.1]: remove David
2020-06-22T06:52:18.039386+00:00 app[web.1]: remove David
2020-06-22T06:52:22.009739+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=9TH4vdxsfu28OKtFABMZ" host=www.minglr.us request_id=0d62ebdc-bb90-4788-a97a-e757430b5f36 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84899ms status=101 bytes=175 protocol=https
2020-06-22T06:52:38.472500+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=M-G50RRf0SJCMwooABMa" host=www.minglr.us request_id=f8c93b98-c3d0-4c4b-8c78-068f93fc585f fwd="98.229.123.184" dyno=web.1 connect=1ms service=84895ms status=101 bytes=175 protocol=https
2020-06-22T06:52:40.981559+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=cvCTsOY7UnTuZZE9ABMb" host=www.minglr.us request_id=c5c6c28e-c34d-458e-a7d2-45d42c1755c3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84774ms status=101 bytes=175 protocol=https
2020-06-22T06:52:42.985628+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=RhfzoMo5Q0uFVkRgABMd" host=www.minglr.us request_id=5d292792-c99e-4c49-b940-bcadbf9c1cd5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84424ms status=101 bytes=175 protocol=https
2020-06-22T06:52:42.988609+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=7uWLFYP8okCZ13cNABMc" host=www.minglr.us request_id=68d6ab80-dec2-4758-a91c-6a262489befd fwd="98.229.123.184" dyno=web.1 connect=0ms service=84952ms status=101 bytes=175 protocol=https
2020-06-22T06:52:42.989172+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=JOKRwAv59wGQdxFNABMe" host=www.minglr.us request_id=fe85be03-384c-4170-9382-3fd8e189a051 fwd="98.229.123.184" dyno=web.1 connect=1ms service=83908ms status=101 bytes=175 protocol=https
2020-06-22T06:52:46.513665+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpFjz" host=www.minglr.us request_id=df244bf0-b0b1-46f1-bb45-eea7a5da1a6a fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:52:46.539596+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:46.561364+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpFjx" host=www.minglr.us request_id=10dc6581-b401-4e4d-aa3f-b4e6e9764b88 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:52:46.583896+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:46.934723+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpFn4&sid=iDXZbyOdXArJyGTFABMf" host=www.minglr.us request_id=6dc2bfeb-1a30-4e66-a3a4-c81932411274 fwd="98.229.123.184" dyno=web.1 connect=1ms service=376ms status=200 bytes=242 protocol=https
2020-06-22T06:52:47.084539+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpFnp&sid=AxDM_gudLAyoAo1_ABMg" host=www.minglr.us request_id=a848e882-93ca-4b6c-8ce8-6cd60593ad05 fwd="98.229.123.184" dyno=web.1 connect=1ms service=488ms status=200 bytes=242 protocol=https
2020-06-22T06:52:50.562576+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpGlW" host=www.minglr.us request_id=81c4ec59-0d42-4ee3-89e7-73cee16f6906 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:52:50.572128+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:50.873113+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpGmC&sid=pXLzaEJ0paohGGHJABMh" host=www.minglr.us request_id=2b2ff70f-d690-41f5-8f2d-a12472d0cd15 fwd="98.229.123.184" dyno=web.1 connect=1ms service=274ms status=200 bytes=242 protocol=https
2020-06-22T06:52:56.775435+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:52:56.775853+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpIGg" host=www.minglr.us request_id=b677f168-40ba-49a9-8ec0-866eb2a4bf35 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:52:57.108001+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpIHQ&sid=ZC23YSE3U-8OGsTTABMi" host=www.minglr.us request_id=d7577d80-422b-4d0b-bd24-f939da1be5b0 fwd="98.229.123.184" dyno=web.1 connect=1ms service=284ms status=200 bytes=242 protocol=https
2020-06-22T06:53:00.033497+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpJ3a" host=www.minglr.us request_id=4461b498-068e-487b-a39b-20fe1e25db33 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:00.036365+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:00.372131+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpJ4i&sid=5fmG09BKbJNnVgQkABMj" host=www.minglr.us request_id=a7aa39ed-754a-45d9-b8cb-8f4e12c684b6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=267ms status=200 bytes=242 protocol=https
2020-06-22T06:53:02.051058+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:02.052277+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpJZ7" host=www.minglr.us request_id=2230ed05-da1f-4f49-b70c-8544950f8cfa fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:02.366379+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpJZt&sid=3tBNPK5wD8-KFBg6ABMk" host=www.minglr.us request_id=65225664-e843-4566-84ca-aca0897bf2bb fwd="98.229.123.184" dyno=web.1 connect=1ms service=270ms status=200 bytes=242 protocol=https
2020-06-22T06:53:42.654640+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:45.611147+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:46.540435+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=AxDM_gudLAyoAo1_ABMg" host=www.minglr.us request_id=70c11926-c07c-4ecf-91cb-2be643537858 fwd="98.229.123.184" dyno=web.1 connect=0ms service=59599ms status=101 bytes=175 protocol=https
2020-06-22T06:53:46.632213+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=pXLzaEJ0paohGGHJABMh" host=www.minglr.us request_id=df90e1c2-6881-4205-b27e-d345aa89cd08 fwd="98.229.123.184" dyno=web.1 connect=1ms service=55912ms status=101 bytes=175 protocol=https
2020-06-22T06:53:47.679980+00:00 app[web.1]: remove David
2020-06-22T06:53:48.415204+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpUtY.0" host=www.minglr.us request_id=9f70db40-2ee0-437d-bf64-6d26fc9e6f2b fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T06:53:48.415209+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpUtY" host=www.minglr.us request_id=ba968069-12b5-4416-819a-8050fd8b05ad fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:48.462224+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:48.466394+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:48.768485+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpUuI&sid=bPQWUpktNDjOoQb1ABMl" host=www.minglr.us request_id=a682ead7-cc51-4f17-9cbf-9c67b9c26dbd fwd="98.229.123.184" dyno=web.1 connect=1ms service=300ms status=200 bytes=242 protocol=https
2020-06-22T06:53:48.928539+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpUuJ&sid=ngmzHvj2KEWoIkNuABMm" host=www.minglr.us request_id=fbc8113b-769f-4471-a572-7cb2c911aaa2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=463ms status=200 bytes=242 protocol=https
2020-06-22T06:53:50.674647+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:50.675045+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=iDXZbyOdXArJyGTFABMf" host=www.minglr.us request_id=62f2ef84-9883-40de-9756-3b47b85c6faf fwd="98.229.123.184" dyno=web.1 connect=1ms service=63891ms status=101 bytes=175 protocol=https
2020-06-22T06:53:51.690322+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:51.691437+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpVgq" host=www.minglr.us request_id=3d62b14a-d5b3-42f9-a3ab-ab9c96108622 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:51.821909+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:51.869424+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ZC23YSE3U-8OGsTTABMi" host=www.minglr.us request_id=37fd5154-49a7-4d40-b608-5008630e9bee fwd="98.229.123.184" dyno=web.1 connect=0ms service=54911ms status=101 bytes=175 protocol=https
2020-06-22T06:53:51.986567+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpVhV&sid=_Z56Tnlk6ykOzZEoABMn" host=www.minglr.us request_id=400d6b6b-c6a0-4a93-820d-c68880cd25c2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=255ms status=200 bytes=242 protocol=https
2020-06-22T06:53:53.066407+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:53.067939+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpVzg" host=www.minglr.us request_id=9e636377-cdfa-4991-bab1-af4577be050c fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:53.371614+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpW12&sid=30GI_Q3650A-ErAiABMo" host=www.minglr.us request_id=0d32224c-9a29-43d4-8cc0-62ec0b1fb139 fwd="98.229.123.184" dyno=web.1 connect=1ms service=261ms status=200 bytes=242 protocol=https
2020-06-22T06:53:55.121959+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:55.252505+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=5fmG09BKbJNnVgQkABMj" host=www.minglr.us request_id=f458d97c-e27b-44a1-9ce7-ecd25502dda7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55026ms status=101 bytes=175 protocol=https
2020-06-22T06:53:55.709021+00:00 app[web.1]: remove David
2020-06-22T06:53:56.270699+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:56.272139+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpWoC" host=www.minglr.us request_id=4559907d-7fd0-41a7-bc80-7369815dc13e fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:56.592893+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpWpB&sid=pkrfwTpwH-0pif-YABMp" host=www.minglr.us request_id=999486e5-243b-4a39-b7f7-7b1253a77d48 fwd="98.229.123.184" dyno=web.1 connect=1ms service=268ms status=200 bytes=242 protocol=https
2020-06-22T06:53:57.129903+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:57.172795+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=3tBNPK5wD8-KFBg6ABMk" host=www.minglr.us request_id=00741b80-f533-45ee-994a-b3bf5c82f3b5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=54950ms status=101 bytes=175 protocol=https
2020-06-22T06:53:58.502155+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:53:58.504094+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpXL9" host=www.minglr.us request_id=0127eece-aa7f-4b56-90ce-802657d7b49b fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:53:58.816750+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpXM0&sid=VqrwapQKZ94D1r2XABMq" host=www.minglr.us request_id=2fa2a049-7ad0-44be-b771-8ed1c64e9cf8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=264ms status=200 bytes=242 protocol=https
2020-06-22T06:54:46.730228+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:48.742703+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=_Z56Tnlk6ykOzZEoABMn" host=www.minglr.us request_id=cdc3bf27-7b57-4b9b-9ce3-373aa5a2bd50 fwd="98.229.123.184" dyno=web.1 connect=0ms service=56895ms status=101 bytes=175 protocol=https
2020-06-22T06:54:48.746165+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:48.791942+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=30GI_Q3650A-ErAiABMo" host=www.minglr.us request_id=f1eab938-f8ed-46dc-aa6c-f25e99f32b88 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55568ms status=101 bytes=175 protocol=https
2020-06-22T06:54:49.747101+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpjr-.0" host=www.minglr.us request_id=790d6575-8b9c-468f-a6c0-e9a9467be476 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:54:49.753912+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpjr-" host=www.minglr.us request_id=9bf4de0c-a746-42c6-932a-ea3fa9aa8f22 fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:54:49.759035+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:49.760618+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:50.182924+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpjsb&sid=rGrmlEh_JK8ayviKABMr" host=www.minglr.us request_id=8a6c6175-f8cd-407e-af12-7c9a441a791c fwd="98.229.123.184" dyno=web.1 connect=1ms service=389ms status=200 bytes=242 protocol=https
2020-06-22T06:54:50.334581+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpjse&sid=ghLNGShBcUV5iG-GABMs" host=www.minglr.us request_id=d0ffcbbc-26ee-4b44-9e9f-b90cfa1709e8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=541ms status=200 bytes=242 protocol=https
2020-06-22T06:54:51.326309+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:51.697596+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=pkrfwTpwH-0pif-YABMp" host=www.minglr.us request_id=416e81e9-8e96-429c-a8cc-4288cf4bf6d4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55255ms status=101 bytes=175 protocol=https
2020-06-22T06:54:51.734492+00:00 app[web.1]: remove David
2020-06-22T06:54:52.704830+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:52.704835+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpka2" host=www.minglr.us request_id=f7fcfdb9-1859-40d6-a92c-460de2057779 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:54:53.079032+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpkaz&sid=Kr0wKLZ924HRx3NCABMt" host=www.minglr.us request_id=9070aa01-9e09-4159-a3d2-9f35a6c97a3e fwd="98.229.123.184" dyno=web.1 connect=1ms service=322ms status=200 bytes=242 protocol=https
2020-06-22T06:54:53.553628+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:53.600859+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=VqrwapQKZ94D1r2XABMq" host=www.minglr.us request_id=6512d71f-dc84-40b9-829a-54f6e74e4dfc fwd="98.229.123.184" dyno=web.1 connect=1ms service=54921ms status=101 bytes=175 protocol=https
2020-06-22T06:54:53.750533+00:00 app[web.1]: remove David
2020-06-22T06:54:55.091444+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpl9S" host=www.minglr.us request_id=8ca31e05-c650-4b6a-b718-19ec8dd3963b fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:54:55.093471+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:54:55.382479+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQplA4&sid=o8kx4aWEGS5psbx9ABMu" host=www.minglr.us request_id=6f2bf53f-1bdc-4f59-9fcb-db61ac32d585 fwd="98.229.123.184" dyno=web.1 connect=1ms service=250ms status=200 bytes=242 protocol=https
2020-06-22T06:55:08.577810+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:08.578908+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:08.703173+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ngmzHvj2KEWoIkNuABMm" host=www.minglr.us request_id=ee6789a3-1074-442a-a803-d2cb058863b9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=79923ms status=101 bytes=175 protocol=https
2020-06-22T06:55:08.705771+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bPQWUpktNDjOoQb1ABMl" host=www.minglr.us request_id=b1ea4607-00fb-4e62-93e2-bdd26a8f5a90 fwd="98.229.123.184" dyno=web.1 connect=1ms service=80079ms status=101 bytes=175 protocol=https
2020-06-22T06:55:09.749357+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:09.749644+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpojy" host=www.minglr.us request_id=c7633501-3654-4d61-bb0b-afb58a86cc11 fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T06:55:10.091193+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpolE&sid=QT_xkvahYHL14NfFABMv" host=www.minglr.us request_id=22f25c0d-122d-4cfc-90ac-9ad0d9b75c8c fwd="98.229.123.184" dyno=web.1 connect=1ms service=290ms status=200 bytes=242 protocol=https
2020-06-22T06:55:10.995461+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpp1s" host=www.minglr.us request_id=c1373b49-5126-468b-a644-7ed20d1696e2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:55:11.015870+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:11.310959+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpp2k&sid=bhlhAfJLwAb1T63IABMw" host=www.minglr.us request_id=05a4dc1a-67f2-430c-9694-0570a5bbe53e fwd="98.229.123.184" dyno=web.1 connect=1ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T06:55:45.802142+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:47.305081+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ghLNGShBcUV5iG-GABMs" host=www.minglr.us request_id=98bdd428-7ab8-4b9e-a784-63d8a35231cc fwd="98.229.123.184" dyno=web.1 connect=1ms service=57117ms status=101 bytes=175 protocol=https
2020-06-22T06:55:48.995168+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpyJh" host=www.minglr.us request_id=cb1e20e5-d773-46c0-9365-8b5fdbcdfad3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:55:49.000757+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:49.311400+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpyKT&sid=HaRIcs8Cy3GEZHbJABMx" host=www.minglr.us request_id=2d7a7739-c2e6-457e-9ea3-bfab0c55471f fwd="98.229.123.184" dyno=web.1 connect=1ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T06:55:50.129133+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:50.165528+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=o8kx4aWEGS5psbx9ABMu" host=www.minglr.us request_id=c0941541-ff92-419d-b3be-a165464222b9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=54927ms status=101 bytes=175 protocol=https
2020-06-22T06:55:50.810486+00:00 app[web.1]: remove David
2020-06-22T06:55:51.238916+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpysl" host=www.minglr.us request_id=e009eecb-3eec-444f-b499-4dc45acc84c1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:55:51.243501+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:55:51.562010+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQpytU&sid=tiOOlnywS5yT_3IuABMy" host=www.minglr.us request_id=129fe9f0-3876-4067-8bb3-e14f0bf47e7d fwd="98.229.123.184" dyno=web.1 connect=1ms service=273ms status=200 bytes=242 protocol=https
2020-06-22T06:58:01.165911+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:04.211692+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:06.172471+00:00 app[web.1]: remove David
2020-06-22T06:58:09.215830+00:00 app[web.1]: remove David
2020-06-22T06:58:15.920686+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:18.257827+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:20.925910+00:00 app[web.1]: remove David
2020-06-22T06:58:21.216829+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:23.278721+00:00 app[web.1]: remove David
2020-06-22T06:58:24.477832+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:26.222599+00:00 app[web.1]: remove David
2020-06-22T06:58:29.481581+00:00 app[web.1]: remove David
2020-06-22T06:58:31.168420+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=HaRIcs8Cy3GEZHbJABMx" host=www.minglr.us request_id=df3193a7-e5c1-4445-8aa5-8bb21e0d386c fwd="98.229.123.184" dyno=web.1 connect=0ms service=162006ms status=101 bytes=175 protocol=https
2020-06-22T06:58:31.656640+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=QT_xkvahYHL14NfFABMv" host=www.minglr.us request_id=e1b3704a-9907-4ad9-926e-a89036601e53 fwd="98.229.123.184" dyno=web.1 connect=1ms service=201727ms status=101 bytes=175 protocol=https
2020-06-22T06:58:31.948295+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=tiOOlnywS5yT_3IuABMy" host=www.minglr.us request_id=171ae0ee-9726-43c4-92b6-3703fd572b1a fwd="98.229.123.184" dyno=web.1 connect=0ms service=160527ms status=101 bytes=175 protocol=https
2020-06-22T06:58:33.206295+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqaGy.0" host=www.minglr.us request_id=3fc45e72-a2ac-457f-a24d-f57a06b54f2c fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:58:33.207524+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqaGy" host=www.minglr.us request_id=f6733b0b-382c-40c1-a2bc-2443631c1df1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:58:33.217861+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:33.229570+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:33.930765+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqaWg" host=www.minglr.us request_id=53f2a720-5790-459a-a25b-bf876e6d0c07 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:58:33.931631+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:34.027298+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqaSG&sid=2ax4vKPYKqBEIvHHABM0" host=www.minglr.us request_id=08151ce8-8825-457d-9e50-aefe3817cde1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=644ms status=200 bytes=242 protocol=https
2020-06-22T06:58:34.569189+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqaSH&sid=6RqXHDxeZ6v6s01ZABMz" host=www.minglr.us request_id=8ecafe56-2853-4145-9594-36c2f4a6117d fwd="98.229.123.184" dyno=web.1 connect=1ms service=1185ms status=200 bytes=242 protocol=https
2020-06-22T06:58:34.669002+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqam3&sid=6RqXHDxeZ6v6s01ZABMz" host=www.minglr.us request_id=3f474876-9fe8-4029-b418-f47ea6cfdaf9 fwd="98.229.123.184" dyno=web.1 connect=1ms service=18ms status=200 bytes=242 protocol=https
2020-06-22T06:58:34.679396+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bhlhAfJLwAb1T63IABMw" host=www.minglr.us request_id=e0fafa01-4fec-4748-9b63-e760c88e8ad5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=203513ms status=101 bytes=175 protocol=https
2020-06-22T06:58:34.974636+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqadc&sid=aYNZpiMcm3N7ZragABM1" host=www.minglr.us request_id=fd093c13-ddd5-4233-b896-20dcd9504138 fwd="98.229.123.184" dyno=web.1 connect=1ms service=864ms status=200 bytes=242 protocol=https
2020-06-22T06:58:36.098747+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqb5W" host=www.minglr.us request_id=cf51260b-75e2-4819-a1e9-93deb0432220 fwd="98.229.123.184" dyno=web.1 connect=5ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T06:58:36.130633+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:36.397224+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqb7P&sid=oswkFqI5CQFxJ0BsABM2" host=www.minglr.us request_id=b8770182-fb5b-4b49-aa9f-18ffac6bd0a1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=252ms status=200 bytes=242 protocol=https
2020-06-22T06:58:45.700023+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=rGrmlEh_JK8ayviKABMr" host=www.minglr.us request_id=452a68ce-01b4-4127-9304-e6848fcb2045 fwd="98.229.123.184" dyno=web.1 connect=0ms service=235664ms status=101 bytes=175 protocol=https
2020-06-22T06:58:46.708916+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqdiO" host=www.minglr.us request_id=7c263078-6cf6-4d35-a103-997364f04818 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:58:46.718502+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:47.025365+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqdjE&sid=RCeapVk7yhSDH80zABM3" host=www.minglr.us request_id=933a32a2-61af-4f78-a6a6-c5b519443d16 fwd="98.229.123.184" dyno=web.1 connect=1ms service=260ms status=200 bytes=242 protocol=https
2020-06-22T06:58:54.480682+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=Kr0wKLZ924HRx3NCABMt" host=www.minglr.us request_id=5563b386-a4c2-41dc-9eef-785e6e0df935 fwd="98.229.123.184" dyno=web.1 connect=1ms service=241617ms status=101 bytes=175 protocol=https
2020-06-22T06:58:56.823452+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqg8l" host=www.minglr.us request_id=df53b9e6-4f09-4969-a6ae-85efd4e81320 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T06:58:56.825077+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T06:58:57.478753+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqgBI&sid=49FnC6F_QvxZyyE2ABM4" host=www.minglr.us request_id=b20ce6cd-9613-425d-8f72-33d840cb407d fwd="98.229.123.184" dyno=web.1 connect=1ms service=470ms status=200 bytes=242 protocol=https
2020-06-22T06:58:57.578856+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQqgLz&sid=49FnC6F_QvxZyyE2ABM4" host=www.minglr.us request_id=8168ca77-dafd-49e4-819a-2dcac0887e75 fwd="98.229.123.184" dyno=web.1 connect=1ms service=22ms status=200 bytes=242 protocol=https
2020-06-22T07:00:17.246645+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:19.337441+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:19.338490+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:21.345842+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:22.265395+00:00 app[web.1]: remove David
2020-06-22T07:00:23.370167+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:24.342238+00:00 app[web.1]: remove David
2020-06-22T07:00:24.355163+00:00 app[web.1]: remove David
2020-06-22T07:00:26.349767+00:00 app[web.1]: remove David
2020-06-22T07:00:28.389910+00:00 app[web.1]: remove David
2020-06-22T07:00:31.886006+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:36.889455+00:00 app[web.1]: remove David
2020-06-22T07:00:37.611481+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=49FnC6F_QvxZyyE2ABM4" host=www.minglr.us request_id=d5e35ca3-605a-49f5-bc5d-26672aa7d483 fwd="98.229.123.184" dyno=web.1 connect=1ms service=100411ms status=101 bytes=175 protocol=https
2020-06-22T07:00:39.353537+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr39U" host=www.minglr.us request_id=b7519186-b768-4758-95b1-6217313f273a fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:00:39.467103+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:39.649748+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr3DD&sid=Aq7Ala4WRjmYoqLJABM5" host=www.minglr.us request_id=927e79a7-ebff-480c-a22f-d78964aeabc9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=255ms status=200 bytes=242 protocol=https
2020-06-22T07:00:40.418492+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=aYNZpiMcm3N7ZragABM1" host=www.minglr.us request_id=06ea472a-8863-4975-b019-34d994c7132e fwd="98.229.123.184" dyno=web.1 connect=0ms service=125589ms status=101 bytes=175 protocol=https
2020-06-22T07:00:41.003377+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=RCeapVk7yhSDH80zABM3" host=www.minglr.us request_id=ee5f15ed-865f-4478-acae-5afa4cb72cfc fwd="98.229.123.184" dyno=web.1 connect=0ms service=114131ms status=101 bytes=175 protocol=https
2020-06-22T07:00:41.688867+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr3mw" host=www.minglr.us request_id=b97edf17-4fdf-41a7-8b55-2d856a195943 fwd="98.229.123.184" dyno=web.1 connect=0ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T07:00:41.689696+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:41.989081+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr3ni&sid=Gxz3PGIFizDIo0niABM6" host=www.minglr.us request_id=b458a6dc-9046-42fd-9795-f7d947ad8833 fwd="98.229.123.184" dyno=web.1 connect=0ms service=262ms status=200 bytes=242 protocol=https
2020-06-22T07:00:42.901525+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr43_" host=www.minglr.us request_id=61b91445-ff0c-48a3-90ce-b0097e364ccc fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:00:42.907789+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:43.235519+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr44i&sid=bLEnvh9xKKqB4Kn6ABM7" host=www.minglr.us request_id=666f6921-dbed-4a4e-84b6-972d78461db4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=292ms status=200 bytes=242 protocol=https
2020-06-22T07:00:43.792179+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=oswkFqI5CQFxJ0BsABM2" host=www.minglr.us request_id=9fcc1f6f-4c4b-4d84-b8cd-2068c06b79f2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=127538ms status=101 bytes=175 protocol=https
2020-06-22T07:00:43.908896+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=2ax4vKPYKqBEIvHHABM0" host=www.minglr.us request_id=0976b973-e543-4b27-aa60-0df54af2a23d fwd="98.229.123.184" dyno=web.1 connect=1ms service=130125ms status=101 bytes=175 protocol=https
2020-06-22T07:00:43.910324+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=6RqXHDxeZ6v6s01ZABMz" host=www.minglr.us request_id=58a69d9b-6e21-4ab0-8064-f0f5e7b6ea94 fwd="98.229.123.184" dyno=web.1 connect=1ms service=129620ms status=101 bytes=175 protocol=https
2020-06-22T07:00:44.917361+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4ZN" host=www.minglr.us request_id=f0b03ca4-97ff-49a2-8196-acbcfb0da111 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:00:44.918871+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:45.233672+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4aD&sid=IO9YQNo7lyElXUpoABM8" host=www.minglr.us request_id=167eb0cc-6c8c-40cb-85b5-90e71aa4ba53 fwd="98.229.123.184" dyno=web.1 connect=0ms service=268ms status=200 bytes=242 protocol=https
2020-06-22T07:00:45.934492+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4pB" host=www.minglr.us request_id=ebc3ccee-1100-437a-a3b9-abbebe33aa44 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:00:45.957836+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:46.058708+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4pC" host=www.minglr.us request_id=5d84d6e5-a019-4b17-80ed-6b089b3f84f4 fwd="98.229.123.184" dyno=web.1 connect=1ms service=7ms status=200 bytes=344 protocol=https
2020-06-22T07:00:46.074420+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:00:46.312314+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4qK&sid=HSqwd3HJqbE9grQQABM9" host=www.minglr.us request_id=6b69d445-44b9-48a7-9937-2dd6f91e810e fwd="98.229.123.184" dyno=web.1 connect=0ms service=319ms status=200 bytes=242 protocol=https
2020-06-22T07:00:46.481110+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQr4sD&sid=8kqvRYPWHVmXMnNhABM-" host=www.minglr.us request_id=5eeff433-073f-4021-aeba-abbaf7f1304a fwd="98.229.123.184" dyno=web.1 connect=1ms service=354ms status=200 bytes=242 protocol=https
2020-06-22T07:01:34.400681+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:36.733882+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:38.745958+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:39.406127+00:00 app[web.1]: remove David
2020-06-22T07:01:40.751541+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:41.741982+00:00 app[web.1]: remove David
2020-06-22T07:01:41.761849+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:41.766445+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:43.760144+00:00 app[web.1]: remove David
2020-06-22T07:01:45.633199+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=Gxz3PGIFizDIo0niABM6" host=www.minglr.us request_id=b517f4b4-1761-42f9-ac52-eea64fbe93e8 fwd="98.229.123.184" dyno=web.1 connect=0ms service=63784ms status=101 bytes=175 protocol=https
2020-06-22T07:01:45.760668+00:00 app[web.1]: remove David
2020-06-22T07:01:46.703027+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bLEnvh9xKKqB4Kn6ABM7" host=www.minglr.us request_id=a3c5db41-9adb-4a96-83ac-c383e2dac708 fwd="98.229.123.184" dyno=web.1 connect=0ms service=63625ms status=101 bytes=175 protocol=https
2020-06-22T07:01:46.766403+00:00 app[web.1]: remove David
2020-06-22T07:01:46.816721+00:00 app[web.1]: remove David
2020-06-22T07:01:47.252270+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=IO9YQNo7lyElXUpoABM8" host=www.minglr.us request_id=f1b7cedb-3874-4791-a860-06b3c8ca5f3a fwd="98.229.123.184" dyno=web.1 connect=1ms service=62161ms status=101 bytes=175 protocol=https
2020-06-22T07:01:47.407195+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrJny" host=www.minglr.us request_id=26dd867a-6ce9-4627-92da-9e67502ff3e5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:01:47.412702+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:47.712622+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=HSqwd3HJqbE9grQQABM9" host=www.minglr.us request_id=cf2e3a7c-a6e2-45bf-aecf-21c4d530fa15 fwd="98.229.123.184" dyno=web.1 connect=0ms service=61549ms status=101 bytes=175 protocol=https
2020-06-22T07:01:47.730668+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=8kqvRYPWHVmXMnNhABM-" host=www.minglr.us request_id=a2943e07-8a87-4a7d-9dd1-7048a8b8769d fwd="98.229.123.184" dyno=web.1 connect=1ms service=61399ms status=101 bytes=175 protocol=https
2020-06-22T07:01:47.735129+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrJqb&sid=TplN-XVujfk54E_yABM_" host=www.minglr.us request_id=6356656b-1897-442a-ad18-c237b738c090 fwd="98.229.123.184" dyno=web.1 connect=1ms service=285ms status=200 bytes=242 protocol=https
2020-06-22T07:01:48.298967+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrK1h" host=www.minglr.us request_id=f328a2c6-53c0-42e1-8afc-2239c4830e11 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:01:48.308550+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:48.400107+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrK1i" host=www.minglr.us request_id=954fc853-47a7-4107-9f1e-d467ba19c81c fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:01:48.413453+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:48.650203+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrK2W&sid=HPdlk-f3J1zrymYtABNA" host=www.minglr.us request_id=160c85ce-b0cf-4396-b9b8-a9363b83f3ae fwd="98.229.123.184" dyno=web.1 connect=1ms service=300ms status=200 bytes=242 protocol=https
2020-06-22T07:01:48.791618+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrK4D&sid=TaGulY9zJRo0_ILRABNB" host=www.minglr.us request_id=4ee4e701-a275-49f5-8983-4ed3a1e34b43 fwd="98.229.123.184" dyno=web.1 connect=1ms service=338ms status=200 bytes=242 protocol=https
2020-06-22T07:01:49.304453+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKHQ.0" host=www.minglr.us request_id=f1d4ebd5-1169-4b61-b172-08d0a0bd1512 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:01:49.305212+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKHQ" host=www.minglr.us request_id=236420ac-d96d-4eca-9f24-6f771cd1a94b fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:01:49.308130+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:49.309625+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:49.624212+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKIA&sid=ZQshImEWzEa4pk1ZABNC" host=www.minglr.us request_id=ba84639c-b312-4d0a-94a9-0acaff6ed2a9 fwd="98.229.123.184" dyno=web.1 connect=2ms service=276ms status=200 bytes=242 protocol=https
2020-06-22T07:01:49.771981+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKID&sid=OaSerq0oSRevu82LABND" host=www.minglr.us request_id=8652e5c3-3987-4edf-8e7d-cfd96c96446e fwd="98.229.123.184" dyno=web.1 connect=1ms service=427ms status=200 bytes=242 protocol=https
2020-06-22T07:01:49.990476+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=Aq7Ala4WRjmYoqLJABM5" host=www.minglr.us request_id=a56146ee-7312-4266-be8a-797af30cecc8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=70484ms status=101 bytes=175 protocol=https
2020-06-22T07:01:51.528593+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKqH" host=www.minglr.us request_id=283cfd07-397a-40fd-901b-0f532f59f31a fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:01:51.532001+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:01:51.830028+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrKqy&sid=rfqQWhaMpwQZ4tz8ABNE" host=www.minglr.us request_id=78969448-c49f-4897-8f13-fea5df7cdb8a fwd="98.229.123.184" dyno=web.1 connect=1ms service=261ms status=200 bytes=242 protocol=https
2020-06-22T07:02:42.454346+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:43.537841+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:43.538976+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:44.465830+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:44.473625+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:46.588595+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:02:47.459337+00:00 app[web.1]: remove David
2020-06-22T07:02:48.541930+00:00 app[web.1]: remove David
2020-06-22T07:02:48.544045+00:00 app[web.1]: remove David
2020-06-22T07:02:49.469538+00:00 app[web.1]: remove David
2020-06-22T07:02:49.477212+00:00 app[web.1]: remove David
2020-06-22T07:02:51.605654+00:00 app[web.1]: remove David
2020-06-22T07:03:12.454670+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=TplN-XVujfk54E_yABM_" host=www.minglr.us request_id=0d7c1c5d-7b37-44ae-97d7-87a1afbc2c18 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84864ms status=101 bytes=175 protocol=https
2020-06-22T07:03:13.540169+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=TaGulY9zJRo0_ILRABNB" host=www.minglr.us request_id=b49055e7-a12b-49f8-a34a-a58b4e6d8a76 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84904ms status=101 bytes=175 protocol=https
2020-06-22T07:03:13.541279+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=HPdlk-f3J1zrymYtABNA" host=www.minglr.us request_id=650a2b0d-d3fb-4078-bbbf-f6d718dfbde8 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85073ms status=101 bytes=175 protocol=https
2020-06-22T07:03:14.468779+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ZQshImEWzEa4pk1ZABNC" host=www.minglr.us request_id=ea9d57ed-5433-4dbb-8685-4216a6a7e986 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84993ms status=101 bytes=175 protocol=https
2020-06-22T07:03:14.476306+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=OaSerq0oSRevu82LABND" host=www.minglr.us request_id=a92136b8-8ac0-41e8-9245-2b2ac3c951d5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84848ms status=101 bytes=175 protocol=https
2020-06-22T07:03:16.591465+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=rfqQWhaMpwQZ4tz8ABNE" host=www.minglr.us request_id=bd4ab50a-6611-4470-9abf-ddb093ac197e fwd="98.229.123.184" dyno=web.1 connect=0ms service=84910ms status=101 bytes=175 protocol=https
2020-06-22T07:03:29.672529+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQril9" host=www.minglr.us request_id=c2b2cc50-9629-494a-92e4-932abbf132ea fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:03:29.690297+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:30.023507+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrioX&sid=BtFpcQ317qAfK-8PABNF" host=www.minglr.us request_id=a2689b9f-b46c-4035-996c-96b965a6184a fwd="98.229.123.184" dyno=web.1 connect=0ms service=298ms status=200 bytes=242 protocol=https
2020-06-22T07:03:32.567357+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjU5" host=www.minglr.us request_id=03d4a593-a694-49b7-92ec-829d2aa3c311 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:03:32.571567+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:32.630580+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjU5.0" host=www.minglr.us request_id=5a673578-0037-44ea-ae81-a28bce0d8f1e fwd="98.229.123.184" dyno=web.1 connect=0ms service=20ms status=200 bytes=344 protocol=https
2020-06-22T07:03:32.633739+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:32.687994+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjU6" host=www.minglr.us request_id=64354319-2a86-4d19-a304-7ad8cb0c8651 fwd="98.229.123.184" dyno=web.1 connect=0ms service=13ms status=200 bytes=344 protocol=https
2020-06-22T07:03:32.690282+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:32.706617+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjU6.0" host=www.minglr.us request_id=4d7c7649-b3b4-46b4-a9ad-bfab8642996a fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:03:32.732382+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:33.203952+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjVg&sid=4ODI3b3HabdsXRSdABNG" host=www.minglr.us request_id=6128336d-c21b-45bb-b945-08da93744b1f fwd="98.229.123.184" dyno=web.1 connect=0ms service=502ms status=200 bytes=242 protocol=https
2020-06-22T07:03:33.427924+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjWg&sid=GksCgUzjxo6QSIYyABNH" host=www.minglr.us request_id=5a5dbf83-3720-4c2f-a7bf-4cb3bcbda421 fwd="98.229.123.184" dyno=web.1 connect=0ms service=755ms status=200 bytes=242 protocol=https
2020-06-22T07:03:33.507041+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjjk" host=www.minglr.us request_id=44ff5df6-35f6-45bb-9acb-600dd8256fa8 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:03:33.509246+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:03:33.602762+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjXf&sid=IERtSOVEtVNH4Yh8ABNI" host=www.minglr.us request_id=4cc9f24e-492b-4ac5-928e-13635b0a50e8 fwd="98.229.123.184" dyno=web.1 connect=0ms service=867ms status=200 bytes=242 protocol=https
2020-06-22T07:03:33.821343+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjXv&sid=zrytboFRUyJajOAUABNJ" host=www.minglr.us request_id=6fa8b170-a39a-4435-84fd-d71bfe8f4f38 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1056ms status=200 bytes=242 protocol=https
2020-06-22T07:03:34.148781+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQrjl3&sid=S5seT24H9FeCZH_GABNK" host=www.minglr.us request_id=610052d9-d9ba-4ffa-b09c-a4a90aad6ad4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=553ms status=200 bytes=242 protocol=https
2020-06-22T07:04:27.673948+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:28.625856+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:28.632263+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:28.633061+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:28.633761+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:32.689871+00:00 app[web.1]: remove David
2020-06-22T07:04:33.632205+00:00 app[web.1]: remove David
2020-06-22T07:04:33.634799+00:00 app[web.1]: remove David
2020-06-22T07:04:33.636722+00:00 app[web.1]: remove David
2020-06-22T07:04:33.639010+00:00 app[web.1]: remove David
2020-06-22T07:04:49.847512+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:04:54.865190+00:00 app[web.1]: remove David
2020-06-22T07:04:57.679703+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=4ODI3b3HabdsXRSdABNG" host=www.minglr.us request_id=a1cd18c8-d9fe-4cbe-8888-848f61d135d7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84915ms status=101 bytes=175 protocol=https
2020-06-22T07:04:58.629147+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=GksCgUzjxo6QSIYyABNH" host=www.minglr.us request_id=bd499b43-af99-416a-970d-0dbf51e2b3ae fwd="98.229.123.184" dyno=web.1 connect=1ms service=85394ms status=101 bytes=175 protocol=https
2020-06-22T07:04:58.632231+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=zrytboFRUyJajOAUABNJ" host=www.minglr.us request_id=c4381cea-8ca7-4af6-b852-4e62888ec5d8 fwd="98.229.123.184" dyno=web.1 connect=0ms service=84973ms status=101 bytes=175 protocol=https
2020-06-22T07:04:58.633766+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=IERtSOVEtVNH4Yh8ABNI" host=www.minglr.us request_id=dffd7bb5-d764-4528-9fd5-3bf523cd8ff2 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85193ms status=101 bytes=175 protocol=https
2020-06-22T07:04:58.637013+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=S5seT24H9FeCZH_GABNK" host=www.minglr.us request_id=ad403e4c-e6fb-4fc6-8827-e09b1880570f fwd="98.229.123.184" dyno=web.1 connect=1ms service=84798ms status=101 bytes=175 protocol=https
2020-06-22T07:05:03.978343+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3nA" host=www.minglr.us request_id=c9e7ffc1-b8db-45cb-b752-17cf6919634d fwd="98.229.123.184" dyno=web.1 connect=0ms service=6ms status=200 bytes=344 protocol=https
2020-06-22T07:05:03.981432+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3n9.0" host=www.minglr.us request_id=ec519c05-31ec-455d-bf1d-cdf1b5310a37 fwd="98.229.123.184" dyno=web.1 connect=0ms service=6ms status=200 bytes=344 protocol=https
2020-06-22T07:05:03.988393+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:04.010103+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:04.026851+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3n9" host=www.minglr.us request_id=d810b587-828a-49fd-b91f-59d886e3c0b8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=19ms status=200 bytes=344 protocol=https
2020-06-22T07:05:04.059642+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:05.950875+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs4Ga" host=www.minglr.us request_id=cad2ff27-8b65-47b5-9811-b303f455c59e fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:05:05.953071+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs4Ga.0" host=www.minglr.us request_id=c4300821-f991-4462-b2d6-beabfc9ff27d fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:05:05.957910+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:05.958999+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:19.855758+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=BtFpcQ317qAfK-8PABNF" host=www.minglr.us request_id=e1640c80-f489-45a8-994a-3f88cfc82439 fwd="98.229.123.184" dyno=web.1 connect=0ms service=109975ms status=101 bytes=175 protocol=https
2020-06-22T07:05:21.686891+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs85g" host=www.minglr.us request_id=5bef6d6b-92d1-4dcf-84b8-e6c40f047e7e fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:05:21.687090+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:22.008790+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs88g&sid=9bZCfHRLnvLJHjyeABNQ" host=www.minglr.us request_id=cc07043e-4788-47bc-92f6-c2ba4e1a3073 fwd="98.229.123.184" dyno=web.1 connect=1ms service=276ms status=200 bytes=242 protocol=https
2020-06-22T07:05:29.097001+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3q3&sid=NnmAHJ0FYzYsisKMABNM" host=www.minglr.us request_id=acf95e8a-dade-4741-856e-38178675a502 fwd="98.229.123.184" dyno=web.1 connect=5ms service=25065ms status=200 bytes=242 protocol=https
2020-06-22T07:05:29.097384+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQs9wm&sid=NnmAHJ0FYzYsisKMABNM" host=www.minglr.us request_id=1077886a-bc27-4d4d-a53b-0d95f17433d7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T07:05:29.138098+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3q4&sid=bi_vaTZNsRuB3n_OABNL" host=www.minglr.us request_id=3d624adb-07b5-46eb-b470-4cbf97b2622b fwd="98.229.123.184" dyno=web.1 connect=0ms service=25111ms status=200 bytes=242 protocol=https
2020-06-22T07:05:29.138999+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQs9wn&sid=bi_vaTZNsRuB3n_OABNL" host=www.minglr.us request_id=874e271e-1477-45f2-a930-b7973cc37cd1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=285 protocol=https
2020-06-22T07:05:30.041905+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs3qj&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=e48c6785-207f-4a26-a77b-4c3d9b0c5609 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25975ms status=200 bytes=242 protocol=https
2020-06-22T07:05:30.042495+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsAAT&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=67b2f05e-5d7c-4338-86fd-0da03a7410e4 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=285 protocol=https
2020-06-22T07:05:31.085497+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsAQD&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=90c8358f-66bb-4376-a475-aa4f97872d8d fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T07:05:31.087370+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs4Ir&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=13d548db-6116-4154-ae4d-d7852d7d8690 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25088ms status=200 bytes=242 protocol=https
2020-06-22T07:05:31.265046+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs4Iu&sid=86LxL6OyyNxwxgpuABNP" host=www.minglr.us request_id=8ea9199b-a85e-4372-8e93-5aaa20c5ae98 fwd="98.229.123.184" dyno=web.1 connect=1ms service=25263ms status=200 bytes=242 protocol=https
2020-06-22T07:05:31.265356+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsAQE&sid=86LxL6OyyNxwxgpuABNP" host=www.minglr.us request_id=eef66bac-d533-4ce8-a419-8d16d20a44f5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=285 protocol=https
2020-06-22T07:05:59.099254+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:59.102110+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs9yT&sid=NnmAHJ0FYzYsisKMABNM" host=www.minglr.us request_id=69212eff-562e-4903-951f-92edc59858c6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=29957ms status=200 bytes=242 protocol=https
2020-06-22T07:05:59.135919+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:05:59.138375+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQs9-f&sid=bi_vaTZNsRuB3n_OABNL" host=www.minglr.us request_id=1b20b955-20bc-4a48-9a9b-5dfe9b835e04 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29852ms status=200 bytes=242 protocol=https
2020-06-22T07:06:00.041204+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:00.042800+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsACq&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=87f854f1-d240-4524-9fd3-78cbc2408a76 fwd="98.229.123.184" dyno=web.1 connect=0ms service=29856ms status=200 bytes=242 protocol=https
2020-06-22T07:06:01.085295+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:01.086782+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsATj&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=84e66222-8b94-42b2-95d3-5e170a65a519 fwd="98.229.123.184" dyno=web.1 connect=1ms service=29818ms status=200 bytes=242 protocol=https
2020-06-22T07:06:01.264033+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:01.266417+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsAUN&sid=86LxL6OyyNxwxgpuABNP" host=www.minglr.us request_id=bf01e47f-3ea2-4adb-9f0e-6e2695ad41e4 fwd="98.229.123.184" dyno=web.1 connect=1ms service=29952ms status=200 bytes=242 protocol=https
2020-06-22T07:06:04.105877+00:00 app[web.1]: remove David
2020-06-22T07:06:04.170163+00:00 app[web.1]: remove David
2020-06-22T07:06:05.048169+00:00 app[web.1]: remove David
2020-06-22T07:06:06.099528+00:00 app[web.1]: remove David
2020-06-22T07:06:06.295297+00:00 app[web.1]: remove David
2020-06-22T07:06:15.382437+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLEV&sid=NnmAHJ0FYzYsisKMABNM" host=www.minglr.us request_id=7a4c83af-cfb5-4d3f-82f8-2e7f558ed102 fwd="98.229.123.184" dyno=web.1 connect=2ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T07:06:15.433496+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLEW&sid=bi_vaTZNsRuB3n_OABNL" host=www.minglr.us request_id=72d36579-f12b-48f5-8809-559e4734f4b6 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T07:06:15.471020+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLEW.0&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=725cec34-13f2-49b2-bfd5-e90457717e0c fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T07:06:16.447361+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLVU&sid=NnmAHJ0FYzYsisKMABNM" host=www.minglr.us request_id=6631e506-bebb-4724-bab9-fc183289bfb9 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=400 bytes=288 protocol=https
2020-06-22T07:06:16.451969+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLVU.0&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=cd48d62c-60b0-4e9f-a101-80506012e5fc fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=400 bytes=288 protocol=https
2020-06-22T07:06:16.529607+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLVV&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=45184b67-7a1f-4a08-a7f4-b1235d5812c5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T07:06:16.566656+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=mnEKpP3AyZ5VBTbEABNN" host=www.minglr.us request_id=f30214f1-8bbe-4c38-9a1d-ad9712794cb1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=400 bytes=110 protocol=https
2020-06-22T07:06:16.569002+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLVV.0&sid=86LxL6OyyNxwxgpuABNP" host=www.minglr.us request_id=befb6b81-b7cf-465c-b62f-93b031f2a734 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=400 bytes=288 protocol=https
2020-06-22T07:06:16.658298+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=ece92590-d45b-4335-a8f1-15e2147ed21b fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=400 bytes=110 protocol=https
2020-06-22T07:06:16.742529+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:17.499967+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsLm3" host=www.minglr.us request_id=54fa7918-b92d-475d-8b60-5113ce857647 fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:06:17.502682+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsLm1" host=www.minglr.us request_id=2bedf495-6221-43ab-b2d5-93fbb8cd9b50 fwd="98.229.123.184" dyno=web.1 connect=1ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T07:06:17.503612+00:00 heroku[router]: at=info method=POST path="/socket.io/?EIO=3&transport=polling&t=NBQsLm1.0&sid=KzHdb-V-C91_di52ABNO" host=www.minglr.us request_id=cb0a5824-ab19-4452-8eba-641a75a4d32d fwd="98.229.123.184" dyno=web.1 connect=1ms service=5ms status=400 bytes=288 protocol=https
2020-06-22T07:06:17.504352+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:17.505290+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:17.803982+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsLmk&sid=6TnCOPAVsUQx2Lf4ABNR" host=www.minglr.us request_id=0042a9ab-7180-4cc5-aa97-f19f2022f25f fwd="98.229.123.184" dyno=web.1 connect=1ms service=263ms status=200 bytes=242 protocol=https
2020-06-22T07:06:17.955694+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsLml&sid=IRfXqL7YWgKNZLjgABNS" host=www.minglr.us request_id=247df66d-f564-4f8d-9f3e-43986f565bea fwd="98.229.123.184" dyno=web.1 connect=0ms service=416ms status=200 bytes=242 protocol=https
2020-06-22T07:06:18.585795+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM0_" host=www.minglr.us request_id=b2da4df9-ae73-41e4-8e75-c6b6d8c8af73 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:06:18.586071+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:18.587068+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:18.587581+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM10" host=www.minglr.us request_id=91058c15-e32a-438d-90ff-5ff807b264e0 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:06:18.592169+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM10.0" host=www.minglr.us request_id=8c97b8f2-5098-4939-a6f3-73bd06aeca6e fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:06:18.592214+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:18.885198+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM1e&sid=GOphUF8Xmeg01Gh2ABNT" host=www.minglr.us request_id=32b3303f-d47e-42e0-9528-c5b66d478730 fwd="98.229.123.184" dyno=web.1 connect=1ms service=258ms status=200 bytes=242 protocol=https
2020-06-22T07:06:19.044917+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM1h&sid=NKozVcAvD_IdjlE1ABNU" host=www.minglr.us request_id=2c2a8c1c-3863-4fe0-8adc-b9630c22cb07 fwd="98.229.123.184" dyno=web.1 connect=1ms service=417ms status=200 bytes=242 protocol=https
2020-06-22T07:06:19.222924+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsM1m&sid=d_KRpkLo7_PEDNg4ABNV" host=www.minglr.us request_id=61546ba9-a921-4261-8671-d68496ba21dc fwd="98.229.123.184" dyno=web.1 connect=1ms service=591ms status=200 bytes=242 protocol=https
2020-06-22T07:06:19.422916+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=9bZCfHRLnvLJHjyeABNQ" host=www.minglr.us request_id=8982272b-7995-4ba3-b923-ea5a7cc96148 fwd="98.229.123.184" dyno=web.1 connect=0ms service=57563ms status=101 bytes=175 protocol=https
2020-06-22T07:06:20.801227+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsMZg" host=www.minglr.us request_id=69ff256b-bc9d-4bbb-a092-6d7c4da1b5f7 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:06:20.803013+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:06:21.111279+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsMaL&sid=ri12A4k0UyyoYPacABNW" host=www.minglr.us request_id=0e4e8ec1-d3d9-4495-8cd1-7f0a5aeff0b3 fwd="98.229.123.184" dyno=web.1 connect=0ms service=270ms status=200 bytes=242 protocol=https
2020-06-22T07:07:37.677821+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:37.679657+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:37.715250+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=6TnCOPAVsUQx2Lf4ABNR" host=www.minglr.us request_id=c6a301f0-d5b4-4b54-8032-243eb5631b2b fwd="98.229.123.184" dyno=web.1 connect=1ms service=80052ms status=101 bytes=175 protocol=https
2020-06-22T07:07:37.722870+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=IRfXqL7YWgKNZLjgABNS" host=www.minglr.us request_id=a2e16e90-0dc7-4a4b-9a83-f6cb14a92939 fwd="98.229.123.184" dyno=web.1 connect=0ms service=79919ms status=101 bytes=175 protocol=https
2020-06-22T07:07:38.881321+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsfbK" host=www.minglr.us request_id=c96bc18a-23dc-4740-895b-e2f8639563c7 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:07:38.884793+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:39.171173+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsfeK&sid=bU_Rh_IDMoy7nCk6ABNX" host=www.minglr.us request_id=4288933e-e8a2-4f45-9fa2-beab6b82fead fwd="98.229.123.184" dyno=web.1 connect=0ms service=252ms status=200 bytes=242 protocol=https
2020-06-22T07:07:39.681939+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:39.683928+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:39.684825+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:39.781482+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=d_KRpkLo7_PEDNg4ABNV" host=www.minglr.us request_id=0e018f71-7261-4a02-b225-e28a553954af fwd="98.229.123.184" dyno=web.1 connect=0ms service=80703ms status=101 bytes=175 protocol=https
2020-06-22T07:07:39.782342+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=NKozVcAvD_IdjlE1ABNU" host=www.minglr.us request_id=da1b3291-3ad9-4fd8-b45e-24d2fb207eaa fwd="98.229.123.184" dyno=web.1 connect=1ms service=80881ms status=101 bytes=175 protocol=https
2020-06-22T07:07:39.782563+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=GOphUF8Xmeg01Gh2ABNT" host=www.minglr.us request_id=c2c3f890-bd53-48d5-8c0a-2c47179f9bfe fwd="98.229.123.184" dyno=web.1 connect=0ms service=81043ms status=101 bytes=175 protocol=https
2020-06-22T07:07:40.080582+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsfwQ" host=www.minglr.us request_id=190d3037-4cea-4eff-a7bb-0b0589600c1f fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:07:40.085468+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:40.375681+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsfx6&sid=tOlep1lglDu6oLMJABNY" host=www.minglr.us request_id=b66ec1b0-8f7a-45b8-a92c-e498d53ff107 fwd="98.229.123.184" dyno=web.1 connect=0ms service=253ms status=200 bytes=242 protocol=https
2020-06-22T07:07:41.285773+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgDC" host=www.minglr.us request_id=7f185713-d6ec-43f9-b876-f6f394c4d5ac fwd="98.229.123.184" dyno=web.1 connect=0ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:07:41.287686+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:41.345141+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgDC.0" host=www.minglr.us request_id=a1e4ff49-753f-40b1-96de-288cafcbf4c2 fwd="98.229.123.184" dyno=web.1 connect=1ms service=16ms status=200 bytes=344 protocol=https
2020-06-22T07:07:41.349578+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:41.415305+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgDE" host=www.minglr.us request_id=bf1b8bf8-85fb-47d2-93ef-744f39efced5 fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:07:41.417545+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:41.624651+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgE3&sid=fHmQ0CQXTYKd6WFeABNZ" host=www.minglr.us request_id=bde3b196-55b8-409a-b763-751cdd9d066a fwd="98.229.123.184" dyno=web.1 connect=1ms service=184ms status=200 bytes=242 protocol=https
2020-06-22T07:07:41.699688+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:41.747098+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=ri12A4k0UyyoYPacABNW" host=www.minglr.us request_id=8e9b1672-3ac0-438a-93be-f79d37e9e65e fwd="98.229.123.184" dyno=web.1 connect=1ms service=80779ms status=101 bytes=175 protocol=https
2020-06-22T07:07:41.801385+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgE-&sid=sxFVmUKQ5F_xPjr3ABNa" host=www.minglr.us request_id=bb31d0e2-346a-4bd2-840f-7db35a1a9dea fwd="98.229.123.184" dyno=web.1 connect=0ms service=406ms status=200 bytes=242 protocol=https
2020-06-22T07:07:41.973272+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgFy&sid=bxCH0bvs_mDw53QrABNb" host=www.minglr.us request_id=fcc36955-0bd5-4aae-ac1b-6abbafd67b68 fwd="98.229.123.184" dyno=web.1 connect=1ms service=503ms status=200 bytes=242 protocol=https
2020-06-22T07:07:42.529801+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgWg" host=www.minglr.us request_id=c4631620-2621-46a2-8fc7-dd05946d7a2a fwd="98.229.123.184" dyno=web.1 connect=3ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:07:42.534311+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:07:42.849030+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsgXQ&sid=p4_GmblGURJ4GBxLABNc" host=www.minglr.us request_id=308e3e69-7f40-4e65-876c-380f7353ec68 fwd="98.229.123.184" dyno=web.1 connect=1ms service=268ms status=200 bytes=242 protocol=https
2020-06-22T07:08:33.923003+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:34.056483+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bU_Rh_IDMoy7nCk6ABNX" host=www.minglr.us request_id=591b5229-15aa-4878-8013-bf66f171f930 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55028ms status=101 bytes=175 protocol=https
2020-06-22T07:08:35.061219+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQstLT" host=www.minglr.us request_id=b82d021c-1eb0-4a24-8acc-ecfb7b8e14eb fwd="98.229.123.184" dyno=web.1 connect=3ms service=4ms status=200 bytes=344 protocol=https
2020-06-22T07:08:35.069284+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:35.356365+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQstM8&sid=4d3reyNQLCeEDOAvABNd" host=www.minglr.us request_id=bdd1e566-c5f0-47ee-9d4a-ffb4487001ed fwd="98.229.123.184" dyno=web.1 connect=1ms service=251ms status=200 bytes=242 protocol=https
2020-06-22T07:08:35.939528+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:35.982789+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=tOlep1lglDu6oLMJABNY" host=www.minglr.us request_id=99bf611c-82ea-4fc6-84bc-f4e9c54f13c1 fwd="98.229.123.184" dyno=web.1 connect=4ms service=55753ms status=101 bytes=175 protocol=https
2020-06-22T07:08:36.937873+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:36.941242+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:36.942369+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:37.015513+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=sxFVmUKQ5F_xPjr3ABNa" host=www.minglr.us request_id=942292df-c10b-4ee9-b688-e1a5b45482b0 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55363ms status=101 bytes=175 protocol=https
2020-06-22T07:08:37.019225+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=fHmQ0CQXTYKd6WFeABNZ" host=www.minglr.us request_id=56283018-7c38-4d55-bccd-3365e8aed3f1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55548ms status=101 bytes=175 protocol=https
2020-06-22T07:08:37.019537+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=bxCH0bvs_mDw53QrABNb" host=www.minglr.us request_id=826e23e5-8716-4232-bf26-c19bc7998276 fwd="98.229.123.184" dyno=web.1 connect=0ms service=55188ms status=101 bytes=175 protocol=https
2020-06-22T07:08:37.269206+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQstt_" host=www.minglr.us request_id=8ad4622e-1dbe-4830-ab06-bfa51ad50533 fwd="98.229.123.184" dyno=web.1 connect=0ms service=5ms status=200 bytes=344 protocol=https
2020-06-22T07:08:37.290455+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:37.567737+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQstuh&sid=m5eJ9i_hijqlEPgsABNe" host=www.minglr.us request_id=717c808c-a2bc-49d2-a374-e829a0c6042e fwd="98.229.123.184" dyno=web.1 connect=1ms service=248ms status=200 bytes=242 protocol=https
2020-06-22T07:08:37.957765+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:37.995954+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=p4_GmblGURJ4GBxLABNc" host=www.minglr.us request_id=ac635b66-703e-47ae-a4cb-28e77056563a fwd="98.229.123.184" dyno=web.1 connect=0ms service=55297ms status=101 bytes=175 protocol=https
2020-06-22T07:08:38.476057+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuAn" host=www.minglr.us request_id=2911123e-2626-41df-bc17-17c283a456ae fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:08:38.479889+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:38.483042+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuAp" host=www.minglr.us request_id=9aa008e1-c29d-417c-bc40-b3990141d8cd fwd="98.229.123.184" dyno=web.1 connect=4ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:08:38.483605+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuAp.0" host=www.minglr.us request_id=50a0b0d6-1961-40a1-8b61-433c9e3ff633 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:08:38.484628+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:38.485696+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:38.778862+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuBW&sid=KAGpQuKu2UENUGN9ABNf" host=www.minglr.us request_id=9dc56809-7eb9-4cd4-b5cb-8dc8a6d685dc fwd="98.229.123.184" dyno=web.1 connect=0ms service=262ms status=200 bytes=242 protocol=https
2020-06-22T07:08:38.936477+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuBZ&sid=0xKwNFSQVVMmqHV-ABNg" host=www.minglr.us request_id=ef787c80-668f-4e15-91a8-50f3a9d64ae9 fwd="98.229.123.184" dyno=web.1 connect=1ms service=411ms status=200 bytes=242 protocol=https
2020-06-22T07:08:39.147228+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuBi&sid=zI59oXkF2DB2l399ABNh" host=www.minglr.us request_id=8b941977-ada4-4d1b-a8ca-cdb9bd9e5a20 fwd="98.229.123.184" dyno=web.1 connect=1ms service=617ms status=200 bytes=242 protocol=https
2020-06-22T07:08:39.691562+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuTu" host=www.minglr.us request_id=3095722a-33d1-4ac0-ab24-3414fe32af0c fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:08:39.702226+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:08:39.998631+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQsuUT&sid=H5Lk1D7aYLgJ_F0nABNi" host=www.minglr.us request_id=24c54e67-28dd-45e5-8f68-50c138646160 fwd="98.229.123.184" dyno=web.1 connect=1ms service=269ms status=200 bytes=242 protocol=https
2020-06-22T07:09:30.218067+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:32.313844+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:34.331281+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:34.333072+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:34.334276+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:35.228875+00:00 app[web.1]: remove David
2020-06-22T07:09:35.339236+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:09:37.317594+00:00 app[web.1]: remove David
2020-06-22T07:09:39.337598+00:00 app[web.1]: remove David
2020-06-22T07:09:39.339158+00:00 app[web.1]: remove David
2020-06-22T07:09:39.341613+00:00 app[web.1]: remove David
2020-06-22T07:09:40.344266+00:00 app[web.1]: remove David
2020-06-22T07:10:00.218108+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=4d3reyNQLCeEDOAvABNd" host=www.minglr.us request_id=209d0ba7-8c32-4bf8-80cf-f6a7f3b7d07b fwd="98.229.123.184" dyno=web.1 connect=0ms service=85007ms status=101 bytes=175 protocol=https
2020-06-22T07:10:02.156853+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtCZE" host=www.minglr.us request_id=4a996491-ef73-433e-8c25-b099bc2a0855 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:10:02.159480+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:02.316000+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=m5eJ9i_hijqlEPgsABNe" host=www.minglr.us request_id=83815001-16b5-42a9-8902-a4830d5b75cc fwd="98.229.123.184" dyno=web.1 connect=0ms service=84887ms status=101 bytes=175 protocol=https
2020-06-22T07:10:02.476103+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtCd0&sid=g79v2EhJstue80loABNj" host=www.minglr.us request_id=1a89baf1-7473-40ca-bbf6-fccdc63924b3 fwd="98.229.123.184" dyno=web.1 connect=1ms service=273ms status=200 bytes=242 protocol=https
2020-06-22T07:10:03.381975+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtCvO" host=www.minglr.us request_id=e3e61285-b5ba-49aa-9b40-4209277746bb fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:10:03.384310+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:03.673007+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtCwB&sid=K2BKAD-YixqdALUoABNk" host=www.minglr.us request_id=5357c369-0e36-458f-a974-0838f6209b8c fwd="98.229.123.184" dyno=web.1 connect=2ms service=243ms status=200 bytes=242 protocol=https
2020-06-22T07:10:04.330109+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=0xKwNFSQVVMmqHV-ABNg" host=www.minglr.us request_id=29c486d0-51c1-46c2-bdac-9f179600f773 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85540ms status=101 bytes=175 protocol=https
2020-06-22T07:10:04.333926+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=KAGpQuKu2UENUGN9ABNf" host=www.minglr.us request_id=087413bf-f34b-483f-9671-e713e882c135 fwd="98.229.123.184" dyno=web.1 connect=1ms service=85702ms status=101 bytes=175 protocol=https
2020-06-22T07:10:04.336349+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=zI59oXkF2DB2l399ABNh" host=www.minglr.us request_id=a8b4eb18-b13f-4d92-8db5-ac3772698221 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85328ms status=101 bytes=175 protocol=https
2020-06-22T07:10:05.343415+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=H5Lk1D7aYLgJ_F0nABNi" host=www.minglr.us request_id=ddba8dc2-0bb5-4a47-bad4-8510b446731e fwd="98.229.123.184" dyno=web.1 connect=1ms service=85497ms status=101 bytes=175 protocol=https
2020-06-22T07:10:05.592798+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDRw" host=www.minglr.us request_id=e6b8fb34-9ab7-4285-8b04-12a8372f4ed1 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:10:05.595585+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:05.687776+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDRx" host=www.minglr.us request_id=77533b3f-45a8-4937-a2b8-8af9d40031c0 fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:10:05.693810+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:05.915936+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDSh&sid=76PwpOJ5qs5dOmp_ABNl" host=www.minglr.us request_id=e722c05a-ef5b-40da-b62b-bbd5986b4775 fwd="98.229.123.184" dyno=web.1 connect=1ms service=279ms status=200 bytes=242 protocol=https
2020-06-22T07:10:06.062069+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDUN&sid=hIXaCGIkDCAiytcVABNm" host=www.minglr.us request_id=431373ba-2a34-44b0-9cc0-df5c1c704c21 fwd="98.229.123.184" dyno=web.1 connect=1ms service=316ms status=200 bytes=242 protocol=https
2020-06-22T07:10:06.816664+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDl8" host=www.minglr.us request_id=f4b066d4-6d4e-4ebd-b48f-b73f4f0a025a fwd="98.229.123.184" dyno=web.1 connect=1ms service=2ms status=200 bytes=344 protocol=https
2020-06-22T07:10:06.817581+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDl9" host=www.minglr.us request_id=4be34d45-dcfb-4815-a222-6b83f4177b2b fwd="98.229.123.184" dyno=web.1 connect=0ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:10:06.817863+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:06.822471+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:07.125541+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDlp&sid=_Rtb8Fpz3KaC0gxDABNn" host=www.minglr.us request_id=b2de52d6-4065-4315-8b1b-b7ecedef1475 fwd="98.229.123.184" dyno=web.1 connect=1ms service=262ms status=200 bytes=242 protocol=https
2020-06-22T07:10:07.312671+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtDly&sid=D-1JUizb2dc-sE8WABNo" host=www.minglr.us request_id=ccc97a46-fe46-4dc8-8054-d156c73461e3 fwd="98.229.123.184" dyno=web.1 connect=0ms service=448ms status=200 bytes=242 protocol=https
2020-06-22T07:10:57.201278+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:10:59.225854+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:11:01.228229+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:11:01.229689+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:11:02.225796+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:11:02.227268+00:00 app[web.1]: remove David
2020-06-22T07:11:02.229075+00:00 app[web.1]: SOCKET DISCONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:11:04.229600+00:00 app[web.1]: remove David
2020-06-22T07:11:06.236916+00:00 app[web.1]: remove David
2020-06-22T07:11:06.242222+00:00 app[web.1]: remove David
2020-06-22T07:11:07.232283+00:00 app[web.1]: remove David
2020-06-22T07:11:07.233925+00:00 app[web.1]: remove David
2020-06-22T07:11:27.204598+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=g79v2EhJstue80loABNj" host=www.minglr.us request_id=760b7a93-2b42-479d-bbfe-97daa0f5e007 fwd="98.229.123.184" dyno=web.1 connect=1ms service=84873ms status=101 bytes=175 protocol=https
2020-06-22T07:11:29.232955+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=K2BKAD-YixqdALUoABNk" host=www.minglr.us request_id=9093b20a-ed66-4ecb-baf1-2e44014728b1 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85699ms status=101 bytes=175 protocol=https
2020-06-22T07:11:31.229752+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=hIXaCGIkDCAiytcVABNm" host=www.minglr.us request_id=1ec9f9d2-d263-440d-89c7-e4f4a498fb0e fwd="98.229.123.184" dyno=web.1 connect=0ms service=85307ms status=101 bytes=175 protocol=https
2020-06-22T07:11:31.231993+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=76PwpOJ5qs5dOmp_ABNl" host=www.minglr.us request_id=fe85c623-6d56-418f-a3f6-3e2c90895078 fwd="98.229.123.184" dyno=web.1 connect=1ms service=85466ms status=101 bytes=175 protocol=https
2020-06-22T07:11:32.224859+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=_Rtb8Fpz3KaC0gxDABNn" host=www.minglr.us request_id=6a6b8e50-bf91-40c4-94e0-17dd5c19aab5 fwd="98.229.123.184" dyno=web.1 connect=0ms service=85247ms status=101 bytes=175 protocol=https
2020-06-22T07:11:32.232846+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=websocket&sid=D-1JUizb2dc-sE8WABNo" host=www.minglr.us request_id=225e3a15-ffc3-4028-bf89-764e589ab7df fwd="98.229.123.184" dyno=web.1 connect=1ms service=85070ms status=101 bytes=175 protocol=https
2020-06-22T07:13:19.673248+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyn-.0" host=www.minglr.us request_id=eeb3cd7f-330a-400a-8047-b6196fb0fa36 fwd="98.229.123.184" dyno=web.1 connect=1ms service=1ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.678032+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyn-" host=www.minglr.us request_id=3d790807-e892-4999-9ed2-da9fb39344f8 fwd="98.229.123.184" dyno=web.1 connect=1ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.682089+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyn_" host=www.minglr.us request_id=9f7f76ee-4952-41a9-8b49-a611538cc7d9 fwd="98.229.123.184" dyno=web.1 connect=0ms service=7ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.683673+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtynz" host=www.minglr.us request_id=9a3b547a-da1c-4313-bc4a-adad084564c3 fwd="98.229.123.184" dyno=web.1 connect=0ms service=3ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.683819+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyn_.0" host=www.minglr.us request_id=ddc5ab6d-3a3d-461b-9362-d2814e3fa122 fwd="98.229.123.184" dyno=web.1 connect=1ms service=10ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.684029+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:19.689442+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyn-.1" host=www.minglr.us request_id=190af163-8998-4320-bc30-da1baa96db7d fwd="98.229.123.184" dyno=web.1 connect=0ms service=8ms status=200 bytes=344 protocol=https
2020-06-22T07:13:19.690806+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:19.704865+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:19.706320+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:19.710756+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:19.714654+00:00 app[web.1]: SOCKET CONNECTED 5eed29d0a6ca9900178d9b48
2020-06-22T07:13:20.145346+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyrD&sid=xdmKi-D8_edUqgS-ABNp" host=www.minglr.us request_id=a0648912-7eae-4b16-a66b-33e8c2fbe60c fwd="98.229.123.184" dyno=web.1 connect=0ms service=425ms status=200 bytes=242 protocol=https
2020-06-22T07:13:20.564470+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyrE&sid=Yudvmb3I_NJeNLYxABNq" host=www.minglr.us request_id=b75bb2e6-8dc7-41d4-98a9-822bd28bcb9b fwd="98.229.123.184" dyno=web.1 connect=1ms service=840ms status=200 bytes=242 protocol=https
2020-06-22T07:13:21.246546+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyrF&sid=qkl6pb8-IsztK2GaABNr" host=www.minglr.us request_id=cb2b404d-f868-4f11-9742-9273adc1c9ef fwd="98.229.123.184" dyno=web.1 connect=0ms service=1519ms status=200 bytes=242 protocol=https
2020-06-22T07:13:21.531432+00:00 heroku[router]: at=info method=GET path="/socket.io/?EIO=3&transport=polling&t=NBQtyrN&sid=GqFMnZ2YXAeRLX4tABNs" host=www.minglr.us request_id=57a1182e-a58c-4a86-932a-7e9ab27bb2b6 fwd="98.229.123.184" dyno=web.1 connect=2ms service=1802ms status=200 bytes=242 protocol=https