forked from norskeld/sigma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path@sample.ts
924 lines (924 loc) · 27.3 KB
/
@sample.ts
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
export const SAMPLE = `
[
{
"_id": "61ed767b81b27892241cb472",
"index": 0,
"guid": "ce169efe-06e1-414d-bd56-ff217d482105",
"isActive": false,
"balance": "$1,842.71",
"picture": "http://placehold.it/32x32",
"age": 23,
"eyeColor": "green",
"name": "Michele Lyons",
"gender": "female",
"company": "PETICULAR",
"email": "[email protected]",
"phone": "+1 (823) 590-3979",
"address": "667 Gilmore Court, Farmers, Illinois, 3879",
"about": "Culpa qui non fugiat adipisicing deserunt. Occaecat reprehenderit occaecat id minim eiusmod. Incididunt cillum adipisicing minim magna officia laborum duis esse. Amet in aliquip adipisicing eiusmod sint dolore minim sint aute eu fugiat proident quis. Incididunt voluptate dolore Lorem occaecat mollit ex anim. Commodo aliqua excepteur proident magna et.\r\n",
"registered": "2018-11-15T06:55:56 -05:00",
"latitude": -79.733944,
"longitude": 155.272629,
"tags": [
"aute",
"ipsum",
"reprehenderit",
"proident",
"dolore",
"qui",
"ex"
],
"friends": [
{
"id": 0,
"name": "Madelyn Oconnor"
},
{
"id": 1,
"name": "Faith Larsen"
},
{
"id": 2,
"name": "Rose Pugh"
}
],
"greeting": "Hello, Michele Lyons! You have 1 unread messages.",
"favoriteFruit": "banana",
"github": "https://github.com/Marla/245"
},
{
"_id": "61ed767bbd99889d797c3498",
"index": 1,
"guid": "45001249-0a9d-423e-b73d-3f8277f07add",
"isActive": false,
"balance": "$2,934.41",
"picture": "http://placehold.it/32x32",
"age": 35,
"eyeColor": "brown",
"name": "Reed Daniels",
"gender": "male",
"company": "PETIGEMS",
"email": "[email protected]",
"phone": "+1 (829) 517-2737",
"address": "117 Brighton Avenue, Bascom, Indiana, 4874",
"about": "Nisi sit aute do laboris consequat. Eiusmod deserunt eiusmod officia non exercitation duis esse in irure tempor aliquip. Do tempor commodo esse sint deserunt esse deserunt dolor amet dolor ullamco eu. Consequat id laboris anim tempor esse incididunt nulla. Esse veniam dolore non quis ea sint commodo. Voluptate aute aliqua adipisicing esse eu qui do deserunt est sit. Cillum consequat deserunt nulla ut esse excepteur reprehenderit eu minim eiusmod deserunt ullamco aliquip.\r\n",
"registered": "2017-11-10T05:06:43 -05:00",
"latitude": 54.988347,
"longitude": -167.535251,
"tags": [
"eiusmod",
"ex",
"aliquip",
"adipisicing",
"cillum",
"do",
"velit"
],
"friends": [
{
"id": 0,
"name": "Maggie English"
},
{
"id": 1,
"name": "Burns Macdonald"
},
{
"id": 2,
"name": "Garcia Moody"
}
],
"greeting": "Hello, Reed Daniels! You have 2 unread messages.",
"favoriteFruit": "strawberry",
"github": "https://github.com/Renee/852"
},
{
"_id": "61ed767bd71f0b2085cde17f",
"index": 2,
"guid": "a9fc68de-c10c-4c87-a2f6-9f3cc5d55eee",
"isActive": true,
"balance": "$3,525.75",
"picture": "http://placehold.it/32x32",
"age": 32,
"eyeColor": "green",
"name": "Britney Dickson",
"gender": "female",
"company": "MATRIXITY",
"email": "[email protected]",
"phone": "+1 (810) 422-3829",
"address": "179 Indiana Place, Harrodsburg, Colorado, 9532",
"about": "Ex in culpa fugiat et occaecat nisi ad. Laborum consectetur Lorem est minim eiusmod incididunt aliqua sint sint. Enim quis esse magna consequat irure.\r\n",
"registered": "2014-04-27T10:31:08 -06:00",
"latitude": -54.022594,
"longitude": -174.769598,
"tags": [
"anim",
"occaecat",
"amet",
"exercitation",
"cillum",
"magna",
"sint"
],
"friends": [
{
"id": 0,
"name": "Vivian Erickson"
},
{
"id": 1,
"name": "Marci Hewitt"
},
{
"id": 2,
"name": "Alyce Parker"
}
],
"greeting": "Hello, Britney Dickson! You have 4 unread messages.",
"favoriteFruit": "strawberry",
"github": null
},
{
"_id": "61ed767b100818a787f87bed",
"index": 3,
"guid": "8034422c-a376-4580-9459-3e643b4e090c",
"isActive": false,
"balance": "$2,071.32",
"picture": "http://placehold.it/32x32",
"age": 31,
"eyeColor": "blue",
"name": "Nieves Griffith",
"gender": "male",
"company": "ACCUSAGE",
"email": "[email protected]",
"phone": "+1 (888) 559-3578",
"address": "449 Hawthorne Street, Manchester, Rhode Island, 8469",
"about": "Consectetur fugiat dolore et commodo irure commodo nulla ea dolore et mollit laborum eu ex. Minim sit est nisi commodo dolore ea aliquip officia. Occaecat non quis do do ad do qui minim adipisicing cillum dolore mollit elit non. Esse quis eu laborum aute aliquip velit ea fugiat culpa minim quis deserunt. Cillum voluptate esse dolor ex exercitation dolore ipsum eu reprehenderit laboris quis commodo minim officia. Esse velit voluptate commodo commodo proident minim dolore ullamco pariatur aliquip culpa non.\r\n",
"registered": "2019-05-16T03:38:52 -05:00",
"latitude": 12.530648,
"longitude": -18.362477,
"tags": [
"commodo",
"culpa",
"cillum",
"aute",
"commodo",
"sunt",
"sit"
],
"friends": [
{
"id": 0,
"name": "Delaney Sampson"
},
{
"id": 1,
"name": "Dolores Zimmerman"
},
{
"id": 2,
"name": "Avila Paul"
}
],
"greeting": "Hello, Nieves Griffith! You have 2 unread messages.",
"favoriteFruit": "banana",
"github": "https://github.com/Celina/505"
},
{
"_id": "61ed767b1740b07364d01668",
"index": 4,
"guid": "3821fe58-b362-4aac-8f62-18160fb232cd",
"isActive": false,
"balance": "$3,077.09",
"picture": "http://placehold.it/32x32",
"age": 29,
"eyeColor": "blue",
"name": "Mona Lucas",
"gender": "female",
"company": "GEEKFARM",
"email": "[email protected]",
"phone": "+1 (928) 455-3852",
"address": "178 Lefferts Avenue, Martell, Alabama, 2052",
"about": "Non enim pariatur id occaecat eiusmod voluptate pariatur aliquip nisi irure magna non consectetur. Consequat sit duis dolor esse quis duis veniam eiusmod elit Lorem quis qui laborum laboris. Culpa aliquip proident ea cupidatat irure nostrud consequat occaecat dolor tempor fugiat occaecat voluptate. Excepteur ut eiusmod veniam nulla sint elit magna velit id occaecat. Est nulla id fugiat ad occaecat.\r\n",
"registered": "2015-09-23T10:29:36 -05:00",
"latitude": -0.38082,
"longitude": -1.315733,
"tags": [
"deserunt",
"dolore",
"ipsum",
"sunt",
"occaecat",
"pariatur",
"ad"
],
"friends": [
{
"id": 0,
"name": "Duffy Dixon"
},
{
"id": 1,
"name": "Shepherd Stokes"
},
{
"id": 2,
"name": "Wells Spencer"
}
],
"greeting": "Hello, Mona Lucas! You have 7 unread messages.",
"favoriteFruit": "apple",
"github": null
},
{
"_id": "61ed767b17a52efa2e97d2ac",
"index": 5,
"guid": "a32efe32-c150-4be0-833c-d74846efc900",
"isActive": false,
"balance": "$3,492.29",
"picture": "http://placehold.it/32x32",
"age": 30,
"eyeColor": "blue",
"name": "Marylou Hawkins",
"gender": "female",
"company": "OCEANICA",
"email": "[email protected]",
"phone": "+1 (925) 547-3020",
"address": "975 Hazel Court, Rivers, Nevada, 3246",
"about": "Dolor incididunt magna nostrud fugiat. Veniam occaecat non cillum ipsum in dolor aliqua sunt Lorem consequat esse ex consectetur commodo. Elit ea consectetur dolor eiusmod dolor aute exercitation occaecat sint culpa proident ullamco est. Eu sunt fugiat do commodo ut adipisicing fugiat excepteur ut laboris laboris qui eu minim. Exercitation aute sint duis consequat. Fugiat dolor adipisicing incididunt dolore exercitation est nostrud sunt commodo officia ex. Anim pariatur pariatur ut Lorem voluptate.\r\n",
"registered": "2019-02-24T07:21:36 -05:00",
"latitude": -31.640517,
"longitude": 67.594811,
"tags": [
"qui",
"id",
"mollit",
"excepteur",
"nulla",
"exercitation",
"ipsum"
],
"friends": [
{
"id": 0,
"name": "Armstrong Rush"
},
{
"id": 1,
"name": "Green Noble"
},
{
"id": 2,
"name": "Jewel Woods"
}
],
"greeting": "Hello, Marylou Hawkins! You have 8 unread messages.",
"favoriteFruit": "strawberry",
"github": "https://github.com/English/796"
},
{
"_id": "61ed767bc71002cb31556952",
"index": 6,
"guid": "105349a1-db77-4ff1-9ae9-b0eb3d660a0b",
"isActive": false,
"balance": "$1,997.53",
"picture": "http://placehold.it/32x32",
"age": 35,
"eyeColor": "green",
"name": "Joy Conway",
"gender": "female",
"company": "EMPIRICA",
"email": "[email protected]",
"phone": "+1 (895) 522-3021",
"address": "759 Bassett Avenue, Eggertsville, California, 1820",
"about": "Consectetur dolor ut id quis anim ad pariatur proident duis. Reprehenderit ullamco ea labore adipisicing eiusmod sit velit veniam nisi eiusmod excepteur sunt ipsum. Velit cillum veniam aute qui ea et et proident incididunt.\r\n",
"registered": "2019-08-08T12:04:16 -05:00",
"latitude": 35.510935,
"longitude": 176.323185,
"tags": [
"eiusmod",
"non",
"velit",
"ex",
"cupidatat",
"consequat",
"eiusmod"
],
"friends": [
{
"id": 0,
"name": "Lara Day"
},
{
"id": 1,
"name": "Campbell Bonner"
},
{
"id": 2,
"name": "Velma Mueller"
}
],
"greeting": "Hello, Joy Conway! You have 9 unread messages.",
"favoriteFruit": "banana",
"github": "https://github.com/Naomi/136"
},
{
"_id": "61ed767bc493ff5a5b7783b6",
"index": 7,
"guid": "d396b8c6-0ec8-4a73-af50-803763e9e618",
"isActive": false,
"balance": "$1,330.75",
"picture": "http://placehold.it/32x32",
"age": 25,
"eyeColor": "brown",
"name": "Avery Douglas",
"gender": "male",
"company": "BILLMED",
"email": "[email protected]",
"phone": "+1 (959) 420-2759",
"address": "873 Everit Street, Davenport, Alaska, 6359",
"about": "Proident non labore aliquip culpa nisi ullamco anim excepteur occaecat. Lorem laboris ad tempor pariatur. Consectetur irure officia labore eu et cupidatat velit. Ea velit tempor minim officia aute duis amet dolore laboris cupidatat. Proident sint nisi magna cupidatat amet labore et Lorem velit.\r\n",
"registered": "2020-02-01T10:50:35 -05:00",
"latitude": 83.882091,
"longitude": -128.188732,
"tags": [
"laborum",
"aliquip",
"elit",
"reprehenderit",
"ad",
"aliqua",
"ex"
],
"friends": [
{
"id": 0,
"name": "Glover Padilla"
},
{
"id": 1,
"name": "Wall Goff"
},
{
"id": 2,
"name": "Malinda Snyder"
}
],
"greeting": "Hello, Avery Douglas! You have 1 unread messages.",
"favoriteFruit": "banana",
"github": "https://github.com/Stephanie/734"
},
{
"_id": "61ed767b76acf9fc0e6faea4",
"index": 8,
"guid": "b872f4e1-39e6-43d9-88f1-5539437402f9",
"isActive": false,
"balance": "$1,200.26",
"picture": "http://placehold.it/32x32",
"age": 38,
"eyeColor": "green",
"name": "Becker Wells",
"gender": "male",
"company": "GLASSTEP",
"email": "[email protected]",
"phone": "+1 (977) 421-2258",
"address": "264 Saratoga Avenue, Mapletown, South Dakota, 9757",
"about": "Cillum sit Lorem voluptate dolor exercitation ullamco id amet nulla. Consequat et magna ullamco eu officia nulla aliqua. Consectetur voluptate nisi ullamco nisi elit consequat aute amet occaecat eu ipsum magna in.\r\n",
"registered": "2019-05-23T02:59:56 -05:00",
"latitude": 36.984307,
"longitude": 85.66017,
"tags": [
"Lorem",
"id",
"anim",
"mollit",
"anim",
"quis",
"labore"
],
"friends": [
{
"id": 0,
"name": "Clare Solis"
},
{
"id": 1,
"name": "Knox Lindsay"
},
{
"id": 2,
"name": "Lawrence Orr"
}
],
"greeting": "Hello, Becker Wells! You have 3 unread messages.",
"favoriteFruit": "apple",
"github": "https://github.com/Juliette/280"
},
{
"_id": "61ed767bb68e44f7f1f35e2f",
"index": 9,
"guid": "f8eaa776-0c98-4778-83ee-abb4438613dc",
"isActive": false,
"balance": "$3,458.82",
"picture": "http://placehold.it/32x32",
"age": 21,
"eyeColor": "green",
"name": "Berry Hanson",
"gender": "male",
"company": "SYNKGEN",
"email": "[email protected]",
"phone": "+1 (899) 532-3613",
"address": "654 Sedgwick Street, Woodlands, Louisiana, 8461",
"about": "Exercitation ut ut Lorem fugiat fugiat elit do quis consectetur. Ad ullamco sint ad commodo in velit ipsum in qui ullamco reprehenderit anim dolore. Incididunt consequat ut culpa ipsum et ad ad mollit ea. Aute elit do veniam incididunt eiusmod ullamco.\r\n",
"registered": "2018-05-14T11:00:24 -05:00",
"latitude": -32.893899,
"longitude": -34.464552,
"tags": [
"adipisicing",
"cillum",
"et",
"fugiat",
"eiusmod",
"irure",
"et"
],
"friends": [
{
"id": 0,
"name": "Socorro Nielsen"
},
{
"id": 1,
"name": "West Ware"
},
{
"id": 2,
"name": "Graves Carrillo"
}
],
"greeting": "Hello, Berry Hanson! You have 8 unread messages.",
"favoriteFruit": "banana",
"github": null
},
{
"_id": "61ed767bda057abbcab39ec3",
"index": 10,
"guid": "5fa5c3e4-c577-40ad-acb9-c734d35545ec",
"isActive": true,
"balance": "$1,071.67",
"picture": "http://placehold.it/32x32",
"age": 37,
"eyeColor": "blue",
"name": "Vazquez Hansen",
"gender": "male",
"company": "ZYTRAX",
"email": "[email protected]",
"phone": "+1 (864) 586-3257",
"address": "650 Moore Street, Wikieup, Arkansas, 593",
"about": "Cupidatat cupidatat sit aliquip dolor id excepteur. Aliqua do ea sint nisi cupidatat dolor do dolor. Ea do exercitation adipisicing deserunt consectetur anim est nulla sint et magna adipisicing in commodo.\r\n",
"registered": "2018-05-22T04:06:24 -05:00",
"latitude": -57.699413,
"longitude": -100.674608,
"tags": [
"laborum",
"dolor",
"consectetur",
"esse",
"labore",
"commodo",
"Lorem"
],
"friends": [
{
"id": 0,
"name": "Bruce Mckenzie"
},
{
"id": 1,
"name": "Bobbi Branch"
},
{
"id": 2,
"name": "Abigail Terrell"
}
],
"greeting": "Hello, Vazquez Hansen! You have 6 unread messages.",
"favoriteFruit": "strawberry",
"github": "https://github.com/Maura/580"
},
{
"_id": "61ed767b2acbddb7d4129e03",
"index": 11,
"guid": "580a9347-bf8b-40fc-9b9b-faf14ebf7fc9",
"isActive": false,
"balance": "$2,288.84",
"picture": "http://placehold.it/32x32",
"age": 32,
"eyeColor": "brown",
"name": "Gaines Robbins",
"gender": "male",
"company": "INJOY",
"email": "[email protected]",
"phone": "+1 (879) 487-2743",
"address": "152 Interborough Parkway, Norfolk, Marshall Islands, 812",
"about": "Amet cillum ipsum consectetur officia Lorem deserunt cillum ea aute reprehenderit. Laboris ex officia ut non cupidatat quis ullamco anim dolor dolor. Aliquip enim nostrud adipisicing exercitation sunt nulla aliqua consequat dolor qui. Aliquip officia occaecat deserunt aliquip voluptate aute nulla laborum sit nostrud incididunt tempor.\r\n",
"registered": "2017-07-04T09:10:10 -05:00",
"latitude": -39.101743,
"longitude": 51.140564,
"tags": [
"laborum",
"sunt",
"cillum",
"duis",
"reprehenderit",
"aute",
"voluptate"
],
"friends": [
{
"id": 0,
"name": "Concepcion Wall"
},
{
"id": 1,
"name": "Waller Barber"
},
{
"id": 2,
"name": "Carlene Beck"
}
],
"greeting": "Hello, Gaines Robbins! You have 6 unread messages.",
"favoriteFruit": "strawberry",
"github": null
},
{
"_id": "61ed767b6a4e2f9393951728",
"index": 12,
"guid": "2253c0dc-9915-4b4f-956f-a924e7928cd2",
"isActive": false,
"balance": "$1,278.09",
"picture": "http://placehold.it/32x32",
"age": 21,
"eyeColor": "green",
"name": "Burton Burris",
"gender": "male",
"company": "ECOSYS",
"email": "[email protected]",
"phone": "+1 (998) 483-2742",
"address": "561 Hill Street, Oretta, Guam, 7831",
"about": "Ipsum aute aliqua ipsum exercitation aute excepteur. In labore quis eiusmod dolore. Aliqua culpa ad reprehenderit ut labore pariatur ex cillum reprehenderit eiusmod velit id duis.\r\n",
"registered": "2014-09-29T04:47:47 -06:00",
"latitude": 32.201188,
"longitude": 75.04406,
"tags": [
"dolor",
"laborum",
"id",
"aute",
"consectetur",
"nulla",
"et"
],
"friends": [
{
"id": 0,
"name": "Josefa Martin"
},
{
"id": 1,
"name": "Cooke Farrell"
},
{
"id": 2,
"name": "Oneil Woodard"
}
],
"greeting": "Hello, Burton Burris! You have 3 unread messages.",
"favoriteFruit": "strawberry",
"github": null
},
{
"_id": "61ed767bfe3c690139c9921d",
"index": 13,
"guid": "58b48e79-058d-45ef-9737-b81a55f7d043",
"isActive": true,
"balance": "$1,539.78",
"picture": "http://placehold.it/32x32",
"age": 29,
"eyeColor": "green",
"name": "Torres Murphy",
"gender": "male",
"company": "REMOLD",
"email": "[email protected]",
"phone": "+1 (832) 555-3937",
"address": "238 Wolcott Street, Sterling, Maine, 4339",
"about": "Proident cupidatat aliqua pariatur anim sunt cillum sint est cillum. Ut nulla tempor ea laborum deserunt eiusmod. Ullamco anim proident ad labore ullamco aliquip cupidatat dolore non. Ex do consequat veniam incididunt et ipsum exercitation voluptate. Eu laborum nostrud ullamco irure in amet dolor ad minim ut dolore anim. Cupidatat aliquip quis nostrud Lorem pariatur cupidatat.\r\n",
"registered": "2014-03-09T03:34:56 -06:00",
"latitude": 21.061878,
"longitude": -91.494071,
"tags": [
"pariatur",
"reprehenderit",
"amet",
"amet",
"incididunt",
"voluptate",
"ex"
],
"friends": [
{
"id": 0,
"name": "Dorthy Singleton"
},
{
"id": 1,
"name": "Drake Neal"
},
{
"id": 2,
"name": "Moore Morales"
}
],
"greeting": "Hello, Torres Murphy! You have 1 unread messages.",
"favoriteFruit": "strawberry",
"github": "https://github.com/Sondra/232"
},
{
"_id": "61ed767b32d61ad8073f6a24",
"index": 14,
"guid": "59c34219-f38a-42bb-b9e0-cd6e2e1c6346",
"isActive": true,
"balance": "$1,630.28",
"picture": "http://placehold.it/32x32",
"age": 35,
"eyeColor": "brown",
"name": "Krista Rogers",
"gender": "female",
"company": "DEVILTOE",
"email": "[email protected]",
"phone": "+1 (837) 507-3160",
"address": "756 Narrows Avenue, Juntura, North Carolina, 1695",
"about": "Amet excepteur commodo esse amet commodo minim et magna ea ea labore. Pariatur sint ut fugiat magna sint voluptate. Id nostrud id cupidatat exercitation esse exercitation qui adipisicing deserunt velit veniam fugiat. In laborum esse non sint. Tempor ipsum laborum nisi aute nisi et dolor cillum aliqua proident cillum sunt.\r\n",
"registered": "2015-01-31T02:34:20 -05:00",
"latitude": -43.935432,
"longitude": -70.731948,
"tags": [
"nisi",
"ullamco",
"id",
"consectetur",
"consequat",
"est",
"mollit"
],
"friends": [
{
"id": 0,
"name": "Tonia Gray"
},
{
"id": 1,
"name": "Leticia House"
},
{
"id": 2,
"name": "Rosalyn Davenport"
}
],
"greeting": "Hello, Krista Rogers! You have 4 unread messages.",
"favoriteFruit": "apple",
"github": "https://github.com/Petty/730"
},
{
"_id": "61ed767baf0e55dca62e7c14",
"index": 15,
"guid": "bf09bc71-95cf-44f8-9d2f-e42c6b1147bb",
"isActive": false,
"balance": "$1,721.80",
"picture": "http://placehold.it/32x32",
"age": 28,
"eyeColor": "green",
"name": "Golden Downs",
"gender": "male",
"company": "EXERTA",
"email": "[email protected]",
"phone": "+1 (920) 580-3310",
"address": "716 Bushwick Court, Klondike, New Jersey, 6693",
"about": "Veniam culpa eu et irure reprehenderit incididunt enim laborum velit. Nulla anim nulla fugiat magna do aliqua minim ut culpa. Et voluptate cillum culpa dolore pariatur laborum amet sunt do adipisicing esse ipsum. Aliqua qui amet Lorem culpa nostrud velit voluptate consectetur fugiat non sit voluptate. Id deserunt magna laboris consequat labore. Ullamco consequat esse duis mollit pariatur quis id consectetur pariatur sint consequat.\r\n",
"registered": "2021-05-04T02:58:01 -05:00",
"latitude": 86.626409,
"longitude": -10.241644,
"tags": [
"aliqua",
"aute",
"reprehenderit",
"nisi",
"enim",
"amet",
"fugiat"
],
"friends": [
{
"id": 0,
"name": "Madden Wilkins"
},
{
"id": 1,
"name": "Gail Mcintosh"
},
{
"id": 2,
"name": "Rosalind Booker"
}
],
"greeting": "Hello, Golden Downs! You have 1 unread messages.",
"favoriteFruit": "banana",
"github": null
},
{
"_id": "61ed767b8de52761544a3abc",
"index": 16,
"guid": "a7bb8af0-c830-4bcc-9945-ab1094cdc32d",
"isActive": false,
"balance": "$1,125.75",
"picture": "http://placehold.it/32x32",
"age": 25,
"eyeColor": "blue",
"name": "Kimberley Kemp",
"gender": "female",
"company": "BIOLIVE",
"email": "[email protected]",
"phone": "+1 (963) 593-2249",
"address": "638 Arlington Avenue, Trona, West Virginia, 5254",
"about": "Excepteur ea elit duis magna proident. Veniam adipisicing ipsum qui consequat officia pariatur ex. Lorem in aute dolor dolor cupidatat officia culpa aliquip mollit ullamco deserunt ullamco enim eu.\r\n",
"registered": "2016-12-12T08:28:42 -05:00",
"latitude": 72.460646,
"longitude": 43.854724,
"tags": [
"non",
"dolore",
"incididunt",
"irure",
"nostrud",
"deserunt",
"voluptate"
],
"friends": [
{
"id": 0,
"name": "Mclaughlin Cobb"
},
{
"id": 1,
"name": "Fitzgerald Rasmussen"
},
{
"id": 2,
"name": "Horne Langley"
}
],
"greeting": "Hello, Kimberley Kemp! You have 3 unread messages.",
"favoriteFruit": "strawberry",
"github": null
},
{
"_id": "61ed767bf4e31140817e5ac7",
"index": 17,
"guid": "006cf374-c5a9-4c9c-9319-5a79867bf63b",
"isActive": false,
"balance": "$2,853.28",
"picture": "http://placehold.it/32x32",
"age": 21,
"eyeColor": "brown",
"name": "Meagan Mcknight",
"gender": "female",
"company": "AMRIL",
"email": "[email protected]",
"phone": "+1 (927) 501-2641",
"address": "748 Oceanview Avenue, Nutrioso, Wisconsin, 1159",
"about": "Mollit in nostrud amet est. Exercitation amet elit cupidatat quis Lorem veniam officia nostrud. Enim veniam ea sint nisi amet elit eu tempor. Occaecat quis elit exercitation duis magna voluptate.\r\n",
"registered": "2015-05-02T12:55:48 -05:00",
"latitude": 80.669585,
"longitude": 56.094324,
"tags": [
"duis",
"nulla",
"commodo",
"qui",
"pariatur",
"laborum",
"exercitation"
],
"friends": [
{
"id": 0,
"name": "Mcneil Livingston"
},
{
"id": 1,
"name": "Sosa Mccarty"
},
{
"id": 2,
"name": "Levine Sexton"
}
],
"greeting": "Hello, Meagan Mcknight! You have 7 unread messages.",
"favoriteFruit": "banana",
"github": null
},
{
"_id": "61ed767b9528f2546bd0138a",
"index": 18,
"guid": "978ec8c7-3321-49b3-86ef-2648f8e328db",
"isActive": true,
"balance": "$2,370.65",
"picture": "http://placehold.it/32x32",
"age": 38,
"eyeColor": "brown",
"name": "Phillips Green",
"gender": "male",
"company": "TROPOLI",
"email": "[email protected]",
"phone": "+1 (862) 412-3867",
"address": "346 Dearborn Court, Loyalhanna, Utah, 8400",
"about": "Lorem mollit elit officia exercitation laboris eiusmod ex in aute Lorem tempor. Esse et deserunt cillum dolor eu. Esse in exercitation incididunt ad irure qui irure culpa fugiat. Ad aliquip id cillum adipisicing velit consectetur ut non et magna non dolore sit. Ullamco commodo irure non excepteur ipsum reprehenderit aliqua.\r\n",
"registered": "2021-03-22T03:35:38 -05:00",
"latitude": 42.876942,
"longitude": -55.499282,
"tags": [
"nostrud",
"laboris",
"laborum",
"est",
"amet",
"amet",
"laboris"
],
"friends": [
{
"id": 0,
"name": "Antonia Fuller"
},
{
"id": 1,
"name": "Jerry Blackwell"
},
{
"id": 2,
"name": "Olsen Hickman"
}
],
"greeting": "Hello, Phillips Green! You have 1 unread messages.",
"favoriteFruit": "apple",
"github": null
},
{
"_id": "61ed767bf49fa6339e8a22f8",
"index": 19,
"guid": "7f05839e-ceab-4d62-9c82-14f6d0b0dc43",
"isActive": true,
"balance": "$1,396.73",
"picture": "http://placehold.it/32x32",
"age": 35,
"eyeColor": "green",
"name": "Marion Leon",
"gender": "female",
"company": "VIASIA",
"email": "[email protected]",
"phone": "+1 (883) 479-2471",
"address": "138 Utica Avenue, Boykin, North Dakota, 8839",
"about": "Eiusmod in dolore aliquip nostrud. Eu consectetur laboris sit aliquip duis. Occaecat ea minim dolore deserunt commodo ex. Labore eiusmod laborum qui magna laboris eiusmod consectetur cillum culpa nostrud pariatur deserunt minim dolor. Esse elit cillum ad in Lorem ex duis duis laborum est deserunt.\r\n",
"registered": "2015-05-24T02:56:27 -05:00",
"latitude": 39.479427,
"longitude": -15.294262,
"tags": [
"incididunt",
"minim",
"reprehenderit",
"ad",
"reprehenderit",
"do",
"velit"
],
"friends": [
{
"id": 0,
"name": "Douglas Randolph"
},
{
"id": 1,
"name": "Camacho Knox"
},
{
"id": 2,
"name": "Day Hampton"
}
],
"greeting": "Hello, Marion Leon! You have 1 unread messages.",
"favoriteFruit": "strawberry",
"github": "https://github.com/Ines/788"
}
]
`