-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemotions.seed.json
4002 lines (4002 loc) · 124 KB
/
emotions.seed.json
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
[
{
"_id": "5ae6307ac3e4d909361824f4",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 1,
"date": "Wed Jun 23 1971 21:51:19 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307af57a97830d589402",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 5,
"date": "Wed Dec 03 1975 02:51:12 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ad8e1dd097ef759ca",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 5,
"date": "Tue Mar 28 2000 17:48:31 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a0fabf8e8f511f870",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 1,
"date": "Sat Jan 16 1982 20:55:09 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a145c6ad5b236230a",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 3,
"date": "Sat Jun 21 1975 23:47:48 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a5620bbff8548d8e0",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 3,
"date": "Fri Jan 31 1992 09:38:31 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307ac675d9fe2ea633e8",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 5,
"date": "Wed Aug 21 1991 18:56:33 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a9b82c75a5e20b539",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 4,
"date": "Sun Sep 01 1985 21:28:47 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a835211d659bf4c66",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 1,
"date": "Sat Mar 21 2015 11:50:44 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a65636a89332742e8",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 1,
"date": "Mon Jan 16 1984 20:42:36 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a59cef538e95ee0d1",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "meh",
"intensity": 5,
"date": "Thu Apr 19 1979 07:06:40 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a1d41aedae7c3adb6",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 1,
"date": "Fri May 26 1995 15:30:13 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a5d626ae29be09705",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 4,
"date": "Sun Jun 12 1977 12:44:45 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307af014d69811a84467",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 1,
"date": "Sun Feb 28 1993 16:10:47 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a127486d5c2269216",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "anxious",
"intensity": 5,
"date": "Wed Jun 12 1991 22:45:13 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a30c2b9a4a85497a7",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 2,
"date": "Tue Apr 26 1988 04:34:08 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a9f497167dfb6b94d",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 1,
"date": "Sun Feb 08 2009 22:11:21 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307acc2aedc4fa86c3a9",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 1,
"date": "Wed Apr 30 1975 08:49:52 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a6ca94ea1ad7cdf94",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 4,
"date": "Sat Feb 27 1988 14:45:39 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a4ec7f268669ffa0b",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 2,
"date": "Wed Aug 10 1988 06:33:41 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a3e729aceee43b10c",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 2,
"date": "Fri Oct 14 1977 18:50:41 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a77385301e3574ad8",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 4,
"date": "Tue Mar 20 2018 10:35:07 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ae2822c08f7db09df",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 4,
"date": "Wed Jul 30 2014 05:24:49 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307ae4df7e2754214a2c",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 1,
"date": "Sat Mar 03 2001 02:25:30 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ac8812d22e8d052ce",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 4,
"date": "Thu Mar 09 1972 22:28:08 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a52f8ecb885d6236f",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 2,
"date": "Sun Apr 27 2014 07:04:54 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a415126ab8072b9c5",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 1,
"date": "Tue Jun 10 1997 12:01:22 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307ac92f7acc2faebebd",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 2,
"date": "Tue Sep 24 2002 08:19:44 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a83930a5f46df80c0",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 4,
"date": "Mon Jul 25 1977 01:46:55 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a08dabc7a09d7427a",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 5,
"date": "Mon Jun 20 1988 08:31:50 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307ada3f2cd331b66ec2",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 2,
"date": "Sat Dec 16 1989 18:05:01 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a7cb604a3ebdd88e5",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 2,
"date": "Wed Nov 01 2017 19:06:34 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307afcef9a027cdc1c84",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "meh",
"intensity": 3,
"date": "Wed Mar 24 1982 13:25:19 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ada6c4d7e1d961346",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "anxious",
"intensity": 3,
"date": "Thu Nov 19 2009 18:20:47 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307abbdfbf51ce97b27e",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 3,
"date": "Sun Sep 24 1995 10:22:14 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307adef44f81c92ef079",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 3,
"date": "Wed Aug 14 2013 15:43:37 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307ad6bab1f2ab65673b",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 3,
"date": "Wed Aug 12 1987 09:49:01 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a1a6eaad0bc5dee75",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 2,
"date": "Wed Aug 13 1975 12:29:36 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a5549d6ec0bdf298a",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 4,
"date": "Tue Mar 11 1997 06:25:30 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a62995df7195d2324",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 3,
"date": "Tue Jun 01 2004 23:16:21 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307ad21cedc36a6311d8",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 5,
"date": "Sun Feb 07 1999 16:27:13 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a8e0616d93b015ba8",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 2,
"date": "Sun Nov 22 1987 20:21:27 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a16fb985a71487ca9",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 5,
"date": "Thu Aug 14 1980 01:26:04 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a15ab0dc697c2e68f",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 4,
"date": "Sun Oct 02 1977 17:16:49 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a1bc9e6ead1e036b0",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 1,
"date": "Fri Feb 07 1997 18:06:39 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a6d85b1c8a625e589",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 4,
"date": "Wed Oct 26 2005 12:51:59 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a79e61aece7801566",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 1,
"date": "Tue Apr 12 1977 11:43:24 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a81ae57cfa3ef68bd",
"userID": "defaultUserID",
"emotion": "happy",
"intensity": 2,
"date": "Fri Feb 28 1997 10:42:10 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a4ce6bbb6ef9def53",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 2,
"date": "Fri Feb 24 2017 16:35:24 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a4d523dc8e2f97197",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 4,
"date": "Fri Feb 28 1997 15:15:35 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ac806cbc7101c6263",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 2,
"date": "Thu Dec 27 1984 13:15:26 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307affcfea64133f5ac8",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 1,
"date": "Fri May 03 1974 11:57:32 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307acb92c0484ba21456",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 3,
"date": "Tue Sep 05 1972 06:22:58 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307aaff1047edcc52f99",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 1,
"date": "Wed Apr 17 1991 14:26:27 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307ad9846436104decad",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 5,
"date": "Thu Jul 18 1985 05:15:23 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ae25320a209aa0fc4",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 2,
"date": "Fri Feb 14 1986 23:09:00 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a47e0cc894a58b7be",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 4,
"date": "Thu Mar 05 1987 20:59:55 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307acaa7cf862c5fa73c",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 5,
"date": "Sun Dec 05 1993 19:10:44 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a088b693c43927da1",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 2,
"date": "Sat Apr 04 1998 04:43:05 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a8a6e71f849f5841c",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 5,
"date": "Fri Mar 24 2017 16:24:06 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a36a0b1ff71932944",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 2,
"date": "Mon Aug 20 1973 01:54:44 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307aa6ab94f4e04fe6bb",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 3,
"date": "Sun Mar 16 2014 02:49:26 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a456bdb9098580e04",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 5,
"date": "Wed Jul 16 2008 11:36:10 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a2b02a279756b7e4e",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 5,
"date": "Thu Jan 02 2003 14:09:49 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a17736508fafd4c2e",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "meh",
"intensity": 4,
"date": "Mon Feb 02 1981 06:14:36 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a74ad051f1601db46",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 4,
"date": "Sun Mar 29 1987 00:21:06 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ad58ceaca7d957ca4",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 1,
"date": "Thu Jan 08 2009 07:31:00 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307acf19ad41959fbac4",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 1,
"date": "Sun Jul 29 1990 00:57:07 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307ac2050d16b3904d09",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 1,
"date": "Tue Nov 10 1998 15:07:13 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ab4bee6febed10bd4",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 2,
"date": "Sun Dec 22 1996 20:27:19 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a4672ded135242eb2",
"userID": "defaultUserID",
"emotion": "happy",
"intensity": 4,
"date": "Sat Aug 29 2009 15:31:27 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a32defd78c5883788",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 3,
"date": "Mon Nov 23 1992 16:32:46 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a3cf0c7a20af6c3be",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 1,
"date": "Mon Jan 18 1982 10:52:16 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a1a649db1255f021c",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "anxious",
"intensity": 4,
"date": "Sun May 02 2004 08:18:07 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ad4547f224cd00be7",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 1,
"date": "Fri Dec 12 1986 13:58:06 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ae076627266b8ec8e",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 3,
"date": "Fri May 10 1974 07:28:53 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307ab5dff778ed17d770",
"userID": "defaultUserID",
"emotion": "happy",
"intensity": 2,
"date": "Thu Nov 07 1974 13:24:46 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a677d450e1ab51395",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 3,
"date": "Tue Oct 02 2007 18:45:39 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a093fb318ebbd5f0b",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "mad",
"intensity": 4,
"date": "Wed Feb 19 2003 22:29:36 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a0cd42b33cf09f0f5",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 2,
"date": "Tue Apr 22 2003 00:49:03 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a1b90cf5896b460c2",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 4,
"date": "Tue Nov 01 1977 16:51:48 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a182c21619a24f72e",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 4,
"date": "Sun Jan 21 1996 00:52:04 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307af6572547583bb9d5",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 1,
"date": "Sun Mar 03 2013 20:13:59 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a7e95615df48fd199",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 4,
"date": "Sun Oct 04 1981 19:09:57 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a3d070670a8e0295a",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 3,
"date": "Mon Nov 04 2013 16:28:19 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a1cf2d3a8d9b738fc",
"userID": "defaultUserID",
"emotion": "happy",
"intensity": 2,
"date": "Sun May 18 1986 14:34:05 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307aa2efc67e5ba8430b",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 5,
"date": "Wed May 26 1999 21:29:37 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307af1f1ded1d4644657",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 5,
"date": "Thu Oct 07 1976 12:24:57 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307af9c75b39c9ba4b17",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "meh",
"intensity": 1,
"date": "Tue Apr 07 2015 17:31:54 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a9fdeb21fdd55ec89",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 5,
"date": "Mon Jan 06 1975 08:35:02 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307aeed43a56d91371eb",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 2,
"date": "Mon May 19 1986 11:34:17 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a6206d0b0604f36e8",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 4,
"date": "Fri Aug 27 1976 21:49:30 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a70facf2d2762c291",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 4,
"date": "Thu Aug 18 1983 03:01:13 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a349df4a8274de457",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 5,
"date": "Sat Dec 04 1993 19:42:28 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307ad27d787e53e87e71",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 4,
"date": "Tue Jul 18 1972 03:08:37 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307afa4d0a32e2759c97",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 3,
"date": "Sat Sep 24 2011 11:07:40 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307accdbdd3c65d01f62",
"userID": "defaultUserID",
"emotion": "happy",
"intensity": 4,
"date": "Fri Jul 06 1984 07:12:52 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a9109ed4887d5b89e",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 4,
"date": "Thu Feb 06 2014 22:43:13 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a87f87694066f68b9",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 2,
"date": "Thu Oct 06 1994 00:45:49 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a9693584246c1ff31",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 3,
"date": "Mon Dec 18 1995 21:32:41 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a3c9f4dc4908ea90f",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 1,
"date": "Thu Aug 10 2006 12:45:44 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a365ae9f96962c783",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 1,
"date": "Fri Oct 21 2016 18:40:22 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a923450bdd6a5ea2a",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 1,
"date": "Wed Aug 03 1983 07:19:40 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307abfa9d7459bba89ec",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 1,
"date": "Sun Jan 14 1996 06:29:44 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a84ff2af1f30080a4",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 5,
"date": "Tue Apr 09 2013 20:14:59 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307ae2405c4cb4d22e61",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 1,
"date": "Tue Nov 27 1984 09:17:36 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a901652ee9ebbdaf7",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "anxious",
"intensity": 3,
"date": "Sat Jun 10 2006 21:14:03 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307aee08b2ebb762042d",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 5,
"date": "Fri Jul 24 2015 14:44:49 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a63975b50d9a02fc3",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 5,
"date": "Sun Dec 17 1989 05:41:33 GMT-0600 (CST)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307aaf9261e3e24088ed",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 2,
"date": "Tue May 13 2003 22:24:36 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a97876da8ef8fbcf4",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "meh",
"intensity": 2,
"date": "Sun Feb 26 1984 02:02:51 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a00dba4f2c56dac9d",
"userID": "defaultUserID",
"emotion": "meh",
"intensity": 4,
"date": "Thu Jun 09 1994 20:51:35 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307ab76eed7d986c0c34",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 2,
"date": "Wed Apr 25 1984 22:10:14 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a667e9686748e1867",
"userID": "defaultUserID",
"emotion": "sad",
"intensity": 3,
"date": "Sat Sep 15 2012 22:07:10 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"
},
{
"_id": "5ae6307a372469f3d2b0fe0d",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "mad",
"intensity": 5,
"date": "Sun Oct 03 1976 14:18:41 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307ae92134888e6a52c1",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "sad",
"intensity": 1,
"date": "Fri Oct 19 2001 19:20:03 GMT-0500 (CDT)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a156c87e922e190c8",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 4,
"date": "Sun May 20 2012 16:05:05 GMT-0500 (CDT)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a0700df0dff51e097",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "meh",
"intensity": 3,
"date": "Mon Feb 01 1988 15:55:04 GMT-0600 (CST)",
"description": "Last Friday in three week’s time I saw a spotted striped blue worm shake hands with a legless lizard"
},
{
"_id": "5ae6307a1aa79957a76e0e0a",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "anxious",
"intensity": 2,
"date": "Wed Mar 07 2001 01:03:58 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307ac7aba83e0f6e3236",
"userID": "5ae62e59cbdc90a28d1e41b9",
"emotion": "happy",
"intensity": 4,
"date": "Thu Apr 04 1991 05:21:35 GMT-0600 (CST)",
"description": ""
},
{
"_id": "5ae6307a616df452d971f54b",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 2,
"date": "Sun Oct 26 1975 23:29:14 GMT-0600 (CST)",
"description": " I want to buy a onesie… but know it won’t suit me"
},
{
"_id": "5ae6307a3579d8f9728fc5fc",
"userID": "defaultUserID",
"emotion": "mad",
"intensity": 1,
"date": "Wed Jan 13 1999 07:17:35 GMT-0600 (CST)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a4bc7a88329088b9f",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "sad",
"intensity": 3,
"date": "Wed Sep 08 2010 17:18:59 GMT-0500 (CDT)",
"description": "I love eating toasted cheese and tuna sandwiches"
},
{
"_id": "5ae6307a3227dc1787f8d11c",
"userID": "defaultUserID",
"emotion": "anxious",
"intensity": 2,
"date": "Sun Aug 03 2014 11:47:39 GMT-0500 (CDT)",
"description": ""
},
{
"_id": "5ae6307a61a320785db35168",
"userID": "5ae62e598adf03023dadf14c",
"emotion": "happy",
"intensity": 5,
"date": "Mon Jan 14 1974 04:46:58 GMT-0500 (CDT)",
"description": "Writing a list of random sentences is harder than I initially thought it would be"