-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdditional_Patients.txt
1000 lines (1000 loc) · 37.6 KB
/
Additional_Patients.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
P1001, 13, F, O+, 2022-11-29, Flu
P1002, 46, F, O+, 2021-11-01, Asthma
P1003, 9, M, B+, 2022-04-19, Fracture
P1004, 48, F, O-, 2021-05-11, Diabetes
P1005, 18, M, O+, 2022-05-17, COVID-19
P1006, 26, F, AB+, 2023-01-12, COVID-19
P1007, 89, F, B+, 2022-08-27, Anxiety
P1008, 15, M, A-, 2021-06-23, Asthma
P1009, 78, F, A+, 2023-01-08, Diabetes
P1010, 39, F, A+, 2021-08-11, Anxiety
P1011, 97, M, O-, 2021-08-03, COVID-19
P1012, 95, M, B-, 2022-08-24, Fracture
P1013, 19, M, B-, 2022-07-16, COVID-19
P1014, 34, F, AB+, 2021-05-08, Allergy
P1015, 29, F, A+, 2022-06-16, Diabetes
P1016, 28, F, O-, 2022-10-06, Fracture
P1017, 48, F, B-, 2021-10-24, Hypertension
P1018, 18, M, A-, 2022-06-09, Fracture
P1019, 31, F, O-, 2021-08-11, Asthma
P1020, 88, M, O-, 2022-05-17, Flu
P1021, 74, M, B+, 2022-05-09, Diabetes
P1022, 13, F, O-, 2022-02-22, Asthma
P1023, 10, M, B-, 2021-07-22, Hypertension
P1024, 54, F, A-, 2022-07-24, Diabetes
P1025, 59, M, AB-, 2023-01-26, COVID-19
P1026, 86, M, B+, 2023-03-03, Anxiety
P1027, 1, F, B+, 2022-09-17, Anxiety
P1028, 67, F, AB-, 2022-02-14, Hypertension
P1029, 68, F, A-, 2022-03-11, Anxiety
P1030, 4, F, A-, 2022-07-16, Asthma
P1031, 50, M, O+, 2022-08-28, Fracture
P1032, 87, F, O+, 2022-11-04, Allergy
P1033, 83, F, AB-, 2022-01-01, Flu
P1034, 44, F, A-, 2022-12-15, Asthma
P1035, 49, M, A-, 2021-04-27, COVID-19
P1036, 60, F, A+, 2023-03-10, Fracture
P1037, 63, F, O+, 2021-06-17, Flu
P1038, 61, F, O-, 2021-11-08, Anxiety
P1039, 54, F, AB-, 2023-03-17, Hypertension
P1040, 74, M, O+, 2023-01-13, Flu
P1041, 15, F, B+, 2021-12-20, COVID-19
P1042, 42, M, A-, 2022-11-29, COVID-19
P1043, 7, F, AB+, 2022-02-26, Fracture
P1044, 20, F, AB-, 2022-12-11, Flu
P1045, 26, F, O-, 2022-02-08, Fracture
P1046, 82, M, AB-, 2022-01-24, Flu
P1047, 81, F, AB-, 2021-07-17, COVID-19
P1048, 92, F, B+, 2022-05-09, Fracture
P1049, 25, M, O+, 2022-09-26, Flu
P1050, 80, F, AB-, 2022-03-06, Fracture
P1051, 46, M, AB-, 2022-12-31, Allergy
P1052, 75, F, AB+, 2021-11-12, Flu
P1053, 85, M, B+, 2021-11-24, Asthma
P1054, 67, M, O-, 2021-05-26, Anxiety
P1055, 60, M, B-, 2022-10-01, Fracture
P1056, 15, M, AB+, 2023-03-08, Diabetes
P1057, 95, F, B+, 2023-03-04, COVID-19
P1058, 35, F, A-, 2022-01-30, Flu
P1059, 33, F, AB-, 2022-01-17, Hypertension
P1060, 1, F, A-, 2022-10-03, Anxiety
P1061, 31, F, A-, 2021-12-23, Diabetes
P1062, 13, M, AB+, 2022-11-22, Allergy
P1063, 83, M, A+, 2022-07-19, COVID-19
P1064, 13, M, O-, 2021-07-22, Asthma
P1065, 56, M, O+, 2022-04-08, Asthma
P1066, 24, F, O-, 2022-01-15, Asthma
P1067, 23, F, AB+, 2023-04-03, Asthma
P1068, 85, F, A+, 2021-11-06, Hypertension
P1069, 42, M, AB+, 2022-02-08, COVID-19
P1070, 68, M, AB-, 2022-03-29, Flu
P1071, 83, F, O-, 2022-05-24, Flu
P1072, 27, F, A-, 2021-12-23, Flu
P1073, 29, M, A-, 2021-06-27, Allergy
P1074, 62, F, A+, 2022-10-13, Fracture
P1075, 48, M, A+, 2022-01-10, COVID-19
P1076, 97, F, B-, 2022-08-09, Asthma
P1077, 51, M, B-, 2021-04-25, Diabetes
P1078, 93, M, O+, 2021-07-08, Diabetes
P1079, 19, F, B+, 2021-08-27, Hypertension
P1080, 99, F, B-, 2023-03-05, Allergy
P1081, 65, F, O-, 2022-12-08, COVID-19
P1082, 67, M, AB-, 2021-07-22, Allergy
P1083, 73, F, A+, 2021-06-24, Asthma
P1084, 59, M, AB+, 2023-02-16, COVID-19
P1085, 23, M, B+, 2021-07-16, Anxiety
P1086, 25, F, A-, 2022-12-04, Hypertension
P1087, 22, F, O-, 2023-04-04, Diabetes
P1088, 70, F, AB-, 2022-01-25, Anxiety
P1089, 4, M, AB-, 2022-03-17, Flu
P1090, 36, F, AB-, 2022-02-01, Anxiety
P1091, 79, F, O-, 2021-09-14, COVID-19
P1092, 67, M, AB-, 2021-12-04, Flu
P1093, 90, M, A+, 2022-04-10, Anxiety
P1094, 62, M, B+, 2022-12-06, COVID-19
P1095, 9, F, A+, 2023-04-17, COVID-19
P1096, 92, M, O-, 2021-07-18, Anxiety
P1097, 10, F, O-, 2022-09-28, Flu
P1098, 74, F, A-, 2022-05-03, Anxiety
P1099, 32, M, A+, 2022-12-29, Fracture
P1100, 8, M, A+, 2022-04-02, COVID-19
P1101, 81, M, A+, 2022-11-27, Hypertension
P1102, 99, M, AB+, 2021-06-10, Hypertension
P1103, 77, M, O+, 2023-04-01, Diabetes
P1104, 56, F, O+, 2021-08-03, Hypertension
P1105, 54, M, AB+, 2021-05-20, COVID-19
P1106, 50, F, O-, 2022-10-30, Allergy
P1107, 47, M, A-, 2021-06-08, Hypertension
P1108, 71, M, A+, 2022-11-28, Allergy
P1109, 18, M, O-, 2021-12-01, Fracture
P1110, 73, M, AB+, 2022-06-05, Fracture
P1111, 30, M, O+, 2022-09-16, Hypertension
P1112, 45, F, B+, 2022-05-08, Fracture
P1113, 12, M, B+, 2022-09-13, Fracture
P1114, 88, F, O+, 2021-10-12, Allergy
P1115, 37, F, A+, 2022-07-29, Allergy
P1116, 69, F, B-, 2023-03-11, Diabetes
P1117, 82, M, O+, 2021-12-15, Allergy
P1118, 95, M, A-, 2022-09-07, Fracture
P1119, 37, F, O-, 2021-09-04, Allergy
P1120, 8, M, B-, 2021-09-14, Asthma
P1121, 1, M, AB-, 2021-05-01, Anxiety
P1122, 69, F, O+, 2021-08-12, Anxiety
P1123, 86, F, AB+, 2022-10-27, Diabetes
P1124, 13, M, O-, 2022-02-18, Fracture
P1125, 25, F, O-, 2021-08-21, COVID-19
P1126, 58, M, AB-, 2021-04-29, Fracture
P1127, 62, M, B-, 2021-04-30, COVID-19
P1128, 64, M, B-, 2022-01-08, Flu
P1129, 54, M, O-, 2023-01-17, Hypertension
P1130, 74, F, AB-, 2022-07-09, Anxiety
P1131, 38, F, B+, 2022-01-15, Flu
P1132, 67, M, AB-, 2021-09-07, Allergy
P1133, 22, M, B+, 2021-04-30, Flu
P1134, 63, M, AB-, 2022-10-15, Flu
P1135, 3, M, O+, 2023-02-04, Allergy
P1136, 26, M, AB-, 2023-03-02, Anxiety
P1137, 23, M, A+, 2022-04-03, Flu
P1138, 46, F, AB+, 2021-07-28, Anxiety
P1139, 52, F, A+, 2023-03-31, Anxiety
P1140, 88, F, O-, 2023-04-18, Diabetes
P1141, 73, M, A+, 2022-12-15, Flu
P1142, 47, M, O+, 2023-04-12, Asthma
P1143, 66, M, O-, 2022-10-26, Diabetes
P1144, 17, M, O-, 2022-10-01, Allergy
P1145, 97, M, AB-, 2022-06-08, Diabetes
P1146, 79, F, O+, 2023-01-11, Asthma
P1147, 16, F, O+, 2022-02-07, Flu
P1148, 61, F, O-, 2021-09-22, Hypertension
P1149, 6, M, B+, 2021-06-30, Hypertension
P1150, 51, M, A+, 2021-12-11, Flu
P1151, 28, M, B-, 2022-07-12, Asthma
P1152, 61, F, A-, 2023-04-11, Hypertension
P1153, 34, M, A+, 2021-11-14, Asthma
P1154, 64, F, O-, 2021-10-05, Fracture
P1155, 33, M, B-, 2021-07-04, COVID-19
P1156, 42, F, B+, 2021-12-24, Fracture
P1157, 64, M, O+, 2022-02-25, Diabetes
P1158, 90, M, A+, 2021-10-04, Anxiety
P1159, 55, F, O-, 2023-01-08, Anxiety
P1160, 66, M, AB-, 2022-11-07, Asthma
P1161, 92, F, O+, 2022-03-08, Asthma
P1162, 5, M, A-, 2022-12-31, Fracture
P1163, 21, M, A-, 2021-07-07, Asthma
P1164, 52, F, O+, 2022-01-22, Hypertension
P1165, 29, F, AB+, 2021-10-06, Hypertension
P1166, 88, F, A-, 2021-05-29, Anxiety
P1167, 97, M, AB-, 2021-11-09, Anxiety
P1168, 30, F, A-, 2021-04-30, Fracture
P1169, 45, F, AB+, 2021-11-09, Hypertension
P1170, 27, F, B-, 2022-09-27, Allergy
P1171, 89, M, AB+, 2022-05-21, Flu
P1172, 41, M, O-, 2021-11-19, Fracture
P1173, 42, M, O+, 2022-04-27, Flu
P1174, 75, M, A+, 2022-03-17, Allergy
P1175, 27, F, AB+, 2022-05-29, Flu
P1176, 24, F, A+, 2022-04-02, Fracture
P1177, 2, F, A+, 2021-10-24, Asthma
P1178, 42, F, A-, 2023-01-11, Flu
P1179, 5, M, AB+, 2023-01-17, Hypertension
P1180, 34, M, A+, 2022-04-20, Anxiety
P1181, 33, M, AB+, 2022-03-03, Allergy
P1182, 96, F, O-, 2022-03-24, Asthma
P1183, 28, F, B+, 2022-02-23, COVID-19
P1184, 27, M, A-, 2021-12-06, Anxiety
P1185, 98, M, O-, 2022-01-24, Diabetes
P1186, 36, M, A+, 2022-05-15, Fracture
P1187, 37, F, AB+, 2023-03-31, COVID-19
P1188, 69, F, B-, 2021-06-08, COVID-19
P1189, 68, F, AB+, 2022-09-03, Diabetes
P1190, 41, M, O-, 2022-03-10, Allergy
P1191, 16, M, AB-, 2022-02-08, COVID-19
P1192, 71, F, A+, 2021-12-19, Fracture
P1193, 29, F, B-, 2022-11-11, Fracture
P1194, 41, F, B-, 2022-04-30, Asthma
P1195, 56, M, AB+, 2022-06-11, Hypertension
P1196, 67, M, O+, 2022-06-23, Fracture
P1197, 68, F, AB-, 2022-06-28, Allergy
P1198, 45, F, B+, 2022-04-14, COVID-19
P1199, 31, M, B+, 2023-01-11, Hypertension
P1200, 38, F, AB+, 2022-11-04, Fracture
P1201, 81, F, B+, 2022-04-01, Asthma
P1202, 17, M, A-, 2021-04-23, COVID-19
P1203, 32, F, B+, 2021-08-14, Anxiety
P1204, 23, F, B-, 2021-11-23, Fracture
P1205, 16, F, O+, 2022-11-29, COVID-19
P1206, 39, M, O+, 2022-10-07, Diabetes
P1207, 37, F, O-, 2022-03-26, COVID-19
P1208, 62, F, B+, 2023-01-23, Allergy
P1209, 97, M, B+, 2022-05-05, Asthma
P1210, 100, M, A+, 2022-12-10, Allergy
P1211, 30, F, O+, 2021-12-09, Asthma
P1212, 42, M, O-, 2022-08-25, COVID-19
P1213, 76, M, O-, 2022-12-03, Asthma
P1214, 48, M, AB-, 2021-12-06, COVID-19
P1215, 70, F, B-, 2021-07-20, Diabetes
P1216, 64, M, AB+, 2022-01-18, Allergy
P1217, 37, M, AB-, 2022-07-03, Flu
P1218, 22, M, B+, 2022-11-26, Asthma
P1219, 87, F, B-, 2022-02-21, Asthma
P1220, 1, M, A+, 2022-09-03, Fracture
P1221, 52, F, AB-, 2022-05-23, Asthma
P1222, 34, M, B+, 2021-04-21, Asthma
P1223, 69, F, O-, 2022-01-01, Fracture
P1224, 32, F, O-, 2022-02-07, Allergy
P1225, 70, F, B+, 2022-08-06, Flu
P1226, 26, F, O-, 2022-10-07, Flu
P1227, 55, M, O+, 2022-02-25, Diabetes
P1228, 11, F, AB-, 2023-03-24, Flu
P1229, 57, M, B-, 2022-05-19, Allergy
P1230, 52, M, O+, 2021-07-06, Fracture
P1231, 52, M, B-, 2022-07-04, COVID-19
P1232, 99, F, O+, 2022-06-29, Anxiety
P1233, 100, F, A-, 2021-09-06, Diabetes
P1234, 61, F, A+, 2023-02-13, Allergy
P1235, 69, F, O-, 2023-01-24, Flu
P1236, 42, M, B-, 2023-02-24, Asthma
P1237, 11, F, AB-, 2023-02-26, Flu
P1238, 32, M, B-, 2023-04-07, Hypertension
P1239, 28, M, O+, 2021-10-26, Flu
P1240, 25, M, AB-, 2021-06-19, Flu
P1241, 23, M, B+, 2022-01-02, COVID-19
P1242, 17, M, O+, 2021-07-26, Allergy
P1243, 25, M, O+, 2022-09-05, Fracture
P1244, 51, M, A-, 2021-11-21, Hypertension
P1245, 71, M, AB+, 2021-10-10, Asthma
P1246, 70, F, AB-, 2023-02-28, Diabetes
P1247, 65, M, AB+, 2023-04-10, Flu
P1248, 96, F, AB-, 2021-07-29, Diabetes
P1249, 84, M, B-, 2022-04-04, Anxiety
P1250, 20, M, B+, 2021-09-29, COVID-19
P1251, 56, M, B+, 2021-12-22, Fracture
P1252, 83, M, O-, 2021-04-22, COVID-19
P1253, 95, M, A-, 2021-04-28, Fracture
P1254, 44, M, B-, 2021-11-16, Asthma
P1255, 63, M, A+, 2021-09-28, Allergy
P1256, 33, M, AB+, 2022-03-01, Hypertension
P1257, 44, F, A+, 2022-05-21, Flu
P1258, 24, F, A+, 2023-01-12, Diabetes
P1259, 91, M, B+, 2022-04-29, Anxiety
P1260, 74, M, B-, 2022-01-04, Hypertension
P1261, 5, F, B+, 2022-11-30, Fracture
P1262, 76, M, O+, 2022-10-02, Flu
P1263, 69, M, O+, 2021-10-14, Flu
P1264, 6, F, O-, 2022-12-03, Fracture
P1265, 50, M, AB+, 2023-01-26, Fracture
P1266, 39, M, B+, 2023-03-16, Diabetes
P1267, 51, M, A+, 2022-08-20, Anxiety
P1268, 22, M, A+, 2022-07-26, Anxiety
P1269, 7, M, A+, 2022-04-19, Fracture
P1270, 35, F, O-, 2023-04-18, Flu
P1271, 44, M, AB+, 2022-09-12, Diabetes
P1272, 83, M, O+, 2022-08-08, Anxiety
P1273, 26, F, B-, 2021-04-26, Fracture
P1274, 22, F, A-, 2022-12-27, Flu
P1275, 8, F, O+, 2022-09-03, Allergy
P1276, 80, F, O-, 2022-11-25, Diabetes
P1277, 32, M, AB-, 2021-12-06, Hypertension
P1278, 62, F, A-, 2022-11-29, Diabetes
P1279, 65, F, A+, 2021-04-20, COVID-19
P1280, 38, M, AB-, 2022-01-16, Hypertension
P1281, 84, F, A+, 2022-06-12, Asthma
P1282, 53, F, B+, 2021-09-06, Fracture
P1283, 77, M, O+, 2022-11-27, Diabetes
P1284, 28, F, O+, 2022-02-08, Diabetes
P1285, 17, M, O-, 2021-05-25, Anxiety
P1286, 60, M, B-, 2023-03-18, Allergy
P1287, 56, M, A+, 2022-10-07, Diabetes
P1288, 38, M, AB+, 2022-08-26, COVID-19
P1289, 95, M, B-, 2022-01-10, Asthma
P1290, 34, F, O-, 2022-07-09, Diabetes
P1291, 88, M, O-, 2022-08-17, Allergy
P1292, 10, M, AB-, 2022-06-20, Diabetes
P1293, 79, M, A+, 2022-07-31, Anxiety
P1294, 6, F, O+, 2022-09-08, Fracture
P1295, 65, M, AB-, 2022-08-18, Diabetes
P1296, 37, F, AB-, 2022-09-26, Anxiety
P1297, 92, M, AB-, 2021-06-18, Allergy
P1298, 30, M, A-, 2022-09-15, Anxiety
P1299, 84, F, B+, 2021-05-06, Allergy
P1300, 99, F, B+, 2023-02-05, Allergy
P1301, 20, M, AB-, 2022-07-04, Fracture
P1302, 18, M, A+, 2022-12-22, Hypertension
P1303, 6, F, B+, 2023-03-31, Asthma
P1304, 84, M, AB+, 2022-02-22, Anxiety
P1305, 44, F, B-, 2021-12-05, Diabetes
P1306, 96, M, AB-, 2022-03-09, Diabetes
P1307, 70, F, O-, 2021-10-17, Hypertension
P1308, 60, M, AB-, 2022-09-27, Allergy
P1309, 2, M, O-, 2023-01-14, Allergy
P1310, 99, M, A+, 2022-02-09, Allergy
P1311, 8, F, A+, 2022-08-27, Flu
P1312, 79, M, AB-, 2021-07-26, Asthma
P1313, 67, F, AB+, 2022-06-03, Flu
P1314, 54, F, A-, 2021-09-16, Diabetes
P1315, 82, M, A-, 2022-12-22, Anxiety
P1316, 57, F, AB-, 2021-11-14, Allergy
P1317, 29, F, O+, 2021-05-14, Fracture
P1318, 65, F, AB+, 2021-06-04, COVID-19
P1319, 33, F, A+, 2022-03-30, Anxiety
P1320, 32, M, A+, 2022-04-23, Anxiety
P1321, 75, F, O-, 2021-12-14, COVID-19
P1322, 42, F, A+, 2021-11-17, Hypertension
P1323, 48, M, A+, 2021-07-26, COVID-19
P1324, 69, F, O-, 2021-07-14, COVID-19
P1325, 26, M, O+, 2021-07-15, Flu
P1326, 31, F, A+, 2022-07-01, Asthma
P1327, 29, M, AB+, 2021-11-04, Flu
P1328, 42, M, B+, 2021-05-22, Flu
P1329, 72, M, B-, 2022-05-07, Diabetes
P1330, 27, F, B-, 2022-04-13, Anxiety
P1331, 72, M, A-, 2022-01-21, COVID-19
P1332, 42, F, A+, 2022-03-07, Anxiety
P1333, 60, F, B-, 2022-02-17, Flu
P1334, 90, M, O+, 2021-05-26, Flu
P1335, 54, M, B+, 2022-04-21, Hypertension
P1336, 43, M, A-, 2022-02-05, Allergy
P1337, 53, M, AB-, 2022-04-15, Hypertension
P1338, 87, F, B-, 2022-02-14, Diabetes
P1339, 85, M, AB+, 2023-03-22, Allergy
P1340, 96, M, B+, 2023-02-22, COVID-19
P1341, 12, M, A-, 2022-05-23, Hypertension
P1342, 70, M, O-, 2023-04-03, Allergy
P1343, 9, M, B+, 2022-11-25, COVID-19
P1344, 87, M, B-, 2022-11-04, Diabetes
P1345, 18, F, O-, 2021-11-28, COVID-19
P1346, 78, F, B+, 2023-03-03, Flu
P1347, 66, M, AB+, 2023-03-06, Flu
P1348, 73, M, B-, 2022-12-27, Flu
P1349, 25, M, A-, 2021-07-24, COVID-19
P1350, 61, F, A-, 2021-07-20, Allergy
P1351, 87, F, AB+, 2022-09-13, Anxiety
P1352, 7, M, O-, 2022-05-21, COVID-19
P1353, 59, M, B+, 2022-08-03, Allergy
P1354, 88, F, O+, 2021-08-11, Flu
P1355, 49, M, B-, 2022-09-19, Asthma
P1356, 36, M, AB-, 2021-06-28, Flu
P1357, 27, M, O-, 2023-01-12, Fracture
P1358, 62, M, O-, 2021-08-24, Diabetes
P1359, 14, F, O+, 2022-02-13, Allergy
P1360, 48, M, AB-, 2021-11-04, Flu
P1361, 35, F, O-, 2023-03-20, Hypertension
P1362, 81, F, A-, 2022-01-09, Flu
P1363, 86, F, B-, 2021-09-05, Hypertension
P1364, 49, M, O-, 2022-12-24, Anxiety
P1365, 87, M, A+, 2022-07-26, Hypertension
P1366, 58, F, B-, 2022-10-03, Fracture
P1367, 55, F, A+, 2023-03-18, COVID-19
P1368, 41, F, AB+, 2021-11-07, Hypertension
P1369, 13, M, O-, 2022-04-13, COVID-19
P1370, 58, F, A+, 2022-05-09, Fracture
P1371, 87, M, O-, 2022-05-18, Flu
P1372, 54, F, A-, 2021-04-22, Diabetes
P1373, 49, M, O+, 2022-01-07, COVID-19
P1374, 77, M, B+, 2021-10-24, Flu
P1375, 14, F, AB+, 2022-10-05, Anxiety
P1376, 20, F, AB-, 2023-03-13, Flu
P1377, 56, F, O-, 2022-12-20, Flu
P1378, 35, F, A-, 2021-11-05, Asthma
P1379, 78, M, B-, 2021-09-19, Hypertension
P1380, 58, M, AB-, 2021-07-31, Fracture
P1381, 30, M, O+, 2023-01-19, COVID-19
P1382, 64, M, A-, 2021-09-06, Anxiety
P1383, 99, F, AB-, 2021-09-22, Asthma
P1384, 69, M, A+, 2022-09-27, Asthma
P1385, 57, M, A-, 2021-09-30, Flu
P1386, 47, F, AB-, 2022-01-17, Diabetes
P1387, 16, M, A-, 2023-04-11, Diabetes
P1388, 11, M, O+, 2022-07-23, Fracture
P1389, 100, F, AB-, 2021-12-26, Hypertension
P1390, 53, F, A-, 2022-03-14, Allergy
P1391, 3, F, O-, 2021-11-05, Fracture
P1392, 69, M, O-, 2022-03-13, Diabetes
P1393, 61, M, A-, 2021-12-24, Flu
P1394, 97, M, B+, 2021-09-22, COVID-19
P1395, 92, M, AB-, 2021-05-05, Allergy
P1396, 66, F, B+, 2023-02-17, Asthma
P1397, 76, M, A-, 2022-05-17, Asthma
P1398, 69, F, A-, 2021-06-24, Flu
P1399, 18, M, B-, 2022-07-22, Diabetes
P1400, 31, M, A-, 2022-05-12, Flu
P1401, 39, F, O-, 2021-12-11, Diabetes
P1402, 52, M, B+, 2022-10-04, Anxiety
P1403, 72, F, B-, 2022-09-25, Allergy
P1404, 92, F, B+, 2023-01-04, Hypertension
P1405, 92, F, B+, 2022-11-07, COVID-19
P1406, 78, M, O-, 2022-05-26, Flu
P1407, 74, M, A-, 2023-02-21, Allergy
P1408, 49, F, B+, 2022-08-31, COVID-19
P1409, 73, F, B+, 2021-09-17, Flu
P1410, 32, M, AB-, 2022-03-11, Flu
P1411, 26, F, B-, 2022-10-06, COVID-19
P1412, 8, M, AB+, 2023-03-14, Flu
P1413, 85, M, AB+, 2022-03-23, Hypertension
P1414, 19, M, B+, 2022-10-02, Anxiety
P1415, 10, M, O+, 2022-12-28, Allergy
P1416, 95, M, A-, 2021-06-26, Diabetes
P1417, 12, F, A-, 2021-11-27, Anxiety
P1418, 38, M, AB-, 2022-05-16, Allergy
P1419, 21, M, B+, 2022-08-14, Fracture
P1420, 10, F, O-, 2021-10-07, Diabetes
P1421, 16, M, A+, 2022-05-28, Fracture
P1422, 53, F, O+, 2021-09-19, Allergy
P1423, 34, F, A-, 2022-01-29, Flu
P1424, 93, F, O-, 2022-05-03, Anxiety
P1425, 23, M, A+, 2021-08-05, Diabetes
P1426, 50, F, O+, 2022-12-20, Fracture
P1427, 31, F, A+, 2022-02-11, Anxiety
P1428, 51, F, A+, 2022-06-29, Diabetes
P1429, 1, M, AB+, 2022-06-04, COVID-19
P1430, 49, M, B+, 2021-05-28, Diabetes
P1431, 46, F, A+, 2021-07-02, Flu
P1432, 51, M, A-, 2022-03-18, Allergy
P1433, 80, F, B-, 2022-06-28, Allergy
P1434, 34, F, AB-, 2022-07-14, Anxiety
P1435, 26, M, B+, 2021-05-24, Diabetes
P1436, 12, F, O-, 2021-08-28, Diabetes
P1437, 22, F, A-, 2021-06-21, Asthma
P1438, 37, M, O-, 2021-11-08, Diabetes
P1439, 56, F, B+, 2022-05-14, Allergy
P1440, 32, F, A-, 2022-08-22, Hypertension
P1441, 17, F, A+, 2022-09-19, Anxiety
P1442, 65, F, AB-, 2021-11-06, Diabetes
P1443, 1, F, B-, 2021-07-21, COVID-19
P1444, 41, F, B-, 2022-02-28, Allergy
P1445, 14, F, B-, 2022-12-22, Hypertension
P1446, 82, F, B+, 2022-04-15, Anxiety
P1447, 90, M, O+, 2022-06-07, Flu
P1448, 85, M, AB+, 2023-03-04, COVID-19
P1449, 48, M, AB+, 2022-11-26, Flu
P1450, 6, F, AB-, 2022-05-25, COVID-19
P1451, 19, M, AB-, 2022-03-02, Allergy
P1452, 74, F, A-, 2022-05-28, Asthma
P1453, 86, F, A+, 2022-04-05, Fracture
P1454, 16, M, O-, 2022-08-10, Hypertension
P1455, 87, M, A-, 2021-10-21, COVID-19
P1456, 7, F, A+, 2021-07-17, Fracture
P1457, 63, F, A+, 2021-07-01, Fracture
P1458, 43, F, B+, 2022-04-29, Diabetes
P1459, 67, F, AB-, 2022-10-14, Allergy
P1460, 38, F, AB-, 2021-10-14, Flu
P1461, 72, M, O+, 2021-09-03, Allergy
P1462, 32, M, A+, 2021-06-02, Fracture
P1463, 50, F, A+, 2023-03-08, COVID-19
P1464, 8, F, B-, 2022-07-23, Flu
P1465, 95, M, A-, 2021-06-16, Flu
P1466, 98, F, O+, 2022-05-07, Allergy
P1467, 22, F, AB-, 2022-06-13, Anxiety
P1468, 25, F, A+, 2022-01-13, Hypertension
P1469, 55, F, O-, 2023-03-23, Fracture
P1470, 46, F, AB-, 2021-05-19, Hypertension
P1471, 42, F, B-, 2021-06-19, Diabetes
P1472, 98, M, B-, 2022-10-17, Flu
P1473, 16, M, A-, 2022-08-13, Asthma
P1474, 61, M, B+, 2023-02-20, Anxiety
P1475, 26, F, AB+, 2022-06-05, Asthma
P1476, 73, F, O+, 2022-09-08, Anxiety
P1477, 13, M, A+, 2023-01-26, Asthma
P1478, 39, F, AB-, 2023-01-27, Diabetes
P1479, 16, M, AB-, 2021-05-27, Anxiety
P1480, 9, M, AB-, 2022-11-23, Anxiety
P1481, 58, M, O-, 2022-07-08, Anxiety
P1482, 39, F, O-, 2022-03-20, Diabetes
P1483, 3, F, A-, 2022-07-12, Allergy
P1484, 98, F, AB-, 2022-02-06, Fracture
P1485, 36, F, B+, 2023-04-09, Asthma
P1486, 42, F, AB+, 2022-05-16, Allergy
P1487, 11, M, AB+, 2023-03-17, Anxiety
P1488, 52, F, AB-, 2021-05-22, Flu
P1489, 56, F, B+, 2022-02-24, Allergy
P1490, 68, F, B-, 2022-05-23, Hypertension
P1491, 97, M, B+, 2023-04-03, Anxiety
P1492, 32, M, AB+, 2022-06-03, COVID-19
P1493, 29, F, AB+, 2021-05-15, Flu
P1494, 27, M, B+, 2021-05-25, Asthma
P1495, 76, F, A-, 2023-02-10, Hypertension
P1496, 88, M, AB-, 2022-03-25, COVID-19
P1497, 54, F, O+, 2022-01-25, Flu
P1498, 48, F, AB+, 2022-05-06, Asthma
P1499, 47, M, AB+, 2021-08-01, Flu
P1500, 87, F, O-, 2022-11-25, Anxiety
P1501, 12, F, AB+, 2021-09-27, Allergy
P1502, 72, M, AB-, 2022-01-13, Fracture
P1503, 47, M, B+, 2022-07-18, Anxiety
P1504, 32, M, AB+, 2023-03-23, Allergy
P1505, 98, F, B+, 2022-06-27, Hypertension
P1506, 98, M, A+, 2021-07-04, Flu
P1507, 31, F, AB-, 2022-07-06, Anxiety
P1508, 50, M, O+, 2022-09-17, Anxiety
P1509, 19, F, B+, 2022-08-07, Fracture
P1510, 72, M, O+, 2021-06-15, Allergy
P1511, 58, F, B-, 2023-02-05, COVID-19
P1512, 16, F, AB+, 2023-02-21, COVID-19
P1513, 75, F, A-, 2023-03-25, Fracture
P1514, 30, F, A-, 2022-12-02, Allergy
P1515, 13, M, O+, 2021-08-10, Diabetes
P1516, 19, M, AB-, 2022-08-13, Diabetes
P1517, 17, F, AB-, 2022-01-17, Fracture
P1518, 56, M, A-, 2022-07-26, Fracture
P1519, 83, F, B-, 2022-08-15, Anxiety
P1520, 11, F, AB-, 2023-04-03, COVID-19
P1521, 57, F, O-, 2023-02-09, COVID-19
P1522, 99, M, A+, 2021-09-12, Allergy
P1523, 94, F, A-, 2021-12-15, Fracture
P1524, 57, M, O-, 2022-02-08, Diabetes
P1525, 67, F, A-, 2022-09-08, COVID-19
P1526, 85, M, AB+, 2021-07-04, Fracture
P1527, 19, F, O-, 2023-02-15, Fracture
P1528, 2, F, AB+, 2021-08-01, Diabetes
P1529, 62, F, B-, 2023-01-03, Hypertension
P1530, 56, M, B+, 2021-04-26, Allergy
P1531, 20, F, O-, 2023-02-08, Flu
P1532, 33, F, AB-, 2021-12-15, Diabetes
P1533, 19, F, O+, 2021-07-08, Asthma
P1534, 28, M, A-, 2023-02-15, Flu
P1535, 85, M, A+, 2022-03-30, COVID-19
P1536, 92, F, O+, 2021-06-18, Hypertension
P1537, 34, M, O-, 2022-01-29, Anxiety
P1538, 6, F, O-, 2021-09-18, Fracture
P1539, 15, F, AB-, 2023-04-09, Hypertension
P1540, 27, M, A+, 2021-05-16, Allergy
P1541, 39, M, AB-, 2022-12-27, Diabetes
P1542, 1, F, B+, 2021-09-25, Anxiety
P1543, 32, F, A-, 2021-12-25, COVID-19
P1544, 23, M, A+, 2022-05-04, Fracture
P1545, 50, F, O+, 2022-01-24, Allergy
P1546, 42, M, AB-, 2021-12-15, Flu
P1547, 36, F, O+, 2021-12-20, Flu
P1548, 5, F, AB+, 2021-07-22, Fracture
P1549, 37, F, AB-, 2022-03-23, Fracture
P1550, 92, M, A-, 2023-01-04, Asthma
P1551, 72, F, AB+, 2022-01-08, Hypertension
P1552, 51, M, O-, 2021-05-27, Asthma
P1553, 99, F, A-, 2022-11-03, Flu
P1554, 19, M, B-, 2021-08-06, Flu
P1555, 50, F, AB+, 2021-10-15, Fracture
P1556, 49, F, AB+, 2023-03-13, Allergy
P1557, 28, M, A+, 2022-03-29, Fracture
P1558, 80, M, B+, 2021-10-08, COVID-19
P1559, 64, F, AB-, 2021-04-29, COVID-19
P1560, 28, M, AB-, 2023-03-21, Flu
P1561, 8, M, AB-, 2023-02-11, Anxiety
P1562, 81, F, B-, 2021-05-17, Diabetes
P1563, 12, M, O+, 2022-08-25, Flu
P1564, 67, M, O-, 2022-05-28, COVID-19
P1565, 8, F, AB+, 2022-07-30, Allergy
P1566, 91, M, AB+, 2021-04-23, Flu
P1567, 85, M, A-, 2022-09-18, Diabetes
P1568, 70, F, B-, 2023-03-26, Flu
P1569, 79, M, AB+, 2021-09-17, Anxiety
P1570, 39, F, A-, 2022-06-29, Asthma
P1571, 35, M, B+, 2022-05-28, Asthma
P1572, 26, F, A+, 2021-05-05, Asthma
P1573, 18, F, B+, 2023-03-10, Anxiety
P1574, 54, F, B-, 2021-06-16, COVID-19
P1575, 10, M, A+, 2022-06-07, Diabetes
P1576, 85, F, AB-, 2022-03-16, Diabetes
P1577, 1, M, A+, 2021-11-19, Fracture
P1578, 22, M, B-, 2022-11-14, Fracture
P1579, 91, M, A-, 2023-03-01, Fracture
P1580, 18, F, A-, 2022-06-20, Asthma
P1581, 22, M, O-, 2022-02-18, Flu
P1582, 16, M, A+, 2022-05-08, Asthma
P1583, 5, F, B-, 2022-12-11, Fracture
P1584, 36, M, A+, 2022-01-07, Diabetes
P1585, 88, F, AB+, 2021-08-07, Flu
P1586, 86, M, B+, 2022-02-01, Allergy
P1587, 100, F, B+, 2022-02-22, Fracture
P1588, 73, F, O-, 2022-11-26, Flu
P1589, 44, F, O-, 2022-05-27, Hypertension
P1590, 67, F, AB-, 2022-11-18, Fracture
P1591, 15, F, AB-, 2022-08-26, Flu
P1592, 96, M, B+, 2023-04-08, Anxiety
P1593, 26, M, AB-, 2021-09-09, COVID-19
P1594, 65, F, AB-, 2022-12-04, COVID-19
P1595, 19, M, AB+, 2021-06-01, Flu
P1596, 47, F, AB-, 2022-06-23, Anxiety
P1597, 3, F, A+, 2022-09-20, Hypertension
P1598, 59, F, B-, 2021-07-17, Allergy
P1599, 34, F, O+, 2021-05-03, Diabetes
P1600, 34, M, A-, 2022-11-02, Fracture
P1601, 96, F, A-, 2022-10-01, Allergy
P1602, 60, F, A-, 2022-09-15, Anxiety
P1603, 27, F, AB-, 2021-05-01, Fracture
P1604, 61, M, O+, 2022-10-06, Flu
P1605, 96, F, A-, 2022-05-05, Fracture
P1606, 40, M, AB+, 2022-10-27, COVID-19
P1607, 22, M, O-, 2022-06-17, Flu
P1608, 65, M, O-, 2022-10-09, Allergy
P1609, 77, F, A+, 2021-11-23, Asthma
P1610, 15, F, AB+, 2023-01-26, Allergy
P1611, 84, F, AB+, 2022-03-14, Fracture
P1612, 41, M, AB-, 2021-12-03, Allergy
P1613, 76, M, AB-, 2022-09-12, Flu
P1614, 86, F, AB+, 2021-07-10, Anxiety
P1615, 98, F, AB-, 2022-09-13, Hypertension
P1616, 24, M, A+, 2021-10-27, Allergy
P1617, 7, M, B-, 2021-12-05, Allergy
P1618, 25, M, A+, 2021-09-12, Fracture
P1619, 9, M, O+, 2021-09-26, Hypertension
P1620, 47, F, AB+, 2022-06-09, Diabetes
P1621, 73, M, O+, 2022-07-03, Allergy
P1622, 12, M, A+, 2023-03-22, Anxiety
P1623, 70, M, A+, 2022-06-21, Allergy
P1624, 44, F, A+, 2021-12-15, Asthma
P1625, 71, F, AB+, 2021-12-09, Hypertension
P1626, 35, F, B-, 2022-11-30, Diabetes
P1627, 11, F, AB-, 2022-12-07, Flu
P1628, 31, F, O-, 2021-12-14, Fracture
P1629, 24, M, B-, 2021-06-09, Fracture
P1630, 69, F, AB-, 2021-08-09, Diabetes
P1631, 43, F, AB-, 2022-10-01, Hypertension
P1632, 98, M, B+, 2022-05-14, Asthma
P1633, 87, M, O+, 2022-02-26, COVID-19
P1634, 86, M, B-, 2022-04-27, Asthma
P1635, 1, M, B+, 2022-02-04, Hypertension
P1636, 19, M, O+, 2022-05-30, Fracture
P1637, 70, F, O+, 2021-11-23, Fracture
P1638, 84, F, O+, 2023-04-14, COVID-19
P1639, 66, F, B-, 2021-10-06, Flu
P1640, 32, M, O-, 2022-06-25, Flu
P1641, 48, M, A+, 2022-04-28, Anxiety
P1642, 27, F, B-, 2021-06-17, Allergy
P1643, 75, F, AB-, 2021-11-02, Allergy
P1644, 86, F, AB-, 2022-11-19, Fracture
P1645, 65, F, B-, 2022-11-18, Hypertension
P1646, 70, M, B+, 2022-06-15, Flu
P1647, 75, M, B-, 2023-01-11, COVID-19
P1648, 34, F, O+, 2021-04-25, Hypertension
P1649, 19, F, O+, 2021-11-24, Diabetes
P1650, 34, M, A+, 2022-10-30, Asthma
P1651, 51, M, AB+, 2022-03-12, COVID-19
P1652, 35, F, B+, 2023-02-24, Flu
P1653, 17, M, A+, 2021-06-22, Diabetes
P1654, 59, M, AB-, 2022-11-04, Diabetes
P1655, 70, M, AB+, 2022-01-22, Diabetes
P1656, 30, M, AB-, 2022-01-22, Allergy
P1657, 7, F, A+, 2022-07-08, Flu
P1658, 23, F, AB+, 2021-09-17, Fracture
P1659, 89, F, AB-, 2022-08-15, Diabetes
P1660, 5, F, O+, 2022-06-27, Fracture
P1661, 51, F, O+, 2022-05-25, Hypertension
P1662, 20, F, B-, 2022-03-31, Allergy
P1663, 71, F, O+, 2022-05-09, Diabetes
P1664, 22, M, B-, 2021-11-18, Allergy
P1665, 58, F, AB-, 2022-09-05, Flu
P1666, 85, F, B-, 2022-08-31, Diabetes
P1667, 9, M, A-, 2023-04-15, Flu
P1668, 67, F, AB+, 2022-07-21, Asthma
P1669, 26, F, B-, 2022-10-14, COVID-19
P1670, 27, M, AB+, 2021-09-26, Hypertension
P1671, 17, F, A+, 2022-11-01, Flu
P1672, 99, M, O+, 2022-01-25, Allergy
P1673, 63, M, AB-, 2022-04-03, Fracture
P1674, 75, M, AB-, 2021-10-14, COVID-19
P1675, 60, M, O-, 2022-10-04, Asthma
P1676, 50, F, O+, 2021-09-29, Allergy
P1677, 78, F, O-, 2022-09-19, Flu
P1678, 98, M, AB-, 2023-03-24, Asthma
P1679, 31, F, AB-, 2022-12-17, COVID-19
P1680, 80, F, O+, 2021-05-17, Allergy
P1681, 78, M, B+, 2021-06-22, Anxiety
P1682, 60, F, AB-, 2021-04-26, Hypertension
P1683, 10, F, AB+, 2021-12-07, Diabetes
P1684, 6, F, B-, 2022-01-15, Anxiety
P1685, 36, M, AB+, 2021-08-02, Diabetes
P1686, 15, F, AB+, 2023-03-01, Hypertension
P1687, 91, F, A+, 2021-08-25, COVID-19
P1688, 85, F, O+, 2022-07-25, Allergy
P1689, 93, F, A-, 2022-12-31, Fracture
P1690, 65, M, B-, 2022-01-23, Diabetes
P1691, 54, F, B-, 2021-11-20, Anxiety
P1692, 93, F, A+, 2021-05-25, Allergy
P1693, 39, F, B-, 2021-10-27, Hypertension
P1694, 19, M, B-, 2023-03-12, COVID-19
P1695, 45, F, A-, 2022-11-04, COVID-19
P1696, 34, F, A-, 2022-12-30, Hypertension
P1697, 79, M, O+, 2022-04-25, COVID-19
P1698, 79, F, AB+, 2023-03-18, Allergy
P1699, 11, M, O+, 2023-02-14, Asthma
P1700, 44, F, A-, 2023-03-09, Flu
P1701, 33, F, AB+, 2021-08-01, COVID-19
P1702, 69, M, O+, 2022-07-27, COVID-19
P1703, 78, F, B-, 2022-09-21, Fracture
P1704, 24, M, AB-, 2022-10-25, Asthma
P1705, 11, M, A+, 2021-05-27, Allergy
P1706, 9, M, AB+, 2021-10-05, Allergy
P1707, 8, F, B+, 2023-04-07, Hypertension
P1708, 99, M, O+, 2023-01-16, Asthma
P1709, 45, M, O+, 2021-08-18, Diabetes
P1710, 18, M, A+, 2021-05-25, Asthma
P1711, 44, M, AB-, 2022-09-21, Flu
P1712, 68, F, A+, 2021-05-28, Hypertension
P1713, 99, M, B+, 2021-09-16, Anxiety
P1714, 80, F, AB-, 2022-09-18, Anxiety
P1715, 46, F, O-, 2021-11-20, Anxiety
P1716, 55, M, AB-, 2022-08-24, Diabetes
P1717, 16, F, AB+, 2021-11-10, Anxiety
P1718, 33, M, B-, 2022-05-06, Asthma
P1719, 61, M, B-, 2022-05-30, Allergy
P1720, 17, M, B+, 2023-01-07, Diabetes
P1721, 53, F, B-, 2021-10-22, Diabetes
P1722, 47, F, O-, 2021-11-22, Hypertension
P1723, 98, M, A+, 2021-12-18, Diabetes
P1724, 23, M, A-, 2022-09-09, Allergy
P1725, 96, M, O+, 2022-09-14, Diabetes
P1726, 48, F, AB-, 2021-09-27, Allergy
P1727, 98, M, AB-, 2021-08-08, Fracture
P1728, 56, F, B-, 2021-06-30, Asthma
P1729, 97, M, AB+, 2023-01-15, Fracture
P1730, 2, M, A-, 2022-12-11, Asthma
P1731, 70, M, B-, 2021-12-08, COVID-19
P1732, 22, M, B+, 2021-06-01, Allergy
P1733, 71, M, B+, 2021-05-15, Allergy
P1734, 34, F, AB-, 2022-08-15, Diabetes
P1735, 42, M, A+, 2021-12-24, Flu
P1736, 85, M, AB+, 2021-08-26, Allergy
P1737, 66, M, O+, 2022-11-14, Diabetes
P1738, 86, F, B+, 2021-08-28, Diabetes
P1739, 44, M, O-, 2022-10-01, Hypertension
P1740, 44, M, B-, 2022-11-05, COVID-19
P1741, 46, F, O-, 2022-06-25, Hypertension
P1742, 68, M, B-, 2023-01-13, COVID-19
P1743, 45, M, A-, 2022-09-13, Diabetes
P1744, 74, F, AB-, 2021-04-26, Flu
P1745, 4, F, O+, 2021-06-20, Asthma
P1746, 9, M, O+, 2023-04-15, Allergy
P1747, 75, F, B+, 2022-04-12, Anxiety
P1748, 98, M, A-, 2022-11-15, Anxiety
P1749, 40, F, O-, 2023-03-12, Fracture
P1750, 21, M, B+, 2022-06-08, Asthma
P1751, 33, F, B+, 2021-08-01, Asthma
P1752, 23, M, A+, 2021-04-25, Hypertension
P1753, 80, F, B-, 2021-10-04, Anxiety
P1754, 74, M, A-, 2022-03-30, Flu
P1755, 65, M, B-, 2022-02-15, Anxiety
P1756, 60, F, B-, 2021-12-13, Diabetes
P1757, 8, M, O-, 2021-11-29, Flu
P1758, 25, M, B-, 2022-03-20, Diabetes
P1759, 72, F, A-, 2021-09-04, Asthma
P1760, 18, F, O+, 2022-09-13, COVID-19
P1761, 78, F, B+, 2022-10-20, Allergy
P1762, 24, M, O+, 2022-11-11, Anxiety
P1763, 10, M, O+, 2022-10-30, Fracture
P1764, 39, M, B+, 2022-09-30, Diabetes
P1765, 49, M, B-, 2023-01-24, Fracture
P1766, 32, F, B-, 2023-01-23, Flu
P1767, 80, M, A+, 2022-11-17, Anxiety
P1768, 12, F, O-, 2023-02-03, COVID-19
P1769, 83, M, B-, 2022-11-25, Allergy
P1770, 78, F, B+, 2022-06-24, COVID-19
P1771, 75, F, AB+, 2023-01-07, Diabetes
P1772, 90, F, A+, 2021-08-26, COVID-19
P1773, 88, M, AB-, 2021-08-24, Anxiety
P1774, 75, M, A+, 2023-01-30, Diabetes
P1775, 59, M, B+, 2021-06-07, Flu
P1776, 95, F, AB+, 2023-04-12, Allergy
P1777, 97, F, A+, 2021-12-15, Hypertension
P1778, 15, M, AB+, 2021-05-21, Diabetes
P1779, 73, F, AB+, 2021-05-14, Diabetes
P1780, 80, F, B+, 2022-06-01, Hypertension
P1781, 96, M, B-, 2022-10-12, Allergy
P1782, 45, F, AB+, 2021-06-14, Flu
P1783, 96, M, B-, 2022-04-06, COVID-19
P1784, 77, F, O-, 2022-12-12, Allergy
P1785, 98, F, O+, 2022-12-22, Flu
P1786, 88, F, AB-, 2022-07-31, Anxiety
P1787, 31, M, AB-, 2022-03-23, Fracture
P1788, 2, F, B-, 2022-07-22, Diabetes
P1789, 92, M, A-, 2021-05-31, Allergy
P1790, 5, F, O-, 2021-10-20, Fracture
P1791, 69, M, B+, 2022-06-13, Hypertension
P1792, 68, F, B+, 2021-12-15, Hypertension
P1793, 37, M, AB+, 2022-12-28, Diabetes
P1794, 61, F, AB-, 2022-07-16, Asthma
P1795, 42, M, B-, 2021-08-05, Asthma
P1796, 100, F, O-, 2022-01-04, COVID-19
P1797, 48, F, O+, 2021-08-23, Fracture
P1798, 49, F, O-, 2023-01-18, Fracture
P1799, 9, M, B-, 2021-08-31, Anxiety
P1800, 72, M, B-, 2021-11-04, Allergy
P1801, 54, M, B-, 2021-09-08, Anxiety
P1802, 97, M, AB+, 2022-12-11, Diabetes
P1803, 75, M, B+, 2021-06-08, Flu
P1804, 50, M, A-, 2021-12-03, Flu
P1805, 50, M, AB+, 2022-07-21, Asthma
P1806, 7, F, B+, 2022-05-17, Anxiety
P1807, 21, M, A-, 2022-03-11, Asthma
P1808, 4, F, AB-, 2022-06-20, Flu
P1809, 39, F, O-, 2022-07-30, Flu
P1810, 69, F, AB+, 2021-08-04, Allergy
P1811, 24, M, A-, 2021-04-23, Fracture
P1812, 9, M, O-, 2022-04-15, Fracture
P1813, 45, F, AB+, 2021-05-12, Flu
P1814, 23, F, O-, 2022-05-24, Anxiety
P1815, 16, M, AB-, 2022-04-14, COVID-19
P1816, 36, F, O-, 2022-06-27, COVID-19
P1817, 23, M, AB-, 2023-04-13, COVID-19
P1818, 14, M, B-, 2023-01-23, Fracture
P1819, 2, F, A-, 2021-05-20, Anxiety
P1820, 35, M, AB+, 2022-03-24, Diabetes
P1821, 3, M, B-, 2022-07-29, Fracture
P1822, 7, F, AB-, 2022-12-25, COVID-19
P1823, 8, M, AB+, 2021-04-22, COVID-19
P1824, 66, F, B-, 2023-01-08, Fracture
P1825, 48, M, AB+, 2023-03-20, Fracture
P1826, 34, F, O+, 2021-06-19, Flu
P1827, 44, F, B+, 2022-05-10, Allergy
P1828, 67, M, B+, 2022-01-27, Hypertension
P1829, 77, F, A-, 2022-06-04, Allergy
P1830, 39, F, AB+, 2021-12-02, Asthma
P1831, 99, M, O+, 2022-11-14, Asthma
P1832, 64, F, O+, 2023-04-08, Allergy
P1833, 22, M, AB-, 2022-02-02, Hypertension
P1834, 24, M, AB+, 2021-12-29, COVID-19
P1835, 72, M, B-, 2022-09-09, Flu
P1836, 33, F, O+, 2022-05-01, Flu
P1837, 90, F, B+, 2022-02-21, Hypertension
P1838, 35, F, B+, 2021-11-11, Anxiety
P1839, 13, F, AB-, 2023-04-01, Hypertension
P1840, 3, M, O+, 2022-06-23, COVID-19
P1841, 19, F, A-, 2022-06-22, Anxiety
P1842, 84, M, O-, 2022-09-07, Allergy
P1843, 15, M, AB+, 2021-05-08, COVID-19
P1844, 91, F, A+, 2022-06-15, Allergy
P1845, 47, F, AB-, 2022-12-25, Allergy
P1846, 1, M, B+, 2022-09-30, Allergy
P1847, 81, M, AB-, 2021-11-21, Anxiety
P1848, 100, M, AB+, 2022-11-14, Diabetes
P1849, 6, M, AB-, 2021-10-03, Anxiety
P1850, 66, F, B+, 2023-01-25, Flu
P1851, 55, F, AB-, 2023-01-16, Allergy
P1852, 68, M, O+, 2021-12-13, Allergy
P1853, 75, M, AB-, 2022-01-21, COVID-19
P1854, 20, M, B-, 2021-10-03, Anxiety
P1855, 97, F, AB-, 2022-11-04, Asthma
P1856, 44, F, O+, 2023-04-15, Flu
P1857, 66, F, AB-, 2022-12-12, Fracture
P1858, 36, F, A+, 2022-08-24, Diabetes
P1859, 3, F, B-, 2022-04-27, Flu
P1860, 59, F, AB-, 2023-02-26, Asthma
P1861, 33, M, B+, 2021-05-04, Flu
P1862, 57, M, A+, 2022-09-06, Allergy
P1863, 38, F, A+, 2022-01-25, Flu
P1864, 94, M, AB-, 2022-01-10, COVID-19
P1865, 25, F, A-, 2022-11-09, Hypertension
P1866, 91, F, A+, 2021-10-24, Asthma
P1867, 83, M, AB+, 2021-05-31, COVID-19
P1868, 92, F, B+, 2021-11-29, Asthma
P1869, 100, F, A+, 2022-11-21, Diabetes
P1870, 44, F, A-, 2021-07-19, Flu
P1871, 28, F, AB+, 2023-03-30, Anxiety
P1872, 18, F, A+, 2022-07-19, Hypertension
P1873, 10, F, O+, 2021-08-24, Allergy
P1874, 96, F, AB-, 2022-07-16, Allergy
P1875, 41, M, AB+, 2021-08-28, Diabetes
P1876, 34, M, A+, 2022-04-30, Allergy
P1877, 14, M, B+, 2022-05-28, Hypertension
P1878, 74, M, B+, 2021-06-02, Diabetes
P1879, 61, F, A+, 2022-06-18, Fracture
P1880, 50, F, O-, 2021-11-07, Fracture
P1881, 82, F, AB+, 2022-04-08, Asthma
P1882, 49, M, B-, 2023-01-28, Hypertension
P1883, 74, F, B+, 2022-05-17, Hypertension
P1884, 11, M, AB-, 2022-08-21, Flu
P1885, 91, F, B-, 2023-03-27, Hypertension
P1886, 55, F, B-, 2023-03-22, Hypertension
P1887, 57, F, B-, 2022-04-28, Anxiety
P1888, 92, F, O-, 2021-05-04, Anxiety
P1889, 7, M, AB+, 2022-12-27, Anxiety
P1890, 60, M, AB+, 2022-11-21, Allergy
P1891, 25, M, A-, 2021-07-19, Asthma
P1892, 34, M, AB-, 2022-05-08, COVID-19
P1893, 4, M, O-, 2022-09-22, Hypertension
P1894, 13, F, AB-, 2022-10-30, Asthma
P1895, 72, M, AB+, 2021-08-17, Hypertension
P1896, 47, F, B-, 2022-09-23, COVID-19
P1897, 32, M, B+, 2023-01-22, Fracture
P1898, 28, F, B+, 2022-11-20, Fracture
P1899, 96, M, O-, 2022-05-08, COVID-19
P1900, 15, F, AB-, 2021-12-15, Diabetes
P1901, 21, F, AB-, 2022-01-08, Allergy
P1902, 75, M, AB-, 2021-12-12, Asthma
P1903, 83, M, A+, 2023-01-23, Diabetes
P1904, 59, F, B+, 2021-05-14, COVID-19
P1905, 90, M, A-, 2023-01-20, COVID-19
P1906, 34, M, O+, 2022-07-08, Fracture
P1907, 66, F, A-, 2022-11-11, Allergy
P1908, 65, F, AB+, 2023-03-21, Hypertension
P1909, 49, F, AB-, 2022-06-06, Allergy
P1910, 35, M, B-, 2021-12-28, Diabetes
P1911, 77, M, O+, 2021-11-11, Fracture
P1912, 31, F, O+, 2021-07-23, Asthma
P1913, 55, M, A-, 2021-09-02, Fracture
P1914, 1, M, AB+, 2022-02-21, Anxiety
P1915, 31, M, O+, 2022-09-16, Anxiety
P1916, 17, F, O+, 2023-03-06, Fracture
P1917, 37, M, B-, 2022-01-18, Diabetes
P1918, 17, F, B-, 2022-02-22, Hypertension
P1919, 28, F, B-, 2022-07-19, Asthma
P1920, 21, F, AB+, 2022-09-21, Hypertension
P1921, 73, M, AB+, 2022-07-08, Flu
P1922, 75, M, A+, 2022-05-17, Fracture
P1923, 50, F, A+, 2021-08-17, Diabetes
P1924, 98, M, O+, 2023-03-10, Hypertension
P1925, 37, M, AB+, 2022-05-08, Diabetes
P1926, 99, F, B+, 2023-03-06, Diabetes
P1927, 2, F, O-, 2022-01-02, Anxiety
P1928, 94, M, AB+, 2023-04-06, Asthma
P1929, 78, M, B-, 2021-08-07, Diabetes
P1930, 68, M, AB-, 2021-07-04, Asthma
P1931, 48, F, B+, 2023-01-06, Asthma
P1932, 73, M, B+, 2022-09-16, COVID-19
P1933, 26, M, B+, 2023-04-14, Hypertension
P1934, 19, M, A+, 2023-01-03, Fracture
P1935, 55, M, A+, 2022-09-21, Allergy
P1936, 48, F, O-, 2022-05-05, Fracture
P1937, 86, F, B+, 2023-04-01, Asthma
P1938, 89, F, AB-, 2022-12-29, Hypertension
P1939, 57, F, B+, 2022-04-15, Asthma
P1940, 60, F, AB+, 2021-12-18, Flu
P1941, 98, M, A-, 2021-06-23, Hypertension
P1942, 6, F, O-, 2021-07-26, Allergy
P1943, 88, F, A+, 2023-03-30, Anxiety
P1944, 20, F, B-, 2021-07-16, Diabetes
P1945, 65, M, AB+, 2021-10-15, Diabetes
P1946, 78, M, A-, 2022-04-27, Anxiety
P1947, 36, F, O-, 2022-03-01, Anxiety
P1948, 27, M, AB-, 2022-01-24, Anxiety
P1949, 48, F, B+, 2021-09-09, Allergy
P1950, 55, F, B+, 2022-01-20, Asthma
P1951, 96, M, O+, 2021-04-26, Asthma
P1952, 88, M, O+, 2022-03-02, Diabetes
P1953, 33, M, O+, 2023-01-19, Hypertension
P1954, 17, F, AB+, 2022-11-10, Hypertension
P1955, 62, M, O+, 2022-11-25, Anxiety
P1956, 88, F, O+, 2022-10-20, COVID-19
P1957, 72, F, O-, 2022-09-06, Allergy
P1958, 86, F, B-, 2022-06-10, Anxiety
P1959, 45, M, O+, 2021-09-18, Diabetes
P1960, 41, F, AB-, 2021-05-27, Diabetes
P1961, 55, M, AB-, 2022-04-12, Allergy
P1962, 96, F, A-, 2022-06-30, Hypertension
P1963, 60, M, B-, 2023-04-09, Asthma
P1964, 72, M, O+, 2021-05-14, Flu
P1965, 13, F, A+, 2022-11-25, Allergy
P1966, 10, M, O-, 2023-01-08, Fracture
P1967, 58, F, O+, 2023-03-13, Hypertension
P1968, 48, M, B-, 2022-11-17, COVID-19
P1969, 26, M, B-, 2021-06-04, Allergy
P1970, 18, F, B-, 2022-08-04, Flu
P1971, 100, M, B-, 2022-01-11, Hypertension
P1972, 72, F, A+, 2023-03-07, Asthma
P1973, 43, F, A+, 2022-08-30, Hypertension
P1974, 96, F, A+, 2022-11-03, Hypertension
P1975, 91, M, O-, 2021-07-28, Allergy
P1976, 45, M, A-, 2022-12-28, Fracture
P1977, 57, F, O+, 2021-09-04, Fracture
P1978, 85, F, B-, 2023-02-08, Diabetes
P1979, 14, M, A-, 2021-12-22, Allergy
P1980, 33, M, AB+, 2022-04-20, Hypertension
P1981, 27, F, AB-, 2022-12-04, Anxiety
P1982, 70, M, B+, 2022-08-31, Flu
P1983, 24, M, B+, 2021-09-10, Anxiety
P1984, 74, M, O+, 2023-03-24, Hypertension
P1985, 54, M, AB-, 2022-12-31, Flu
P1986, 26, M, B+, 2022-09-14, Fracture
P1987, 48, F, B+, 2021-10-30, COVID-19
P1988, 36, F, A-, 2022-07-07, Flu
P1989, 49, F, B-, 2021-05-30, Hypertension
P1990, 86, M, O-, 2022-01-26, Asthma
P1991, 80, F, O+, 2022-07-06, Hypertension
P1992, 53, M, B+, 2021-05-06, COVID-19
P1993, 23, M, A+, 2022-05-17, Hypertension
P1994, 95, F, A-, 2022-08-22, Diabetes
P1995, 85, F, B+, 2022-04-19, Anxiety
P1996, 20, M, AB-, 2022-07-12, Asthma
P1997, 22, M, AB-, 2021-05-09, Fracture
P1998, 61, M, B+, 2022-09-05, Allergy
P1999, 55, F, AB-, 2022-07-06, COVID-19
P2000, 59, M, AB-, 2023-03-25, Allergy