-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMOCK_DATA.json
1000 lines (1000 loc) · 211 KB
/
MOCK_DATA.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":1,"first_name":"Trix","last_name":"Harty","email":"[email protected]","gender":"Female","ip_address":"146.80.88.126","desc":"Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)"},
{"id":2,"first_name":"Darice","last_name":"Copperwaite","email":"[email protected]","gender":"Female","ip_address":"251.135.43.52","desc":"Glaucoma secondary to eye inflammation, left eye, indeterminate stage"},
{"id":3,"first_name":"Matthieu","last_name":"Merman","email":"[email protected]","gender":"Male","ip_address":"191.114.50.4","desc":"Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion"},
{"id":4,"first_name":"Pat","last_name":"Sillars","email":"[email protected]","gender":"Non-binary","ip_address":"216.216.187.49","desc":"Subluxation of unspecified interphalangeal joint of right ring finger"},
{"id":5,"first_name":"Alanson","last_name":"Longlands","email":"[email protected]","gender":"Male","ip_address":"66.6.229.252","desc":"Toxic effect of nitroglycerin and other nitric acids and esters, assault, sequela"},
{"id":6,"first_name":"Edsel","last_name":"Wohler","email":"[email protected]","gender":"Male","ip_address":"162.176.68.136","desc":"Displaced comminuted fracture of shaft of left tibia, subsequent encounter for open fracture type I or II with nonunion"},
{"id":7,"first_name":"Leda","last_name":"Carrodus","email":"[email protected]","gender":"Female","ip_address":"77.221.117.181","desc":"Other specified injury of ulnar artery at forearm level"},
{"id":8,"first_name":"Inesita","last_name":"Nagle","email":"[email protected]","gender":"Female","ip_address":"117.64.47.153","desc":"Pedestrian injured in collision with railway train or railway vehicle in nontraffic accident"},
{"id":9,"first_name":"Arron","last_name":"Freebury","email":"[email protected]","gender":"Bigender","ip_address":"166.65.154.133","desc":"Single liveborn infant, born outside hospital"},
{"id":10,"first_name":"Eugene","last_name":"Dodgshon","email":"[email protected]","gender":"Male","ip_address":"167.109.58.150","desc":"Chorioamnionitis, unspecified trimester, not applicable or unspecified"},
{"id":11,"first_name":"Jessalin","last_name":"Campos","email":"[email protected]","gender":"Non-binary","ip_address":"194.134.243.132","desc":"Laceration without foreign body of left index finger without damage to nail, subsequent encounter"},
{"id":12,"first_name":"Carlyn","last_name":"Waeland","email":"[email protected]","gender":"Female","ip_address":"19.74.190.32","desc":"Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture"},
{"id":13,"first_name":"Lory","last_name":"Gradly","email":"[email protected]","gender":"Female","ip_address":"29.220.39.197","desc":"Fuchs' heterochromic cyclitis, right eye"},
{"id":14,"first_name":"Bethina","last_name":"Pasque","email":"[email protected]","gender":"Female","ip_address":"1.194.144.129","desc":"Pedestrian on other gliding-type pedestrian conveyance colliding with stationary object, subsequent encounter"},
{"id":15,"first_name":"Dill","last_name":"Grundon","email":"[email protected]","gender":"Male","ip_address":"82.222.245.64","desc":"Displaced supracondylar fracture with intracondylar extension of lower end of left femur, subsequent encounter for open fracture type I or II with malunion"},
{"id":16,"first_name":"Sianna","last_name":"Stirrip","email":"[email protected]","gender":"Female","ip_address":"106.160.116.173","desc":"Primary blast injury of descending [left] colon, subsequent encounter"},
{"id":17,"first_name":"Fidole","last_name":"Romain","email":"[email protected]","gender":"Male","ip_address":"116.133.114.56","desc":"Corrosion of second degree of unspecified scapular region"},
{"id":18,"first_name":"Marylee","last_name":"Wonter","email":"[email protected]","gender":"Female","ip_address":"194.114.218.46","desc":"Other specified injury of unspecified blood vessel at hip and thigh level, unspecified leg, subsequent encounter"},
{"id":19,"first_name":"Rogers","last_name":"Robart","email":"[email protected]","gender":"Male","ip_address":"210.130.38.130","desc":"Displaced bimalleolar fracture of right lower leg, subsequent encounter for open fracture type I or II with nonunion"},
{"id":20,"first_name":"Corenda","last_name":"Humbatch","email":"[email protected]","gender":"Female","ip_address":"177.138.60.146","desc":"Toxic effect of herbicides and fungicides"},
{"id":21,"first_name":"Alair","last_name":"Vallis","email":"[email protected]","gender":"Male","ip_address":"119.125.16.33","desc":"Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing"},
{"id":22,"first_name":"Sibilla","last_name":"Trewett","email":"[email protected]","gender":"Female","ip_address":"201.13.138.17","desc":"Unspecified injury at C4 level of cervical spinal cord"},
{"id":23,"first_name":"Linoel","last_name":"Patrone","email":"[email protected]","gender":"Male","ip_address":"193.110.52.48","desc":"Displaced fracture of lower epiphysis (separation) of unspecified femur, subsequent encounter for open fracture type I or II with malunion"},
{"id":24,"first_name":"Loralyn","last_name":"Burgh","email":"[email protected]","gender":"Female","ip_address":"27.162.227.140","desc":"Fall on same level due to stepping on an object, initial encounter"},
{"id":25,"first_name":"Sapphire","last_name":"O'Ruane","email":"[email protected]","gender":"Female","ip_address":"113.149.87.132","desc":"Carrier of bacterial disease due to meningococci"},
{"id":26,"first_name":"Lindsay","last_name":"Dessant","email":"[email protected]","gender":"Genderqueer","ip_address":"4.119.174.137","desc":"Unspecified transplanted organ and tissue rejection"},
{"id":27,"first_name":"Tawsha","last_name":"Hrihorovich","email":"[email protected]","gender":"Polygender","ip_address":"117.103.254.110","desc":"Motorcycle driver injured in collision with car, pick-up truck or van in nontraffic accident"},
{"id":28,"first_name":"Briny","last_name":"Brickhill","email":"[email protected]","gender":"Female","ip_address":"165.175.14.254","desc":"Encounter for screening for other bacterial diseases"},
{"id":29,"first_name":"Xena","last_name":"Hakes","email":"[email protected]","gender":"Female","ip_address":"133.195.151.186","desc":"Person injured while boarding or alighting from special all-terrain or other off-road motor vehicle"},
{"id":30,"first_name":"Matthieu","last_name":"Collum","email":"[email protected]","gender":"Male","ip_address":"76.72.10.212","desc":"Fracture of rib(s), sternum and thoracic spine"},
{"id":31,"first_name":"Ebenezer","last_name":"Ondrus","email":"[email protected]","gender":"Male","ip_address":"124.180.63.227","desc":"Anterior cord syndrome at unspecified level of thoracic spinal cord"},
{"id":32,"first_name":"Nessa","last_name":"Cosin","email":"[email protected]","gender":"Female","ip_address":"163.151.216.116","desc":"Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing"},
{"id":33,"first_name":"Nate","last_name":"Eller","email":"[email protected]","gender":"Male","ip_address":"157.137.1.206","desc":"External constriction of scrotum and testes, subsequent encounter"},
{"id":34,"first_name":"Hollis","last_name":"Heinritz","email":"[email protected]","gender":"Male","ip_address":"218.186.17.246","desc":"Unspecified open wound of unspecified great toe with damage to nail, sequela"},
{"id":35,"first_name":"Dosi","last_name":"Bateup","email":"[email protected]","gender":"Female","ip_address":"219.55.247.138","desc":"Injury of left uterine artery, subsequent encounter"},
{"id":36,"first_name":"Paquito","last_name":"Fitzroy","email":"[email protected]","gender":"Male","ip_address":"177.33.140.231","desc":"Superficial foreign body, unspecified knee, sequela"},
{"id":37,"first_name":"Olivie","last_name":"Borzoni","email":"[email protected]","gender":"Agender","ip_address":"108.236.69.37","desc":"Diseases of lips"},
{"id":38,"first_name":"Burke","last_name":"Vannuchi","email":"[email protected]","gender":"Male","ip_address":"82.86.94.187","desc":"Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter"},
{"id":39,"first_name":"Kimmy","last_name":"Borg","email":"[email protected]","gender":"Female","ip_address":"91.83.213.162","desc":"Unspecified injury of femoral vein at hip and thigh level, left leg, initial encounter"},
{"id":40,"first_name":"Arie","last_name":"Brennan","email":"[email protected]","gender":"Genderqueer","ip_address":"199.130.144.147","desc":"Accident to, on or involving land-yacht"},
{"id":41,"first_name":"Sharona","last_name":"Oliveira","email":"[email protected]","gender":"Female","ip_address":"85.46.217.155","desc":"Other leukemias of specified cell type"},
{"id":42,"first_name":"Rozanne","last_name":"Catherine","email":"[email protected]","gender":"Female","ip_address":"88.93.186.51","desc":"Burn of third degree of multiple sites of left lower limb, except ankle and foot"},
{"id":43,"first_name":"Mattheus","last_name":"Tidmarsh","email":"[email protected]","gender":"Male","ip_address":"122.214.125.126","desc":"Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization"},
{"id":44,"first_name":"Bessy","last_name":"Rapinett","email":"[email protected]","gender":"Female","ip_address":"203.35.204.4","desc":"Acquired deformities of toe(s), unspecified"},
{"id":45,"first_name":"Henrik","last_name":"Habbershon","email":"[email protected]","gender":"Male","ip_address":"145.104.188.252","desc":"Other serum reaction due to administration of blood and blood products, sequela"},
{"id":46,"first_name":"Karita","last_name":"Siggens","email":"[email protected]","gender":"Female","ip_address":"128.240.124.194","desc":"Vitamin A deficiency with xerophthalmic scars of cornea"},
{"id":47,"first_name":"Darius","last_name":"Osment","email":"[email protected]","gender":"Male","ip_address":"120.163.162.167","desc":"Puncture wound without foreign body of unspecified thumb with damage to nail"},
{"id":48,"first_name":"Noni","last_name":"Ollerearnshaw","email":"[email protected]","gender":"Female","ip_address":"99.184.180.226","desc":"Displacement of ventricular intracranial (communicating) shunt, subsequent encounter"},
{"id":49,"first_name":"Linc","last_name":"Thuillier","email":"[email protected]","gender":"Male","ip_address":"246.73.226.129","desc":"Preterm newborn, gestational age 33 completed weeks"},
{"id":50,"first_name":"Luis","last_name":"McKimmey","email":"[email protected]","gender":"Male","ip_address":"88.31.214.1","desc":"Motorcycle passenger injured in collision with railway train or railway vehicle in traffic accident, sequela"},
{"id":51,"first_name":"Sigrid","last_name":"Boxe","email":"[email protected]","gender":"Female","ip_address":"38.160.72.214","desc":"Spasm of accommodation, right eye"},
{"id":52,"first_name":"Lloyd","last_name":"Mattioni","email":"[email protected]","gender":"Male","ip_address":"179.27.2.181","desc":"Crushing injury of right index finger"},
{"id":53,"first_name":"Jarad","last_name":"Singyard","email":"[email protected]","gender":"Male","ip_address":"32.167.98.80","desc":"Rheumatoid vasculitis with rheumatoid arthritis of right knee"},
{"id":54,"first_name":"Lindy","last_name":"Cuddon","email":"[email protected]","gender":"Female","ip_address":"18.49.43.60","desc":"Fistula, left hip"},
{"id":55,"first_name":"Irwinn","last_name":"Curtayne","email":"[email protected]","gender":"Male","ip_address":"82.221.216.218","desc":"Unspecified open wound, right hip, subsequent encounter"},
{"id":56,"first_name":"Kellsie","last_name":"MacKeig","email":"[email protected]","gender":"Genderqueer","ip_address":"211.120.167.238","desc":"Displaced fracture of lateral condyle of unspecified femur, subsequent encounter for open fracture type I or II with delayed healing"},
{"id":57,"first_name":"Maggy","last_name":"Huerta","email":"[email protected]","gender":"Female","ip_address":"27.200.180.115","desc":"Miscellaneous gastroenterology and urology devices associated with adverse incidents, not elsewhere classified"},
{"id":58,"first_name":"Wallie","last_name":"Janaud","email":"[email protected]","gender":"Male","ip_address":"173.31.153.8","desc":"War operations involving unspecified weapon of mass destruction [WMD]"},
{"id":59,"first_name":"Sammy","last_name":"Nelle","email":"[email protected]","gender":"Male","ip_address":"213.69.252.8","desc":"Pressure ulcer of unspecified part of back, stage 1"},
{"id":60,"first_name":"Davida","last_name":"Hamill","email":"[email protected]","gender":"Female","ip_address":"20.81.86.7","desc":"Sprain of unspecified ligament of left ankle, sequela"},
{"id":61,"first_name":"Amble","last_name":"Cumes","email":"[email protected]","gender":"Male","ip_address":"202.209.103.181","desc":"Torus fracture of lower end of left tibia, sequela"},
{"id":62,"first_name":"Susanne","last_name":"Doughill","email":"[email protected]","gender":"Female","ip_address":"146.23.206.237","desc":"Open bite of lip, initial encounter"},
{"id":63,"first_name":"Consalve","last_name":"Fansy","email":"[email protected]","gender":"Male","ip_address":"44.79.218.171","desc":"Palsy (spasm) of conjugate gaze"},
{"id":64,"first_name":"Margaret","last_name":"Gjerde","email":"[email protected]","gender":"Female","ip_address":"140.116.202.228","desc":"Osteitis deformans in neoplastic diseases, thigh"},
{"id":65,"first_name":"Clemmy","last_name":"Runnett","email":"[email protected]","gender":"Male","ip_address":"91.18.178.183","desc":"Fall from, out of or through building or structure"},
{"id":66,"first_name":"Barbee","last_name":"Liptrot","email":"[email protected]","gender":"Genderfluid","ip_address":"241.131.0.187","desc":"Basal cell carcinoma of skin of right eyelid, including canthus"},
{"id":67,"first_name":"Garey","last_name":"Davsley","email":"[email protected]","gender":"Male","ip_address":"238.16.195.205","desc":"Unspecified fracture of unspecified femur, subsequent encounter for open fracture type I or II with routine healing"},
{"id":68,"first_name":"Hallsy","last_name":"Robion","email":"[email protected]","gender":"Male","ip_address":"56.129.70.77","desc":"Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity"},
{"id":69,"first_name":"Gilbertine","last_name":"Roache","email":"[email protected]","gender":"Female","ip_address":"212.51.58.39","desc":"Osteochondropathy, unspecified, right lower leg"},
{"id":70,"first_name":"Clarice","last_name":"Langstone","email":"[email protected]","gender":"Female","ip_address":"47.127.216.75","desc":"Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity"},
{"id":71,"first_name":"Haze","last_name":"Schinetti","email":"[email protected]","gender":"Male","ip_address":"7.63.2.37","desc":"Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing"},
{"id":72,"first_name":"Vittoria","last_name":"Wybourne","email":"[email protected]","gender":"Female","ip_address":"235.13.3.184","desc":"Traumatic spondylopathy, cervical region"},
{"id":73,"first_name":"Danny","last_name":"Knappe","email":"[email protected]","gender":"Male","ip_address":"221.66.199.107","desc":"Poisoning by thrombolytic drug, undetermined, subsequent encounter"},
{"id":74,"first_name":"Nicolas","last_name":"Davenhill","email":"[email protected]","gender":"Polygender","ip_address":"50.189.90.242","desc":"Nondisplaced osteochondral fracture of right patella, subsequent encounter for closed fracture with nonunion"},
{"id":75,"first_name":"Blakeley","last_name":"Girardoni","email":"[email protected]","gender":"Female","ip_address":"234.150.1.60","desc":"Heat exposure on board unspecified watercraft, sequela"},
{"id":76,"first_name":"Ahmad","last_name":"Placidi","email":"[email protected]","gender":"Male","ip_address":"119.128.240.1","desc":"Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion"},
{"id":77,"first_name":"Hamel","last_name":"Robrose","email":"[email protected]","gender":"Male","ip_address":"88.45.171.145","desc":"Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":78,"first_name":"Othello","last_name":"Dukesbury","email":"[email protected]","gender":"Non-binary","ip_address":"149.184.117.48","desc":"Nondisplaced fracture of right tibial tuberosity, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":79,"first_name":"Lucia","last_name":"Bugge","email":"[email protected]","gender":"Female","ip_address":"18.48.115.60","desc":"Osteonecrosis due to previous trauma, right femur"},
{"id":80,"first_name":"Charlie","last_name":"Wurz","email":"[email protected]","gender":"Male","ip_address":"198.126.151.221","desc":"Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, initial encounter for fracture"},
{"id":81,"first_name":"Silas","last_name":"Pedrocchi","email":"[email protected]","gender":"Male","ip_address":"128.178.252.65","desc":"Displaced fracture of first metatarsal bone, right foot, subsequent encounter for fracture with malunion"},
{"id":82,"first_name":"Wanids","last_name":"Ebanks","email":"[email protected]","gender":"Female","ip_address":"140.224.19.128","desc":"Displaced fracture of third metatarsal bone, unspecified foot, initial encounter for closed fracture"},
{"id":83,"first_name":"Helaina","last_name":"Lusher","email":"[email protected]","gender":"Female","ip_address":"99.242.203.15","desc":"Congenital absence of both lower leg and foot, right lower limb"},
{"id":84,"first_name":"Kari","last_name":"Brelsford","email":"[email protected]","gender":"Female","ip_address":"38.226.127.79","desc":"Boarding-house as the place of occurrence of the external cause"},
{"id":85,"first_name":"Galvin","last_name":"Snel","email":"[email protected]","gender":"Male","ip_address":"230.160.109.99","desc":"Burn of third degree of neck, sequela"},
{"id":86,"first_name":"Hailee","last_name":"Gamell","email":"[email protected]","gender":"Female","ip_address":"10.78.239.79","desc":"Bitten by rat, sequela"},
{"id":87,"first_name":"Carlina","last_name":"Burnhill","email":"[email protected]","gender":"Female","ip_address":"47.213.106.77","desc":"Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing"},
{"id":88,"first_name":"Chris","last_name":"Gouldbourn","email":"[email protected]","gender":"Male","ip_address":"147.74.23.194","desc":"Other fracture of lower end of unspecified tibia, subsequent encounter for closed fracture with nonunion"},
{"id":89,"first_name":"Herculie","last_name":"Sowerby","email":"[email protected]","gender":"Male","ip_address":"92.163.78.252","desc":"Other complications associated with artificial fertilization"},
{"id":90,"first_name":"Derrek","last_name":"Laviste","email":"[email protected]","gender":"Genderqueer","ip_address":"129.198.234.227","desc":"Poisoning by and adverse effect of lysergide [LSD]"},
{"id":91,"first_name":"Ania","last_name":"O'Nions","email":"[email protected]","gender":"Female","ip_address":"157.132.27.42","desc":"Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side"},
{"id":92,"first_name":"Kris","last_name":"Frantz","email":"[email protected]","gender":"Bigender","ip_address":"153.113.37.135","desc":"Rh incompatibility with acute hemolytic transfusion reaction"},
{"id":93,"first_name":"Padraig","last_name":"Flemmich","email":"[email protected]","gender":"Male","ip_address":"155.153.105.92","desc":"Unspecified superficial injury of unspecified external genital organs, female"},
{"id":94,"first_name":"Budd","last_name":"Welbrock","email":"[email protected]","gender":"Male","ip_address":"121.155.68.40","desc":"Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter"},
{"id":95,"first_name":"Aidan","last_name":"Shorto","email":"[email protected]","gender":"Non-binary","ip_address":"249.142.83.19","desc":"Abrasion of left index finger, sequela"},
{"id":96,"first_name":"Julee","last_name":"Whiteman","email":"[email protected]","gender":"Female","ip_address":"250.138.24.95","desc":"Burn of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter"},
{"id":97,"first_name":"Luke","last_name":"McMullen","email":"[email protected]","gender":"Male","ip_address":"188.130.185.143","desc":"Pneumonia due to other aerobic Gram-negative bacteria"},
{"id":98,"first_name":"Cairistiona","last_name":"Pleven","email":"[email protected]","gender":"Female","ip_address":"232.118.125.202","desc":"Injury of acoustic nerve, right side"},
{"id":99,"first_name":"Raphaela","last_name":"O'Rourke","email":"[email protected]","gender":"Female","ip_address":"65.37.216.244","desc":"Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene"},
{"id":100,"first_name":"Leeland","last_name":"Galbreath","email":"[email protected]","gender":"Male","ip_address":"183.81.29.30","desc":"Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion"},
{"id":101,"first_name":"Claribel","last_name":"Pidler","email":"[email protected]","gender":"Female","ip_address":"62.38.244.159","desc":"Other subluxation of left shoulder joint"},
{"id":102,"first_name":"Clemmy","last_name":"Dybell","email":"[email protected]","gender":"Female","ip_address":"150.69.213.235","desc":"Burn of third degree of scalp [any part], sequela"},
{"id":103,"first_name":"Gunther","last_name":"Pletts","email":"[email protected]","gender":"Male","ip_address":"72.153.91.18","desc":"Other specified pregnancy related conditions"},
{"id":104,"first_name":"Gwen","last_name":"Clamp","email":"[email protected]","gender":"Female","ip_address":"54.67.85.185","desc":"Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing"},
{"id":105,"first_name":"Linzy","last_name":"Howes","email":"[email protected]","gender":"Female","ip_address":"142.137.5.178","desc":"13 weeks gestation of pregnancy"},
{"id":106,"first_name":"Tildie","last_name":"Dugmore","email":"[email protected]","gender":"Female","ip_address":"208.34.189.171","desc":"Other specified anomalies of jaw-cranial base relationship"},
{"id":107,"first_name":"Marylee","last_name":"Levett","email":"[email protected]","gender":"Female","ip_address":"26.77.76.50","desc":"Burn of unspecified degree of left lower leg, subsequent encounter"},
{"id":108,"first_name":"Anstice","last_name":"Latimer","email":"[email protected]","gender":"Female","ip_address":"87.103.227.111","desc":"Other intestinal Escherichia coli infections"},
{"id":109,"first_name":"Neal","last_name":"Callen","email":"[email protected]","gender":"Male","ip_address":"238.232.35.90","desc":"Melanoma in situ of left lower limb, including hip"},
{"id":110,"first_name":"Pall","last_name":"Hartman","email":"[email protected]","gender":"Male","ip_address":"136.79.57.6","desc":"Corrosion of second degree of chest wall, sequela"},
{"id":111,"first_name":"Mick","last_name":"Semper","email":"[email protected]","gender":"Male","ip_address":"132.162.210.208","desc":"Pseudohypoparathyroidism"},
{"id":112,"first_name":"Malena","last_name":"Barclay","email":"[email protected]","gender":"Female","ip_address":"87.67.73.0","desc":"Functional disorders of polymorphonuclear neutrophils"},
{"id":113,"first_name":"Francois","last_name":"Coie","email":"[email protected]","gender":"Male","ip_address":"177.170.234.127","desc":"Longitudinal vaginal septum, microperforate, right side"},
{"id":114,"first_name":"Libbi","last_name":"Tremblay","email":"[email protected]","gender":"Female","ip_address":"96.162.246.140","desc":"Juvenile arthritis, unspecified, right knee"},
{"id":115,"first_name":"Addy","last_name":"Higgen","email":"[email protected]","gender":"Male","ip_address":"81.2.32.230","desc":"Nondisplaced fracture of lunate [semilunar], unspecified wrist"},
{"id":116,"first_name":"Fee","last_name":"Degli Antoni","email":"[email protected]","gender":"Male","ip_address":"104.243.23.205","desc":"Poisoning by other antipsychotics and neuroleptics, intentional self-harm, sequela"},
{"id":117,"first_name":"Gail","last_name":"Cote","email":"[email protected]","gender":"Male","ip_address":"211.151.255.159","desc":"Underdosing of antidotes and chelating agents"},
{"id":118,"first_name":"Jedediah","last_name":"Duckers","email":"[email protected]","gender":"Male","ip_address":"176.147.151.244","desc":"Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes"},
{"id":119,"first_name":"Steffie","last_name":"Whitely","email":"[email protected]","gender":"Female","ip_address":"27.60.94.242","desc":"Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing"},
{"id":120,"first_name":"Hewie","last_name":"Kelmere","email":"[email protected]","gender":"Male","ip_address":"50.149.24.236","desc":"Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":121,"first_name":"Laurence","last_name":"Petruskevich","email":"[email protected]","gender":"Male","ip_address":"89.164.200.104","desc":"External constriction of part of scalp"},
{"id":122,"first_name":"Adella","last_name":"Duncombe","email":"[email protected]","gender":"Female","ip_address":"152.8.101.251","desc":"Occupant (driver) (passenger) of pick-up truck or van injured in unspecified traffic accident, initial encounter"},
{"id":123,"first_name":"Elihu","last_name":"Fleming","email":"[email protected]","gender":"Male","ip_address":"142.110.225.231","desc":"Malignant neoplasm of nipple and areola, right male breast"},
{"id":124,"first_name":"Marcos","last_name":"Deverill","email":"[email protected]","gender":"Male","ip_address":"180.182.118.149","desc":"Other specified injury of deep palmar arch of unspecified hand, sequela"},
{"id":125,"first_name":"Jackson","last_name":"Raccio","email":"[email protected]","gender":"Male","ip_address":"86.107.82.156","desc":"Poisoning by unspecified drugs, medicaments and biological substances, assault, subsequent encounter"},
{"id":126,"first_name":"Aurie","last_name":"Easlea","email":"[email protected]","gender":"Female","ip_address":"199.248.252.83","desc":"At-home adultcare provider, perpetrator of maltreatment and neglect"},
{"id":127,"first_name":"Dorolice","last_name":"Finley","email":"[email protected]","gender":"Female","ip_address":"217.146.143.219","desc":"Poisoning by unspecified nonopioid analgesic, antipyretic and antirheumatic, undetermined, sequela"},
{"id":128,"first_name":"Barbabas","last_name":"Kiefer","email":"[email protected]","gender":"Male","ip_address":"22.6.156.40","desc":"Drowning and submersion due to being thrown overboard by motion of fishing boat, sequela"},
{"id":129,"first_name":"Ethelred","last_name":"Roiz","email":"[email protected]","gender":"Male","ip_address":"77.173.195.166","desc":"Low lying placenta NOS or without hemorrhage, first trimester"},
{"id":130,"first_name":"Tomi","last_name":"Shipp","email":"[email protected]","gender":"Female","ip_address":"243.100.84.227","desc":"Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi)"},
{"id":131,"first_name":"Anallise","last_name":"Bocking","email":"[email protected]","gender":"Female","ip_address":"228.85.219.114","desc":"Nondisplaced oblique fracture of shaft of unspecified fibula, subsequent encounter for closed fracture with delayed healing"},
{"id":132,"first_name":"Chaddy","last_name":"Fay","email":"[email protected]","gender":"Male","ip_address":"243.211.242.174","desc":"Foreign body in other and multiple parts of external eye, unspecified eye, sequela"},
{"id":133,"first_name":"Stan","last_name":"Meere","email":"[email protected]","gender":"Non-binary","ip_address":"81.203.61.190","desc":"Encounter for screening for malignant neoplasm of bladder"},
{"id":134,"first_name":"Hieronymus","last_name":"Timby","email":"[email protected]","gender":"Male","ip_address":"109.172.195.116","desc":"Burn of third degree of lower limb, except ankle and foot"},
{"id":135,"first_name":"Trescha","last_name":"Boteman","email":"[email protected]","gender":"Female","ip_address":"45.155.170.184","desc":"Nondisplaced fracture of medial condyle of unspecified femur, subsequent encounter for closed fracture with malunion"},
{"id":136,"first_name":"Carolann","last_name":"Retchless","email":"[email protected]","gender":"Female","ip_address":"79.169.18.86","desc":"Atrophy of globe, unspecified eye"},
{"id":137,"first_name":"Dud","last_name":"Ewbanke","email":"[email protected]","gender":"Male","ip_address":"86.95.36.166","desc":"Contusion of other specified part of neck, initial encounter"},
{"id":138,"first_name":"Duffy","last_name":"Lawles","email":"[email protected]","gender":"Male","ip_address":"169.240.84.30","desc":"Toxic effect of formaldehyde, undetermined, initial encounter"},
{"id":139,"first_name":"Douglass","last_name":"Allin","email":"[email protected]","gender":"Male","ip_address":"126.161.193.228","desc":"Other forms of scoliosis, thoracolumbar region"},
{"id":140,"first_name":"Olivero","last_name":"Jerram","email":"[email protected]","gender":"Male","ip_address":"70.111.249.138","desc":"Nondisplaced fracture of neck of fourth metacarpal bone, left hand, initial encounter for closed fracture"},
{"id":141,"first_name":"Ty","last_name":"Stores","email":"[email protected]","gender":"Male","ip_address":"93.76.158.156","desc":"Palindromic rheumatism, right hip"},
{"id":142,"first_name":"Manny","last_name":"Gouldthorpe","email":"[email protected]","gender":"Male","ip_address":"210.44.241.248","desc":"Other subluxation of unspecified ulnohumeral joint, subsequent encounter"},
{"id":143,"first_name":"Stephi","last_name":"Merwe","email":"[email protected]","gender":"Female","ip_address":"170.111.37.64","desc":"Struck by horse, initial encounter"},
{"id":144,"first_name":"Keefer","last_name":"Willingale","email":"[email protected]","gender":"Male","ip_address":"69.163.76.162","desc":"Intentional self-harm by other hot objects, subsequent encounter"},
{"id":145,"first_name":"Joete","last_name":"Plett","email":"[email protected]","gender":"Female","ip_address":"129.183.202.162","desc":"Driveway of other specified residential institution as the place of occurrence of the external cause"},
{"id":146,"first_name":"Editha","last_name":"Lambswood","email":"[email protected]","gender":"Female","ip_address":"82.124.149.131","desc":"Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion"},
{"id":147,"first_name":"Jeromy","last_name":"Dicker","email":"[email protected]","gender":"Male","ip_address":"143.122.122.0","desc":"Kidney transplant failure"},
{"id":148,"first_name":"Christin","last_name":"Mc Kellen","email":"[email protected]","gender":"Female","ip_address":"117.12.73.104","desc":"Vertigo from infrasound"},
{"id":149,"first_name":"Rosmunda","last_name":"Nystrom","email":"[email protected]","gender":"Female","ip_address":"29.139.226.163","desc":"Preglaucoma, unspecified, right eye"},
{"id":150,"first_name":"Gonzales","last_name":"Wyard","email":"[email protected]","gender":"Male","ip_address":"243.17.2.188","desc":"Food in bronchus causing asphyxiation"},
{"id":151,"first_name":"Aaron","last_name":"Lisamore","email":"[email protected]","gender":"Male","ip_address":"190.36.213.52","desc":"Other stimulant use, unspecified with unspecified stimulant-induced disorder"},
{"id":152,"first_name":"Dominik","last_name":"Szachniewicz","email":"[email protected]","gender":"Genderfluid","ip_address":"241.114.9.233","desc":"Toxic effect of cyanides, accidental (unintentional), initial encounter"},
{"id":153,"first_name":"Kayle","last_name":"Livingstone","email":"[email protected]","gender":"Female","ip_address":"168.45.84.33","desc":"Poisoning by, adverse effect of and underdosing of thyroid hormones and substitutes"},
{"id":154,"first_name":"Lon","last_name":"Plitz","email":"[email protected]","gender":"Male","ip_address":"115.11.148.152","desc":"Other Niemann-Pick disease"},
{"id":155,"first_name":"Justina","last_name":"Maffiotti","email":"[email protected]","gender":"Female","ip_address":"34.101.157.172","desc":"Osteomyelitis of right orbit"},
{"id":156,"first_name":"Adelle","last_name":"Murrhaupt","email":"[email protected]","gender":"Female","ip_address":"146.117.188.232","desc":"Passenger in heavy transport vehicle injured in collision with two- or three-wheeled motor vehicle in traffic accident, sequela"},
{"id":157,"first_name":"Reinhold","last_name":"Everill","email":"[email protected]","gender":"Male","ip_address":"20.59.29.49","desc":"Muscle wasting and atrophy, not elsewhere classified"},
{"id":158,"first_name":"Armando","last_name":"Hartus","email":"[email protected]","gender":"Male","ip_address":"222.127.97.236","desc":"Adverse effect of barbiturates, sequela"},
{"id":159,"first_name":"Rozella","last_name":"Darrigone","email":"[email protected]","gender":"Female","ip_address":"211.197.234.34","desc":"Blister (nonthermal) of left shoulder, sequela"},
{"id":160,"first_name":"Meris","last_name":"De Marchi","email":"[email protected]","gender":"Female","ip_address":"63.119.139.236","desc":"Lesion of sciatic nerve, left lower limb"},
{"id":161,"first_name":"Reg","last_name":"Loiterton","email":"[email protected]","gender":"Male","ip_address":"106.28.239.151","desc":"Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion"},
{"id":162,"first_name":"Toby","last_name":"Lankester","email":"[email protected]","gender":"Bigender","ip_address":"66.37.131.2","desc":"Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing"},
{"id":163,"first_name":"Cozmo","last_name":"Cottom","email":"[email protected]","gender":"Male","ip_address":"228.10.10.5","desc":"Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela"},
{"id":164,"first_name":"Tyrus","last_name":"Frome","email":"[email protected]","gender":"Male","ip_address":"190.122.21.150","desc":"Contracture, right knee"},
{"id":165,"first_name":"Helga","last_name":"McKevin","email":"[email protected]","gender":"Female","ip_address":"114.247.163.7","desc":"Other physeal fracture of lower end of right femur, subsequent encounter for fracture with nonunion"},
{"id":166,"first_name":"Lewes","last_name":"Smickle","email":"[email protected]","gender":"Male","ip_address":"89.163.50.66","desc":"Puncture wound without foreign body of unspecified part of neck, subsequent encounter"},
{"id":167,"first_name":"Florian","last_name":"Smitham","email":"[email protected]","gender":"Male","ip_address":"45.247.32.233","desc":"Other chronic hematogenous osteomyelitis, right humerus"},
{"id":168,"first_name":"Zia","last_name":"Northedge","email":"[email protected]","gender":"Female","ip_address":"47.10.61.162","desc":"Contact with powered kitchen appliance, sequela"},
{"id":169,"first_name":"Carolina","last_name":"Cordner","email":"[email protected]","gender":"Female","ip_address":"3.180.99.91","desc":"Underdosing of tetracyclic antidepressants, initial encounter"},
{"id":170,"first_name":"Vivianna","last_name":"Kleinbaum","email":"[email protected]","gender":"Female","ip_address":"129.19.179.156","desc":"Congenital absence of unspecified hand and finger"},
{"id":171,"first_name":"Karine","last_name":"Wilshire","email":"[email protected]","gender":"Agender","ip_address":"68.50.240.11","desc":"Pressure ulcer of unspecified elbow, stage 4"},
{"id":172,"first_name":"Marlowe","last_name":"Seaborn","email":"[email protected]","gender":"Male","ip_address":"168.33.253.6","desc":"Assault by being hit or run over by motor vehicle, sequela"},
{"id":173,"first_name":"Rolph","last_name":"Mozzetti","email":"[email protected]","gender":"Male","ip_address":"178.181.26.203","desc":"Dysthymic disorder"},
{"id":174,"first_name":"Raoul","last_name":"Tytler","email":"[email protected]","gender":"Male","ip_address":"252.89.199.2","desc":"Displacement of internal fixation device of left femur, initial encounter"},
{"id":175,"first_name":"Walden","last_name":"Scranny","email":"[email protected]","gender":"Male","ip_address":"22.229.208.126","desc":"Pulmonary heart disease, unspecified"},
{"id":176,"first_name":"Dorothea","last_name":"Paulack","email":"[email protected]","gender":"Female","ip_address":"33.54.227.130","desc":"Other water transport accident"},
{"id":177,"first_name":"Raquela","last_name":"O'Lenechan","email":"[email protected]","gender":"Female","ip_address":"214.93.210.183","desc":"Nondisplaced fracture of second metatarsal bone, left foot, initial encounter for closed fracture"},
{"id":178,"first_name":"Marcelle","last_name":"MacKeig","email":"[email protected]","gender":"Female","ip_address":"134.71.226.161","desc":"Toxic effect of contact with stingray, intentional self-harm"},
{"id":179,"first_name":"Nealy","last_name":"Cardillo","email":"[email protected]","gender":"Male","ip_address":"141.124.15.5","desc":"Other ossification of muscle, left lower leg"},
{"id":180,"first_name":"Ellie","last_name":"Elmes","email":"[email protected]","gender":"Female","ip_address":"212.133.18.229","desc":"Burn of second degree of back of right hand, sequela"},
{"id":181,"first_name":"Wendeline","last_name":"Mugg","email":"[email protected]","gender":"Non-binary","ip_address":"72.242.25.93","desc":"Contact with lifting devices, not elsewhere classified, initial encounter"},
{"id":182,"first_name":"Kristan","last_name":"Dunbabin","email":"[email protected]","gender":"Female","ip_address":"130.123.233.1","desc":"Pedal cycle passenger injured in collision with heavy transport vehicle or bus in traffic accident, sequela"},
{"id":183,"first_name":"Johannah","last_name":"Newe","email":"[email protected]","gender":"Female","ip_address":"113.6.252.58","desc":"Spinal and epidural anesthesia-induced headache during the puerperium"},
{"id":184,"first_name":"Ardelia","last_name":"Dach","email":"[email protected]","gender":"Female","ip_address":"91.199.105.159","desc":"Military operations involving other firearms discharge, civilian, subsequent encounter"},
{"id":185,"first_name":"Caralie","last_name":"Filyukov","email":"[email protected]","gender":"Female","ip_address":"255.39.211.222","desc":"Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear"},
{"id":186,"first_name":"Beck","last_name":"Churchard","email":"[email protected]","gender":"Male","ip_address":"56.188.247.136","desc":"Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus"},
{"id":187,"first_name":"Frances","last_name":"Atty","email":"[email protected]","gender":"Female","ip_address":"75.88.130.208","desc":"Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion"},
{"id":188,"first_name":"Betti","last_name":"Deppen","email":"[email protected]","gender":"Female","ip_address":"16.12.234.210","desc":"Puncture wound with foreign body of right thumb without damage to nail, sequela"},
{"id":189,"first_name":"Karina","last_name":"Curton","email":"[email protected]","gender":"Female","ip_address":"253.70.163.49","desc":"Displaced fracture of neck of first metacarpal bone, right hand, sequela"},
{"id":190,"first_name":"Bone","last_name":"Acarson","email":"[email protected]","gender":"Male","ip_address":"229.165.144.153","desc":"Parasomnia in conditions classified elsewhere"},
{"id":191,"first_name":"Kandace","last_name":"McKyrrelly","email":"[email protected]","gender":"Female","ip_address":"122.247.25.237","desc":"Crushing injury of right foot, subsequent encounter"},
{"id":192,"first_name":"Hort","last_name":"Cudihy","email":"[email protected]","gender":"Male","ip_address":"111.221.106.187","desc":"Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side"},
{"id":193,"first_name":"Baxter","last_name":"Duckett","email":"[email protected]","gender":"Male","ip_address":"163.91.67.188","desc":"Adverse effect of other general anesthetics, sequela"},
{"id":194,"first_name":"Elisabeth","last_name":"Fader","email":"[email protected]","gender":"Female","ip_address":"6.17.168.203","desc":"Malignant neoplasm of other and unspecified cranial nerves"},
{"id":195,"first_name":"Shari","last_name":"Whiteland","email":"[email protected]","gender":"Bigender","ip_address":"108.21.209.246","desc":"Immunodeficiency following hereditary defective response to Epstein-Barr virus"},
{"id":196,"first_name":"Melisandra","last_name":"De Wolfe","email":"[email protected]","gender":"Female","ip_address":"60.80.181.32","desc":"Pressure ulcer of right hip, stage 1"},
{"id":197,"first_name":"Luce","last_name":"Bradberry","email":"[email protected]","gender":"Female","ip_address":"122.57.226.116","desc":"Other adverse effects, not elsewhere classified"},
{"id":198,"first_name":"Kain","last_name":"Coomber","email":"[email protected]","gender":"Male","ip_address":"33.170.242.23","desc":"Toxic effect of venom of ants, undetermined, initial encounter"},
{"id":199,"first_name":"Odella","last_name":"Poznan","email":"[email protected]","gender":"Female","ip_address":"93.60.41.186","desc":"Pedestrian on skateboard injured in collision with car, pick-up truck or van, unspecified whether traffic or nontraffic accident, initial encounter"},
{"id":200,"first_name":"Gan","last_name":"MacKerley","email":"[email protected]","gender":"Male","ip_address":"137.185.53.243","desc":"Corrosion of second degree of forehead and cheek, sequela"},
{"id":201,"first_name":"Melania","last_name":"MacAvddy","email":"[email protected]","gender":"Female","ip_address":"154.82.49.204","desc":"Nondisplaced segmental fracture of shaft of right fibula, subsequent encounter for open fracture type I or II with routine healing"},
{"id":202,"first_name":"Pollyanna","last_name":"Bilham","email":"[email protected]","gender":"Female","ip_address":"179.119.192.112","desc":"Unspecified fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with routine healing"},
{"id":203,"first_name":"Gianna","last_name":"Furmage","email":"[email protected]","gender":"Female","ip_address":"21.233.249.60","desc":"Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sexual dysfunction"},
{"id":204,"first_name":"Alvinia","last_name":"Crimpe","email":"[email protected]","gender":"Female","ip_address":"191.121.109.10","desc":"Displaced fracture of body of left calcaneus, subsequent encounter for fracture with malunion"},
{"id":205,"first_name":"Jerri","last_name":"Parley","email":"[email protected]","gender":"Male","ip_address":"163.245.197.166","desc":"Other nondisplaced fracture of base of first metacarpal bone, unspecified hand, initial encounter for open fracture"},
{"id":206,"first_name":"Liva","last_name":"Weiser","email":"[email protected]","gender":"Female","ip_address":"135.41.101.44","desc":"Polyhydramnios, first trimester, other fetus"},
{"id":207,"first_name":"Dolf","last_name":"Dugdale","email":"[email protected]","gender":"Genderqueer","ip_address":"249.117.26.64","desc":"Meningococcal retrobulbar neuritis"},
{"id":208,"first_name":"Berty","last_name":"Rubroe","email":"[email protected]","gender":"Female","ip_address":"106.155.76.12","desc":"Displaced unspecified condyle fracture of lower end of left femur, sequela"},
{"id":209,"first_name":"Shanna","last_name":"Warton","email":"[email protected]","gender":"Female","ip_address":"64.66.159.79","desc":"Nondisplaced avulsion fracture (chip fracture) of left talus, subsequent encounter for fracture with nonunion"},
{"id":210,"first_name":"Graeme","last_name":"Rablan","email":"[email protected]","gender":"Male","ip_address":"45.132.185.110","desc":"Crushing injury of left foot, subsequent encounter"},
{"id":211,"first_name":"Giorgi","last_name":"Perham","email":"[email protected]","gender":"Male","ip_address":"23.203.27.97","desc":"Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5"},
{"id":212,"first_name":"Eyde","last_name":"Monck","email":"[email protected]","gender":"Female","ip_address":"149.203.99.179","desc":"Unspecified lagophthalmos left eye, unspecified eyelid"},
{"id":213,"first_name":"Hedwiga","last_name":"Nare","email":"[email protected]","gender":"Female","ip_address":"196.192.60.200","desc":"Fall into natural body of water striking side"},
{"id":214,"first_name":"Quinta","last_name":"McKeeman","email":"[email protected]","gender":"Female","ip_address":"135.79.231.7","desc":"Other nondisplaced fracture of base of first metacarpal bone, left hand, sequela"},
{"id":215,"first_name":"Kellie","last_name":"Lowth","email":"[email protected]","gender":"Female","ip_address":"45.217.33.46","desc":"Legal intervention involving other specified means, law enforcement official injured, initial encounter"},
{"id":216,"first_name":"Harry","last_name":"Leak","email":"[email protected]","gender":"Male","ip_address":"162.145.189.208","desc":"Other fracture of T9-T10 vertebra, sequela"},
{"id":217,"first_name":"Ogdan","last_name":"Ruppelin","email":"[email protected]","gender":"Male","ip_address":"34.77.224.11","desc":"Other osteomyelitis, unspecified sites"},
{"id":218,"first_name":"Jobie","last_name":"Kiledal","email":"[email protected]","gender":"Female","ip_address":"180.146.13.9","desc":"Other specified injury of greater saphenous vein at lower leg level, unspecified leg"},
{"id":219,"first_name":"Rik","last_name":"Illingsworth","email":"[email protected]","gender":"Bigender","ip_address":"132.33.76.212","desc":"Poisoning by salicylates, accidental (unintentional), subsequent encounter"},
{"id":220,"first_name":"Roderigo","last_name":"Rohmer","email":"[email protected]","gender":"Male","ip_address":"223.252.33.34","desc":"Unspecified superficial injury of unspecified external genital organs, male"},
{"id":221,"first_name":"Alwin","last_name":"Klimke","email":"[email protected]","gender":"Male","ip_address":"122.90.222.175","desc":"Corrosion of unspecified degree of multiple sites of left wrist and hand"},
{"id":222,"first_name":"Murielle","last_name":"Kelk","email":"[email protected]","gender":"Female","ip_address":"237.107.131.34","desc":"Legal intervention involving injury by tear gas"},
{"id":223,"first_name":"Lu","last_name":"Gummory","email":"[email protected]","gender":"Female","ip_address":"116.74.91.252","desc":"Immersion hand, unspecified hand, initial encounter"},
{"id":224,"first_name":"Jarred","last_name":"Ardern","email":"[email protected]","gender":"Male","ip_address":"76.121.206.132","desc":"Toxic effect of venom of tarantula, assault"},
{"id":225,"first_name":"Alick","last_name":"Harmson","email":"[email protected]","gender":"Bigender","ip_address":"80.103.191.119","desc":"Mine or pit as the place of occurrence of the external cause"},
{"id":226,"first_name":"Francklin","last_name":"Summerside","email":"[email protected]","gender":"Male","ip_address":"3.122.185.16","desc":"Unspecified occupant of military vehicle injured in traffic accident, sequela"},
{"id":227,"first_name":"Bryce","last_name":"Tenney","email":"[email protected]","gender":"Male","ip_address":"23.10.254.137","desc":"Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion"},
{"id":228,"first_name":"Coraline","last_name":"Sexcey","email":"[email protected]","gender":"Female","ip_address":"56.132.11.174","desc":"Poisoning by antifungal antibiotics, systemically used, accidental (unintentional)"},
{"id":229,"first_name":"Gerty","last_name":"Lepere","email":"[email protected]","gender":"Female","ip_address":"152.80.31.102","desc":"Corrosion of first degree of neck"},
{"id":230,"first_name":"Ephrayim","last_name":"Sagg","email":"[email protected]","gender":"Male","ip_address":"105.26.8.178","desc":"Other specified phobia"},
{"id":231,"first_name":"Dar","last_name":"McKeefry","email":"[email protected]","gender":"Male","ip_address":"23.3.78.158","desc":"Hairy cell leukemia not having achieved remission"},
{"id":232,"first_name":"Kori","last_name":"Izkovici","email":"[email protected]","gender":"Female","ip_address":"169.55.111.255","desc":"Other disturbances of smell and taste"},
{"id":233,"first_name":"Jennilee","last_name":"Pavy","email":"[email protected]","gender":"Female","ip_address":"246.228.105.234","desc":"Anterior cord syndrome at unspecified level of cervical spinal cord"},
{"id":234,"first_name":"Gaultiero","last_name":"Wyant","email":"[email protected]","gender":"Male","ip_address":"59.219.151.20","desc":"Rupture of synovium, unspecified shoulder"},
{"id":235,"first_name":"Ricoriki","last_name":"Pontin","email":"[email protected]","gender":"Male","ip_address":"13.222.53.65","desc":"Other specified diabetes mellitus with ketoacidosis without coma"},
{"id":236,"first_name":"Killy","last_name":"Jancso","email":"[email protected]","gender":"Male","ip_address":"245.27.9.37","desc":"Other intraoperative complications of eye and adnexa, not elsewhere classified"},
{"id":237,"first_name":"Gilberta","last_name":"Vasilmanov","email":"[email protected]","gender":"Female","ip_address":"137.174.15.87","desc":"Fracture of metatarsal bone(s)"},
{"id":238,"first_name":"Torey","last_name":"Fairholme","email":"[email protected]","gender":"Female","ip_address":"64.119.15.95","desc":"Underdosing of antiparkinsonism drugs and other central muscle-tone depressants, sequela"},
{"id":239,"first_name":"Teresita","last_name":"Skullet","email":"[email protected]","gender":"Female","ip_address":"245.252.173.71","desc":"Acute atopic conjunctivitis, right eye"},
{"id":240,"first_name":"Helenka","last_name":"Hogben","email":"[email protected]","gender":"Female","ip_address":"80.56.41.33","desc":"Salter-Harris Type III physeal fracture of right metatarsal, subsequent encounter for fracture with nonunion"},
{"id":241,"first_name":"Kenn","last_name":"Stanmore","email":"[email protected]","gender":"Male","ip_address":"199.145.85.126","desc":"Chronic postrheumatic arthropathy [Jaccoud], unspecified hip"},
{"id":242,"first_name":"Michaela","last_name":"Redihalgh","email":"[email protected]","gender":"Female","ip_address":"111.91.88.179","desc":"Felty's syndrome, unspecified elbow"},
{"id":243,"first_name":"Shell","last_name":"Murfill","email":"[email protected]","gender":"Male","ip_address":"27.31.29.198","desc":"Central retinal vein occlusion, right eye"},
{"id":244,"first_name":"Bertha","last_name":"Brettell","email":"[email protected]","gender":"Female","ip_address":"199.156.141.2","desc":"Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for open fracture"},
{"id":245,"first_name":"Cletis","last_name":"Padilla","email":"[email protected]","gender":"Male","ip_address":"80.164.74.79","desc":"Family history of other diseases of the respiratory system"},
{"id":246,"first_name":"Ginny","last_name":"Thormwell","email":"[email protected]","gender":"Female","ip_address":"129.213.20.54","desc":"Poisoning by antitussives, assault"},
{"id":247,"first_name":"Rollo","last_name":"Fabri","email":"[email protected]","gender":"Male","ip_address":"70.122.37.205","desc":"Other specified fracture of left ischium, initial encounter for closed fracture"},
{"id":248,"first_name":"Randene","last_name":"Voas","email":"[email protected]","gender":"Female","ip_address":"230.55.203.248","desc":"Displaced fracture of right ulna styloid process, initial encounter for closed fracture"},
{"id":249,"first_name":"Guss","last_name":"Farlambe","email":"[email protected]","gender":"Male","ip_address":"43.114.8.55","desc":"Nondisplaced fracture of posterior wall of unspecified acetabulum"},
{"id":250,"first_name":"Seth","last_name":"Guiness","email":"[email protected]","gender":"Male","ip_address":"73.159.138.231","desc":"Puncture wound with foreign body of penis, initial encounter"},
{"id":251,"first_name":"Rubie","last_name":"Weben","email":"[email protected]","gender":"Genderqueer","ip_address":"122.109.199.64","desc":"Corrosion of second degree of multiple fingers (nail), not including thumb"},
{"id":252,"first_name":"Tod","last_name":"Boulds","email":"[email protected]","gender":"Bigender","ip_address":"148.250.149.54","desc":"Microscopic polyangiitis"},
{"id":253,"first_name":"Nanni","last_name":"Masdin","email":"[email protected]","gender":"Female","ip_address":"71.201.238.26","desc":"Poisoning by vitamins, accidental (unintentional), sequela"},
{"id":254,"first_name":"Rosalind","last_name":"Wattisham","email":"[email protected]","gender":"Genderfluid","ip_address":"191.86.191.60","desc":"Poisoning by other agents primarily affecting gastrointestinal system, intentional self-harm, subsequent encounter"},
{"id":255,"first_name":"Flory","last_name":"Reimer","email":"[email protected]","gender":"Female","ip_address":"83.237.229.205","desc":"Muscle wasting and atrophy, not elsewhere classified, unspecified site"},
{"id":256,"first_name":"Dario","last_name":"Matelaitis","email":"[email protected]","gender":"Bigender","ip_address":"40.126.14.6","desc":"Breakdown (mechanical) of graft of urinary organ, sequela"},
{"id":257,"first_name":"Opaline","last_name":"Garthland","email":"[email protected]","gender":"Female","ip_address":"88.224.243.98","desc":"Unspecified placental disorder, unspecified trimester"},
{"id":258,"first_name":"Chrotoem","last_name":"Seger","email":"[email protected]","gender":"Male","ip_address":"129.145.194.152","desc":"Corrosion of third degree of female genital region, initial encounter"},
{"id":259,"first_name":"Travus","last_name":"Blodgett","email":"[email protected]","gender":"Male","ip_address":"90.160.245.12","desc":"Exposure to industrial wiring, appliances and electrical machinery, initial encounter"},
{"id":260,"first_name":"Faber","last_name":"Janson","email":"[email protected]","gender":"Male","ip_address":"101.9.92.188","desc":"Vascular abnormalities of conjunctiva, left eye"},
{"id":261,"first_name":"Cherin","last_name":"Barringer","email":"[email protected]","gender":"Female","ip_address":"58.26.218.33","desc":"Unspecified fracture of shaft of left fibula, subsequent encounter for open fracture type I or II with routine healing"},
{"id":262,"first_name":"Javier","last_name":"Sturgis","email":"[email protected]","gender":"Male","ip_address":"141.109.137.20","desc":"Unspecified injury of intrinsic muscle, fascia and tendon of right little finger at wrist and hand level, subsequent encounter"},
{"id":263,"first_name":"Suzi","last_name":"Dinsdale","email":"[email protected]","gender":"Female","ip_address":"105.63.144.215","desc":"Toxic effect of carbon monoxide from utility gas, intentional self-harm, subsequent encounter"},
{"id":264,"first_name":"Donica","last_name":"Von Hindenburg","email":"[email protected]","gender":"Female","ip_address":"167.198.156.179","desc":"Drowning and submersion due to falling or jumping from crushed fishing boat, sequela"},
{"id":265,"first_name":"Tann","last_name":"Bachelor","email":"[email protected]","gender":"Male","ip_address":"170.88.192.125","desc":"Nondisplaced fracture of medial condyle of left femur, subsequent encounter for open fracture type I or II with delayed healing"},
{"id":266,"first_name":"Kathi","last_name":"Le Batteur","email":"[email protected]","gender":"Female","ip_address":"72.48.205.174","desc":"Displaced fracture of body of left talus, initial encounter for open fracture"},
{"id":267,"first_name":"Agnesse","last_name":"Grafton","email":"[email protected]","gender":"Genderfluid","ip_address":"105.28.18.90","desc":"Disorders of social functioning with onset specific to childhood and adolescence"},
{"id":268,"first_name":"Kerri","last_name":"Beig","email":"[email protected]","gender":"Female","ip_address":"92.170.95.81","desc":"Benign essential microscopic hematuria"},
{"id":269,"first_name":"Huntley","last_name":"Sketch","email":"[email protected]","gender":"Male","ip_address":"93.33.52.35","desc":"Chronic postrheumatic arthropathy [Jaccoud], left elbow"},
{"id":270,"first_name":"Pammi","last_name":"Gillbanks","email":"[email protected]","gender":"Female","ip_address":"153.118.84.5","desc":"Nondisplaced supracondylar fracture without intracondylar extension of lower end of left femur, subsequent encounter for closed fracture with nonunion"},
{"id":271,"first_name":"Ronna","last_name":"Broady","email":"[email protected]","gender":"Female","ip_address":"171.249.18.183","desc":"Glaucoma secondary to eye inflammation, bilateral"},
{"id":272,"first_name":"Kevin","last_name":"Hallas","email":"[email protected]","gender":"Male","ip_address":"149.252.203.11","desc":"Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion"},
{"id":273,"first_name":"Wye","last_name":"Pelham","email":"[email protected]","gender":"Male","ip_address":"139.147.135.227","desc":"Person boarding or alighting a heavy transport vehicle injured in collision with fixed or stationary object, initial encounter"},
{"id":274,"first_name":"Kordula","last_name":"Bellany","email":"[email protected]","gender":"Female","ip_address":"174.108.230.188","desc":"Multiple defects of retina without detachment, right eye"},
{"id":275,"first_name":"Sabina","last_name":"Kelwaybamber","email":"[email protected]","gender":"Female","ip_address":"125.180.170.227","desc":"Insect bite (nonvenomous), unspecified great toe, sequela"},
{"id":276,"first_name":"Culley","last_name":"Emney","email":"[email protected]","gender":"Male","ip_address":"146.169.117.111","desc":"Supervision of pregnancy with history of ectopic pregnancy, first trimester"},
{"id":277,"first_name":"Eloisa","last_name":"Tassell","email":"[email protected]","gender":"Female","ip_address":"40.101.11.200","desc":"Other fracture of upper end of left tibia, subsequent encounter for open fracture type I or II with delayed healing"},
{"id":278,"first_name":"Dorena","last_name":"Willbourne","email":"[email protected]","gender":"Female","ip_address":"141.103.143.63","desc":"Unspecified fracture of unspecified calcaneus, sequela"},
{"id":279,"first_name":"Robinetta","last_name":"Arnowitz","email":"[email protected]","gender":"Genderfluid","ip_address":"153.197.14.181","desc":"Drug-induced chronic gout, left elbow"},
{"id":280,"first_name":"Jorey","last_name":"Overstreet","email":"[email protected]","gender":"Non-binary","ip_address":"161.146.37.100","desc":"Chronic maxillary sinusitis"},
{"id":281,"first_name":"Brooke","last_name":"Middell","email":"[email protected]","gender":"Male","ip_address":"7.121.54.22","desc":"Other physeal fracture of lower end of left femur, subsequent encounter for fracture with nonunion"},
{"id":282,"first_name":"Ly","last_name":"Freeland","email":"[email protected]","gender":"Male","ip_address":"43.147.94.191","desc":"Displaced fracture of lateral condyle of unspecified femur, initial encounter for closed fracture"},
{"id":283,"first_name":"Frasco","last_name":"Lates","email":"[email protected]","gender":"Male","ip_address":"203.205.140.19","desc":"Obstruction due to foreign body accidentally left in body following procedure"},
{"id":284,"first_name":"Durante","last_name":"Brodhead","email":"[email protected]","gender":"Male","ip_address":"138.136.228.170","desc":"Unstable burst fracture of third thoracic vertebra"},
{"id":285,"first_name":"Erika","last_name":"MacKay","email":"[email protected]","gender":"Female","ip_address":"200.129.189.255","desc":"Toxic effect of contact with venomous frog, undetermined"},
{"id":286,"first_name":"Abey","last_name":"Benduhn","email":"[email protected]","gender":"Male","ip_address":"11.178.24.32","desc":"Other acquired abnormalities of right ear ossicles"},
{"id":287,"first_name":"Andra","last_name":"Sallis","email":"[email protected]","gender":"Female","ip_address":"155.221.31.60","desc":"Unspecified injury of femoral vein at hip and thigh level, unspecified leg, sequela"},
{"id":288,"first_name":"Rees","last_name":"Bown","email":"[email protected]","gender":"Male","ip_address":"237.229.207.253","desc":"Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion"},
{"id":289,"first_name":"Norry","last_name":"Emberson","email":"[email protected]","gender":"Female","ip_address":"221.11.33.171","desc":"Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing"},
{"id":290,"first_name":"Gusti","last_name":"Canon","email":"[email protected]","gender":"Female","ip_address":"37.164.18.21","desc":"Other specified birth injuries"},
{"id":291,"first_name":"Kenny","last_name":"Hymers","email":"[email protected]","gender":"Male","ip_address":"63.249.63.25","desc":"Disorders of phosphorus metabolism and phosphatases"},
{"id":292,"first_name":"Leodora","last_name":"Steward","email":"[email protected]","gender":"Female","ip_address":"143.49.10.175","desc":"Unspecified occupant of special industrial vehicle injured in traffic accident, sequela"},
{"id":293,"first_name":"Seamus","last_name":"Snowdon","email":"[email protected]","gender":"Male","ip_address":"149.120.138.187","desc":"Contusion of heart without hemopericardium, sequela"},
{"id":294,"first_name":"Vivyanne","last_name":"Benoist","email":"[email protected]","gender":"Female","ip_address":"192.116.189.175","desc":"Sprain of ligaments of thoracic spine, initial encounter"},
{"id":295,"first_name":"Lyndy","last_name":"Tomas","email":"[email protected]","gender":"Female","ip_address":"63.76.212.98","desc":"Lead-induced chronic gout, right knee"},
{"id":296,"first_name":"Eb","last_name":"Chellam","email":"[email protected]","gender":"Male","ip_address":"64.211.125.223","desc":"Poisoning by phenothiazine antipsychotics and neuroleptics, accidental (unintentional)"},
{"id":297,"first_name":"Fleur","last_name":"Cleen","email":"[email protected]","gender":"Female","ip_address":"120.141.170.133","desc":"Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing"},
{"id":298,"first_name":"Brian","last_name":"Lilford","email":"[email protected]","gender":"Male","ip_address":"192.10.160.8","desc":"Ulcer of esophagus without bleeding"},
{"id":299,"first_name":"Livia","last_name":"Collishaw","email":"[email protected]","gender":"Non-binary","ip_address":"178.168.232.81","desc":"Poisoning by local antifungal, anti-infective and anti-inflammatory drugs, undetermined"},
{"id":300,"first_name":"Josias","last_name":"Gruszczak","email":"[email protected]","gender":"Male","ip_address":"128.76.74.246","desc":"Rash and other nonspecific skin eruption"},
{"id":301,"first_name":"Dame","last_name":"Ballinghall","email":"[email protected]","gender":"Male","ip_address":"50.117.156.117","desc":"Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion"},
{"id":302,"first_name":"Tiphani","last_name":"Mathet","email":"[email protected]","gender":"Female","ip_address":"15.121.69.112","desc":"Other fracture of left patella, initial encounter for open fracture type I or II"},
{"id":303,"first_name":"Solomon","last_name":"Crook","email":"[email protected]","gender":"Male","ip_address":"191.152.163.250","desc":"Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed"},
{"id":304,"first_name":"Merrill","last_name":"MacGorrie","email":"[email protected]","gender":"Female","ip_address":"16.23.84.235","desc":"Nondisplaced fracture of medial cuneiform of left foot, subsequent encounter for fracture with malunion"},
{"id":305,"first_name":"Ross","last_name":"Citrine","email":"[email protected]","gender":"Male","ip_address":"201.136.248.51","desc":"Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with malunion"},
{"id":306,"first_name":"Francois","last_name":"Yapp","email":"[email protected]","gender":"Male","ip_address":"85.49.2.221","desc":"Unspecified pedal cyclist injured in collision with other motor vehicles in nontraffic accident, subsequent encounter"},
{"id":307,"first_name":"Perren","last_name":"Hove","email":"[email protected]","gender":"Male","ip_address":"25.195.229.30","desc":"Nondisplaced bicondylar fracture of left tibia, subsequent encounter for open fracture type I or II with routine healing"},
{"id":308,"first_name":"Staffard","last_name":"Igo","email":"[email protected]","gender":"Male","ip_address":"41.168.170.158","desc":"Other specified injuries of pharynx and cervical esophagus, subsequent encounter"},
{"id":309,"first_name":"Mattheus","last_name":"Donnell","email":"[email protected]","gender":"Genderqueer","ip_address":"61.206.244.245","desc":"Superficial foreign body of right wrist, initial encounter"},
{"id":310,"first_name":"Kristos","last_name":"Brigge","email":"[email protected]","gender":"Male","ip_address":"62.167.194.245","desc":"Displaced comminuted fracture of shaft of right femur, initial encounter for closed fracture"},
{"id":311,"first_name":"Kenn","last_name":"Vodden","email":"[email protected]","gender":"Male","ip_address":"49.232.161.223","desc":"Corrosion of third degree of unspecified ankle"},
{"id":312,"first_name":"Beryl","last_name":"Nicholls","email":"[email protected]","gender":"Female","ip_address":"49.35.131.12","desc":"External constriction, right thigh, subsequent encounter"},
{"id":313,"first_name":"Carling","last_name":"Mortlock","email":"[email protected]","gender":"Male","ip_address":"219.120.24.55","desc":"Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion"},
{"id":314,"first_name":"Bunnie","last_name":"Fante","email":"[email protected]","gender":"Female","ip_address":"132.106.56.212","desc":"Unspecified injury of radial artery at wrist and hand level of right arm, initial encounter"},
{"id":315,"first_name":"Alain","last_name":"D'Ambrosio","email":"[email protected]","gender":"Male","ip_address":"131.45.80.109","desc":"Person on outside of heavy transport vehicle injured in collision with fixed or stationary object in traffic accident, subsequent encounter"},
{"id":316,"first_name":"Hayden","last_name":"Plail","email":"[email protected]","gender":"Male","ip_address":"32.211.122.185","desc":"Other congenital malformations of anterior segment of eye"},
{"id":317,"first_name":"Reinhold","last_name":"Brockett","email":"[email protected]","gender":"Male","ip_address":"113.126.55.25","desc":"Boutonniere deformity"},
{"id":318,"first_name":"Sharron","last_name":"Elesander","email":"[email protected]","gender":"Female","ip_address":"17.208.86.172","desc":"Stress fracture, left shoulder, subsequent encounter for fracture with nonunion"},
{"id":319,"first_name":"Burk","last_name":"McLaine","email":"[email protected]","gender":"Polygender","ip_address":"208.191.120.117","desc":"Complete traumatic metacarpophalangeal amputation of right thumb"},
{"id":320,"first_name":"Brianna","last_name":"Binden","email":"[email protected]","gender":"Female","ip_address":"170.173.8.55","desc":"Acquired clawhand"},
{"id":321,"first_name":"Tansy","last_name":"Bern","email":"[email protected]","gender":"Female","ip_address":"82.158.75.190","desc":"Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion"},
{"id":322,"first_name":"Murray","last_name":"Antoniewski","email":"[email protected]","gender":"Male","ip_address":"83.11.153.37","desc":"Cestode infection, unspecified"},
{"id":323,"first_name":"Charyl","last_name":"Megson","email":"[email protected]","gender":"Female","ip_address":"61.239.110.89","desc":"Other synovitis and tenosynovitis, left shoulder"},
{"id":324,"first_name":"Christine","last_name":"Karpinski","email":"[email protected]","gender":"Female","ip_address":"157.121.253.149","desc":"Stress fracture, unspecified tibia and fibula, sequela"},
{"id":325,"first_name":"Prince","last_name":"Moryson","email":"[email protected]","gender":"Male","ip_address":"94.16.126.124","desc":"Major laceration of thoracic aorta, sequela"},
{"id":326,"first_name":"Konstantine","last_name":"Penquet","email":"[email protected]","gender":"Polygender","ip_address":"149.223.63.221","desc":"Graft-versus-host disease"},
{"id":327,"first_name":"Jaimie","last_name":"Westall","email":"[email protected]","gender":"Female","ip_address":"18.242.175.166","desc":"Burn of third degree of right thigh, initial encounter"},
{"id":328,"first_name":"Maxim","last_name":"Brandacci","email":"[email protected]","gender":"Male","ip_address":"122.115.92.167","desc":"Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion"},
{"id":329,"first_name":"Uta","last_name":"Klesl","email":"[email protected]","gender":"Female","ip_address":"44.47.4.14","desc":"Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion"},
{"id":330,"first_name":"Malvina","last_name":"Abley","email":"[email protected]","gender":"Female","ip_address":"4.208.85.232","desc":"Displaced fracture of medial condyle of unspecified tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":331,"first_name":"Fanni","last_name":"Meere","email":"[email protected]","gender":"Female","ip_address":"131.158.38.2","desc":"Unspecified injury of greater saphenous vein at lower leg level, left leg, sequela"},
{"id":332,"first_name":"Baillie","last_name":"Moden","email":"[email protected]","gender":"Male","ip_address":"62.210.5.44","desc":"Toxic liver disease, unspecified"},
{"id":333,"first_name":"Justin","last_name":"Moring","email":"[email protected]","gender":"Male","ip_address":"215.22.249.107","desc":"Hydrocele and spermatocele"},
{"id":334,"first_name":"Garner","last_name":"Haggar","email":"[email protected]","gender":"Male","ip_address":"13.169.109.154","desc":"Other specified disorders of external ear"},
{"id":335,"first_name":"Merilee","last_name":"Tarbert","email":"[email protected]","gender":"Female","ip_address":"193.162.39.131","desc":"Other venous complications in the puerperium"},
{"id":336,"first_name":"Ludovico","last_name":"Delacourt","email":"[email protected]","gender":"Male","ip_address":"91.233.59.48","desc":"Partial traumatic amputation of great toe"},
{"id":337,"first_name":"Queenie","last_name":"Gregorowicz","email":"[email protected]","gender":"Female","ip_address":"158.77.83.46","desc":"Laceration with foreign body of penis, sequela"},
{"id":338,"first_name":"Drona","last_name":"Cardiff","email":"[email protected]","gender":"Female","ip_address":"190.54.71.137","desc":"Newborn affected by periodontal disease in mother"},
{"id":339,"first_name":"Jareb","last_name":"Kennelly","email":"[email protected]","gender":"Male","ip_address":"205.39.165.10","desc":"Corrosion of first degree of forehead and cheek, initial encounter"},
{"id":340,"first_name":"Ceciley","last_name":"Balas","email":"[email protected]","gender":"Female","ip_address":"243.92.59.24","desc":"Poisoning by methylphenidate, undetermined, initial encounter"},
{"id":341,"first_name":"Georgianne","last_name":"Simmen","email":"[email protected]","gender":"Female","ip_address":"100.168.111.58","desc":"Moderate laceration of right kidney, initial encounter"},
{"id":342,"first_name":"Gretna","last_name":"Daber","email":"[email protected]","gender":"Female","ip_address":"134.241.110.151","desc":"Cervical high risk human papillomavirus (HPV) DNA test positive"},
{"id":343,"first_name":"Edeline","last_name":"Faherty","email":"[email protected]","gender":"Female","ip_address":"166.24.245.195","desc":"Quadruplet liveborn infant, delivered by cesarean"},
{"id":344,"first_name":"Grant","last_name":"Godsal","email":"[email protected]","gender":"Male","ip_address":"71.80.235.217","desc":"Open bite of right breast, initial encounter"},
{"id":345,"first_name":"Olly","last_name":"McMillian","email":"[email protected]","gender":"Male","ip_address":"56.45.30.70","desc":"Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with delayed healing"},
{"id":346,"first_name":"Alistair","last_name":"Hext","email":"[email protected]","gender":"Male","ip_address":"29.250.39.97","desc":"Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing"},
{"id":347,"first_name":"Vincents","last_name":"Orgee","email":"[email protected]","gender":"Male","ip_address":"115.183.120.184","desc":"Injury of median nerve at forearm level, right arm, initial encounter"},
{"id":348,"first_name":"Alfonse","last_name":"Eskell","email":"[email protected]","gender":"Male","ip_address":"14.60.180.198","desc":"Person on outside of car injured in collision with heavy transport vehicle or bus in nontraffic accident, sequela"},
{"id":349,"first_name":"Murvyn","last_name":"Le Marchand","email":"[email protected]","gender":"Male","ip_address":"81.70.7.222","desc":"Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter"},
{"id":350,"first_name":"Rozalin","last_name":"Synke","email":"[email protected]","gender":"Agender","ip_address":"100.153.128.242","desc":"Contusion of unspecified little finger without damage to nail, sequela"},
{"id":351,"first_name":"Trevar","last_name":"Cheke","email":"[email protected]","gender":"Male","ip_address":"183.85.202.135","desc":"Underdosing of other antacids and anti-gastric-secretion drugs, initial encounter"},
{"id":352,"first_name":"Jakob","last_name":"Skally","email":"[email protected]","gender":"Male","ip_address":"101.10.38.27","desc":"Sadomasochism"},
{"id":353,"first_name":"Hobey","last_name":"Demann","email":"[email protected]","gender":"Male","ip_address":"252.76.228.36","desc":"Infection and inflammatory reaction due to internal fixation device of left tibia"},
{"id":354,"first_name":"Rozelle","last_name":"Meredith","email":"[email protected]","gender":"Female","ip_address":"20.58.206.18","desc":"Blister (nonthermal), right great toe, initial encounter"},
{"id":355,"first_name":"Kara-lynn","last_name":"Jerschke","email":"[email protected]","gender":"Female","ip_address":"104.102.195.218","desc":"Person injured in unspecified motor-vehicle accident, traffic, subsequent encounter"},
{"id":356,"first_name":"Antin","last_name":"Shallcrass","email":"[email protected]","gender":"Male","ip_address":"183.211.133.218","desc":"Blister (nonthermal), unspecified knee, subsequent encounter"},
{"id":357,"first_name":"Romola","last_name":"Sperry","email":"[email protected]","gender":"Female","ip_address":"110.102.0.87","desc":"Unspecified sprain of right middle finger, sequela"},
{"id":358,"first_name":"Graham","last_name":"Struys","email":"[email protected]","gender":"Male","ip_address":"83.41.197.16","desc":"Displaced transverse fracture of shaft of right femur, subsequent encounter for closed fracture with delayed healing"},
{"id":359,"first_name":"Corny","last_name":"Menco","email":"[email protected]","gender":"Male","ip_address":"98.125.233.134","desc":"Type 2 diabetes mellitus with diabetic mononeuropathy"},
{"id":360,"first_name":"Moore","last_name":"Branney","email":"[email protected]","gender":"Male","ip_address":"58.81.62.200","desc":"Stress fracture, right fibula, subsequent encounter for fracture with delayed healing"},
{"id":361,"first_name":"Rhodia","last_name":"Lamonby","email":"[email protected]","gender":"Female","ip_address":"135.100.205.6","desc":"Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, initial encounter"},
{"id":362,"first_name":"Christi","last_name":"Scathard","email":"[email protected]","gender":"Female","ip_address":"173.250.227.249","desc":"Fracture of orbital floor, right side, initial encounter for closed fracture"},
{"id":363,"first_name":"Graeme","last_name":"Isenor","email":"[email protected]","gender":"Male","ip_address":"100.142.227.88","desc":"Other juvenile arthritis, left hip"},
{"id":364,"first_name":"Rheba","last_name":"Pollastrone","email":"[email protected]","gender":"Non-binary","ip_address":"162.75.128.225","desc":"External constriction, unspecified knee, subsequent encounter"},
{"id":365,"first_name":"Ad","last_name":"Bonnesen","email":"[email protected]","gender":"Bigender","ip_address":"149.122.41.106","desc":"Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in nontraffic accident, sequela"},
{"id":366,"first_name":"Dolorita","last_name":"Profit","email":"[email protected]","gender":"Genderqueer","ip_address":"49.189.27.157","desc":"Salter-Harris Type IV physeal fracture of unspecified calcaneus, subsequent encounter for fracture with malunion"},
{"id":367,"first_name":"Bella","last_name":"Stracey","email":"[email protected]","gender":"Female","ip_address":"210.190.58.183","desc":"Nondisplaced fracture of shaft of unspecified clavicle"},
{"id":368,"first_name":"Jonas","last_name":"Baleine","email":"[email protected]","gender":"Male","ip_address":"120.173.61.3","desc":"Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter"},
{"id":369,"first_name":"Sergei","last_name":"Nurcombe","email":"[email protected]","gender":"Male","ip_address":"39.20.14.107","desc":"Renal osteodystrophy"},
{"id":370,"first_name":"Peder","last_name":"Josef","email":"[email protected]","gender":"Male","ip_address":"80.223.111.188","desc":"Military operations involving explosion due to accidental detonation and discharge of own munitions or munitions launch device, civilian, sequela"},
{"id":371,"first_name":"Ruy","last_name":"Tresler","email":"[email protected]","gender":"Genderqueer","ip_address":"99.17.208.225","desc":"External constriction of elbow"},
{"id":372,"first_name":"Peri","last_name":"Belchem","email":"[email protected]","gender":"Female","ip_address":"26.148.155.13","desc":"Nodular episcleritis"},
{"id":373,"first_name":"Neille","last_name":"Bimson","email":"[email protected]","gender":"Female","ip_address":"44.88.82.246","desc":"Glider (nonpowered) fire injuring occupant, initial encounter"},
{"id":374,"first_name":"Dolores","last_name":"Grinley","email":"[email protected]","gender":"Female","ip_address":"115.21.208.55","desc":"Dislocation of metacarpophalangeal joint of right thumb"},
{"id":375,"first_name":"Luke","last_name":"Gullam","email":"[email protected]","gender":"Male","ip_address":"136.215.197.36","desc":"Otalgia, left ear"},
{"id":376,"first_name":"Mae","last_name":"Peperell","email":"[email protected]","gender":"Female","ip_address":"250.46.129.235","desc":"Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere"},
{"id":377,"first_name":"Ellyn","last_name":"Swett","email":"[email protected]","gender":"Female","ip_address":"220.204.2.70","desc":"Poisoning by cannabis (derivatives), undetermined, sequela"},
{"id":378,"first_name":"Milo","last_name":"Berthot","email":"[email protected]","gender":"Male","ip_address":"88.196.95.247","desc":"Driver of three-wheeled motor vehicle injured in collision with other motor vehicles in nontraffic accident, sequela"},
{"id":379,"first_name":"Jehu","last_name":"Fancett","email":"[email protected]","gender":"Male","ip_address":"102.143.126.2","desc":"Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1"},
{"id":380,"first_name":"Thomasin","last_name":"Bockings","email":"[email protected]","gender":"Female","ip_address":"186.220.16.144","desc":"Injury of other nerves at forearm level, left arm, sequela"},
{"id":381,"first_name":"Jillane","last_name":"Sharphurst","email":"[email protected]","gender":"Female","ip_address":"78.228.50.90","desc":"Nondisplaced unspecified fracture of unspecified great toe, subsequent encounter for fracture with delayed healing"},
{"id":382,"first_name":"Devlin","last_name":"Brenton","email":"[email protected]","gender":"Male","ip_address":"10.75.231.83","desc":"Scleral ectasia, left eye"},
{"id":383,"first_name":"Matilde","last_name":"Dake","email":"[email protected]","gender":"Agender","ip_address":"157.99.156.221","desc":"Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with delayed healing"},
{"id":384,"first_name":"Carlie","last_name":"Nijs","email":"[email protected]","gender":"Genderqueer","ip_address":"26.165.160.39","desc":"Supervision of pregnancy with history of ectopic pregnancy, first trimester"},
{"id":385,"first_name":"Jan","last_name":"Laverick","email":"[email protected]","gender":"Female","ip_address":"218.11.192.169","desc":"Laceration of muscle, fascia and tendon at neck level, subsequent encounter"},
{"id":386,"first_name":"Grier","last_name":"Haresnape","email":"[email protected]","gender":"Female","ip_address":"19.154.55.63","desc":"Underdosing of tricyclic antidepressants"},
{"id":387,"first_name":"Magdalene","last_name":"Tomblett","email":"[email protected]","gender":"Female","ip_address":"212.224.125.150","desc":"Toxic effect of rodenticides, undetermined, initial encounter"},
{"id":388,"first_name":"Leisha","last_name":"Sidery","email":"[email protected]","gender":"Female","ip_address":"216.180.170.151","desc":"Laceration of muscle, fascia and tendon of pelvis, subsequent encounter"},
{"id":389,"first_name":"Layton","last_name":"Rannie","email":"[email protected]","gender":"Non-binary","ip_address":"249.9.92.178","desc":"Injury of blood vessels at forearm level"},
{"id":390,"first_name":"Germaine","last_name":"Brydone","email":"[email protected]","gender":"Female","ip_address":"214.158.132.7","desc":"Subluxation of distal interphalangeal joint of right middle finger, sequela"},
{"id":391,"first_name":"Koenraad","last_name":"Lingard","email":"[email protected]","gender":"Polygender","ip_address":"151.243.245.200","desc":"Burn of unspecified degree of right scapular region"},
{"id":392,"first_name":"Kilian","last_name":"Berkely","email":"[email protected]","gender":"Genderqueer","ip_address":"176.11.18.89","desc":"Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture"},
{"id":393,"first_name":"Clayborne","last_name":"Edmand","email":"[email protected]","gender":"Male","ip_address":"163.205.82.37","desc":"Voice and resonance disorders"},
{"id":394,"first_name":"Hermon","last_name":"Date","email":"[email protected]","gender":"Male","ip_address":"230.29.111.222","desc":"Laceration with foreign body of left index finger without damage to nail, initial encounter"},
{"id":395,"first_name":"Morie","last_name":"Hollebon","email":"[email protected]","gender":"Male","ip_address":"35.108.43.98","desc":"Other specified injury of muscle, fascia and tendon of the posterior muscle group at thigh level, unspecified thigh, subsequent encounter"},
{"id":396,"first_name":"Rab","last_name":"Kubiczek","email":"[email protected]","gender":"Male","ip_address":"57.70.65.167","desc":"Laceration with foreign body, left ankle, sequela"},
{"id":397,"first_name":"Artemis","last_name":"Niccols","email":"[email protected]","gender":"Male","ip_address":"81.54.55.69","desc":"Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion"},
{"id":398,"first_name":"Giselle","last_name":"Calafato","email":"[email protected]","gender":"Genderfluid","ip_address":"217.255.52.19","desc":"Injury of radial nerve at forearm level, left arm, subsequent encounter"},
{"id":399,"first_name":"Armando","last_name":"Youle","email":"[email protected]","gender":"Male","ip_address":"170.126.60.12","desc":"Spontaneous rupture of extensor tendons"},
{"id":400,"first_name":"Dav","last_name":"Shieber","email":"[email protected]","gender":"Male","ip_address":"19.203.130.1","desc":"Blister (nonthermal) of breast, left breast, subsequent encounter"},
{"id":401,"first_name":"Kerwin","last_name":"Pecha","email":"[email protected]","gender":"Male","ip_address":"185.41.131.12","desc":"Underdosing of glucocorticoids and synthetic analogues, sequela"},
{"id":402,"first_name":"Vicky","last_name":"Haugeh","email":"[email protected]","gender":"Female","ip_address":"216.4.21.82","desc":"Poisoning by other estrogens and progestogens, assault, sequela"},
{"id":403,"first_name":"Jesse","last_name":"Feeham","email":"[email protected]","gender":"Female","ip_address":"51.60.25.117","desc":"Adverse effect of other systemic antibiotics"},
{"id":404,"first_name":"Domenico","last_name":"Meakin","email":"[email protected]","gender":"Male","ip_address":"90.246.185.7","desc":"Unilateral post-traumatic osteoarthritis, left knee"},
{"id":405,"first_name":"Corrine","last_name":"Hollyland","email":"[email protected]","gender":"Female","ip_address":"12.195.209.116","desc":"Unspecified complication of foreign body accidentally left in body following procedure"},
{"id":406,"first_name":"Stepha","last_name":"Arrighini","email":"[email protected]","gender":"Female","ip_address":"59.112.155.6","desc":"Osteonecrosis due to drugs, tibia and fibula"},
{"id":407,"first_name":"Tate","last_name":"Paydon","email":"[email protected]","gender":"Non-binary","ip_address":"89.97.145.126","desc":"Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing"},
{"id":408,"first_name":"Charlie","last_name":"Chese","email":"[email protected]","gender":"Male","ip_address":"136.97.27.183","desc":"Burn of third degree of thumb (nail)"},
{"id":409,"first_name":"Keslie","last_name":"Sehorsch","email":"[email protected]","gender":"Female","ip_address":"20.251.130.218","desc":"Constant exophthalmos, unspecified eye"},
{"id":410,"first_name":"Cinderella","last_name":"Coronas","email":"[email protected]","gender":"Genderfluid","ip_address":"47.101.213.48","desc":"External constriction of part of breast, unspecified breast, sequela"},
{"id":411,"first_name":"Jillana","last_name":"Fancourt","email":"[email protected]","gender":"Female","ip_address":"219.60.74.120","desc":"Secondary carcinoid tumors of peritoneum"},
{"id":412,"first_name":"Mariana","last_name":"Spours","email":"[email protected]","gender":"Polygender","ip_address":"76.206.51.100","desc":"Unspecified open wound of right breast, initial encounter"},
{"id":413,"first_name":"Teirtza","last_name":"McComas","email":"[email protected]","gender":"Female","ip_address":"22.181.163.27","desc":"Influenza due to unidentified influenza virus with other respiratory manifestations"},
{"id":414,"first_name":"Mercy","last_name":"Grimsdale","email":"[email protected]","gender":"Female","ip_address":"22.108.146.63","desc":"Toxic effect of methanol, intentional self-harm"},
{"id":415,"first_name":"Barret","last_name":"Dolphin","email":"[email protected]","gender":"Male","ip_address":"227.178.72.48","desc":"Congenital absence of upper arm and forearm with hand present"},
{"id":416,"first_name":"Wyatt","last_name":"Robshaw","email":"[email protected]","gender":"Agender","ip_address":"158.183.116.245","desc":"Panuveitis, unspecified eye"},
{"id":417,"first_name":"Adham","last_name":"Charrett","email":"[email protected]","gender":"Male","ip_address":"59.192.229.37","desc":"Fall from, out of or through bridge, subsequent encounter"},
{"id":418,"first_name":"Bertie","last_name":"Matchitt","email":"[email protected]","gender":"Male","ip_address":"150.220.214.109","desc":"Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with routine healing"},
{"id":419,"first_name":"Clemmy","last_name":"Falconbridge","email":"[email protected]","gender":"Male","ip_address":"121.161.240.79","desc":"Displaced bicondylar fracture of left tibia, subsequent encounter for closed fracture with delayed healing"},
{"id":420,"first_name":"Aguie","last_name":"Havvock","email":"[email protected]","gender":"Male","ip_address":"217.49.192.171","desc":"Displaced transverse fracture of shaft of left femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing"},
{"id":421,"first_name":"Marion","last_name":"Mees","email":"[email protected]","gender":"Male","ip_address":"243.11.3.224","desc":"Non-pressure chronic ulcer of unspecified calf with unspecified severity"},
{"id":422,"first_name":"Isa","last_name":"Walden","email":"[email protected]","gender":"Male","ip_address":"2.89.63.50","desc":"Displaced supracondylar fracture without intracondylar extension of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion"},
{"id":423,"first_name":"Vaughan","last_name":"Matveiko","email":"[email protected]","gender":"Agender","ip_address":"169.150.231.172","desc":"Other physeal fracture of lower end of unspecified tibia, initial encounter for closed fracture"},
{"id":424,"first_name":"Haslett","last_name":"Hoble","email":"[email protected]","gender":"Male","ip_address":"196.174.167.148","desc":"Coma scale, eyes open, never, in the field [EMT or ambulance]"},
{"id":425,"first_name":"Huberto","last_name":"Rivelon","email":"[email protected]","gender":"Male","ip_address":"20.252.102.24","desc":"Unspecified superficial injury of nose"},
{"id":426,"first_name":"Kania","last_name":"Hospital","email":"[email protected]","gender":"Female","ip_address":"123.229.78.230","desc":"Major laceration of innominate or subclavian artery"},
{"id":427,"first_name":"Tedman","last_name":"Dunlop","email":"[email protected]","gender":"Male","ip_address":"68.190.124.81","desc":"Pedal cycle passenger injured in collision with unspecified motor vehicles in nontraffic accident"},
{"id":428,"first_name":"Louis","last_name":"Chmarny","email":"[email protected]","gender":"Male","ip_address":"99.114.152.169","desc":"Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture"},
{"id":429,"first_name":"Mathilda","last_name":"Sture","email":"[email protected]","gender":"Female","ip_address":"99.129.36.4","desc":"Toxic effect of venom of other arthropod, undetermined"},
{"id":430,"first_name":"Gearalt","last_name":"Brear","email":"[email protected]","gender":"Male","ip_address":"24.179.180.207","desc":"Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with nonunion"},
{"id":431,"first_name":"Max","last_name":"Barthrop","email":"[email protected]","gender":"Genderqueer","ip_address":"1.158.48.80","desc":"Underdosing of digestants, subsequent encounter"},
{"id":432,"first_name":"Sanson","last_name":"Gurley","email":"[email protected]","gender":"Male","ip_address":"126.4.195.226","desc":"Open bite of left index finger with damage to nail, initial encounter"},
{"id":433,"first_name":"Branden","last_name":"Vaissiere","email":"[email protected]","gender":"Male","ip_address":"150.169.135.47","desc":"Passenger in pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in traffic accident"},
{"id":434,"first_name":"Louisa","last_name":"Hallor","email":"[email protected]","gender":"Female","ip_address":"142.45.117.8","desc":"Pressure ulcer of other site, unstageable"},
{"id":435,"first_name":"Dominik","last_name":"Noyes","email":"[email protected]","gender":"Male","ip_address":"231.66.161.102","desc":"Salter-Harris Type I physeal fracture of right calcaneus, subsequent encounter for fracture with malunion"},
{"id":436,"first_name":"Charmaine","last_name":"Dabourne","email":"[email protected]","gender":"Female","ip_address":"241.252.17.63","desc":"Puncture wound without foreign body of other finger without damage to nail, initial encounter"},
{"id":437,"first_name":"Archie","last_name":"Elcombe","email":"[email protected]","gender":"Male","ip_address":"221.11.154.98","desc":"Other fractures of lower end of left radius, initial encounter for closed fracture"},
{"id":438,"first_name":"Rosaline","last_name":"Delia","email":"[email protected]","gender":"Bigender","ip_address":"217.201.85.104","desc":"Smith's fracture of left radius, sequela"},
{"id":439,"first_name":"Elnar","last_name":"Jerschke","email":"[email protected]","gender":"Male","ip_address":"245.232.18.89","desc":"Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter"},
{"id":440,"first_name":"Katrina","last_name":"McNamara","email":"[email protected]","gender":"Female","ip_address":"89.8.18.213","desc":"Nondisplaced fracture of body of hamate [unciform] bone, left wrist, subsequent encounter for fracture with malunion"},
{"id":441,"first_name":"Billie","last_name":"Lyndon","email":"[email protected]","gender":"Female","ip_address":"91.111.12.192","desc":"Thromboembolism in pregnancy, second trimester"},
{"id":442,"first_name":"Lon","last_name":"Thrift","email":"[email protected]","gender":"Male","ip_address":"212.169.247.53","desc":"Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter"},
{"id":443,"first_name":"Lodovico","last_name":"Norree","email":"[email protected]","gender":"Male","ip_address":"238.203.30.57","desc":"Cutaneous abscess, furuncle and carbuncle of buttock"},
{"id":444,"first_name":"Merell","last_name":"Collyns","email":"[email protected]","gender":"Male","ip_address":"138.30.227.22","desc":"Salter-Harris Type I physeal fracture of upper end of left femur, subsequent encounter for fracture with malunion"},
{"id":445,"first_name":"Benedict","last_name":"Dey","email":"[email protected]","gender":"Male","ip_address":"133.166.42.133","desc":"Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, initial encounter"},
{"id":446,"first_name":"Nataline","last_name":"Waleworke","email":"[email protected]","gender":"Female","ip_address":"102.207.220.190","desc":"Toxic effect of carbon monoxide from other source, undetermined"},
{"id":447,"first_name":"Sid","last_name":"Lemarie","email":"[email protected]","gender":"Male","ip_address":"44.157.113.236","desc":"Poisoning by anticoagulants, assault"},
{"id":448,"first_name":"Sutherland","last_name":"Ferie","email":"[email protected]","gender":"Male","ip_address":"134.17.85.189","desc":"Other specified injury of plantar artery of foot"},
{"id":449,"first_name":"Frederigo","last_name":"Ship","email":"[email protected]","gender":"Male","ip_address":"164.81.152.229","desc":"Unspecified disorder of synovium and tendon, unspecified hand"},
{"id":450,"first_name":"Alfy","last_name":"Richmont","email":"[email protected]","gender":"Male","ip_address":"230.168.117.70","desc":"External constriction, unspecified knee, initial encounter"},
{"id":451,"first_name":"Judas","last_name":"Mole","email":"[email protected]","gender":"Male","ip_address":"232.9.154.86","desc":"Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing"},
{"id":452,"first_name":"Binnie","last_name":"O'Fergus","email":"[email protected]","gender":"Female","ip_address":"110.185.126.139","desc":"Corrosion of unspecified degree of multiple right fingers (nail), including thumb"},
{"id":453,"first_name":"Ronny","last_name":"Mellodey","email":"[email protected]","gender":"Female","ip_address":"194.40.20.102","desc":"Nondisplaced fracture of shaft of unspecified metacarpal bone, initial encounter for open fracture"},
{"id":454,"first_name":"Talya","last_name":"Holligan","email":"[email protected]","gender":"Female","ip_address":"152.42.206.30","desc":"Other injury of muscle and tendon of unspecified wall of thorax"},
{"id":455,"first_name":"Corey","last_name":"Boice","email":"[email protected]","gender":"Female","ip_address":"206.251.219.167","desc":"Algoneurodystrophy, hand"},
{"id":456,"first_name":"Sutherlan","last_name":"Masters","email":"[email protected]","gender":"Male","ip_address":"202.139.20.210","desc":"Unspecified subluxation of left knee, subsequent encounter"},
{"id":457,"first_name":"Elsa","last_name":"Delacroix","email":"[email protected]","gender":"Female","ip_address":"67.58.169.229","desc":"Mechanical complication of other urinary devices and implants"},
{"id":458,"first_name":"Milton","last_name":"Davydkov","email":"[email protected]","gender":"Male","ip_address":"176.70.243.179","desc":"Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter"},
{"id":459,"first_name":"Ermentrude","last_name":"Tinto","email":"[email protected]","gender":"Female","ip_address":"206.207.144.75","desc":"Driver of heavy transport vehicle injured in collision with heavy transport vehicle or bus in traffic accident, subsequent encounter"},
{"id":460,"first_name":"Archibold","last_name":"Houlston","email":"[email protected]","gender":"Male","ip_address":"212.45.79.16","desc":"Other secondary gout, left hip"},
{"id":461,"first_name":"Gracie","last_name":"Kiloh","email":"[email protected]","gender":"Female","ip_address":"218.157.205.59","desc":"Other peripheral vertigo, unspecified ear"},
{"id":462,"first_name":"Blakeley","last_name":"Maypother","email":"[email protected]","gender":"Female","ip_address":"241.229.132.246","desc":"Postprocedural heart failure"},
{"id":463,"first_name":"Barn","last_name":"Langford","email":"[email protected]","gender":"Male","ip_address":"230.86.66.110","desc":"Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion"},
{"id":464,"first_name":"Bartholomew","last_name":"Lardeux","email":"[email protected]","gender":"Male","ip_address":"89.42.71.94","desc":"Other fracture of sacrum, initial encounter for closed fracture"},
{"id":465,"first_name":"Carlin","last_name":"Formby","email":"[email protected]","gender":"Female","ip_address":"9.144.123.244","desc":"Nondisplaced fracture of distal phalanx of left little finger, subsequent encounter for fracture with nonunion"},
{"id":466,"first_name":"Cloris","last_name":"Leeuwerink","email":"[email protected]","gender":"Female","ip_address":"213.227.175.60","desc":"Poisoning by antimycobacterial drugs, accidental (unintentional), initial encounter"},
{"id":467,"first_name":"Susi","last_name":"Neasam","email":"[email protected]","gender":"Female","ip_address":"253.206.218.172","desc":"Snowboard accident"},
{"id":468,"first_name":"Abby","last_name":"Rhoddie","email":"[email protected]","gender":"Female","ip_address":"152.210.183.159","desc":"Fractures of other specified skull and facial bones"},
{"id":469,"first_name":"Robbie","last_name":"Wanjek","email":"[email protected]","gender":"Male","ip_address":"206.114.126.177","desc":"Burn of first degree of left hand, unspecified site, sequela"},
{"id":470,"first_name":"Rodge","last_name":"McCanny","email":"[email protected]","gender":"Male","ip_address":"53.185.53.216","desc":"Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck"},
{"id":471,"first_name":"Shaina","last_name":"Laird","email":"[email protected]","gender":"Bigender","ip_address":"1.121.17.3","desc":"Corrosion of first degree of back of right hand, sequela"},
{"id":472,"first_name":"Lizzie","last_name":"Brankley","email":"[email protected]","gender":"Female","ip_address":"170.188.49.11","desc":"Other incomplete lesion at unspecified level of thoracic spinal cord, sequela"},
{"id":473,"first_name":"Jerrold","last_name":"Orriss","email":"[email protected]","gender":"Male","ip_address":"46.15.190.152","desc":"Anterior dislocation of unspecified radial head"},
{"id":474,"first_name":"Coletta","last_name":"Chorley","email":"[email protected]","gender":"Polygender","ip_address":"174.241.213.41","desc":"Pedestrian on skateboard injured in collision with heavy transport vehicle or bus, unspecified whether traffic or nontraffic accident, sequela"},
{"id":475,"first_name":"Emelia","last_name":"Robley","email":"[email protected]","gender":"Female","ip_address":"240.52.17.47","desc":"Stenosis due to nervous system prosthetic devices, implants and grafts, sequela"},
{"id":476,"first_name":"Xever","last_name":"Bold","email":"[email protected]","gender":"Male","ip_address":"26.83.145.178","desc":"Malignant neoplasm of endocrine pancreas"},
{"id":477,"first_name":"Madison","last_name":"Wilsone","email":"[email protected]","gender":"Male","ip_address":"15.98.12.61","desc":"Pressure ulcer of right upper back, stage 4"},
{"id":478,"first_name":"Gusella","last_name":"Dunsmore","email":"[email protected]","gender":"Female","ip_address":"84.222.106.246","desc":"Toxic effect of tin and its compounds, undetermined, sequela"},
{"id":479,"first_name":"Waverley","last_name":"Williams","email":"[email protected]","gender":"Male","ip_address":"31.117.32.249","desc":"Displaced fracture of lunate [semilunar], left wrist, sequela"},
{"id":480,"first_name":"Melesa","last_name":"Cometson","email":"[email protected]","gender":"Female","ip_address":"7.30.84.220","desc":"Abscess of bursa, right elbow"},
{"id":481,"first_name":"Issiah","last_name":"Doull","email":"[email protected]","gender":"Male","ip_address":"166.216.239.189","desc":"Congenital deformity of finger(s) and hand"},
{"id":482,"first_name":"Talya","last_name":"Kondrat","email":"[email protected]","gender":"Female","ip_address":"146.64.181.48","desc":"Unspecified occupant of snowmobile injured in traffic accident, initial encounter"},
{"id":483,"first_name":"Allianora","last_name":"Ortas","email":"[email protected]","gender":"Female","ip_address":"187.13.105.35","desc":"Toxic effect of phenol and phenol homologues, undetermined, sequela"},
{"id":484,"first_name":"Meghan","last_name":"Rochell","email":"[email protected]","gender":"Female","ip_address":"219.86.78.119","desc":"Other osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture"},
{"id":485,"first_name":"Trixy","last_name":"Rumble","email":"[email protected]","gender":"Genderqueer","ip_address":"60.142.14.199","desc":"Traumatic amputation of other parts of head, subsequent encounter"},
{"id":486,"first_name":"Gordie","last_name":"Heales","email":"[email protected]","gender":"Male","ip_address":"44.99.241.19","desc":"Burn of unspecified degree of right foot, initial encounter"},
{"id":487,"first_name":"Felice","last_name":"Osmint","email":"[email protected]","gender":"Female","ip_address":"162.251.187.221","desc":"Laceration without foreign body of right breast, sequela"},
{"id":488,"first_name":"Gaye","last_name":"Grassot","email":"[email protected]","gender":"Agender","ip_address":"169.4.190.148","desc":"Unequal limb length (acquired), unspecified tibia and fibula"},
{"id":489,"first_name":"Windy","last_name":"Inker","email":"[email protected]","gender":"Female","ip_address":"246.125.74.71","desc":"Person on outside of three-wheeled motor vehicle injured in collision with pedestrian or animal in traffic accident, initial encounter"},
{"id":490,"first_name":"Hedvig","last_name":"Mulvaney","email":"[email protected]","gender":"Female","ip_address":"180.109.1.14","desc":"Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter"},
{"id":491,"first_name":"Ellwood","last_name":"Lyes","email":"[email protected]","gender":"Male","ip_address":"78.88.149.47","desc":"Other superficial bite of other finger, subsequent encounter"},
{"id":492,"first_name":"Bev","last_name":"Hammel","email":"[email protected]","gender":"Female","ip_address":"203.180.123.21","desc":"Toxic effect of venom of other African and Asian snake, accidental (unintentional), initial encounter"},
{"id":493,"first_name":"Boris","last_name":"Strotton","email":"[email protected]","gender":"Male","ip_address":"51.37.56.227","desc":"Unspecified open wound of right breast, subsequent encounter"},
{"id":494,"first_name":"Aloysius","last_name":"Rosenbarg","email":"[email protected]","gender":"Male","ip_address":"64.172.38.11","desc":"Unspecified dislocation of right wrist and hand"},
{"id":495,"first_name":"Travers","last_name":"Shade","email":"[email protected]","gender":"Male","ip_address":"231.24.145.120","desc":"Trigger thumb, left thumb"},
{"id":496,"first_name":"Shanna","last_name":"Laite","email":"[email protected]","gender":"Female","ip_address":"148.36.99.254","desc":"Nicotine dependence, unspecified, with other nicotine-induced disorders"},
{"id":497,"first_name":"Emile","last_name":"Wenban","email":"[email protected]","gender":"Male","ip_address":"49.180.23.89","desc":"Blister (nonthermal) of left thumb, sequela"},
{"id":498,"first_name":"Ximenez","last_name":"Ells","email":"[email protected]","gender":"Male","ip_address":"89.30.97.112","desc":"Thrombosis due to cardiac prosthetic devices, implants and grafts, initial encounter"},
{"id":499,"first_name":"Godfree","last_name":"Willcot","email":"[email protected]","gender":"Male","ip_address":"85.54.146.113","desc":"Other slipping, tripping and stumbling without falling, initial encounter"},
{"id":500,"first_name":"Ave","last_name":"Alu","email":"[email protected]","gender":"Male","ip_address":"118.183.193.149","desc":"Other specified injury of peroneal artery, left leg"},
{"id":501,"first_name":"Kaitlin","last_name":"Jopling","email":"[email protected]","gender":"Non-binary","ip_address":"108.224.109.141","desc":"Laceration with foreign body of unspecified external genital organs"},
{"id":502,"first_name":"Lusa","last_name":"Sutor","email":"[email protected]","gender":"Female","ip_address":"73.135.9.154","desc":"Unspecified physeal fracture of upper end of radius"},
{"id":503,"first_name":"Diannne","last_name":"Bittlestone","email":"[email protected]","gender":"Female","ip_address":"99.205.119.98","desc":"Nondisplaced fracture of base of other metacarpal bone, subsequent encounter for fracture with malunion"},
{"id":504,"first_name":"Shane","last_name":"Woffinden","email":"[email protected]","gender":"Male","ip_address":"55.90.18.31","desc":"Other cervical disc degeneration, cervicothoracic region"},
{"id":505,"first_name":"Trula","last_name":"Marlon","email":"[email protected]","gender":"Female","ip_address":"164.237.178.236","desc":"Chronic multifocal osteomyelitis, right shoulder"},
{"id":506,"first_name":"Conrad","last_name":"Wandless","email":"[email protected]","gender":"Male","ip_address":"17.157.33.131","desc":"Partial traumatic transphalangeal amputation of right thumb, subsequent encounter"},
{"id":507,"first_name":"Frieda","last_name":"Egdal","email":"[email protected]","gender":"Female","ip_address":"243.23.4.202","desc":"Right lower quadrant abdominal tenderness"},
{"id":508,"first_name":"Garnette","last_name":"Keeney","email":"[email protected]","gender":"Female","ip_address":"120.147.212.240","desc":"Fracture of neck, unspecified, subsequent encounter"},
{"id":509,"first_name":"Aveline","last_name":"Gain","email":"[email protected]","gender":"Female","ip_address":"227.247.52.197","desc":"Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter"},
{"id":510,"first_name":"Chev","last_name":"Onele","email":"[email protected]","gender":"Male","ip_address":"150.119.48.27","desc":"Hypersomnia, unspecified"},
{"id":511,"first_name":"Frankie","last_name":"Pedri","email":"[email protected]","gender":"Male","ip_address":"227.148.183.61","desc":"Blister (nonthermal) of unspecified forearm, sequela"},
{"id":512,"first_name":"Evan","last_name":"Beels","email":"[email protected]","gender":"Male","ip_address":"133.175.166.147","desc":"Underdosing of centrally-acting and adrenergic-neuron-blocking agents, sequela"},
{"id":513,"first_name":"Wheeler","last_name":"Trenbay","email":"[email protected]","gender":"Male","ip_address":"178.185.153.214","desc":"Lobular carcinoma in situ of left breast"},
{"id":514,"first_name":"Seline","last_name":"Pennick","email":"[email protected]","gender":"Female","ip_address":"255.150.190.77","desc":"Salter-Harris Type I physeal fracture of lower end of left fibula"},
{"id":515,"first_name":"Rosetta","last_name":"Mulrooney","email":"[email protected]","gender":"Female","ip_address":"68.126.102.125","desc":"Pedestrian on roller-skates injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter"},
{"id":516,"first_name":"Danila","last_name":"Zavattari","email":"[email protected]","gender":"Female","ip_address":"74.56.218.123","desc":"Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting unspecified side"},
{"id":517,"first_name":"Cassie","last_name":"Larsen","email":"[email protected]","gender":"Female","ip_address":"173.229.177.118","desc":"Toxic effect of corrosive alkalis and alkali-like substances, accidental (unintentional), subsequent encounter"},
{"id":518,"first_name":"Hortense","last_name":"Hawkings","email":"[email protected]","gender":"Female","ip_address":"176.99.55.80","desc":"Poisoning by macrolides, assault, sequela"},
{"id":519,"first_name":"Hugibert","last_name":"Schoenrock","email":"[email protected]","gender":"Male","ip_address":"191.222.83.107","desc":"Corrosion of third degree of back of left hand, sequela"},
{"id":520,"first_name":"Chickie","last_name":"Kilalea","email":"[email protected]","gender":"Male","ip_address":"188.218.17.97","desc":"Laceration of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level"},
{"id":521,"first_name":"Leontyne","last_name":"Stockford","email":"[email protected]","gender":"Female","ip_address":"122.245.217.86","desc":"Other injury of fallopian tube"},
{"id":522,"first_name":"Marla","last_name":"Kirkham","email":"[email protected]","gender":"Bigender","ip_address":"194.248.152.90","desc":"Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level"},
{"id":523,"first_name":"Pascale","last_name":"Adne","email":"[email protected]","gender":"Male","ip_address":"151.125.139.91","desc":"Syphilitic cerebral arteritis"},
{"id":524,"first_name":"Lefty","last_name":"Geeraert","email":"[email protected]","gender":"Male","ip_address":"160.156.90.36","desc":"Drowning and submersion due to other accident to other powered watercraft"},
{"id":525,"first_name":"Kiersten","last_name":"Grishankov","email":"[email protected]","gender":"Female","ip_address":"109.33.31.194","desc":"Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing"},
{"id":526,"first_name":"Philomena","last_name":"Butterfill","email":"[email protected]","gender":"Female","ip_address":"98.115.161.50","desc":"Poisoning by cephalosporins and other beta-lactam antibiotics, intentional self-harm, initial encounter"},
{"id":527,"first_name":"Rancell","last_name":"Critchell","email":"[email protected]","gender":"Male","ip_address":"106.19.241.0","desc":"Other foreign object in esophagus causing compression of trachea, initial encounter"},
{"id":528,"first_name":"Arlie","last_name":"Colborn","email":"[email protected]","gender":"Female","ip_address":"185.164.215.110","desc":"Laceration of dorsal vein of unspecified foot"},
{"id":529,"first_name":"Urson","last_name":"Kenney","email":"[email protected]","gender":"Male","ip_address":"195.29.242.95","desc":"Osteomyelitis of bilateral orbits"},
{"id":530,"first_name":"Cathrin","last_name":"Harcombe","email":"[email protected]","gender":"Female","ip_address":"162.45.32.83","desc":"Fracture of orbital floor, right side"},
{"id":531,"first_name":"Galvan","last_name":"Woodwing","email":"[email protected]","gender":"Male","ip_address":"125.108.104.205","desc":"Partial traumatic amputation at left hip joint"},
{"id":532,"first_name":"Jessa","last_name":"Tremblet","email":"[email protected]","gender":"Female","ip_address":"190.161.190.211","desc":"Infection and inflammatory reaction due to insulin pump, sequela"},
{"id":533,"first_name":"Blinny","last_name":"Marquess","email":"[email protected]","gender":"Female","ip_address":"178.213.122.109","desc":"Abnormal level of enzymes in specimens from digestive organs and abdominal cavity"},
{"id":534,"first_name":"Blithe","last_name":"Birdall","email":"[email protected]","gender":"Genderfluid","ip_address":"59.0.116.156","desc":"Horner's syndrome"},
{"id":535,"first_name":"Oran","last_name":"Fewkes","email":"[email protected]","gender":"Male","ip_address":"63.50.165.153","desc":"Female infertility of uterine origin"},
{"id":536,"first_name":"Saxon","last_name":"Veysey","email":"[email protected]","gender":"Male","ip_address":"246.139.192.74","desc":"Maternal care for known or suspected fetal abnormality and damage"},
{"id":537,"first_name":"Pip","last_name":"Poag","email":"[email protected]","gender":"Male","ip_address":"159.103.179.245","desc":"Laceration with foreign body of unspecified buttock, sequela"},
{"id":538,"first_name":"Jereme","last_name":"Duinkerk","email":"[email protected]","gender":"Male","ip_address":"160.179.239.160","desc":"Person boarding or alighting a heavy transport vehicle injured in noncollision transport accident, subsequent encounter"},
{"id":539,"first_name":"Celestyn","last_name":"Easseby","email":"[email protected]","gender":"Female","ip_address":"233.200.32.142","desc":"Laceration of muscle and tendon of long extensor muscle of toe at ankle and foot level, left foot, sequela"},
{"id":540,"first_name":"Lynea","last_name":"Zelner","email":"[email protected]","gender":"Female","ip_address":"165.36.124.106","desc":"Cannabis abuse with psychotic disorder, unspecified"},
{"id":541,"first_name":"Caro","last_name":"Peschke","email":"[email protected]","gender":"Female","ip_address":"59.84.31.97","desc":"Other fracture of upper and lower end of unspecified fibula, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion"},
{"id":542,"first_name":"Isacco","last_name":"Lundbech","email":"[email protected]","gender":"Male","ip_address":"215.120.26.87","desc":"Fracture of right shoulder girdle, part unspecified"},
{"id":543,"first_name":"Lethia","last_name":"Mintrim","email":"[email protected]","gender":"Female","ip_address":"88.99.27.229","desc":"Direct infection of elbow in infectious and parasitic diseases classified elsewhere"},
{"id":544,"first_name":"Mellisent","last_name":"Lownds","email":"[email protected]","gender":"Female","ip_address":"28.34.127.196","desc":"Bather struck by powered watercraft, sequela"},
{"id":545,"first_name":"Pattie","last_name":"Bernette","email":"[email protected]","gender":"Female","ip_address":"237.244.82.37","desc":"Presence of other orthopedic joint implants"},
{"id":546,"first_name":"Malvin","last_name":"Harkins","email":"[email protected]","gender":"Male","ip_address":"126.180.144.17","desc":"Family history of blindness and visual loss"},
{"id":547,"first_name":"Ragnar","last_name":"Drewett","email":"[email protected]","gender":"Male","ip_address":"173.249.31.108","desc":"Laceration of axillary artery, unspecified side, sequela"},
{"id":548,"first_name":"Penn","last_name":"Peegrem","email":"[email protected]","gender":"Male","ip_address":"153.140.72.217","desc":"Fracture of right shoulder girdle, part unspecified"},
{"id":549,"first_name":"Tracie","last_name":"Rossi","email":"[email protected]","gender":"Male","ip_address":"78.238.218.23","desc":"Unspecified interstitial keratitis, left eye"},
{"id":550,"first_name":"Iggie","last_name":"Coggell","email":"[email protected]","gender":"Male","ip_address":"24.149.69.171","desc":"Intestine transplant status"},
{"id":551,"first_name":"Edy","last_name":"Cockett","email":"[email protected]","gender":"Agender","ip_address":"218.83.80.251","desc":"Problem related to upbringing, unspecified"},
{"id":552,"first_name":"Issiah","last_name":"Willey","email":"[email protected]","gender":"Male","ip_address":"154.34.157.164","desc":"Injury of unspecified cranial nerve, sequela"},
{"id":553,"first_name":"Otho","last_name":"Gerant","email":"[email protected]","gender":"Male","ip_address":"91.209.106.103","desc":"Fracture of clavicle due to birth injury"},
{"id":554,"first_name":"Vivia","last_name":"Olin","email":"[email protected]","gender":"Female","ip_address":"196.142.185.148","desc":"Personal history of in-situ neoplasm of cervix uteri"},
{"id":555,"first_name":"Natala","last_name":"Willment","email":"[email protected]","gender":"Female","ip_address":"45.80.231.212","desc":"Embolism and thrombosis of thoracic aorta"},
{"id":556,"first_name":"Alidia","last_name":"Trowle","email":"[email protected]","gender":"Female","ip_address":"108.213.168.207","desc":"Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter"},
{"id":557,"first_name":"Stephi","last_name":"Mundford","email":"[email protected]","gender":"Female","ip_address":"233.95.26.205","desc":"Nondisplaced fracture of lateral condyle of left tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC"},
{"id":558,"first_name":"Bucky","last_name":"Fernihough","email":"[email protected]","gender":"Male","ip_address":"150.250.102.140","desc":"Poisoning by vitamins, assault"},
{"id":559,"first_name":"Cirilo","last_name":"Davenhall","email":"[email protected]","gender":"Male","ip_address":"71.68.115.212","desc":"Traction detachment of retina, bilateral"},
{"id":560,"first_name":"Bartram","last_name":"Hymas","email":"[email protected]","gender":"Male","ip_address":"87.234.146.58","desc":"Intentional self-harm by exposure to extremes of cold"},
{"id":561,"first_name":"Diannne","last_name":"MacDavitt","email":"[email protected]","gender":"Female","ip_address":"58.199.18.76","desc":"Angioneurotic edema, initial encounter"},
{"id":562,"first_name":"Bernetta","last_name":"McCrum","email":"[email protected]","gender":"Female","ip_address":"5.66.155.213","desc":"Poisoning by other psychodysleptics [hallucinogens], assault, subsequent encounter"},
{"id":563,"first_name":"Hilliard","last_name":"Pleace","email":"[email protected]","gender":"Male","ip_address":"11.23.2.228","desc":"Nondisplaced fracture of coronoid process of right ulna"},
{"id":564,"first_name":"Binni","last_name":"Gallacher","email":"[email protected]","gender":"Female","ip_address":"72.155.124.221","desc":"Unspecified injury of other extensor muscle, fascia and tendon at forearm level"},
{"id":565,"first_name":"Gregg","last_name":"Weavers","email":"[email protected]","gender":"Male","ip_address":"130.124.142.214","desc":"Laceration of sigmoid colon, subsequent encounter"},
{"id":566,"first_name":"Jaquenetta","last_name":"Briand","email":"[email protected]","gender":"Female","ip_address":"5.57.190.115","desc":"Filamentary keratitis, unspecified eye"},
{"id":567,"first_name":"Sibelle","last_name":"Kilmartin","email":"[email protected]","gender":"Female","ip_address":"237.214.75.123","desc":"Hodgkin lymphoma, unspecified, spleen"},
{"id":568,"first_name":"Codi","last_name":"Linzee","email":"[email protected]","gender":"Female","ip_address":"12.216.249.202","desc":"Laceration without foreign body of left ear"},
{"id":569,"first_name":"Nikolai","last_name":"Libbie","email":"[email protected]","gender":"Male","ip_address":"183.124.46.60","desc":"Caught, crushed, jammed, or pinched between stationary objects"},
{"id":570,"first_name":"Sybil","last_name":"O'Gready","email":"[email protected]","gender":"Female","ip_address":"248.234.202.131","desc":"Primary osteoarthritis, unspecified ankle and foot"},
{"id":571,"first_name":"Krisha","last_name":"Proby","email":"[email protected]","gender":"Male","ip_address":"199.34.28.161","desc":"Unspecified injury of esophagus (thoracic part), subsequent encounter"},
{"id":572,"first_name":"Janine","last_name":"Ottawell","email":"[email protected]","gender":"Polygender","ip_address":"212.134.167.238","desc":"Adverse effect of tetracyclines"},
{"id":573,"first_name":"Daisy","last_name":"Oles","email":"[email protected]","gender":"Female","ip_address":"239.233.95.111","desc":"Nondisplaced fracture of body of unspecified calcaneus"},
{"id":574,"first_name":"Kienan","last_name":"Herety","email":"[email protected]","gender":"Male","ip_address":"95.133.137.177","desc":"Frostbite with tissue necrosis of thorax, subsequent encounter"},
{"id":575,"first_name":"Brandais","last_name":"Yon","email":"[email protected]","gender":"Female","ip_address":"151.3.121.136","desc":"Other disorders of vestibular function"},
{"id":576,"first_name":"Rivy","last_name":"Stapleton","email":"[email protected]","gender":"Female","ip_address":"174.108.194.134","desc":"Nondisplaced intertrochanteric fracture of left femur, subsequent encounter for open fracture type I or II with routine healing"},
{"id":577,"first_name":"Anabel","last_name":"Karpychev","email":"[email protected]","gender":"Female","ip_address":"115.0.210.207","desc":"Other injury of abdominal aorta, subsequent encounter"},
{"id":578,"first_name":"Guillemette","last_name":"Madgewick","email":"[email protected]","gender":"Female","ip_address":"182.165.125.53","desc":"Toxic effect of tobacco cigarettes, accidental (unintentional), sequela"},
{"id":579,"first_name":"Shawn","last_name":"Crickett","email":"[email protected]","gender":"Male","ip_address":"66.147.124.146","desc":"Minor laceration of right pulmonary blood vessels, sequela"},
{"id":580,"first_name":"Englebert","last_name":"Givens","email":"[email protected]","gender":"Male","ip_address":"139.26.136.21","desc":"Poisoning by other psychodysleptics [hallucinogens], accidental (unintentional), sequela"},
{"id":581,"first_name":"Bertie","last_name":"Duddle","email":"[email protected]","gender":"Female","ip_address":"214.199.188.233","desc":"Occupant of pick-up truck or van injured in collision with car, pick-up truck or van"},
{"id":582,"first_name":"Ellie","last_name":"Syversen","email":"[email protected]","gender":"Non-binary","ip_address":"219.245.207.5","desc":"Occupant of pick-up truck or van injured in collision with heavy transport vehicle or bus"},
{"id":583,"first_name":"Nedi","last_name":"Trafford","email":"[email protected]","gender":"Female","ip_address":"189.126.139.146","desc":"Poisoning by antimycobacterial drugs, assault, subsequent encounter"},
{"id":584,"first_name":"Penny","last_name":"Keston","email":"[email protected]","gender":"Male","ip_address":"82.49.78.121","desc":"Corrosion of third degree of unspecified site of right lower limb, except ankle and foot"},
{"id":585,"first_name":"Lucais","last_name":"Gronous","email":"[email protected]","gender":"Male","ip_address":"17.0.26.129","desc":"Breakdown (mechanical) of balloon (counterpulsation) device, sequela"},
{"id":586,"first_name":"Victor","last_name":"Caffery","email":"[email protected]","gender":"Bigender","ip_address":"128.231.103.253","desc":"Poisoning by antiallergic and antiemetic drugs, undetermined, sequela"},
{"id":587,"first_name":"Thelma","last_name":"Deakin","email":"[email protected]","gender":"Female","ip_address":"185.81.111.135","desc":"Displacement of indwelling ureteral stent"},
{"id":588,"first_name":"Alphonse","last_name":"Lapham","email":"[email protected]","gender":"Male","ip_address":"27.100.140.180","desc":"Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing"},
{"id":589,"first_name":"Olin","last_name":"Worsall","email":"[email protected]","gender":"Male","ip_address":"163.52.123.121","desc":"Other superficial bite of breast, unspecified breast, subsequent encounter"},
{"id":590,"first_name":"Fons","last_name":"Larmet","email":"[email protected]","gender":"Male","ip_address":"72.199.246.94","desc":"Unspecified fracture of left foot"},
{"id":591,"first_name":"Goddart","last_name":"Smithson","email":"[email protected]","gender":"Bigender","ip_address":"229.59.204.77","desc":"Major laceration of superior mesenteric artery"},
{"id":592,"first_name":"Wanids","last_name":"Christall","email":"[email protected]","gender":"Female","ip_address":"97.82.255.217","desc":"Poisoning by immunoglobulin, undetermined"},
{"id":593,"first_name":"Hephzibah","last_name":"Croy","email":"[email protected]","gender":"Female","ip_address":"84.202.79.203","desc":"Poisoning by sulfonamides, intentional self-harm, subsequent encounter"},
{"id":594,"first_name":"Donaugh","last_name":"Stonestreet","email":"[email protected]","gender":"Male","ip_address":"246.180.81.204","desc":"Open bite, unspecified knee, subsequent encounter"},
{"id":595,"first_name":"Judy","last_name":"Britcher","email":"[email protected]","gender":"Non-binary","ip_address":"165.149.170.80","desc":"Salter-Harris Type I physeal fracture of phalanx of right toe, subsequent encounter for fracture with routine healing"},
{"id":596,"first_name":"Burnard","last_name":"ducarme","email":"[email protected]","gender":"Agender","ip_address":"192.88.124.20","desc":"Other specified injury of ulnar artery at wrist and hand level of left arm, initial encounter"},
{"id":597,"first_name":"Stefania","last_name":"Cornu","email":"[email protected]","gender":"Genderqueer","ip_address":"29.221.55.177","desc":"Partial traumatic amputation of two or more left lesser toes"},
{"id":598,"first_name":"Alfreda","last_name":"Hampshire","email":"[email protected]","gender":"Female","ip_address":"141.232.28.234","desc":"Displaced comminuted fracture of right patella, subsequent encounter for closed fracture with delayed healing"},
{"id":599,"first_name":"Marty","last_name":"Tollerton","email":"[email protected]","gender":"Female","ip_address":"214.71.115.199","desc":"Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing"},
{"id":600,"first_name":"Laurella","last_name":"Haile","email":"[email protected]","gender":"Female","ip_address":"62.103.228.12","desc":"Staphylococcal arthritis, left elbow"},
{"id":601,"first_name":"Flo","last_name":"Coppenhall","email":"[email protected]","gender":"Female","ip_address":"197.151.94.155","desc":"Unspecified lagophthalmos left lower eyelid"},
{"id":602,"first_name":"Lisabeth","last_name":"Springall","email":"[email protected]","gender":"Female","ip_address":"20.173.97.222","desc":"Open bite of right buttock"},
{"id":603,"first_name":"Thorpe","last_name":"Antoshin","email":"[email protected]","gender":"Male","ip_address":"228.11.19.84","desc":"Sprain of left rotator cuff capsule, subsequent encounter"},
{"id":604,"first_name":"Kaia","last_name":"Premble","email":"[email protected]","gender":"Genderqueer","ip_address":"107.175.185.52","desc":"Nondisplaced osteochondral fracture of right patella, sequela"},
{"id":605,"first_name":"Dennis","last_name":"Topham","email":"[email protected]","gender":"Male","ip_address":"48.176.41.220","desc":"Displaced oblique fracture of shaft of right tibia, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":606,"first_name":"Kendra","last_name":"Dennett","email":"[email protected]","gender":"Female","ip_address":"171.5.120.174","desc":"Nondisplaced transverse fracture of shaft of unspecified radius, sequela"},
{"id":607,"first_name":"Catlin","last_name":"Ferrick","email":"[email protected]","gender":"Female","ip_address":"142.74.168.49","desc":"Corrosions of other specified parts of unspecified eye and adnexa, subsequent encounter"},
{"id":608,"first_name":"Georgena","last_name":"Croci","email":"[email protected]","gender":"Female","ip_address":"189.211.200.155","desc":"Injury of other iliac blood vessels, subsequent encounter"},
{"id":609,"first_name":"Andreas","last_name":"Camous","email":"[email protected]","gender":"Male","ip_address":"58.53.63.136","desc":"Dislocation of acromioclavicular joint, greater than 200% displacement"},
{"id":610,"first_name":"Garner","last_name":"Tyrie","email":"[email protected]","gender":"Male","ip_address":"50.14.68.26","desc":"Burn of unspecified degree of right upper arm, sequela"},
{"id":611,"first_name":"Rianon","last_name":"Pennino","email":"[email protected]","gender":"Female","ip_address":"241.68.152.189","desc":"Abrasion of left back wall of thorax, sequela"},
{"id":612,"first_name":"Margarethe","last_name":"Bernardoni","email":"[email protected]","gender":"Genderfluid","ip_address":"77.177.200.223","desc":"Laceration without foreign body of right ring finger with damage to nail, initial encounter"},
{"id":613,"first_name":"Eadmund","last_name":"Fasse","email":"[email protected]","gender":"Male","ip_address":"133.28.75.116","desc":"Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II"},
{"id":614,"first_name":"Emili","last_name":"Griffiths","email":"[email protected]","gender":"Female","ip_address":"212.2.40.205","desc":"Displaced fracture of trapezoid [smaller multangular], left wrist, subsequent encounter for fracture with nonunion"},
{"id":615,"first_name":"Gladys","last_name":"Masdon","email":"[email protected]","gender":"Female","ip_address":"4.148.108.87","desc":"Anaphylactic reaction due to other food products, subsequent encounter"},
{"id":616,"first_name":"Sylas","last_name":"Ovenden","email":"[email protected]","gender":"Male","ip_address":"241.216.197.210","desc":"Sprain of unspecified parts of right shoulder girdle"},
{"id":617,"first_name":"Ada","last_name":"Cheers","email":"[email protected]","gender":"Female","ip_address":"182.209.178.84","desc":"Burn of right ear drum, sequela"},
{"id":618,"first_name":"Elias","last_name":"Tarbin","email":"[email protected]","gender":"Male","ip_address":"43.198.239.132","desc":"Person boarding or alighting a motorcycle injured in collision with heavy transport vehicle or bus, subsequent encounter"},
{"id":619,"first_name":"Paten","last_name":"Brisson","email":"[email protected]","gender":"Male","ip_address":"220.17.155.251","desc":"Corrosion of unspecified degree of female genital region, sequela"},
{"id":620,"first_name":"Raddy","last_name":"Murphy","email":"[email protected]","gender":"Male","ip_address":"138.16.69.35","desc":"Laceration without foreign body of right great toe without damage to nail, initial encounter"},
{"id":621,"first_name":"Marris","last_name":"Leftley","email":"[email protected]","gender":"Female","ip_address":"93.112.6.157","desc":"Puncture wound with foreign body of unspecified toe(s) with damage to nail, subsequent encounter"},
{"id":622,"first_name":"Janelle","last_name":"Graysmark","email":"[email protected]","gender":"Female","ip_address":"33.123.252.21","desc":"Partial traumatic amputation of two or more left lesser toes, initial encounter"},
{"id":623,"first_name":"Rodrique","last_name":"Jaulme","email":"[email protected]","gender":"Male","ip_address":"192.133.32.159","desc":"Occupational exposure to radiation"},
{"id":624,"first_name":"Humberto","last_name":"Arnholtz","email":"[email protected]","gender":"Male","ip_address":"215.52.185.160","desc":"Fracture of second lumbar vertebra"},
{"id":625,"first_name":"Jeffry","last_name":"Rawlison","email":"[email protected]","gender":"Male","ip_address":"195.32.19.208","desc":"Fall from non-in-line roller-skates, sequela"},
{"id":626,"first_name":"Seana","last_name":"McCaughen","email":"[email protected]","gender":"Female","ip_address":"115.38.70.214","desc":"Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela"},
{"id":627,"first_name":"Dionne","last_name":"Clopton","email":"[email protected]","gender":"Genderfluid","ip_address":"217.19.14.201","desc":"Subluxation of right acromioclavicular joint, subsequent encounter"},
{"id":628,"first_name":"Charis","last_name":"Dunkerton","email":"[email protected]","gender":"Female","ip_address":"152.134.76.212","desc":"Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture"},
{"id":629,"first_name":"Brandyn","last_name":"Ancell","email":"[email protected]","gender":"Male","ip_address":"156.147.130.159","desc":"Idiopathic gout, unspecified wrist"},
{"id":630,"first_name":"Immanuel","last_name":"Grinter","email":"[email protected]","gender":"Male","ip_address":"237.59.213.99","desc":"Civilian in water injured by military watercraft, sequela"},
{"id":631,"first_name":"Ahmed","last_name":"Guidoni","email":"[email protected]","gender":"Male","ip_address":"198.189.246.136","desc":"Burn of second degree of right knee, initial encounter"},
{"id":632,"first_name":"Eddy","last_name":"Valasek","email":"[email protected]","gender":"Female","ip_address":"27.240.115.220","desc":"Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter"},
{"id":633,"first_name":"Reinaldos","last_name":"Marle","email":"[email protected]","gender":"Male","ip_address":"114.198.234.11","desc":"Perforation due to foreign body accidentally left in body following kidney dialysis, sequela"},
{"id":634,"first_name":"Darsey","last_name":"Kennea","email":"[email protected]","gender":"Female","ip_address":"152.78.25.129","desc":"Traumatic rupture of unspecified ulnocarpal (palmar) ligament, initial encounter"},
{"id":635,"first_name":"Cinda","last_name":"Baish","email":"[email protected]","gender":"Female","ip_address":"47.245.75.122","desc":"Pseudobulbar affect"},
{"id":636,"first_name":"Clifford","last_name":"Kingsly","email":"[email protected]","gender":"Male","ip_address":"69.33.192.199","desc":"Primary iridocyclitis"},
{"id":637,"first_name":"Sharline","last_name":"Hovie","email":"[email protected]","gender":"Female","ip_address":"41.203.163.170","desc":"Hypertrophy of bone, left shoulder"},
{"id":638,"first_name":"Benji","last_name":"Gilchrist","email":"[email protected]","gender":"Male","ip_address":"98.48.214.252","desc":"Other specified injury of right middle and inner ear, initial encounter"},
{"id":639,"first_name":"Keelia","last_name":"Skully","email":"[email protected]","gender":"Female","ip_address":"167.142.233.151","desc":"Embolism and thrombosis of thoracic aorta"},
{"id":640,"first_name":"Livia","last_name":"Reburn","email":"[email protected]","gender":"Female","ip_address":"175.230.158.169","desc":"Air embolism in pregnancy, third trimester"},
{"id":641,"first_name":"Reena","last_name":"Acosta","email":"[email protected]","gender":"Female","ip_address":"245.173.19.17","desc":"Passenger of special construction vehicle injured in nontraffic accident, sequela"},
{"id":642,"first_name":"Whitman","last_name":"Rimes","email":"[email protected]","gender":"Male","ip_address":"75.17.152.167","desc":"Laceration of extensor muscle, fascia and tendon of left little finger at wrist and hand level, subsequent encounter"},
{"id":643,"first_name":"Mirabella","last_name":"Pandya","email":"[email protected]","gender":"Female","ip_address":"60.92.7.225","desc":"Laceration without foreign body of left ear, initial encounter"},
{"id":644,"first_name":"Orbadiah","last_name":"Gerasch","email":"[email protected]","gender":"Male","ip_address":"30.80.128.131","desc":"Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela"},
{"id":645,"first_name":"Lily","last_name":"Pritchitt","email":"[email protected]","gender":"Female","ip_address":"215.40.162.50","desc":"Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing"},
{"id":646,"first_name":"Michele","last_name":"Mussalli","email":"[email protected]","gender":"Male","ip_address":"86.59.220.97","desc":"Sleep deprivation"},
{"id":647,"first_name":"Rozele","last_name":"Denness","email":"[email protected]","gender":"Female","ip_address":"169.179.198.145","desc":"Other fracture of lower end of right tibia, initial encounter for open fracture type IIIA, IIIB, or IIIC"},
{"id":648,"first_name":"Wendall","last_name":"Fero","email":"[email protected]","gender":"Male","ip_address":"244.134.138.250","desc":"Burn of unspecified degree of multiple sites of left shoulder and upper limb, except wrist and hand, subsequent encounter"},
{"id":649,"first_name":"Anatole","last_name":"Woolsey","email":"[email protected]","gender":"Male","ip_address":"91.209.17.159","desc":"Other fracture of fifth metacarpal bone, right hand, subsequent encounter for fracture with malunion"},
{"id":650,"first_name":"Sherilyn","last_name":"Dominici","email":"[email protected]","gender":"Female","ip_address":"10.253.253.33","desc":"Corrosion of second degree of multiple sites of left lower limb, except ankle and foot, initial encounter"},
{"id":651,"first_name":"Sammy","last_name":"Maving","email":"[email protected]","gender":"Non-binary","ip_address":"18.119.87.144","desc":"Ventricular flutter"},
{"id":652,"first_name":"Nesta","last_name":"Huntress","email":"[email protected]","gender":"Female","ip_address":"226.106.52.214","desc":"Unspecified fracture of head of femur"},
{"id":653,"first_name":"Hyman","last_name":"Wrout","email":"[email protected]","gender":"Male","ip_address":"153.90.4.3","desc":"Laceration of extensor muscle, fascia and tendon of right ring finger at wrist and hand level, sequela"},
{"id":654,"first_name":"Herminia","last_name":"Flukes","email":"[email protected]","gender":"Female","ip_address":"204.182.172.124","desc":"Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm"},
{"id":655,"first_name":"Darby","last_name":"Dansie","email":"[email protected]","gender":"Male","ip_address":"187.168.88.79","desc":"Pseudocoxalgia, right hip"},
{"id":656,"first_name":"Nickie","last_name":"Dunmuir","email":"[email protected]","gender":"Male","ip_address":"156.133.136.81","desc":"Simple chronic conjunctivitis, unspecified eye"},
{"id":657,"first_name":"Edvard","last_name":"Gebhardt","email":"[email protected]","gender":"Male","ip_address":"23.216.31.249","desc":"Factitial dermatitis"},
{"id":658,"first_name":"Etienne","last_name":"Loosley","email":"[email protected]","gender":"Male","ip_address":"184.110.7.207","desc":"Displacement of balloon (counterpulsation) device, subsequent encounter"},
{"id":659,"first_name":"Urbain","last_name":"Leckey","email":"[email protected]","gender":"Male","ip_address":"61.239.136.109","desc":"Displaced comminuted fracture of shaft of unspecified femur, subsequent encounter for closed fracture with malunion"},
{"id":660,"first_name":"Carmella","last_name":"Adess","email":"[email protected]","gender":"Female","ip_address":"58.196.250.212","desc":"Laceration without foreign body of unspecified ear, initial encounter"},
{"id":661,"first_name":"Garnette","last_name":"Welfare","email":"[email protected]","gender":"Female","ip_address":"90.64.160.247","desc":"Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing"},
{"id":662,"first_name":"Brook","last_name":"Jurgensen","email":"[email protected]","gender":"Male","ip_address":"176.7.242.70","desc":"Acute lymphadenitis"},
{"id":663,"first_name":"Van","last_name":"Hancill","email":"[email protected]","gender":"Male","ip_address":"50.98.120.80","desc":"Partial trisomy"},
{"id":664,"first_name":"Arlie","last_name":"Gaul","email":"[email protected]","gender":"Female","ip_address":"173.128.15.197","desc":"Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion"},
{"id":665,"first_name":"Herman","last_name":"Spadazzi","email":"[email protected]","gender":"Male","ip_address":"67.88.121.15","desc":"Atherosclerosis of native arteries of extremities with rest pain, bilateral legs"},
{"id":666,"first_name":"Say","last_name":"Crossingham","email":"[email protected]","gender":"Male","ip_address":"248.72.242.163","desc":"Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations"},
{"id":667,"first_name":"Tera","last_name":"Mendonca","email":"[email protected]","gender":"Female","ip_address":"164.199.74.248","desc":"Abscess of bursa"},
{"id":668,"first_name":"Hillel","last_name":"Rizzetti","email":"[email protected]","gender":"Genderfluid","ip_address":"150.170.63.182","desc":"Minor laceration of femoral artery, right leg, subsequent encounter"},
{"id":669,"first_name":"Cherise","last_name":"Malsher","email":"[email protected]","gender":"Female","ip_address":"215.15.90.210","desc":"Poisoning by, adverse effect of and underdosing of antiasthmatics"},
{"id":670,"first_name":"Sigfried","last_name":"Macewan","email":"[email protected]","gender":"Male","ip_address":"38.145.174.31","desc":"Unilateral osteoarthritis resulting from hip dysplasia"},
{"id":671,"first_name":"Spence","last_name":"Rymour","email":"[email protected]","gender":"Male","ip_address":"97.45.131.48","desc":"Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter"},
{"id":672,"first_name":"Pebrook","last_name":"Parradine","email":"[email protected]","gender":"Male","ip_address":"30.66.209.187","desc":"Macular corneal dystrophy"},
{"id":673,"first_name":"Konstanze","last_name":"Loddon","email":"[email protected]","gender":"Female","ip_address":"104.209.197.44","desc":"Burn of first degree of unspecified foot, sequela"},
{"id":674,"first_name":"Franklin","last_name":"Crighton","email":"[email protected]","gender":"Male","ip_address":"175.90.169.222","desc":"Nondisplaced segmental fracture of shaft of humerus, unspecified arm"},
{"id":675,"first_name":"Bram","last_name":"Cubin","email":"[email protected]","gender":"Male","ip_address":"116.138.55.92","desc":"Displaced fracture of lateral cuneiform of unspecified foot, sequela"},
{"id":676,"first_name":"Willy","last_name":"Gerbel","email":"[email protected]","gender":"Female","ip_address":"92.246.58.149","desc":"Maternal care for Anti-A sensitization, third trimester, fetus 2"},
{"id":677,"first_name":"North","last_name":"Godden","email":"[email protected]","gender":"Male","ip_address":"246.34.138.20","desc":"Age-related osteoporosis with current pathological fracture, right femur"},
{"id":678,"first_name":"Jordan","last_name":"Masham","email":"[email protected]","gender":"Male","ip_address":"179.203.243.254","desc":"Strain of muscle, fascia and tendon of long head of biceps, unspecified arm"},
{"id":679,"first_name":"Olag","last_name":"Shawe","email":"[email protected]","gender":"Male","ip_address":"38.126.255.173","desc":"Driver of three-wheeled motor vehicle injured in collision with pedal cycle in traffic accident"},
{"id":680,"first_name":"Miquela","last_name":"Antosik","email":"[email protected]","gender":"Female","ip_address":"94.23.2.11","desc":"Puncture wound with foreign body of left breast"},
{"id":681,"first_name":"Charita","last_name":"Fontelles","email":"[email protected]","gender":"Female","ip_address":"14.150.39.199","desc":"Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion"},
{"id":682,"first_name":"Luce","last_name":"Cantillion","email":"[email protected]","gender":"Male","ip_address":"55.51.90.106","desc":"Unspecified open wound of thigh"},
{"id":683,"first_name":"Ag","last_name":"Espinola","email":"[email protected]","gender":"Female","ip_address":"216.189.39.179","desc":"Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity"},
{"id":684,"first_name":"Chandal","last_name":"Delieu","email":"[email protected]","gender":"Female","ip_address":"180.110.33.118","desc":"Superficial frostbite of left knee and lower leg, sequela"},
{"id":685,"first_name":"Marcello","last_name":"Karpman","email":"[email protected]","gender":"Male","ip_address":"18.101.78.31","desc":"Other private fixed-wing aircraft crash injuring occupant, sequela"},
{"id":686,"first_name":"Verena","last_name":"Dronsfield","email":"[email protected]","gender":"Female","ip_address":"121.97.66.91","desc":"Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter"},
{"id":687,"first_name":"Leslie","last_name":"Pearce","email":"[email protected]","gender":"Male","ip_address":"185.205.111.173","desc":"Unspecified car occupant injured in collision with other nonmotor vehicle in traffic accident"},
{"id":688,"first_name":"Coleen","last_name":"Feldfisher","email":"[email protected]","gender":"Female","ip_address":"225.131.225.101","desc":"Leakage of vascular dialysis catheter, initial encounter"},
{"id":689,"first_name":"Leonanie","last_name":"Dorcey","email":"[email protected]","gender":"Female","ip_address":"203.155.43.174","desc":"Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter"},
{"id":690,"first_name":"Kalvin","last_name":"Killeen","email":"[email protected]","gender":"Male","ip_address":"110.231.80.45","desc":"Sprain of right sternoclavicular joint, sequela"},
{"id":691,"first_name":"Rusty","last_name":"Bahls","email":"[email protected]","gender":"Male","ip_address":"107.229.174.51","desc":"Unspecified subluxation of left radial head"},
{"id":692,"first_name":"Ewart","last_name":"Mozzetti","email":"[email protected]","gender":"Male","ip_address":"119.148.28.236","desc":"Frostbite with tissue necrosis of left toe(s), sequela"},
{"id":693,"first_name":"Margie","last_name":"Rubin","email":"[email protected]","gender":"Female","ip_address":"29.170.39.117","desc":"Jumping or diving from boat striking water surface causing other injury, subsequent encounter"},
{"id":694,"first_name":"Wallie","last_name":"Clementel","email":"[email protected]","gender":"Male","ip_address":"199.99.205.75","desc":"Displaced fracture of fifth metatarsal bone, unspecified foot"},
{"id":695,"first_name":"Rriocard","last_name":"Francklyn","email":"[email protected]","gender":"Male","ip_address":"49.17.239.49","desc":"Traumatic rupture of volar plate of right index finger at metacarpophalangeal and interphalangeal joint"},
{"id":696,"first_name":"Ardenia","last_name":"Labrum","email":"[email protected]","gender":"Female","ip_address":"82.95.205.44","desc":"Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter"},
{"id":697,"first_name":"Hayden","last_name":"Whitwham","email":"[email protected]","gender":"Male","ip_address":"178.110.114.39","desc":"Unspecified open wound of left little finger without damage to nail, subsequent encounter"},
{"id":698,"first_name":"Rae","last_name":"Beadnall","email":"[email protected]","gender":"Female","ip_address":"33.128.198.243","desc":"Displaced fracture of greater trochanter of right femur, subsequent encounter for open fracture type I or II with nonunion"},
{"id":699,"first_name":"Tiffy","last_name":"Madigan","email":"[email protected]","gender":"Female","ip_address":"248.189.113.183","desc":"Embolism and thrombosis of other thoracic veins"},
{"id":700,"first_name":"Burke","last_name":"Wynne","email":"[email protected]","gender":"Male","ip_address":"201.241.198.37","desc":"Breakdown (mechanical) of cranial or spinal infusion catheter, sequela"},
{"id":701,"first_name":"Gertrud","last_name":"Spindler","email":"[email protected]","gender":"Female","ip_address":"123.199.35.141","desc":"Allergy status to drugs, medicaments and biological substances"},
{"id":702,"first_name":"Erick","last_name":"Mellem","email":"[email protected]","gender":"Male","ip_address":"197.217.144.153","desc":"Sequelae of vitamin A deficiency"},
{"id":703,"first_name":"Blondie","last_name":"Hastewell","email":"[email protected]","gender":"Female","ip_address":"186.142.140.152","desc":"Circadian rhythm sleep disorder, unspecified type"},
{"id":704,"first_name":"Mariejeanne","last_name":"Ritchie","email":"[email protected]","gender":"Female","ip_address":"22.62.48.27","desc":"Superficial foreign body of unspecified part of neck"},
{"id":705,"first_name":"Rosaleen","last_name":"St. Hill","email":"[email protected]","gender":"Female","ip_address":"221.132.242.67","desc":"Other sprain of right foot, initial encounter"},
{"id":706,"first_name":"Angelita","last_name":"Tourville","email":"[email protected]","gender":"Female","ip_address":"169.61.67.25","desc":"Poisoning by, adverse effect of and underdosing of glucocorticoids and synthetic analogues"},
{"id":707,"first_name":"Rad","last_name":"Cruikshanks","email":"[email protected]","gender":"Male","ip_address":"84.125.61.20","desc":"Other fracture of lower end of unspecified femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion"},
{"id":708,"first_name":"Aldus","last_name":"Allmen","email":"[email protected]","gender":"Male","ip_address":"102.100.234.113","desc":"Poisoning by emetics, assault, initial encounter"},
{"id":709,"first_name":"Marianna","last_name":"Stoggell","email":"[email protected]","gender":"Female","ip_address":"54.204.116.61","desc":"Sprain of other part of right wrist and hand"},
{"id":710,"first_name":"Baird","last_name":"Troughton","email":"[email protected]","gender":"Male","ip_address":"252.102.67.199","desc":"Extremely low birth weight newborn, unspecified weight"},
{"id":711,"first_name":"Gwen","last_name":"Tingey","email":"[email protected]","gender":"Female","ip_address":"63.191.19.205","desc":"Valgus deformity, not elsewhere classified, knee"},
{"id":712,"first_name":"Frederique","last_name":"Pavolillo","email":"[email protected]","gender":"Bigender","ip_address":"209.68.208.153","desc":"Other powered aircraft accidents injuring occupant, initial encounter"},
{"id":713,"first_name":"Bern","last_name":"Merrigan","email":"[email protected]","gender":"Non-binary","ip_address":"28.60.169.43","desc":"Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with delayed healing"},
{"id":714,"first_name":"Tedmund","last_name":"Broggio","email":"[email protected]","gender":"Male","ip_address":"151.80.210.73","desc":"Superficial foreign body of right upper arm, initial encounter"},
{"id":715,"first_name":"Allie","last_name":"Egarr","email":"[email protected]","gender":"Bigender","ip_address":"193.183.85.31","desc":"Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb"},
{"id":716,"first_name":"Waring","last_name":"Swinley","email":"[email protected]","gender":"Male","ip_address":"195.85.57.30","desc":"Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter"},
{"id":717,"first_name":"Daria","last_name":"Tripp","email":"[email protected]","gender":"Female","ip_address":"55.140.134.119","desc":"Drug-induced chronic gout, right ankle and foot"},
{"id":718,"first_name":"Gerri","last_name":"Garahan","email":"[email protected]","gender":"Female","ip_address":"169.110.169.229","desc":"Complete lesion of cervical spinal cord"},
{"id":719,"first_name":"Thoma","last_name":"Easey","email":"[email protected]","gender":"Male","ip_address":"24.67.178.221","desc":"Burns of other specified parts of left eye and adnexa, subsequent encounter"},
{"id":720,"first_name":"Lawry","last_name":"De Benedetti","email":"[email protected]","gender":"Male","ip_address":"207.213.181.207","desc":"Poisoning by chloramphenicol group, assault, initial encounter"},
{"id":721,"first_name":"Halley","last_name":"Sisse","email":"[email protected]","gender":"Female","ip_address":"95.54.190.101","desc":"Cerebral infarction due to embolism of unspecified cerebellar artery"},
{"id":722,"first_name":"Alix","last_name":"Cully","email":"[email protected]","gender":"Male","ip_address":"7.60.146.99","desc":"Influenza due to unidentified influenza virus with other manifestations"},
{"id":723,"first_name":"Killy","last_name":"Bryson","email":"[email protected]","gender":"Male","ip_address":"35.92.85.210","desc":"Subluxation and dislocation of T1/T2 thoracic vertebra"},
{"id":724,"first_name":"Greggory","last_name":"Brisley","email":"[email protected]","gender":"Male","ip_address":"148.212.7.240","desc":"Macular keratitis, bilateral"},
{"id":725,"first_name":"Ashley","last_name":"Spurgeon","email":"[email protected]","gender":"Female","ip_address":"254.163.208.166","desc":"Nondisplaced other extraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with malunion"},
{"id":726,"first_name":"Eveleen","last_name":"Klaussen","email":"[email protected]","gender":"Female","ip_address":"87.199.215.61","desc":"Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere"},
{"id":727,"first_name":"Taber","last_name":"Abrahamowitcz","email":"[email protected]","gender":"Male","ip_address":"143.144.31.76","desc":"Laceration with foreign body, right thigh, initial encounter"},
{"id":728,"first_name":"Berty","last_name":"Adkins","email":"[email protected]","gender":"Agender","ip_address":"26.158.139.124","desc":"Insect bite (nonvenomous) of unspecified forearm"},
{"id":729,"first_name":"Frederique","last_name":"Aberchirder","email":"[email protected]","gender":"Female","ip_address":"10.249.57.217","desc":"Nondisplaced supracondylar fracture with intracondylar extension of lower end of unspecified femur, subsequent encounter for closed fracture with delayed healing"},
{"id":730,"first_name":"Benedikta","last_name":"Skipworth","email":"[email protected]","gender":"Female","ip_address":"197.70.208.87","desc":"Encounter for examination and observation for other reasons"},
{"id":731,"first_name":"Jose","last_name":"Fyfe","email":"[email protected]","gender":"Male","ip_address":"243.224.163.141","desc":"Laceration without foreign body of other specified part of neck, subsequent encounter"},
{"id":732,"first_name":"Bradly","last_name":"Meneghi","email":"[email protected]","gender":"Male","ip_address":"213.177.100.44","desc":"Unspecified subluxation of unspecified shoulder joint, sequela"},
{"id":733,"first_name":"Forbes","last_name":"Cumberledge","email":"[email protected]","gender":"Male","ip_address":"69.148.162.108","desc":"Unspecified superficial injury of left lower leg, sequela"},
{"id":734,"first_name":"Danielle","last_name":"Toulson","email":"[email protected]","gender":"Female","ip_address":"0.163.220.157","desc":"Unspecified open-angle glaucoma, indeterminate stage"},
{"id":735,"first_name":"Annadiana","last_name":"Dellit","email":"[email protected]","gender":"Female","ip_address":"203.50.152.33","desc":"Peripheral corneal degeneration, bilateral"},
{"id":736,"first_name":"Paolina","last_name":"Spieght","email":"[email protected]","gender":"Female","ip_address":"85.170.8.143","desc":"Obstetric and gynecological devices associated with adverse incidents"},
{"id":737,"first_name":"Myrta","last_name":"Moulster","email":"[email protected]","gender":"Female","ip_address":"55.223.160.179","desc":"Body mass index (BMI) 24.0-24.9, adult"},
{"id":738,"first_name":"Charla","last_name":"Childes","email":"[email protected]","gender":"Female","ip_address":"50.64.153.161","desc":"Acute pulmonary coccidioidomycosis"},
{"id":739,"first_name":"Albie","last_name":"Raittie","email":"[email protected]","gender":"Male","ip_address":"243.180.62.29","desc":"Localized swelling, mass and lump, right upper limb"},
{"id":740,"first_name":"Norri","last_name":"Rawlin","email":"[email protected]","gender":"Female","ip_address":"216.215.141.244","desc":"Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion"},
{"id":741,"first_name":"Sissy","last_name":"Milliere","email":"[email protected]","gender":"Female","ip_address":"2.112.137.32","desc":"Type 1 diabetes mellitus with diabetic neuropathy, unspecified"},
{"id":742,"first_name":"Alyse","last_name":"Rosendahl","email":"[email protected]","gender":"Polygender","ip_address":"94.51.156.62","desc":"Chronic gout due to renal impairment, unspecified ankle and foot"},
{"id":743,"first_name":"Elysha","last_name":"Hawgood","email":"[email protected]","gender":"Female","ip_address":"122.125.80.226","desc":"Other enterovirus as the cause of diseases classified elsewhere"},
{"id":744,"first_name":"Bartholemy","last_name":"Handrick","email":"[email protected]","gender":"Male","ip_address":"155.107.146.104","desc":"Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter"},
{"id":745,"first_name":"Morganica","last_name":"Bourley","email":"[email protected]","gender":"Female","ip_address":"181.58.36.40","desc":"Traumatic compartment syndrome of left lower extremity, initial encounter"},
{"id":746,"first_name":"Lynsey","last_name":"Bullent","email":"[email protected]","gender":"Female","ip_address":"159.253.117.7","desc":"Toxic effect of unspecified spider venom, intentional self-harm"},
{"id":747,"first_name":"Boony","last_name":"Moyser","email":"[email protected]","gender":"Male","ip_address":"43.221.238.37","desc":"Contusion of right knee, subsequent encounter"},
{"id":748,"first_name":"Roderic","last_name":"Cocci","email":"[email protected]","gender":"Male","ip_address":"240.115.13.173","desc":"Salter-Harris Type I physeal fracture of phalanx of unspecified toe"},
{"id":749,"first_name":"Nonie","last_name":"Kirtland","email":"[email protected]","gender":"Female","ip_address":"239.47.37.140","desc":"Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela"},
{"id":750,"first_name":"Jourdain","last_name":"Kmietsch","email":"[email protected]","gender":"Agender","ip_address":"118.104.50.151","desc":"Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter"},
{"id":751,"first_name":"Yurik","last_name":"Attenburrow","email":"[email protected]","gender":"Male","ip_address":"84.241.131.230","desc":"Strain of muscle and tendon of long extensor muscle of toe at ankle and foot level, unspecified foot"},
{"id":752,"first_name":"Darda","last_name":"Kenworth","email":"[email protected]","gender":"Agender","ip_address":"99.141.26.194","desc":"Atherosclerotic heart disease of native coronary artery without angina pectoris"},
{"id":753,"first_name":"Georgena","last_name":"Fuggle","email":"[email protected]","gender":"Polygender","ip_address":"110.84.221.38","desc":"Toxic effect of venom of bees, undetermined"},
{"id":754,"first_name":"Genevieve","last_name":"Filippov","email":"[email protected]","gender":"Female","ip_address":"219.16.251.227","desc":"Pedestrian on foot injured in collision with heavy transport vehicle or bus in traffic accident, sequela"},
{"id":755,"first_name":"Ailsun","last_name":"Tortis","email":"[email protected]","gender":"Female","ip_address":"121.255.90.202","desc":"Ventricular premature depolarization"},
{"id":756,"first_name":"Menard","last_name":"Gettings","email":"[email protected]","gender":"Male","ip_address":"195.73.180.130","desc":"Contact with sword or dagger, undetermined intent, sequela"},
{"id":757,"first_name":"Lanie","last_name":"Feron","email":"[email protected]","gender":"Male","ip_address":"50.148.204.156","desc":"Displaced bimalleolar fracture of unspecified lower leg, sequela"},
{"id":758,"first_name":"Kelly","last_name":"McPike","email":"[email protected]","gender":"Genderfluid","ip_address":"72.84.226.100","desc":"Burn of first degree of multiple sites of unspecified ankle and foot, initial encounter"},
{"id":759,"first_name":"Jillane","last_name":"Phettis","email":"[email protected]","gender":"Female","ip_address":"107.220.11.184","desc":"Eczematous dermatitis of left eye, unspecified eyelid"},
{"id":760,"first_name":"Zackariah","last_name":"Butterley","email":"[email protected]","gender":"Male","ip_address":"243.163.131.105","desc":"Low weight gain in pregnancy, second trimester"},
{"id":761,"first_name":"Nial","last_name":"Taaffe","email":"[email protected]","gender":"Male","ip_address":"39.8.47.59","desc":"Contact with and (suspected) exposure to potentially hazardous body fluids"},
{"id":762,"first_name":"Sanderson","last_name":"Clurow","email":"[email protected]","gender":"Male","ip_address":"214.130.187.239","desc":"Toxic effect of manganese and its compounds"},
{"id":763,"first_name":"Turner","last_name":"Skirving","email":"[email protected]","gender":"Male","ip_address":"85.230.12.235","desc":"Traumatic compartment syndrome of lower extremity"},
{"id":764,"first_name":"Petronilla","last_name":"De Bernardis","email":"[email protected]","gender":"Female","ip_address":"26.32.27.158","desc":"Underdosing of methadone, initial encounter"},
{"id":765,"first_name":"Wright","last_name":"Larrad","email":"[email protected]","gender":"Male","ip_address":"172.77.106.14","desc":"Bitten by alligator, initial encounter"},
{"id":766,"first_name":"Gordie","last_name":"Dilrew","email":"[email protected]","gender":"Male","ip_address":"209.36.146.133","desc":"Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion"},
{"id":767,"first_name":"Meier","last_name":"Aguirre","email":"[email protected]","gender":"Male","ip_address":"58.77.156.2","desc":"Lead-induced chronic gout, shoulder"},
{"id":768,"first_name":"Siffre","last_name":"Degoey","email":"[email protected]","gender":"Male","ip_address":"48.61.133.222","desc":"Burn due to localized fire on board unspecified watercraft, subsequent encounter"},
{"id":769,"first_name":"Bili","last_name":"Rivallant","email":"[email protected]","gender":"Female","ip_address":"86.122.118.209","desc":"Burn of second degree of right knee, sequela"},
{"id":770,"first_name":"Raimundo","last_name":"Grinston","email":"[email protected]","gender":"Male","ip_address":"173.128.255.98","desc":"Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye"},
{"id":771,"first_name":"Cleve","last_name":"Cowpertwait","email":"[email protected]","gender":"Male","ip_address":"96.110.220.182","desc":"Other injury of muscle, fascia and tendon of other parts of biceps, left arm"},
{"id":772,"first_name":"Candi","last_name":"Carruthers","email":"[email protected]","gender":"Female","ip_address":"106.175.109.163","desc":"Fracture of symphysis of mandible, initial encounter for closed fracture"},
{"id":773,"first_name":"Laraine","last_name":"Gutcher","email":"[email protected]","gender":"Female","ip_address":"20.221.169.129","desc":"Pulmonary histoplasmosis capsulati, unspecified"},
{"id":774,"first_name":"Daffy","last_name":"Abramin","email":"[email protected]","gender":"Female","ip_address":"177.245.173.240","desc":"Stiffness of right ankle, not elsewhere classified"},
{"id":775,"first_name":"Dorry","last_name":"Sealeaf","email":"[email protected]","gender":"Female","ip_address":"205.124.56.195","desc":"Retinopathy of prematurity, stage 4"},
{"id":776,"first_name":"Trix","last_name":"Chicotti","email":"[email protected]","gender":"Female","ip_address":"40.171.136.26","desc":"Disorders of calcium metabolism"},
{"id":777,"first_name":"Pauletta","last_name":"Louys","email":"[email protected]","gender":"Female","ip_address":"43.33.162.72","desc":"Complete traumatic amputation of unspecified ear"},
{"id":778,"first_name":"Mikey","last_name":"Thormwell","email":"[email protected]","gender":"Male","ip_address":"18.54.55.69","desc":"Other superficial bite of scrotum and testes, initial encounter"},
{"id":779,"first_name":"Marcellus","last_name":"Espley","email":"[email protected]","gender":"Male","ip_address":"98.143.45.160","desc":"Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing"},
{"id":780,"first_name":"Talbot","last_name":"Patis","email":"[email protected]","gender":"Male","ip_address":"228.158.241.137","desc":"Poisoning by antivaricose drugs, including sclerosing agents, accidental (unintentional), sequela"},
{"id":781,"first_name":"Sileas","last_name":"Andrassy","email":"[email protected]","gender":"Female","ip_address":"79.69.142.40","desc":"Burn of third degree of right axilla"},
{"id":782,"first_name":"Irene","last_name":"McCarver","email":"[email protected]","gender":"Female","ip_address":"184.32.161.154","desc":"Puncture wound without foreign body of unspecified external genital organs, female, subsequent encounter"},
{"id":783,"first_name":"Marcia","last_name":"Blowin","email":"[email protected]","gender":"Female","ip_address":"233.220.79.9","desc":"Underdosing of other nonsteroidal anti-inflammatory drugs [NSAID], subsequent encounter"},
{"id":784,"first_name":"Vernice","last_name":"Gration","email":"[email protected]","gender":"Female","ip_address":"112.117.29.111","desc":"Personal history of malignant neoplasm of liver"},
{"id":785,"first_name":"Lucilia","last_name":"Veschambes","email":"[email protected]","gender":"Female","ip_address":"160.118.51.152","desc":"Corrosion of first degree of neck, sequela"},
{"id":786,"first_name":"Gwenora","last_name":"Allflatt","email":"[email protected]","gender":"Female","ip_address":"254.251.255.44","desc":"Laceration of fallopian tube, unilateral, subsequent encounter"},
{"id":787,"first_name":"Perl","last_name":"Habbes","email":"[email protected]","gender":"Female","ip_address":"104.170.244.67","desc":"Breakdown (mechanical) of cystostomy catheter, subsequent encounter"},
{"id":788,"first_name":"Jamal","last_name":"Ambroziak","email":"[email protected]","gender":"Non-binary","ip_address":"148.54.96.22","desc":"Nondisplaced transverse fracture of shaft of unspecified tibia, subsequent encounter for open fracture type I or II with malunion"},
{"id":789,"first_name":"Catriona","last_name":"O'Kuddyhy","email":"[email protected]","gender":"Female","ip_address":"164.198.113.208","desc":"Sprain of metacarpophalangeal joint of other finger, initial encounter"},
{"id":790,"first_name":"Lia","last_name":"Shyram","email":"[email protected]","gender":"Female","ip_address":"108.20.38.147","desc":"Other superficial bite of breast, unspecified breast, sequela"},
{"id":791,"first_name":"Jaimie","last_name":"Baulk","email":"[email protected]","gender":"Female","ip_address":"237.156.148.1","desc":"Toxic effect of tetrachloroethylene, intentional self-harm"},
{"id":792,"first_name":"Bonnee","last_name":"Anfossi","email":"[email protected]","gender":"Female","ip_address":"67.211.236.189","desc":"Salter-Harris Type IV physeal fracture of unspecified calcaneus, sequela"},
{"id":793,"first_name":"Gil","last_name":"Avis","email":"[email protected]","gender":"Male","ip_address":"247.23.4.19","desc":"Toxic effect of thallium, undetermined, sequela"},
{"id":794,"first_name":"Kordula","last_name":"Reedshaw","email":"[email protected]","gender":"Female","ip_address":"180.196.14.34","desc":"Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing"},
{"id":795,"first_name":"Larina","last_name":"Falconer","email":"[email protected]","gender":"Female","ip_address":"130.229.114.15","desc":"Military operations involving combat using blunt or piercing object, civilian, sequela"},
{"id":796,"first_name":"Verile","last_name":"Malpas","email":"[email protected]","gender":"Female","ip_address":"103.62.149.159","desc":"Nondisplaced segmental fracture of shaft of right femur, subsequent encounter for closed fracture with nonunion"},
{"id":797,"first_name":"Katya","last_name":"Merveille","email":"[email protected]","gender":"Genderqueer","ip_address":"157.146.144.197","desc":"Corrosion of second degree of right palm, subsequent encounter"},
{"id":798,"first_name":"Ettie","last_name":"Quennell","email":"[email protected]","gender":"Female","ip_address":"131.123.186.244","desc":"Salter-Harris Type I physeal fracture of upper end of left tibia, subsequent encounter for fracture with malunion"},
{"id":799,"first_name":"Alameda","last_name":"Poznan","email":"[email protected]","gender":"Bigender","ip_address":"77.2.43.89","desc":"Other complications of anesthesia, subsequent encounter"},
{"id":800,"first_name":"Eugenius","last_name":"Maydway","email":"[email protected]","gender":"Male","ip_address":"89.38.136.97","desc":"Military operations involving biological weapons, military personnel"},
{"id":801,"first_name":"Jackqueline","last_name":"Szepe","email":"[email protected]","gender":"Female","ip_address":"19.2.78.37","desc":"Laceration of extensor muscle, fascia and tendon of left ring finger at wrist and hand level, initial encounter"},
{"id":802,"first_name":"Astra","last_name":"Hubatsch","email":"[email protected]","gender":"Female","ip_address":"207.229.133.222","desc":"Superficial foreign body of unspecified shoulder"},
{"id":803,"first_name":"Benn","last_name":"Bairnsfather","email":"[email protected]","gender":"Male","ip_address":"50.8.82.126","desc":"Embolism and thrombosis of arteries of the upper extremities"},
{"id":804,"first_name":"Greer","last_name":"Cufflin","email":"[email protected]","gender":"Genderqueer","ip_address":"79.254.105.215","desc":"Postdysenteric arthropathy, left hand"},
{"id":805,"first_name":"Augustine","last_name":"Bouzan","email":"[email protected]","gender":"Male","ip_address":"196.198.14.193","desc":"Toxic effect of dichloromethane, assault, subsequent encounter"},
{"id":806,"first_name":"Jocelin","last_name":"Bilbie","email":"[email protected]","gender":"Female","ip_address":"142.203.54.143","desc":"Traumatic rupture of palmar ligament of right little finger at metacarpophalangeal and interphalangeal joint, subsequent encounter"},
{"id":807,"first_name":"Carmella","last_name":"Laurentino","email":"[email protected]","gender":"Female","ip_address":"14.21.31.62","desc":"Unspecified nephritic syndrome with diffuse membranous glomerulonephritis"},
{"id":808,"first_name":"Justis","last_name":"Kubyszek","email":"[email protected]","gender":"Male","ip_address":"20.115.254.51","desc":"Dislocation of metacarpophalangeal joint of right little finger, initial encounter"},
{"id":809,"first_name":"Tait","last_name":"Shimwell","email":"[email protected]","gender":"Male","ip_address":"111.254.162.244","desc":"Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing"},
{"id":810,"first_name":"Garrik","last_name":"Thame","email":"[email protected]","gender":"Male","ip_address":"233.64.141.220","desc":"Unspecified fracture of upper end of left ulna, sequela"},
{"id":811,"first_name":"Nathanial","last_name":"Dartnall","email":"[email protected]","gender":"Male","ip_address":"232.42.108.154","desc":"Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing"},
{"id":812,"first_name":"Lorenzo","last_name":"Blowing","email":"[email protected]","gender":"Male","ip_address":"7.70.201.58","desc":"Unspecified subluxation of unspecified shoulder joint, sequela"},
{"id":813,"first_name":"Humbert","last_name":"Marmion","email":"[email protected]","gender":"Male","ip_address":"178.175.95.231","desc":"Crushed between merchant ship and other watercraft or other object due to collision, subsequent encounter"},
{"id":814,"first_name":"Willabella","last_name":"Clingan","email":"[email protected]","gender":"Female","ip_address":"9.111.80.159","desc":"Unspecified injury of other muscle(s) and tendon(s) at lower leg level, unspecified leg, initial encounter"},
{"id":815,"first_name":"Chilton","last_name":"Cadden","email":"[email protected]","gender":"Male","ip_address":"57.56.15.66","desc":"Complete lesion of L5 level of lumbar spinal cord"},
{"id":816,"first_name":"Brook","last_name":"Cousans","email":"[email protected]","gender":"Male","ip_address":"162.56.89.110","desc":"Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with routine healing"},
{"id":817,"first_name":"Raine","last_name":"Broxis","email":"[email protected]","gender":"Female","ip_address":"148.150.242.182","desc":"Contracture of muscle, left ankle and foot"},
{"id":818,"first_name":"Hollie","last_name":"Lokier","email":"[email protected]","gender":"Agender","ip_address":"110.28.171.147","desc":"Crushing injury of unspecified elbow"},
{"id":819,"first_name":"Kattie","last_name":"Fisk","email":"[email protected]","gender":"Bigender","ip_address":"210.185.2.182","desc":"War operations involving biological weapons, military personnel, subsequent encounter"},
{"id":820,"first_name":"Cletis","last_name":"McKnish","email":"[email protected]","gender":"Male","ip_address":"41.240.179.183","desc":"Nondisplaced comminuted fracture of shaft of unspecified femur, subsequent encounter for open fracture type I or II with nonunion"},
{"id":821,"first_name":"Scotty","last_name":"Solley","email":"[email protected]","gender":"Male","ip_address":"35.194.44.169","desc":"Unspecified occupant of snowmobile injured in traffic accident, initial encounter"},
{"id":822,"first_name":"Cedric","last_name":"Peeters","email":"[email protected]","gender":"Male","ip_address":"239.237.5.235","desc":"Chronic embolism and thrombosis of other specified deep vein of left lower extremity"},
{"id":823,"first_name":"Alfonse","last_name":"Gettings","email":"[email protected]","gender":"Male","ip_address":"245.142.125.177","desc":"Unspecified occupant of pick-up truck or van injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, initial encounter"},
{"id":824,"first_name":"Herb","last_name":"Flavelle","email":"[email protected]","gender":"Polygender","ip_address":"100.194.37.96","desc":"Central cord syndrome at C4 level of cervical spinal cord, sequela"},
{"id":825,"first_name":"Lorene","last_name":"Coleridge","email":"[email protected]","gender":"Female","ip_address":"4.240.231.195","desc":"Unspecified superficial injury of left middle finger"},
{"id":826,"first_name":"Randell","last_name":"Bentote","email":"[email protected]","gender":"Male","ip_address":"96.162.75.221","desc":"Salter-Harris Type III physeal fracture of phalanx of left toe, subsequent encounter for fracture with malunion"},
{"id":827,"first_name":"Ted","last_name":"Lovett","email":"[email protected]","gender":"Male","ip_address":"187.94.76.210","desc":"Contact with nonvenomous lizards"},
{"id":828,"first_name":"Aubert","last_name":"McGann","email":"[email protected]","gender":"Male","ip_address":"206.243.73.135","desc":"Person on outside of pick-up truck or van injured in noncollision transport accident in traffic accident, subsequent encounter"},
{"id":829,"first_name":"Gianina","last_name":"Gutridge","email":"[email protected]","gender":"Female","ip_address":"100.136.242.70","desc":"External constriction of part of breast, left breast, initial encounter"},
{"id":830,"first_name":"Ardeen","last_name":"Cowoppe","email":"[email protected]","gender":"Female","ip_address":"14.232.107.97","desc":"Corrosion of third degree of neck, initial encounter"},
{"id":831,"first_name":"Rhianna","last_name":"Ranson","email":"[email protected]","gender":"Non-binary","ip_address":"245.136.81.57","desc":"Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion"},
{"id":832,"first_name":"Mitch","last_name":"McClaurie","email":"[email protected]","gender":"Male","ip_address":"45.8.240.33","desc":"Episodic cluster headache"},
{"id":833,"first_name":"Tommi","last_name":"Knipe","email":"[email protected]","gender":"Female","ip_address":"25.109.178.109","desc":"Partial traumatic metacarpophalangeal amputation of other finger, initial encounter"},
{"id":834,"first_name":"Jemie","last_name":"Pioch","email":"[email protected]","gender":"Genderqueer","ip_address":"95.188.163.188","desc":"Family history of disorders of kidney and ureter"},
{"id":835,"first_name":"Mahalia","last_name":"Truluck","email":"[email protected]","gender":"Female","ip_address":"140.173.27.139","desc":"Fall into other water striking wall causing drowning and submersion"},
{"id":836,"first_name":"Margarette","last_name":"Clousley","email":"[email protected]","gender":"Female","ip_address":"37.118.197.239","desc":"Other dislocation of left wrist and hand"},
{"id":837,"first_name":"Colver","last_name":"Stopp","email":"[email protected]","gender":"Male","ip_address":"21.246.154.4","desc":"Nontraumatic ischemic infarction of muscle, unspecified ankle and foot"},
{"id":838,"first_name":"Edmon","last_name":"Aitcheson","email":"[email protected]","gender":"Male","ip_address":"70.58.141.43","desc":"Generalized skin eruption due to drugs and medicaments taken internally"},
{"id":839,"first_name":"Lacey","last_name":"Selwyn","email":"[email protected]","gender":"Female","ip_address":"177.128.236.27","desc":"Laceration with foreign body of unspecified great toe without damage to nail, initial encounter"},
{"id":840,"first_name":"Jerry","last_name":"Cooling","email":"[email protected]","gender":"Genderqueer","ip_address":"45.56.181.110","desc":"Unspecified injury of unspecified muscles, fascia and tendons at thigh level, left thigh"},
{"id":841,"first_name":"Loni","last_name":"Espinoza","email":"[email protected]","gender":"Non-binary","ip_address":"74.243.43.110","desc":"Tyrosinemia"},
{"id":842,"first_name":"Von","last_name":"Masurel","email":"[email protected]","gender":"Male","ip_address":"44.240.127.207","desc":"Unspecified fracture of shaft of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion"},
{"id":843,"first_name":"Concordia","last_name":"Brandrick","email":"[email protected]","gender":"Female","ip_address":"225.176.126.52","desc":"Fracture of unspecified part of body of left mandible, initial encounter for closed fracture"},
{"id":844,"first_name":"Hillier","last_name":"Ahren","email":"[email protected]","gender":"Male","ip_address":"74.92.158.101","desc":"Nondisplaced fracture of shaft of fifth metacarpal bone, right hand, subsequent encounter for fracture with nonunion"},
{"id":845,"first_name":"Reginauld","last_name":"Karpov","email":"[email protected]","gender":"Male","ip_address":"109.171.211.36","desc":"Aural vertigo, bilateral"},
{"id":846,"first_name":"Kile","last_name":"Hintze","email":"[email protected]","gender":"Male","ip_address":"45.230.108.149","desc":"Puncture wound with foreign body of unspecified great toe with damage to nail, subsequent encounter"},
{"id":847,"first_name":"Elisabetta","last_name":"Dupre","email":"[email protected]","gender":"Female","ip_address":"196.253.81.41","desc":"Pedal cycle passenger injured in noncollision transport accident in nontraffic accident"},
{"id":848,"first_name":"Barnebas","last_name":"Cameli","email":"[email protected]","gender":"Male","ip_address":"220.165.250.144","desc":"Displaced longitudinal fracture of unspecified patella, subsequent encounter for closed fracture with routine healing"},
{"id":849,"first_name":"Rosalie","last_name":"Alessandretti","email":"[email protected]","gender":"Female","ip_address":"93.204.252.199","desc":"Acute gingivitis"},
{"id":850,"first_name":"Quillan","last_name":"Devennie","email":"[email protected]","gender":"Polygender","ip_address":"180.68.211.15","desc":"Injury of radial nerve at upper arm level, unspecified arm"},
{"id":851,"first_name":"Rebeka","last_name":"Dybell","email":"[email protected]","gender":"Female","ip_address":"96.64.95.143","desc":"Hairy leukoplakia"},
{"id":852,"first_name":"Tarrance","last_name":"Wayne","email":"[email protected]","gender":"Male","ip_address":"66.146.254.74","desc":"Villonodular synovitis (pigmented), left wrist"},
{"id":853,"first_name":"Othelia","last_name":"Bulfoy","email":"[email protected]","gender":"Female","ip_address":"45.37.153.159","desc":"Passenger in three-wheeled motor vehicle injured in collision with unspecified motor vehicles in traffic accident, subsequent encounter"},
{"id":854,"first_name":"Ardelis","last_name":"Bing","email":"[email protected]","gender":"Female","ip_address":"190.107.184.147","desc":"Breakdown (mechanical) of internal fixation device of right femur"},
{"id":855,"first_name":"Rici","last_name":"Audritt","email":"[email protected]","gender":"Female","ip_address":"133.143.96.76","desc":"Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity"},
{"id":856,"first_name":"Oralia","last_name":"Gatheral","email":"[email protected]","gender":"Female","ip_address":"200.122.214.115","desc":"Displaced intraarticular fracture of unspecified calcaneus, subsequent encounter for fracture with nonunion"},
{"id":857,"first_name":"Myranda","last_name":"Baigent","email":"[email protected]","gender":"Non-binary","ip_address":"122.133.144.249","desc":"Cerebral infarction due to embolism of left carotid artery"},
{"id":858,"first_name":"Theo","last_name":"Giacubo","email":"[email protected]","gender":"Male","ip_address":"71.222.235.21","desc":"Other fracture of right lower leg, subsequent encounter for open fracture type I or II with routine healing"},
{"id":859,"first_name":"Josy","last_name":"Tape","email":"[email protected]","gender":"Female","ip_address":"113.71.87.28","desc":"Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy"},
{"id":860,"first_name":"Cletus","last_name":"Fishleigh","email":"[email protected]","gender":"Male","ip_address":"160.147.253.224","desc":"Unspecified injury of intrinsic muscle, fascia and tendon of right thumb at wrist and hand level, sequela"},
{"id":861,"first_name":"Tudor","last_name":"Gallear","email":"[email protected]","gender":"Male","ip_address":"49.97.176.222","desc":"Nondisplaced unspecified condyle fracture of lower end of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing"},
{"id":862,"first_name":"Henka","last_name":"Rawls","email":"[email protected]","gender":"Female","ip_address":"138.200.175.25","desc":"Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester"},
{"id":863,"first_name":"Deeanne","last_name":"Dexter","email":"[email protected]","gender":"Female","ip_address":"35.12.225.47","desc":"Burn of first degree of left lower leg, initial encounter"},
{"id":864,"first_name":"Salome","last_name":"Swepstone","email":"[email protected]","gender":"Female","ip_address":"93.251.166.191","desc":"Unspecified dislocation of unspecified foot, subsequent encounter"},
{"id":865,"first_name":"Lombard","last_name":"Bytheway","email":"[email protected]","gender":"Polygender","ip_address":"166.202.172.117","desc":"Toxic reaction to local anesthesia during the puerperium"},
{"id":866,"first_name":"Nicolas","last_name":"McChruiter","email":"[email protected]","gender":"Male","ip_address":"20.231.84.124","desc":"Fall on board other unpowered watercraft, initial encounter"},
{"id":867,"first_name":"Nahum","last_name":"Cawthry","email":"[email protected]","gender":"Male","ip_address":"79.197.198.65","desc":"Unspecified fracture of the lower end of left radius"},
{"id":868,"first_name":"Mureil","last_name":"Mankor","email":"[email protected]","gender":"Female","ip_address":"247.158.237.215","desc":"Mycosis fungoides, spleen"},
{"id":869,"first_name":"Alysia","last_name":"Polden","email":"[email protected]","gender":"Female","ip_address":"30.12.229.94","desc":"Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester"},
{"id":870,"first_name":"Janeen","last_name":"Blanchette","email":"[email protected]","gender":"Female","ip_address":"167.86.92.229","desc":"Underdosing of chloramphenicol group, sequela"},
{"id":871,"first_name":"Kimble","last_name":"Phayre","email":"[email protected]","gender":"Male","ip_address":"255.91.84.25","desc":"Recurrent dislocation, wrist"},
{"id":872,"first_name":"Ashlin","last_name":"Burgoin","email":"[email protected]","gender":"Male","ip_address":"79.109.57.78","desc":"Partial traumatic amputation of scrotum and testis, subsequent encounter"},
{"id":873,"first_name":"Nil","last_name":"Bamling","email":"[email protected]","gender":"Male","ip_address":"214.63.26.107","desc":"Spontaneous rupture of flexor tendons, multiple sites"},
{"id":874,"first_name":"Debbie","last_name":"Millmore","email":"[email protected]","gender":"Polygender","ip_address":"26.225.185.96","desc":"Displaced unspecified fracture of right lesser toe(s), subsequent encounter for fracture with nonunion"},
{"id":875,"first_name":"Peggi","last_name":"Essel","email":"[email protected]","gender":"Female","ip_address":"235.104.65.46","desc":"Displaced fracture of lower epiphysis (separation) of right femur, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion"},
{"id":876,"first_name":"Paule","last_name":"Carus","email":"[email protected]","gender":"Female","ip_address":"104.128.216.127","desc":"Displacement of other ocular prosthetic devices, implants and grafts, sequela"},
{"id":877,"first_name":"Reyna","last_name":"Mertel","email":"[email protected]","gender":"Female","ip_address":"97.78.113.102","desc":"Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing"},
{"id":878,"first_name":"Marius","last_name":"Broxholme","email":"[email protected]","gender":"Male","ip_address":"159.114.107.62","desc":"Merkel cell carcinoma of scalp and neck"},
{"id":879,"first_name":"Pall","last_name":"Reveland","email":"[email protected]","gender":"Male","ip_address":"254.98.61.104","desc":"Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing"},
{"id":880,"first_name":"Allegra","last_name":"Kennelly","email":"[email protected]","gender":"Female","ip_address":"248.246.120.28","desc":"Type 1 diabetes mellitus with other skin ulcer"},
{"id":881,"first_name":"Lief","last_name":"Guillford","email":"[email protected]","gender":"Male","ip_address":"36.126.63.162","desc":"Sequelae of central nervous system tuberculosis"},
{"id":882,"first_name":"Ewell","last_name":"Kenningley","email":"[email protected]","gender":"Male","ip_address":"151.198.214.33","desc":"Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing"},
{"id":883,"first_name":"Joelynn","last_name":"Hoyer","email":"[email protected]","gender":"Genderqueer","ip_address":"227.143.230.38","desc":"Subacute osteomyelitis, right radius and ulna"},
{"id":884,"first_name":"Otto","last_name":"Enrrico","email":"[email protected]","gender":"Male","ip_address":"82.221.86.60","desc":"Meconium ileus in cystic fibrosis"},
{"id":885,"first_name":"Hanna","last_name":"Staterfield","email":"[email protected]","gender":"Female","ip_address":"185.156.109.163","desc":"Complication of surgical and medical care, unspecified, subsequent encounter"},
{"id":886,"first_name":"Meryl","last_name":"Leggitt","email":"[email protected]","gender":"Male","ip_address":"165.175.118.246","desc":"Nondisplaced fracture of distal phalanx of left little finger, initial encounter for closed fracture"},
{"id":887,"first_name":"Vincenz","last_name":"Heaselgrave","email":"[email protected]","gender":"Male","ip_address":"169.191.209.213","desc":"Unspecified cause of accidental drowning and submersion, sequela"},
{"id":888,"first_name":"Renee","last_name":"Foad","email":"[email protected]","gender":"Female","ip_address":"123.155.136.73","desc":"Adverse effect of hemostatic drug, sequela"},
{"id":889,"first_name":"Haze","last_name":"Gravells","email":"[email protected]","gender":"Male","ip_address":"245.59.204.145","desc":"Poisoning by antipruritics, undetermined, sequela"},
{"id":890,"first_name":"Georgy","last_name":"Tomich","email":"[email protected]","gender":"Male","ip_address":"131.242.27.144","desc":"Pauciarticular juvenile rheumatoid arthritis, left knee"},
{"id":891,"first_name":"Flin","last_name":"Eldritt","email":"[email protected]","gender":"Male","ip_address":"231.54.231.173","desc":"Corrosion of second degree of unspecified scapular region, sequela"},
{"id":892,"first_name":"Kalie","last_name":"Scorton","email":"[email protected]","gender":"Female","ip_address":"17.152.201.242","desc":"Poisoning by other agents primarily affecting the cardiovascular system, accidental (unintentional), subsequent encounter"},
{"id":893,"first_name":"Iggie","last_name":"Kynoch","email":"[email protected]","gender":"Male","ip_address":"143.168.246.124","desc":"Crushing injury of unspecified foot"},
{"id":894,"first_name":"Gwenneth","last_name":"MacCleay","email":"[email protected]","gender":"Female","ip_address":"84.198.105.116","desc":"Arthritis due to other bacteria, left knee"},
{"id":895,"first_name":"Olga","last_name":"Durden","email":"[email protected]","gender":"Female","ip_address":"199.193.3.176","desc":"Injury of medial plantar nerve, left leg, sequela"},
{"id":896,"first_name":"Carleton","last_name":"Farrimond","email":"[email protected]","gender":"Male","ip_address":"168.99.45.50","desc":"Subluxation of metacarpophalangeal joint of right ring finger, sequela"},
{"id":897,"first_name":"Sawyer","last_name":"Pickrill","email":"[email protected]","gender":"Male","ip_address":"7.254.103.146","desc":"Sympathetic uveitis, left eye"},
{"id":898,"first_name":"Karole","last_name":"Butrimovich","email":"[email protected]","gender":"Female","ip_address":"207.149.28.220","desc":"Poisoning by salicylates, assault, initial encounter"},
{"id":899,"first_name":"Alia","last_name":"Slessar","email":"[email protected]","gender":"Female","ip_address":"21.237.133.84","desc":"Poisoning by dental drugs, topically applied, undetermined, initial encounter"},
{"id":900,"first_name":"Valentine","last_name":"Dowyer","email":"[email protected]","gender":"Male","ip_address":"125.30.148.207","desc":"Infections of breast associated with pregnancy, the puerperium and lactation"},
{"id":901,"first_name":"Rana","last_name":"Aggas","email":"[email protected]","gender":"Female","ip_address":"30.159.205.50","desc":"Other fracture of occiput, right side, subsequent encounter for fracture with nonunion"},
{"id":902,"first_name":"Franklyn","last_name":"Goch","email":"[email protected]","gender":"Male","ip_address":"114.47.75.69","desc":"Bucket-handle tear of lateral meniscus, current injury, unspecified knee, sequela"},
{"id":903,"first_name":"Darcy","last_name":"Cluley","email":"[email protected]","gender":"Female","ip_address":"17.199.113.160","desc":"Calcium deposit in bursa, left knee"},
{"id":904,"first_name":"Lenore","last_name":"McCory","email":"[email protected]","gender":"Female","ip_address":"124.3.231.24","desc":"Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum"},
{"id":905,"first_name":"Ofilia","last_name":"Erangey","email":"[email protected]","gender":"Female","ip_address":"124.123.126.91","desc":"Unspecified injury of other specified intrathoracic organs, subsequent encounter"},
{"id":906,"first_name":"Katherine","last_name":"Rickersy","email":"[email protected]","gender":"Female","ip_address":"6.230.73.65","desc":"Position dependent micturition"},
{"id":907,"first_name":"Leighton","last_name":"Carling","email":"[email protected]","gender":"Polygender","ip_address":"99.219.5.65","desc":"Legal intervention involving unspecified sharp objects, bystander injured, subsequent encounter"},
{"id":908,"first_name":"Nikolos","last_name":"McCahey","email":"[email protected]","gender":"Male","ip_address":"171.165.49.149","desc":"Unspecified sprain of elbow"},
{"id":909,"first_name":"Sayer","last_name":"Bloxham","email":"[email protected]","gender":"Male","ip_address":"166.188.85.218","desc":"Unspecified fracture of lower end of right tibia, initial encounter for open fracture type I or II"},
{"id":910,"first_name":"Ruthanne","last_name":"Gapper","email":"[email protected]","gender":"Female","ip_address":"92.68.213.185","desc":"Smith's fracture of unspecified radius, initial encounter for closed fracture"},
{"id":911,"first_name":"Ediva","last_name":"Ordemann","email":"[email protected]","gender":"Female","ip_address":"222.217.236.238","desc":"Other specified injury of other blood vessels at hip and thigh level, unspecified leg, sequela"},
{"id":912,"first_name":"Lewiss","last_name":"St. Quentin","email":"[email protected]","gender":"Male","ip_address":"207.221.255.103","desc":"Polyarthritis due to other bacteria"},
{"id":913,"first_name":"Dougie","last_name":"Brighouse","email":"[email protected]","gender":"Male","ip_address":"180.19.93.174","desc":"Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain"},
{"id":914,"first_name":"Katti","last_name":"Gahan","email":"[email protected]","gender":"Female","ip_address":"164.79.86.236","desc":"Other specified bursopathies, unspecified hand"},
{"id":915,"first_name":"Lexi","last_name":"Keaton","email":"[email protected]","gender":"Female","ip_address":"104.149.169.106","desc":"Displacement of unspecified cardiac and vascular devices and implants, sequela"},
{"id":916,"first_name":"Brunhilde","last_name":"Garnar","email":"[email protected]","gender":"Genderfluid","ip_address":"192.5.29.219","desc":"Injury of unspecified nerve at forearm level, right arm, subsequent encounter"},
{"id":917,"first_name":"Karol","last_name":"Carrack","email":"[email protected]","gender":"Female","ip_address":"165.77.61.247","desc":"Malignant neoplasm of unspecified site of left eye"},
{"id":918,"first_name":"Lyssa","last_name":"Ruperti","email":"[email protected]","gender":"Female","ip_address":"170.115.254.211","desc":"Corrosion of third degree of unspecified multiple fingers (nail), including thumb, sequela"},
{"id":919,"first_name":"Kendell","last_name":"Tregidga","email":"[email protected]","gender":"Male","ip_address":"213.145.124.57","desc":"Nondisplaced spiral fracture of shaft of left tibia, subsequent encounter for closed fracture with routine healing"},
{"id":920,"first_name":"Karlik","last_name":"Metcalfe","email":"[email protected]","gender":"Genderqueer","ip_address":"137.66.215.169","desc":"Unspecified occupant of special construction vehicle injured in traffic accident, subsequent encounter"},
{"id":921,"first_name":"Darda","last_name":"Robart","email":"[email protected]","gender":"Female","ip_address":"202.191.140.227","desc":"Rheumatoid arthritis with rheumatoid factor of wrist without organ or systems involvement"},
{"id":922,"first_name":"Gunner","last_name":"Bortoloni","email":"[email protected]","gender":"Male","ip_address":"149.160.184.224","desc":"Toxic effect of venom of other African and Asian snake, assault, sequela"},
{"id":923,"first_name":"Perceval","last_name":"O'Luney","email":"[email protected]","gender":"Male","ip_address":"26.112.1.134","desc":"Unspecified superficial injuries of right back wall of thorax"},
{"id":924,"first_name":"Kimberley","last_name":"Kinnane","email":"[email protected]","gender":"Female","ip_address":"64.182.149.84","desc":"Injury of other nerves at abdomen, lower back and pelvis level, sequela"},
{"id":925,"first_name":"Charlotta","last_name":"Moores","email":"[email protected]","gender":"Polygender","ip_address":"141.153.60.44","desc":"Occipital encephalocele"},
{"id":926,"first_name":"Renard","last_name":"Poytheras","email":"[email protected]","gender":"Male","ip_address":"89.128.146.220","desc":"Military operations involving destruction of aircraft due to accidental detonation of onboard munitions and explosives, civilian"},
{"id":927,"first_name":"Bobine","last_name":"Geekie","email":"[email protected]","gender":"Female","ip_address":"154.191.223.100","desc":"Burn of second degree of multiple right fingers (nail), not including thumb, subsequent encounter"},
{"id":928,"first_name":"Ilysa","last_name":"Lerven","email":"[email protected]","gender":"Female","ip_address":"68.135.29.151","desc":"Underdosing of enzymes, initial encounter"},
{"id":929,"first_name":"Christalle","last_name":"Brasseur","email":"[email protected]","gender":"Female","ip_address":"227.32.26.134","desc":"Unspecified injury of radial artery at forearm level, left arm, initial encounter"},
{"id":930,"first_name":"Nilson","last_name":"Peetermann","email":"[email protected]","gender":"Male","ip_address":"171.165.148.145","desc":"Unspecified fracture of shaft of humerus, left arm"},
{"id":931,"first_name":"Dallon","last_name":"Daniel","email":"[email protected]","gender":"Male","ip_address":"67.75.100.236","desc":"Puncture wound without foreign body of unspecified lesser toe(s) with damage to nail, subsequent encounter"},
{"id":932,"first_name":"William","last_name":"McShee","email":"[email protected]","gender":"Male","ip_address":"217.159.200.36","desc":"Other specified diseases of esophagus"},
{"id":933,"first_name":"Wilfrid","last_name":"Pykett","email":"[email protected]","gender":"Male","ip_address":"146.144.229.208","desc":"Fracture of subcondylar process of right mandible"},
{"id":934,"first_name":"Tam","last_name":"Arkin","email":"[email protected]","gender":"Male","ip_address":"89.206.108.156","desc":"Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye"},
{"id":935,"first_name":"Gabriell","last_name":"Esby","email":"[email protected]","gender":"Female","ip_address":"114.13.232.198","desc":"Unspecified fracture of unspecified talus, initial encounter for open fracture"},
{"id":936,"first_name":"Emlen","last_name":"Gartenfeld","email":"[email protected]","gender":"Male","ip_address":"52.249.26.177","desc":"Neuromyelitis optica [Devic]"},
{"id":937,"first_name":"Cindra","last_name":"Blincoe","email":"[email protected]","gender":"Female","ip_address":"127.180.35.34","desc":"Broken internal left hip prosthesis"},
{"id":938,"first_name":"Jack","last_name":"Colliar","email":"[email protected]","gender":"Male","ip_address":"41.41.29.204","desc":"Open bite of unspecified external genital organs, female, initial encounter"},
{"id":939,"first_name":"Chip","last_name":"Kneeshaw","email":"[email protected]","gender":"Male","ip_address":"191.102.66.101","desc":"Unspecified pedal cyclist injured in collision with two- or three-wheeled motor vehicle in nontraffic accident, sequela"},
{"id":940,"first_name":"Cristi","last_name":"Cheley","email":"[email protected]","gender":"Female","ip_address":"227.123.245.23","desc":"Corrosion of second degree of ankle"},
{"id":941,"first_name":"Leah","last_name":"Malamore","email":"[email protected]","gender":"Female","ip_address":"41.194.4.57","desc":"Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion"},
{"id":942,"first_name":"Gary","last_name":"Thornhill","email":"[email protected]","gender":"Male","ip_address":"142.102.169.233","desc":"Other physeal fracture of lower end of radius, right arm, sequela"},
{"id":943,"first_name":"Felicle","last_name":"Orhtmann","email":"[email protected]","gender":"Female","ip_address":"124.83.246.199","desc":"Unspecified occupant of dune buggy injured in nontraffic accident, sequela"},
{"id":944,"first_name":"Gardner","last_name":"Wrassell","email":"[email protected]","gender":"Male","ip_address":"65.187.148.124","desc":"Burn of second degree of lip(s)"},
{"id":945,"first_name":"Cora","last_name":"Gloster","email":"[email protected]","gender":"Female","ip_address":"26.175.100.24","desc":"Crushing injury of right index finger, sequela"},
{"id":946,"first_name":"Marie-ann","last_name":"Bowerman","email":"[email protected]","gender":"Female","ip_address":"28.41.69.110","desc":"Disorders of other visual pathways"},
{"id":947,"first_name":"Hadley","last_name":"Hollyer","email":"[email protected]","gender":"Male","ip_address":"127.14.134.167","desc":"Unspecified mastoiditis, right ear"},
{"id":948,"first_name":"Claire","last_name":"Ruffell","email":"[email protected]","gender":"Male","ip_address":"126.195.29.34","desc":"Other foreign object in trachea causing other injury, initial encounter"},
{"id":949,"first_name":"Zebedee","last_name":"Farfalameev","email":"[email protected]","gender":"Male","ip_address":"186.96.214.130","desc":"Postdysenteric arthropathy, left elbow"},
{"id":950,"first_name":"Ezmeralda","last_name":"Hurlin","email":"[email protected]","gender":"Female","ip_address":"129.123.22.202","desc":"Other sprain of unspecified thumb"},
{"id":951,"first_name":"Eolanda","last_name":"Bosward","email":"[email protected]","gender":"Female","ip_address":"138.17.63.137","desc":"Unspecified disorder of tympanic membrane, left ear"},
{"id":952,"first_name":"Pedro","last_name":"Defew","email":"[email protected]","gender":"Male","ip_address":"240.154.90.213","desc":"Postprocedural hemorrhage of ear and mastoid process following a procedure"},
{"id":953,"first_name":"Sydney","last_name":"Valerius","email":"[email protected]","gender":"Female","ip_address":"186.12.50.33","desc":"Toxic effect of fusel oil, accidental (unintentional), subsequent encounter"},
{"id":954,"first_name":"Jeni","last_name":"MacGarrity","email":"[email protected]","gender":"Female","ip_address":"92.157.67.219","desc":"Strain of muscle, fascia and tendon of unspecified hip, sequela"},
{"id":955,"first_name":"Ali","last_name":"Malling","email":"[email protected]","gender":"Female","ip_address":"62.117.226.53","desc":"Paranoid schizophrenia"},
{"id":956,"first_name":"Nealy","last_name":"Bethune","email":"[email protected]","gender":"Male","ip_address":"211.37.200.237","desc":"Corrosion of third degree of right elbow, initial encounter"},
{"id":957,"first_name":"Nataline","last_name":"Manford","email":"[email protected]","gender":"Female","ip_address":"8.180.73.212","desc":"Other specified injury of brachial artery, unspecified side, initial encounter"},
{"id":958,"first_name":"Mamie","last_name":"Henningham","email":"[email protected]","gender":"Female","ip_address":"194.188.30.190","desc":"Toxic effect of other mycotoxin food contaminants, undetermined, sequela"},
{"id":959,"first_name":"Claus","last_name":"Herety","email":"[email protected]","gender":"Male","ip_address":"43.127.226.193","desc":"Poisoning by pertussis vaccine, including combinations with a pertussis component, undetermined, subsequent encounter"},
{"id":960,"first_name":"Charlena","last_name":"Haisell","email":"[email protected]","gender":"Female","ip_address":"188.147.32.52","desc":"Burn of unspecified degree of multiple sites of right wrist and hand, initial encounter"},
{"id":961,"first_name":"Wilfred","last_name":"Grishagin","email":"[email protected]","gender":"Male","ip_address":"104.160.245.151","desc":"Fibrous dysplasia (monostotic), ankle and foot"},
{"id":962,"first_name":"Cly","last_name":"Bruckental","email":"[email protected]","gender":"Male","ip_address":"90.37.205.70","desc":"Displaced fracture of third metatarsal bone, left foot, subsequent encounter for fracture with malunion"},
{"id":963,"first_name":"Olivette","last_name":"Andryszczak","email":"[email protected]","gender":"Female","ip_address":"214.95.134.152","desc":"Conjunctival granuloma, right eye"},
{"id":964,"first_name":"Beverie","last_name":"Abell","email":"[email protected]","gender":"Female","ip_address":"76.211.82.170","desc":"Chronic angle-closure glaucoma, left eye"},
{"id":965,"first_name":"Eliot","last_name":"Hoyt","email":"[email protected]","gender":"Male","ip_address":"209.35.44.7","desc":"Nondisplaced fracture of left tibial spine, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion"},
{"id":966,"first_name":"Chrotoem","last_name":"Gaspar","email":"[email protected]","gender":"Male","ip_address":"203.8.104.163","desc":"Poisoning by diagnostic agents, intentional self-harm, initial encounter"},
{"id":967,"first_name":"Tanny","last_name":"Jandera","email":"[email protected]","gender":"Male","ip_address":"58.21.221.16","desc":"Other specified epidermal thickening"},
{"id":968,"first_name":"Genni","last_name":"Hagger","email":"[email protected]","gender":"Female","ip_address":"237.79.4.184","desc":"Displacement of internal fixation device of other bones, sequela"},
{"id":969,"first_name":"Barri","last_name":"Sarath","email":"[email protected]","gender":"Male","ip_address":"181.35.44.219","desc":"Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter"},
{"id":970,"first_name":"Sayers","last_name":"Caccavari","email":"[email protected]","gender":"Male","ip_address":"175.25.123.132","desc":"Nondisplaced fracture of body of right talus, subsequent encounter for fracture with routine healing"},
{"id":971,"first_name":"Chance","last_name":"Visco","email":"[email protected]","gender":"Male","ip_address":"234.166.31.137","desc":"Pulsating exophthalmos, unspecified eye"},
{"id":972,"first_name":"Idalia","last_name":"Kohler","email":"[email protected]","gender":"Female","ip_address":"57.30.102.142","desc":"Periprosthetic osteolysis of other internal prosthetic joint, subsequent encounter"},
{"id":973,"first_name":"Tina","last_name":"Raynes","email":"[email protected]","gender":"Non-binary","ip_address":"150.180.75.20","desc":"Displaced osteochondral fracture of left patella, subsequent encounter for closed fracture with malunion"},
{"id":974,"first_name":"Reidar","last_name":"Floyde","email":"[email protected]","gender":"Male","ip_address":"83.241.2.77","desc":"Nondisplaced fracture of proximal phalanx of right little finger"},
{"id":975,"first_name":"Cathe","last_name":"Arrighi","email":"[email protected]","gender":"Female","ip_address":"215.184.107.207","desc":"Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion"},
{"id":976,"first_name":"Yank","last_name":"Gianullo","email":"[email protected]","gender":"Bigender","ip_address":"238.194.174.27","desc":"Twin pregnancy, monochorionic/diamniotic"},
{"id":977,"first_name":"Germaine","last_name":"Petracco","email":"[email protected]","gender":"Male","ip_address":"211.253.80.62","desc":"Other localized visual field defect"},
{"id":978,"first_name":"Esteban","last_name":"Haccleton","email":"[email protected]","gender":"Male","ip_address":"157.208.155.90","desc":"Calcific tendinitis of right shoulder"},
{"id":979,"first_name":"Jacquie","last_name":"Scotchmur","email":"[email protected]","gender":"Female","ip_address":"142.209.183.225","desc":"Corrosion of third degree of multiple left fingers (nail), including thumb, sequela"},
{"id":980,"first_name":"Corilla","last_name":"Tomes","email":"[email protected]","gender":"Female","ip_address":"174.5.172.245","desc":"Nondisplaced comminuted fracture of shaft of left femur, subsequent encounter for closed fracture with nonunion"},
{"id":981,"first_name":"Aguie","last_name":"Breckwell","email":"[email protected]","gender":"Male","ip_address":"178.14.177.40","desc":"Open bite of shoulder"},
{"id":982,"first_name":"Katrina","last_name":"Adams","email":"[email protected]","gender":"Female","ip_address":"202.35.231.175","desc":"Sarcoid myocarditis"},
{"id":983,"first_name":"Dylan","last_name":"Pedro","email":"[email protected]","gender":"Male","ip_address":"36.175.2.189","desc":"Acute lymphangitis of neck"},
{"id":984,"first_name":"Pattie","last_name":"Curnnokk","email":"[email protected]","gender":"Female","ip_address":"95.130.168.230","desc":"Paracoccidioidomycosis, unspecified"},
{"id":985,"first_name":"Tiffany","last_name":"McCreary","email":"[email protected]","gender":"Female","ip_address":"27.2.55.209","desc":"Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing"},
{"id":986,"first_name":"Lorita","last_name":"Madden","email":"[email protected]","gender":"Female","ip_address":"197.246.221.167","desc":"Laceration of other muscles, fascia and tendons at shoulder and upper arm level"},
{"id":987,"first_name":"Glenn","last_name":"Bendon","email":"[email protected]","gender":"Female","ip_address":"113.39.150.108","desc":"Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing"},
{"id":988,"first_name":"Brett","last_name":"Hedworth","email":"[email protected]","gender":"Male","ip_address":"37.172.225.93","desc":"Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II"},
{"id":989,"first_name":"Moss","last_name":"Ciepluch","email":"[email protected]","gender":"Male","ip_address":"147.115.96.254","desc":"Nondisplaced transverse fracture of shaft of unspecified fibula, subsequent encounter for open fracture type I or II with delayed healing"},
{"id":990,"first_name":"Valle","last_name":"Doust","email":"[email protected]","gender":"Male","ip_address":"219.253.146.61","desc":"Unspecified trochanteric fracture of unspecified femur, subsequent encounter for open fracture type I or II with malunion"},
{"id":991,"first_name":"Theda","last_name":"Dunaway","email":"[email protected]","gender":"Female","ip_address":"249.6.167.72","desc":"Polyarthritis, unspecified"},
{"id":992,"first_name":"Magdalena","last_name":"Gilchriest","email":"[email protected]","gender":"Female","ip_address":"60.213.134.242","desc":"Dislocation of unspecified cervical vertebrae, sequela"},
{"id":993,"first_name":"Natividad","last_name":"Bernhardsson","email":"[email protected]","gender":"Female","ip_address":"93.126.109.75","desc":"Myeloid sarcoma, in remission"},
{"id":994,"first_name":"Bartlet","last_name":"Rosingdall","email":"[email protected]","gender":"Male","ip_address":"25.233.75.59","desc":"Toxic effect of rattlesnake venom"},
{"id":995,"first_name":"Loutitia","last_name":"Jentzsch","email":"[email protected]","gender":"Female","ip_address":"12.163.20.224","desc":"Wedge compression fracture of fifth lumbar vertebra"},
{"id":996,"first_name":"Mareah","last_name":"Habbergham","email":"[email protected]","gender":"Polygender","ip_address":"128.172.116.60","desc":"Person injured in collision between car and pick-up truck or van (traffic), sequela"},
{"id":997,"first_name":"Ware","last_name":"Connealy","email":"[email protected]","gender":"Male","ip_address":"104.169.140.93","desc":"Unspecified injury of other muscle(s) and tendon(s) of posterior muscle group at lower leg level, unspecified leg"},
{"id":998,"first_name":"Camel","last_name":"Silcocks","email":"[email protected]","gender":"Female","ip_address":"0.221.8.96","desc":"Carcinoma in situ of bladder"},
{"id":999,"first_name":"Hall","last_name":"Keats","email":"[email protected]","gender":"Male","ip_address":"44.247.99.99","desc":"Sequelae of other cerebrovascular diseases"},
{"id":1000,"first_name":"Antonio","last_name":"Grzelczak","email":"[email protected]","gender":"Male","ip_address":"65.109.172.130","desc":"Contact with unspecified agricultural machinery, subsequent encounter"}]